Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_breakpoint.cc62 DCHECK(!m->IsDefault() || !m->IsCopied() || !m->IsInvokable()) in Breakpoint()
Ddeopt_manager.cc235 DCHECK(method->IsInvokable()); in AddMethodBreakpoint()
275 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in RemoveMethodBreakpoint()
Dti_redefine.cc1550 if (method.IsInvokable()) { in UpdateClass()
/art/runtime/
Dart_method.cc142 DCHECK(!IsInvokable()); in ThrowInvocationTimeError()
326 (self->IsForceInterpreter() && !IsNative() && !IsProxyMethod() && IsInvokable()) || in Invoke()
353 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete()) in Invoke()
672 if (IsNative() || !IsInvokable() || IsProxyMethod()) { in HasAnyCompiledCode()
Dart_method.h210 bool IsInvokable() { in IsInvokable() function
478 if (UNLIKELY(IsNative() || IsProxyMethod() || !IsInvokable())) { in GetProfilingInfo()
Dinstrumentation.cc206 if (!method->IsInvokable() || method->IsProxyMethod()) { in InstallStubsForMethod()
965 CHECK(method->IsInvokable()); in Deoptimize()
988 CHECK(method->IsInvokable()); in Undeoptimize()
Dclass_linker.cc1510 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
1521 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
3338 CHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickOatCodeFor()
3469 DCHECK(!method->IsInvokable()); in EnsureThrowsInvocationError()
3498 if (!method->IsInvokable()) { in LinkCode()
5086 CHECK(method->IsInvokable()); in CheckProxyMethod()
/art/runtime/interpreter/
Dinterpreter_common.h197 if (UNLIKELY(!called_method->IsInvokable())) { in DoInvoke()
Dinterpreter.cc427 } else if (!method->IsInvokable()) { in EnterInterpreterFromInvoke()
/art/runtime/jit/
Djit.cc792 if (!method->IsCompilable() || !method->IsInvokable()) { in CompileMethodsFromProfile()
/art/runtime/mirror/
Dclass.cc995 if (!m.IsNative() && m.IsInvokable()) { in SetSkipAccessChecksFlagOnAllMethods()
/art/compiler/optimizing/
Dinliner.cc262 } else if (!resolved_method->IsInvokable()) { in FindVirtualOrInterfaceTarget()
Dinstruction_builder.cc887 if (!actual_method->IsInvokable()) { in ResolveMethod()
/art/dex2oat/linker/
Dimage_writer.cc3364 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickCode()
3458 if (UNLIKELY(!orig->IsInvokable())) { in CopyAndFixupMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc738 if (UNLIKELY(!method->IsInvokable())) { in artQuickToInterpreterBridge()