Searched refs:code_ (Results 1 – 9 of 9) sorted by relevance
/art/runtime/ |
D | oat_quick_method_header.h | 42 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_); in FromCodePointer() 66 return code_ - vmap_table_offset_; in GetOptimizedCodeInfoPtr() 71 return code_ - vmap_table_offset_; in GetOptimizedCodeInfoPtr() 75 return code_; in GetCode() 100 return (vmap_table_offset_ == 0) ? nullptr : code_ - vmap_table_offset_; in GetVmapTable() 104 uintptr_t code_start = reinterpret_cast<uintptr_t>(code_); in Contains() 120 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1) in GetEntryPoint() 121 : code_; in GetEntryPoint() 164 uint8_t code_[0]; 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 | 330 : code_(code.begin(), code.end()), debug_name_(debug_name) {} in ThunkValue() 331 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); } in GetCode() 335 const std::vector<uint8_t> code_;
|
/art/runtime/jit/ |
D | jit_code_cache.cc | 140 JniStubData() : code_(nullptr), methods_() {} in JniStubData() 144 code_ = code; in SetCode() 148 return code_; in GetCode() 188 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
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 948 move $t9, $v1 # save $v0->code_
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 886 move $t9, $v1 # save $v0->code_
|