Searched defs:entry_point (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Doat_quick_method_header.cc40 const void* entry_point = GetEntryPoint(); local
41 uint32_t sought_offset = pc - reinterpret_cast<uintptr_t>(entry_point);
57 << "(PC " << reinterpret_cast<void*>(pc) << ", entry_point=" << entry_point
58 << " current entry_point=" << method->GetEntryPointFromQuickCompiledCode()
68 const void* entry_point = GetEntryPoint(); local
82 return reinterpret_cast<uintptr_t>(entry_point) +
H A Doat_quick_method_header.h50 static OatQuickMethodHeader* FromEntryPoint(const void* entry_point) { argument
51 return FromCodePointer(EntryPointToCodePointer(entry_point));
H A Dutils.h339 static inline const void* EntryPointToCodePointer(const void* entry_point) { argument
340 uintptr_t code = reinterpret_cast<uintptr_t>(entry_point);
H A Dstack.cc757 const void* entry_point = runtime->GetInstrumentation()->GetQuickCodeFor(method, sizeof(void*)); local
758 DCHECK(class_linker->IsQuickGenericJniStub(entry_point)) << PrettyMethod(method);
H A Dclass_linker.cc2916 const void* entry_point = method->GetEntryPointFromQuickCompiledCode(); local
2917 DCHECK(IsQuickGenericJniStub(entry_point) || IsQuickResolutionStub(entry_point));
7943 bool ClassLinker::IsQuickResolutionStub(const void* entry_point) const {
7944 return (entry_point == GetQuickResolutionStub()) ||
7945 (quick_resolution_trampoline_ == entry_point);
7948 bool ClassLinker::IsQuickToInterpreterBridge(const void* entry_point) const {
7949 return (entry_point == GetQuickToInterpreterBridge()) ||
7950 (quick_to_interpreter_bridge_trampoline_ == entry_point);
7953 bool ClassLinker::IsQuickGenericJniStub(const void* entry_point) cons
[all...]
/art/runtime/jit/
H A Dprofiling_info.h137 void SetSavedEntryPoint(const void* entry_point) { argument
138 saved_entry_point_ = entry_point;
H A Djit_code_cache.cc642 const void* entry_point = info->GetMethod()->GetEntryPointFromQuickCompiledCode(); local
643 if (ContainsPc(entry_point)) {
644 info->SetSavedEntryPoint(entry_point);
/art/compiler/optimizing/
H A Dcode_generator_mips64.cc2938 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMips64DoublewordSize); local
2959 __ LoadFromOffset(kLoadDoubleword, T9, temp, entry_point.Int32Value());
3163 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMips64DoublewordSize); local
3171 __ LoadFromOffset(kLoadDoubleword, T9, temp, entry_point.Int32Value());
H A Dcode_generator_arm64.cc3532 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize); local
3566 __ Ldr(lr, MemOperand(temp, entry_point.Int32Value()));
3736 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize); local
3754 __ Ldr(lr, MemOperand(temp, entry_point.SizeValue()));
H A Dcode_generator_mips.cc3736 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsWordSize); local
3757 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
3943 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsWordSize); local
3952 __ LoadFromOffset(kLoadWord, T9, temp, entry_point.Int32Value());
H A Dcode_generator_arm.cc1905 uint32_t entry_point = local
1908 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
6439 uint32_t entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset( local
6443 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
/art/oatdump/
H A Doatdump.cc248 uint32_t entry_point = oat_method.GetCodeOffset() - oat_header.GetExecutableOffset(); local
250 const void* code_address = EntryPointToCodePointer(reinterpret_cast<void*>(entry_point));

Completed in 265 milliseconds