Home
last modified time | relevance | path

Searched refs:IsProxyMethod (Results 1 – 25 of 30) sorted by relevance

12

/art/runtime/
Dart_method-inl.h171 DCHECK(!IsProxyMethod()); in GetDeclaringClassDescriptor()
182 DCHECK(!IsProxyMethod()); in GetShorty()
190 DCHECK(!IsProxyMethod()); in GetSignature()
200 DCHECK(!IsProxyMethod()); in GetName()
210 DCHECK(!IsProxyMethod()); in GetNameView()
220 DCHECK(!IsProxyMethod()); in ResolveNameString()
230 DCHECK(!IsProxyMethod()); in IsResolvedTypeIdx()
235 DCHECK(!IsProxyMethod()); in GetLineNumFromDexPC()
243 DCHECK(!IsProxyMethod()); in GetPrototype()
249 DCHECK(!IsProxyMethod()); in GetParameterTypeList()
[all …]
Dimtable-inl.h41 if (method->IsProxyMethod()) { in GetImtHashComponents()
Dart_method.cc220 if (IsProxyMethod()) { in FindOverriddenMethod()
335 (self->IsForceInterpreter() && !IsNative() && !IsProxyMethod() && IsInvokable()))) { in Invoke()
361 (IsNative() || !IsInvokable() || IsProxyMethod() || IsObsolete()) in Invoke()
579 DCHECK(IsProxyMethod() && !IsConstructor()); in GetOatQuickMethodHeader()
616 << ", proxy=" << std::boolalpha << IsProxyMethod(); in GetOatQuickMethodHeader()
668 if (IsNative() || !IsInvokable() || IsProxyMethod()) { in HasAnyCompiledCode()
Ddebugger.h57 return m != nullptr && !m->IsProxyMethod() && !m->IsNative(); in IsForcedInterpreterNeededForUpcall()
Dinstrumentation.cc231 !method->IsProxyMethod(); in NeedDebugVersionFor()
235 if (!method->IsInvokable() || method->IsProxyMethod()) { in InstallStubsForMethod()
1015 CHECK(!method->IsProxyMethod()); in Deoptimize()
1038 CHECK(!method->IsProxyMethod()); in Undeoptimize()
1145 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in GetCodeForInvoke()
1450 } else if (m->IsProxyMethod()) { in GetRuntimeMethodShorty()
Dart_method.h315 bool IsProxyMethod() REQUIRES_SHARED(Locks::mutator_lock_);
519 if (UNLIKELY(IsNative() || IsProxyMethod() || !IsInvokable())) { in GetProfilingInfo()
531 DCHECK(!IsProxyMethod()); in SetProfilingInfoPtrSize()
Dclass_linker-inl.h310 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in GetResolvedMethod()
352 DCHECK(!referrer->IsProxyMethod() || referrer->IsConstructor()); in ResolveMethod()
Dstack.cc169 } else if (m->IsProxyMethod()) { in GetThisObject()
678 if (method->IsNative() || method->IsRuntimeMethod() || method->IsProxyMethod()) { in AssertPcIsWithinQuickCode()
800 if (method->IsProxyMethod()) { in GetCurrentQuickFrameInfo()
Dmonitor.cc165 if (lock_owner_method != nullptr && UNLIKELY(lock_owner_method->IsProxyMethod())) { in SetLockingMethod()
201 DCHECK(lock_owner_method == nullptr || !lock_owner_method->IsProxyMethod()); in SetLockingMethod()
209 DCHECK(lock_owner_method == nullptr || !lock_owner_method->IsProxyMethod()); in SetLockingMethodNoProxy()
1475 if (m->IsProxyMethod()) { in VisitLocks()
Dmethod_handles.cc386 DCHECK(method->IsNative() || method->IsProxyMethod()); in GetInsForProxyOrNativeMethod()
447 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in MethodHandleInvokeMethod()
1210 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in MethodHandleInvokeExactInternal()
Dcha.cc200 method->IsProxyMethod()) { in VisitFrame()
Dthread.cc2679 saved_frames_[depth_].second = m->IsProxyMethod() ? dex::kDexNoIndex : GetDexPc(); in VisitFrame()
2765 AddFrame(m, m->IsProxyMethod() ? dex::kDexNoIndex : GetDexPc()); in VisitFrame()
2863 if (method->IsProxyMethod()) { in CreateStackTraceElement()
3800 if (!m->IsNative() && !m->IsRuntimeMethod() && (!m->IsProxyMethod() || m->IsConstructor())) { in VisitQuickFrameWithVregCallback()
3847 } else if (!m->IsRuntimeMethod() && m->IsProxyMethod()) { in VisitQuickFrameWithVregCallback()
Druntime.cc2840 !m.IsProxyMethod()) { in operator ()()
2847 DCHECK(!m.IsProxyMethod()); in operator ()()
/art/runtime/native/
Djava_lang_reflect_Parameter.cc47 if (method->IsProxyMethod()) { in Parameter_getAnnotationNative()
Djava_lang_reflect_Executable.cc62 if (method->IsProxyMethod()) { in Executable_getAnnotationNative()
83 if (method->IsProxyMethod()) { in Executable_getParameterAnnotationsNative()
/art/test/1945-proxy-method-arguments/
Dget_args.cc63 CHECK(method->IsProxyMethod()) << method->PrettyMethod(); in VisitQuickFrameAtSearchedDepth()
/art/compiler/jit/
Djit_compiler.cc173 DCHECK(!method->IsProxyMethod()); in CompileMethod()
/art/openjdkjvmti/
Ddeopt_manager.cc236 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in AddMethodBreakpoint()
276 DCHECK(!method->IsProxyMethod()) << method->PrettyMethod(); in RemoveMethodBreakpoint()
Dti_method.cc182 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetArgumentsSize()
303 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMaxLocals()
416 if (art_method->IsProxyMethod() || art_method->IsAbstract()) { in GetMethodLocation()
469 if (art_method->IsProxyMethod()) { in GetLineNumberTable()
576 if (method->IsNative() || method->IsProxyMethod()) { in Run()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc230 CHECK((*sp)->IsProxyMethod()); in GetProxyThisObjectReference()
810 DCHECK(proxy_method->IsProxyMethod()) << proxy_method->PrettyMethod(); in artQuickProxyInvokeHandler()
842 DCHECK(!interface_method->IsProxyMethod()) << interface_method->PrettyMethod(); in artQuickProxyInvokeHandler()
1037 DCHECK(!method->IsProxyMethod()) in artInstrumentationMethodEntryFromCode()
2365 DCHECK(!referrer->IsProxyMethod()); in artLookupResolvedMethod()
/art/runtime/interpreter/
Dinterpreter_common.cc76 if (!method->SkipAccessChecks() || method->IsNative() || method->IsProxyMethod()) { in UseFastInterpreterToInterpreterInvoke()
1251 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoCallCommon()
1273 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoCallCommon()
Dinterpreter_common.h335 DCHECK(!called_method->IsProxyMethod()); in DoInvoke()
/art/compiler/optimizing/
Dinliner.cc398 if (single_impl->IsProxyMethod()) { in TryCHADevirtualization()
1351 DCHECK(!method->IsProxyMethod()); in TryInlineAndReplace()
1482 if (method->IsProxyMethod()) { in IsInliningSupported()
/art/runtime/interpreter/mterp/
Dnterp.cc57 !method->IsProxyMethod() && in CanMethodUseNterp()
/art/runtime/jit/
Dprofile_saver.cc385 DCHECK(!method.IsProxyMethod()); in SampleClassesAndExecutedMethods()

12