Home
last modified time | relevance | path

Searched refs:code_ (Results 1 – 7 of 7) sorted by relevance

/art/runtime/
Doat_quick_method_header.h47 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_); in FromCodePointer()
75 return code_ - vmap_table_offset_; in GetOptimizedCodeInfoPtr()
80 return code_ - vmap_table_offset_; in GetOptimizedCodeInfoPtr()
84 return code_; in GetCode()
113 return (vmap_table_offset_ == 0) ? nullptr : code_ - vmap_table_offset_; in GetVmapTable()
118 uintptr_t code_start = reinterpret_cast<uintptr_t>(HWASanUntag(code_)); in Contains()
134 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1) in GetEntryPoint()
135 : code_; in GetEntryPoint()
181 uint8_t code_[0]; variable
/art/compiler/jni/quick/
Djni_compiler.h40 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/
Dcompiled_method_storage.cc132 : 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/
Drelative_patcher_arm_base.cc34 : 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/
Drelative_patcher_test.h354 : 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/
Djit_code_cache.cc116 JniStubData() : code_(nullptr), methods_() {} in JniStubData()
120 code_ = code; in SetCode()
159 return code_; in GetCode()
182 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethodsIn()
190 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethod()
203 const void* code_; member in art::jit::JitCodeCache::JniStubData
/art/dexlayout/
Ddex_ir.h744 : 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