Home
last modified time | relevance | path

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

/art/runtime/
Doat_quick_method_header.h44 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/
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.cc117 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/
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