Home
last modified time | relevance | path

Searched refs:GetEntryPointFromCompiledCode (Results 1 – 13 of 13) sorted by relevance

/art/runtime/mirror/
Dart_method-inl.h84 uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromCompiledCode()); in GetCodeSize()
125 const void* code = GetEntryPointFromCompiledCode(); in AssertPcIsWithinCode()
142 return reinterpret_cast<uint32_t>(GetEntryPointFromCompiledCode()); in GetOatCodeOffset()
Dart_method.cc266 if (GetEntryPointFromCompiledCode() != NULL) { in Invoke()
268 …StringPrintf("Invoking '%s' code=%p", PrettyMethod(this).c_str(), GetEntryPointFromCompiledCode()); in Invoke()
286 …StringPrintf("Returned '%s' code=%p", PrettyMethod(this).c_str(), GetEntryPointFromCompiledCode()); in Invoke()
290 << "' code=" << reinterpret_cast<const void*>(GetEntryPointFromCompiledCode()); in Invoke()
Dart_method.h213 const void* GetEntryPointFromCompiledCode() const { in GetEntryPointFromCompiledCode() function
225 uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromCompiledCode()); in IsWithinCode()
/art/runtime/entrypoints/quick/
Dquick_invoke_entrypoints.cc128 const void* code = method->GetEntryPointFromCompiledCode(); in artInvokeInterfaceTrampoline()
162 const void* code = method->GetEntryPointFromCompiledCode(); in artInvokeCommon()
Dquick_trampoline_entrypoints.cc544 code = called->GetEntryPointFromCompiledCode(); in artQuickResolutionTrampoline()
552 code = called->GetEntryPointFromCompiledCode(); in artQuickResolutionTrampoline()
/art/runtime/entrypoints/portable/
Dportable_invoke_entrypoints.cc45 const void* code = method->GetEntryPointFromCompiledCode(); in FindMethodHelper()
Dportable_trampoline_entrypoints.cc396 code = called->GetEntryPointFromCompiledCode(); in artPortableResolutionTrampoline()
410 code = called->GetEntryPointFromCompiledCode(); in artPortableResolutionTrampoline()
/art/compiler/driver/
Dcompiler_driver_test.cc122 EXPECT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << "method_idx=" << i in TEST_F()
Dcompiler_driver.cc1109 direct_code = reinterpret_cast<uintptr_t>(method->GetEntryPointFromCompiledCode()); in GetCodeAndMethodForDirectCall()
/art/compiler/jni/
Djni_compiler_test.cc61 if (method->GetEntryPointFromCompiledCode() != NULL) { in CompileForTest()
65 … ASSERT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << method_name << " " << method_sig; in CompileForTest()
/art/runtime/
Dinstrumentation.cc394 const void* code = method->GetEntryPointFromCompiledCode(); in GetQuickCodeFor()
Dclass_linker.cc1678 DCHECK(method->GetEntryPointFromCompiledCode() == NULL); in LinkCode()
1686 bool enter_interpreter = NeedsInterpreter(method.get(), method->GetEntryPointFromCompiledCode()); in LinkCode()
1715 method->GetEntryPointFromCompiledCode()); in LinkCode()
/art/oatdump/
Doatdump.cc882 const void* code = m->GetEntryPointFromCompiledCode(); in GetOatCodeBegin()
993 if (oat_code != method->GetEntryPointFromCompiledCode()) { in Callback()