Lines Matching refs:called_method

419 static inline bool DoCallPolymorphic(ArtMethod* called_method,  in DoCallPolymorphic()  argument
429 const DexFile::CodeItem* code_item = called_method->GetCodeItem(); in DoCallPolymorphic()
448 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoCallPolymorphic()
449 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method); in DoCallPolymorphic()
455 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0); in DoCallPolymorphic()
547 static inline bool DoCallTransform(ArtMethod* called_method, in DoCallTransform() argument
568 const DexFile::CodeItem* code_item = called_method->GetCodeItem(); in DoCallTransform()
574 CREATE_SHADOW_FRAME(kNumRegsForTransform, &shadow_frame, called_method, /* dex pc */ 0); in DoCallTransform()
721 ArtMethod* called_method = RefineTargetMethod(self, in DoInvokePolymorphicMethod() local
728 if (called_method == nullptr) { in DoInvokePolymorphicMethod()
745 return DoCallTransform<is_range>(called_method, in DoInvokePolymorphicMethod()
755 return DoCallPolymorphic<is_range>(called_method, in DoInvokePolymorphicMethod()
1051 ArtMethod* called_method = RefineTargetMethod(self, in DoInvokePolymorphicExact() local
1058 if (called_method == nullptr) { in DoInvokePolymorphicExact()
1064 const DexFile::CodeItem* code_item = called_method->GetCodeItem(); in DoInvokePolymorphicExact()
1076 DCHECK(called_method->IsNative() || called_method->IsProxyMethod()); in DoInvokePolymorphicExact()
1077 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method); in DoInvokePolymorphicExact()
1084 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0); in DoInvokePolymorphicExact()