Home
last modified time | relevance | path

Searched refs:GetEntryPointFromQuickCompiledCode (Results 1 – 11 of 11) sorted by relevance

/art/runtime/mirror/
Dart_method.cc291 bool have_quick_code = GetEntryPointFromQuickCompiledCode() != nullptr; in Invoke()
301 have_quick_code ? GetEntryPointFromQuickCompiledCode() in Invoke()
334 have_quick_code ? GetEntryPointFromQuickCompiledCode() in Invoke()
Dart_method-inl.h147 const void* code = EntryPointToCodePointer(GetEntryPointFromQuickCompiledCode()); in GetCodeSize()
188 const void* code = GetEntryPointFromQuickCompiledCode(); in AssertPcIsWithinQuickCode()
206 return PointerToLowMemUInt32(GetEntryPointFromQuickCompiledCode()); in GetQuickOatCodeOffset()
Dart_method.h304 const void* GetEntryPointFromQuickCompiledCode() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetEntryPointFromQuickCompiledCode() function
334 uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromQuickCompiledCode()); in IsWithinQuickCode()
/art/compiler/
Dcommon_compiler_test.cc236 CHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr); in MakeExecutable()
241 CHECK(method->GetEntryPointFromQuickCompiledCode() != nullptr); in MakeExecutable()
Dimage_writer.cc1143 orig->GetEntryPointFromQuickCompiledCode(), target_ptr_size_); in FixupMethod()
/art/compiler/driver/
Dcompiler_driver_test.cc128 EXPECT_TRUE(method->GetEntryPointFromQuickCompiledCode() != NULL) << "method_idx=" << i in TEST_F()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc845 code = called->GetEntryPointFromQuickCompiledCode(); in artQuickResolutionTrampoline()
853 code = called->GetEntryPointFromQuickCompiledCode(); in artQuickResolutionTrampoline()
1804 const void* code = method->GetEntryPointFromQuickCompiledCode(); in artInvokeCommon()
1943 const void* code = method->GetEntryPointFromQuickCompiledCode(); in artInvokeInterfaceTrampoline()
/art/compiler/jni/
Djni_compiler_test.cc78 if (method->GetEntryPointFromQuickCompiledCode() == nullptr || in CompileForTest()
79 … method->GetEntryPointFromQuickCompiledCode() == class_linker_->GetQuickGenericJniTrampoline()) { in CompileForTest()
81 ASSERT_TRUE(method->GetEntryPointFromQuickCompiledCode() != nullptr) in CompileForTest()
/art/runtime/
Dclass_linker.cc2635 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr); in LinkCode()
2648 method->GetEntryPointFromQuickCompiledCode(), in LinkCode()
2692 DCHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr); in LinkCode()
2697 DCHECK(method->GetEntryPointFromQuickCompiledCode() != nullptr); in LinkCode()
2710 DCHECK(method->GetEntryPointFromQuickCompiledCode() == GetQuickResolutionTrampoline() in LinkCode()
2711 || method->GetEntryPointFromQuickCompiledCode() == GetQuickGenericJniTrampoline()); in LinkCode()
2718 method->GetEntryPointFromQuickCompiledCode(), in LinkCode()
Dutils.cc1103 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); in DumpNativeStack()
/art/runtime/arch/
Dstub_test.cc1689 if (contains_amethod.Get()->GetEntryPointFromQuickCompiledCode() == nullptr) { in TEST_F()