Home
last modified time | relevance | path

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

/art/runtime/
Doat_quick_method_header.h54 uintptr_t header = code - OFFSETOF_MEMBER(OatQuickMethodHeader, code_); in FromCodePointer()
77 uintptr_t code = reinterpret_cast<uintptr_t>(code_); in IsOptimized()
86 return code_ - offset; in GetOptimizedCodeInfoPtr()
92 return code_ - offset; in GetOptimizedCodeInfoPtr()
96 return code_; in GetCode()
117 DCHECK_NE(data_, kInvalidData) << std::hex << reinterpret_cast<uintptr_t>(code_); in Contains()
119 uintptr_t code_start = reinterpret_cast<uintptr_t>(HWASanUntag(code_)); in Contains()
135 ? reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(code_) | 1) in GetEntryPoint()
136 : code_; in GetEntryPoint()
200 uint8_t code_[0]; // The actual method code. variable
/art/compiler/jni/quick/
Djni_compiler.h42 code_(std::move(code)), in JniCompiledMethod()
52 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); } in GetCode()
60 std::vector<uint8_t> code_; variable
/art/compiler/
Dcommon_compiler_test.cc143 CHECK(code_.empty()); in CreateCompiledMethod()
145 code_.assign(code.begin(), code.end()); in CreateCompiledMethod()
172 CHECK(!code_.empty()); in GetCode()
173 return ArrayRef<const uint8_t>(code_); in GetCode()
183 std::vector<uint8_t> code_; member in art::CommonCompilerTestImpl::OneCompiledMethodStorage
/art/dex2oat/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.h355 : code_(code.begin(), code.end()), debug_name_(debug_name) {} in ThunkValue()
356 ArrayRef<const uint8_t> GetCode() const { return ArrayRef<const uint8_t>(code_); } in GetCode()
360 const std::vector<uint8_t> code_;
/art/runtime/jit/
Djit_code_cache.cc118 JniStubData() : code_(nullptr), methods_() {} in JniStubData()
122 code_ = code; in SetCode()
149 return code_; in GetCode()
172 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethodsIn()
180 VLOG(jit) << "JIT removed (JNI) " << (*it)->PrettyMethod() << ": " << code_; in RemoveMethod()
193 const void* code_; member in art::jit::JitCodeCache::JniStubData
/art/dexlayout/
Ddex_ir.h752 : access_flags_(access_flags), method_id_(method_id), code_(code) { } in MethodItem()
759 CodeItem* GetCodeItem() { return code_; } in GetCodeItem()
766 CodeItem* code_; // This can be nullptr. variable