Searched refs:called_method (Results 1 – 8 of 8) sorted by relevance
/aosp12/art/runtime/interpreter/ |
H A D | interpreter_common.h | 270 ArtMethod* called_method; in DoInvoke() local 271 called_method = FindMethodToCall<type, do_access_check>( in DoInvoke() 273 if (UNLIKELY(called_method == nullptr)) { in DoInvoke() 278 if (UNLIKELY(!called_method->IsInvokable())) { in DoInvoke() 279 called_method->ThrowInvocationTimeError(); in DoInvoke() 312 DCHECK(called_method->SkipAccessChecks()); in DoInvoke() 313 DCHECK(!called_method->IsNative()); in DoInvoke() 314 DCHECK(!called_method->IsProxyMethod()); in DoInvoke() 315 DCHECK(!called_method->IsIntrinsic()); in DoInvoke() 317 called_method->IsConstructor())); in DoInvoke() [all …]
|
H A D | interpreter_common.cc | 235 static ALWAYS_INLINE bool DoCallCommon(ArtMethod* called_method, 1205 static inline bool DoCallCommon(ArtMethod* called_method, in DoCallCommon() argument 1214 if (UNLIKELY(called_method->GetDeclaringClass()->IsStringClass() in DoCallCommon() 1215 && called_method->IsConstructor())) { in DoCallCommon() 1216 called_method = WellKnownClasses::StringInitToStringFactory(called_method); in DoCallCommon() 1221 CodeItemDataAccessor accessor(called_method->DexInstructionData()); in DoCallCommon() 1233 called_method, in DoCallCommon() 1234 called_method->GetEntryPointFromQuickCompiledCode()); in DoCallCommon() 1247 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoCallCommon() 1269 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoCallCommon() [all …]
|
H A D | interpreter_intrinsics.h | 33 ArtMethod* const called_method,
|
H A D | interpreter_intrinsics.cc | 424 ArtMethod* const called_method, in MterpHandleIntrinsic() argument 429 Intrinsics intrinsic = static_cast<Intrinsics>(called_method->GetIntrinsic()); in MterpHandleIntrinsic()
|
/aosp12/art/runtime/ |
H A D | method_handles.cc | 447 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in MethodHandleInvokeMethod() 514 called_method, called_method->GetEntryPointFromQuickCompiledCode()); in MethodHandleInvokeMethod() 611 called_method, called_method->GetEntryPointFromQuickCompiledCode()); in MethodHandleInvokeTransform() 735 ArtMethod* called_method = RefineTargetMethod(self, in DoInvokePolymorphicMethod() local 742 if (called_method == nullptr) { in DoInvokePolymorphicMethod() 759 return MethodHandleInvokeTransform(called_method, in DoInvokePolymorphicMethod() 768 return MethodHandleInvokeMethod(called_method, in DoInvokePolymorphicMethod() 1185 ArtMethod* called_method = RefineTargetMethod(self, in MethodHandleInvokeExactInternal() local 1192 if (called_method == nullptr) { in MethodHandleInvokeExactInternal() 1210 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in MethodHandleInvokeExactInternal() [all …]
|
/aosp12/art/runtime/entrypoints/quick/ |
H A D | quick_trampoline_entrypoints.cc | 1235 MethodReference called_method(nullptr, 0); in artQuickResolutionTrampoline() local 1240 called_method.dex_file = caller->GetDexFile(); in artQuickResolutionTrampoline() 1297 << called_method.index; in artQuickResolutionTrampoline() 1301 called_method.dex_file = called->GetDexFile(); in artQuickResolutionTrampoline() 1302 called_method.index = called->GetDexMethodIndex(); in artQuickResolutionTrampoline() 1306 called_method.dex_file->GetMethodShorty(called_method.GetMethodId(), &shorty_len); in artQuickResolutionTrampoline() 1317 DCHECK_EQ(caller->GetDexFile(), called_method.dex_file); in artQuickResolutionTrampoline() 1319 self, called_method.index, caller, invoke_type); in artQuickResolutionTrampoline() 1365 *called_method.dex_file, called_method.index); in artQuickResolutionTrampoline() 1366 DCHECK_NE(called_method.index, dex::kDexNoIndex); in artQuickResolutionTrampoline() [all …]
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_stack.cc | 932 bool called_method = false; in GetOwnedMonitorInfoCommon() local 942 called_method = true; in GetOwnedMonitorInfoCommon() 957 if (!called_method) { in GetOwnedMonitorInfoCommon() 1173 art::ArtMethod* called_method = final_frame.GetMethod(); in NonStandardExitFrames() local 1175 if (!CheckFunctions(env, calling_method, called_method)) { in NonStandardExitFrames() 1178 DCHECK(!called_method->IsNative()) << called_method->PrettyMethod(); in NonStandardExitFrames()
|
/aosp12/art/runtime/verifier/ |
H A D | method_verifier.cc | 2934 if (called_method != nullptr) { in CodeFlowVerifyInstruction() 2936 ? called_method->ResolveReturnType() in CodeFlowVerifyInstruction() 2937 : called_method->LookupResolvedReturnType(); in CodeFlowVerifyInstruction() 2970 if (called_method == nullptr) { in CodeFlowVerifyInstruction() 2978 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction() 2981 ? called_method->ResolveReturnType() in CodeFlowVerifyInstruction() 2982 : called_method->LookupResolvedReturnType(); in CodeFlowVerifyInstruction() 3050 if (called_method == nullptr) { in CodeFlowVerifyInstruction() 3057 descriptor = called_method->GetReturnTypeDescriptor(); in CodeFlowVerifyInstruction() 3131 if (called_method == nullptr) { in CodeFlowVerifyInstruction() [all …]
|