Searched defs:called_method (Results 1 - 2 of 2) sorted by relevance

/art/compiler/driver/
H A Dcompiler_driver-inl.h256 mirror::ArtMethod* called_method; local
259 called_method = class_linker->ResolveMethod(*devirt_target->dex_file,
267 called_method = class_linker->ResolveMethod(*devirt_target->dex_file,
272 CHECK(called_method != NULL);
273 CHECK(!called_method->IsAbstract());
275 GetCodeAndMethodForDirectCall(invoke_type, kDirect, true, referrer_class, called_method,
/art/runtime/verifier/
H A Dmethod_verifier.cc2190 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_VIRTUAL, is_range, local
2193 if (called_method != nullptr) {
2196 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
2226 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, METHOD_DIRECT, local
2231 if (called_method == nullptr) {
2238 is_constructor = called_method->IsConstructor();
2239 return_type_descriptor = called_method->GetReturnTypeDescriptor();
2242 Handle<mirror::ArtMethod> h_called_method(hs.NewHandle(called_method));
2257 * that the "this" argument is an instance of called_method->klass. Now we further restrict
2258 * that to require that called_method
2309 mirror::ArtMethod* called_method = VerifyInvocationArgs(inst, local
2643 mirror::ArtMethod* called_method = VerifyInvokeVirtualQuickArgs(inst, is_range); local
[all...]

Completed in 456 milliseconds