Lines Matching refs:called_method

2900       ArtMethod* called_method = VerifyInvocationArgs(inst, type, is_range);  in CodeFlowVerifyInstruction()  local
2902 if (called_method != nullptr) { in CodeFlowVerifyInstruction()
2903 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_); in CodeFlowVerifyInstruction()
2905 return_type = &FromClass(called_method->GetReturnTypeDescriptor(), in CodeFlowVerifyInstruction()
2932 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, is_range); in CodeFlowVerifyInstruction() local
2936 if (called_method == nullptr) { in CodeFlowVerifyInstruction()
2944 is_constructor = called_method->IsConstructor(); in CodeFlowVerifyInstruction()
2945 return_type_descriptor = called_method->GetReturnTypeDescriptor(); in CodeFlowVerifyInstruction()
2946 mirror::Class* return_type_class = called_method->GetReturnType(can_load_classes_); in CodeFlowVerifyInstruction()
3010 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_STATIC, is_range); in CodeFlowVerifyInstruction() local
3012 if (called_method == nullptr) { in CodeFlowVerifyInstruction()
3019 descriptor = called_method->GetReturnTypeDescriptor(); in CodeFlowVerifyInstruction()
3088 ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_POLYMORPHIC, is_range); in CodeFlowVerifyInstruction() local
3089 if (called_method == nullptr) { in CodeFlowVerifyInstruction()
3099 if (!CheckSignaturePolymorphicMethod(called_method) || in CodeFlowVerifyInstruction()
3446 ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); in CodeFlowVerifyInstruction() local
3447 if (called_method != nullptr) { in CodeFlowVerifyInstruction()
3448 const char* descriptor = called_method->GetReturnTypeDescriptor(); in CodeFlowVerifyInstruction()