Searched refs:code_ (Results 1 – 7 of 7) sorted by relevance
/art/runtime/ |
D | oat_quick_method_header.h | 44 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_); in FromCodePointer() 67 uintptr_t code = reinterpret_cast<uintptr_t>(code_); in IsOptimized() 76 return code_ - offset; in GetOptimizedCodeInfoPtr() 82 return code_ - offset; in GetOptimizedCodeInfoPtr() 86 return code_; in GetCode() 107 uintptr_t code_start = reinterpret_cast<uintptr_t>(HWASanUntag(code_)); in Contains() 123 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1) in GetEntryPoint() 124 : code_; in GetEntryPoint() 167 uint8_t code_[0]; // The actual method code. variable
|
/art/compiler/jni/quick/ |
D | jni_compiler.h | 40 code_(std::move(code)), in JniCompiledMethod() 50 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); } in GetCode() 58 std::vector<uint8_t> code_; variable
|
/art/compiler/driver/ |
D | compiled_method_storage.cc | 132 : code_(std::move(code)), debug_name_(debug_name) {} in ThunkMapValue() 135 return ArrayRef<const uint8_t>(code_); in GetCode() 143 std::vector<uint8_t, SwapAllocator<uint8_t>> code_; member in art::CompiledMethodStorage::ThunkMapValue
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_arm_base.cc | 34 : code_(code), in ThunkData() 45 return code_.size(); in CodeSize() 49 return code_; in GetCode() 150 const ArrayRef<const uint8_t> code_; // The code of the thunk. member in art::linker::ArmBaseRelativePatcher::ThunkData
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 354 : code_(code.begin(), code.end()), debug_name_(debug_name) {} in ThunkValue() 355 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); } in GetCode() 359 const std::vector<uint8_t> code_;
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 117 JniStubData() : code_(nullptr), methods_() {} in JniStubData() 121 code_ = code; in SetCode() 160 return code_; in GetCode() 183 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethodsIn() 191 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethod() 204 const void* code_; member in art::jit::JitCodeCache::JniStubData
|
/art/dexlayout/ |
D | dex_ir.h | 744 : access_flags_(access_flags), method_id_(method_id), code_(code) { } in MethodItem() 751 CodeItem* GetCodeItem() { return code_; } in GetCodeItem() 758 CodeItem* code_; // This can be nullptr. variable
|