Home
last modified time | relevance | path

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

/art/runtime/
Dart_method.h212 bool IsInvokable() const { in IsInvokable() function
226 DCHECK(IsInvokable()); in SetPreCompiled()
519 if (UNLIKELY(IsNative() || IsProxyMethod() || !IsInvokable())) { in GetProfilingInfo()
533 DCHECK(IsInvokable()); in SetProfilingInfoPtrSize()
Dart_method.cc151 DCHECK(!IsInvokable()); in ThrowInvocationTimeError()
335 (self->IsForceInterpreter() && !IsNative() && !IsProxyMethod() && IsInvokable()))) { in Invoke()
361 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete()) in Invoke()
668 if (IsNative() || !IsInvokable() || IsProxyMethod()) { in HasAnyCompiledCode()
Dinstrumentation.cc235 if (!method->IsInvokable() || method->IsProxyMethod()) { in InstallStubsForMethod()
1016 CHECK(method->IsInvokable()); in Deoptimize()
1039 CHECK(method->IsInvokable()); in Undeoptimize()
Dclass_linker.cc1714 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
1725 const void* oat_code = m.IsInvokable() ? class_linker->GetQuickOatCodeFor(&m) : code; in Update()
2211 if (!method.IsNative() && method.IsInvokable()) { in AddImageSpace()
3520 CHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickOatCodeFor()
3698 DCHECK(!method->IsInvokable()); in EnsureThrowsInvocationError()
3718 if (!method->IsInvokable()) { in LinkCode()
5323 CHECK(method->IsInvokable()); in CheckProxyMethod()
/art/openjdkjvmti/
Ddeopt_manager.cc235 DCHECK(method->IsInvokable()); in AddMethodBreakpoint()
275 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in RemoveMethodBreakpoint()
Dti_breakpoint.cc125 DCHECK(!m->IsDefault() || !m->IsCopied() || !m->IsInvokable()) in Breakpoint()
Dti_redefine.cc2818 if (m.IsInvokable()) { in UpdateClassStructurally()
3039 if (method.IsInvokable()) { in UpdateClassInPlace()
3067 if (!m->IsNative() && m->IsInvokable() && !m->IsObsolete()) { in UpdateClassCommon()
/art/runtime/verifier/
Dclass_verifier.cc95 if (skip_access_checks && it.first->IsInvokable() && !it.first->IsNative()) { in ReverifyClass()
/art/runtime/mirror/
Dclass.cc1116 if (!m.IsNative() && m.IsInvokable()) { in ClearSkipAccessChecksFlagOnAllMethods()
1125 if (!m.IsNative() && m.IsInvokable()) { in ClearMustCountLocksFlagOnAllMethods()
1134 if (!m.IsNative() && m.IsInvokable()) { in ClearDontCompileFlagOnAllMethods()
1143 if (!m.IsNative() && m.IsInvokable()) { in SetSkipAccessChecksFlagOnAllMethods()
/art/runtime/interpreter/mterp/
Dnterp.cc52 method->IsInvokable() && in CanMethodUseNterp()
/art/runtime/interpreter/
Dinterpreter.cc443 } else if (!method->IsInvokable()) { in EnterInterpreterFromInvoke()
Dinterpreter_common.h295 if (UNLIKELY(!called_method->IsInvokable())) { in DoInvoke()
/art/runtime/jit/
Djit.cc1332 if (!method->IsCompilable() || !method->IsInvokable()) { in CompileMethodFromProfile()
/art/compiler/optimizing/
Dinliner.cc261 } else if (!resolved_method->IsInvokable()) { in FindVirtualOrInterfaceTarget()
Dinstruction_builder.cc909 if (!actual_method->IsInvokable()) { in ResolveMethod()
/art/dex2oat/linker/
Dimage_writer.cc3368 DCHECK(method->IsInvokable()) << method->PrettyMethod(); in GetQuickCode()
3456 if (UNLIKELY(!orig->IsInvokable())) { in CopyAndFixupMethod()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc653 if (UNLIKELY(!method->IsInvokable())) { in artQuickToInterpreterBridge()