Home | History | Annotate | Download | only in verifier

Lines Matching refs:called_method

2225       mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL, is_range,
2228 if (called_method != nullptr) {
2231 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
2261 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT,
2266 if (called_method == nullptr) {
2273 is_constructor = called_method->IsConstructor();
2274 return_type_descriptor = called_method->GetReturnTypeDescriptor();
2277 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
2292 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2293 * that to require that called_method->klass is the same as this->klass or this->super,
2344 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst,
2349 if (called_method == nullptr) {
2355 descriptor = called_method->GetReturnTypeDescriptor();
2678 mirror::ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range);
2679 if (called_method != nullptr) {
2680 const char* descriptor = called_method->GetReturnTypeDescriptor();