HomeSort by relevance Sort by last modified time
    Searched defs:resolved_method (Results 1 - 6 of 6) sorted by null

  /art/compiler/dex/
mir_method_info.cc 65 mirror::ArtMethod* resolved_method = local
68 if (UNLIKELY(resolved_method == nullptr)) {
71 compiler_driver->GetResolvedMethodDexFileLocation(resolved_method,
73 it->vtable_idx_ = compiler_driver->GetResolvedMethodVTableIndex(resolved_method, invoke_type);
77 soa, dex_cache, class_loader, mUnit, referrer_class.Get(), resolved_method, &invoke_type,
80 compiler_driver->NeedsClassInitialization(referrer_class.Get(), resolved_method);
  /art/compiler/driver/
compiler_driver-inl.h 173 mirror::ArtMethod* resolved_method = mUnit->GetClassLinker()->ResolveMethod( local
176 DCHECK_EQ(resolved_method == nullptr, soa.Self()->IsExceptionPending());
177 if (UNLIKELY(resolved_method == nullptr)) {
182 if (UNLIKELY(resolved_method->CheckIncompatibleClassChange(invoke_type))) {
186 return resolved_method;
190 mirror::ArtMethod* resolved_method, const DexFile** declaring_dex_file,
192 mirror::Class* declaring_class = resolved_method->GetDeclaringClass();
195 *declaring_method_idx = resolved_method->GetDexMethodIndex();
199 mirror::ArtMethod* resolved_method, InvokeType type) {
201 return resolved_method->GetMethodIndex()
    [all...]
compiler_driver.cc 1288 mirror::ArtMethod* resolved_method; local
    [all...]
  /art/runtime/
class_linker-inl.h 110 mirror::ArtMethod* resolved_method = referrer->GetDexCacheResolvedMethod(method_idx); local
111 if (resolved_method == nullptr || resolved_method->IsRuntimeMethod()) {
114 return resolved_method;
120 mirror::ArtMethod* resolved_method = GetResolvedMethod(method_idx, *referrer, type); local
121 if (LIKELY(resolved_method != nullptr)) {
122 return resolved_method;
130 resolved_method = ResolveMethod(*dex_file, method_idx, h_dex_cache, h_class_loader, h_referrer,
134 return resolved_method;
class_linker.cc 3963 mirror::ArtMethod* resolved_method = dex_cache->GetResolvedMethod(method_idx); local
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 357 mirror::ArtMethod* resolved_method = class_linker->GetResolvedMethod(method_idx, *referrer, type); local
358 if (resolved_method == nullptr) {
363 resolved_method = class_linker->ResolveMethod(self, method_idx, referrer, type);
365 if (UNLIKELY(resolved_method == nullptr)) {
377 if (UNLIKELY(resolved_method->CheckIncompatibleClassChange(type))) {
378 ThrowIncompatibleClassChangeError(type, resolved_method->GetInvokeType(), resolved_method,
382 mirror::Class* methods_class = resolved_method->GetDeclaringClass();
385 referring_class->CheckResolvedMethodAccess<type>(methods_class, resolved_method,
395 return resolved_method;
542 mirror::ArtMethod* resolved_method = local
    [all...]

Completed in 121 milliseconds