Home | History | Annotate | Download | only in runtime

Lines Matching refs:called_method

419 called_method,
429 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
448 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
449 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method);
455 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
518 called_method, called_method->GetEntryPointFromQuickCompiledCode());
555 static inline bool DoCallTransform(ArtMethod* called_method,
576 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
582 CREATE_SHADOW_FRAME(kNumRegsForTransform, &shadow_frame, called_method, /* dex pc */ 0);
614 called_method, called_method->GetEntryPointFromQuickCompiledCode());
732 ArtMethod* called_method = RefineTargetMethod(self,
739 if (called_method == nullptr) {
756 return DoCallTransform<is_range>(called_method,
766 return DoCallPolymorphic<is_range>(called_method,
1062 ArtMethod* called_method = RefineTargetMethod(self,
1069 if (called_method == nullptr) {
1075 const DexFile::CodeItem* code_item = called_method->GetCodeItem();
1087 DCHECK(called_method->IsNative() || called_method->IsProxyMethod());
1088 num_regs = num_input_regs = GetInsForProxyOrNativeMethod(called_method);
1095 CREATE_SHADOW_FRAME(num_regs, &shadow_frame, called_method, /* dex pc */ 0);
1106 called_method, called_method->GetEntryPointFromQuickCompiledCode());