Home
last modified time | relevance | path

Searched refs:IsInvokable (Results 1 – 14 of 14) sorted by relevance

/art/openjdkjvmti/
Dti_breakpoint.cc62 DCHECK(!m->IsDefault() || !m->IsCopied() || !m->IsInvokable()) in Breakpoint()
Ddeopt_manager.cc177 DCHECK(method->IsInvokable()); in AddMethodBreakpoint()
217 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in RemoveMethodBreakpoint()
Dti_redefine.cc1482 if (method.IsInvokable()) { in UpdateClass()
/art/runtime/interpreter/
Dinterpreter_common.h146 } else if (UNLIKELY(!called_method->IsInvokable())) { in DoFastInvoke()
189 } else if (UNLIKELY(!called_method->IsInvokable())) { in DoInvoke()
276 } else if (UNLIKELY(!called_method->IsInvokable())) { in DoInvokeVirtualQuick()
Dinterpreter.cc398 } else if (!method->IsInvokable()) { in EnterInterpreterFromInvoke()
/art/runtime/
Dart_method.cc156 DCHECK(!IsInvokable()); in ThrowInvocationTimeError()
366 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete()) in Invoke()
698 if (IsNative() || !IsInvokable() || IsProxyMethod()) { in HasAnyCompiledCode()
Dinstrumentation.cc152 if (!method->IsInvokable() || method->IsProxyMethod()) { in InstallStubsForMethod()
865 CHECK(method->IsInvokable()); in Deoptimize()
888 CHECK(method->IsInvokable()); in Undeoptimize()
Dart_method.h217 bool IsInvokable() { in IsInvokable() function
Dclass_linker.cc1318 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
1328 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
2893 CHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickOatCodeFor()
3013 DCHECK(!method->IsInvokable()); in EnsureThrowsInvocationError()
3041 if (!method->IsInvokable()) { in LinkCode()
4594 CHECK(method->IsInvokable()); in CheckProxyMethod()
/art/runtime/mirror/
Dclass.cc1004 if (!m.IsNative() && m.IsInvokable()) { in SetSkipAccessChecksFlagOnAllMethods()
/art/dex2oat/linker/
Dimage_writer.cc2558 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickCode()
2650 if (UNLIKELY(!orig->IsInvokable())) { in CopyAndFixupMethod()
/art/compiler/optimizing/
Dinliner.cc247 } else if (!resolved_method->IsInvokable()) { in FindVirtualOrInterfaceTarget()
Dinstruction_builder.cc900 if (!actual_method->IsInvokable()) { in ResolveMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc775 if (UNLIKELY(!method->IsInvokable())) { in artQuickToInterpreterBridge()