Home
last modified time | relevance | path

Searched refs:GetDexCache (Results 26 – 50 of 52) sorted by relevance

123

/art/dex2oat/driver/
Dcompiler_driver.cc1141 MutableHandle<mirror::DexCache> dex_cache = hs.NewHandle(java_lang_Throwable->GetDexCache()); in LoadImageClasses()
1305 DCHECK(!Runtime::Current()->GetHeap()->ObjectIsInBootImageSpace(klass->GetDexCache())) in operator ()()
1394 Handle<mirror::DexCache> dex_cache(mUnit->GetDexCache()); in ComputeInstanceFieldInfo()
1568 const DexFile& original_dex_file = *klass->GetDexCache()->GetDexFile(); in SkipClass()
2240 runtime->GetHeap()->ObjectIsInBootImageSpace(klass->GetDexCache())) { in TryInitializeClass()
2424 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache()); in InternStrings()
2753 dex_cache = hs.NewHandle(klass->GetDexCache()); in CompileDexFile()
/art/runtime/interpreter/
Dinterpreter_common.cc655 Handle<mirror::DexCache> dex_cache(hs.NewHandle(referrer->GetDexCache())); in GetArgumentForBootstrapMethod()
1108 Handle<mirror::DexCache> dex_cache(hs.NewHandle(shadow_frame.GetMethod()->GetDexCache())); in DoResolveCallSite()
1346 ObjPtr<mirror::Class> arg_type = method->GetDexCache()->GetResolvedType(type_idx); in DoCallCommon()
Dunstarted_runtime.cc418 if (klass->IsProxyClass() || klass->GetDexCache() == nullptr) { in UnstartedClassGetDeclaringClass()
436 if (klass->IsProxyClass() || klass->GetDexCache() == nullptr) { in UnstartedClassGetEnclosingClass()
457 if (klass->IsProxyClass() || klass->GetDexCache() == nullptr) { in UnstartedClassGetSignatureAnnotation()
470 if (klass->IsProxyClass() || klass->GetDexCache() == nullptr) { in UnstartedClassIsAnonymousClass()
/art/compiler/optimizing/
Dinstruction_builder.cc845 dex_compilation_unit.GetDexCache(), in ResolveMethod()
880 dex_compilation_unit.GetDexCache().Get(), in ResolveMethod()
1912 dex_compilation_unit_->GetDexCache(), in ResolveField()
1940 dex_compilation_unit_->GetDexCache().Get(), in ResolveField()
2295 type_index, dex_compilation_unit_->GetDexCache(), dex_compilation_unit_->GetClassLoader()); in ResolveClass()
3438 type_index, compilation_unit.GetDexCache().Get(), compilation_unit.GetClassLoader().Get()); in LookupResolvedType()
Doptimizing_compiler.cc1224 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache())); in JitCompile()
/art/dex2oat/dex/
Ddex_to_dex_compiler.cc474 unit_.GetDexCache(), in CompileInvokeVirtual()
/art/runtime/
Dclass_linker.cc1170 DCHECK(klass->IsArrayClass() || klass->IsPrimitive() || klass->GetDexCache() != nullptr); in FinishInit()
3772 CHECK(klass->GetDexCache() != nullptr); in SetupClass()
4518 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache(); in InsertClass()
4677 LOG(WARNING) << error_msg << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8(); in AttemptSupertypeVerification()
4689 ClassReference ref(klass->GetDexCache()->GetDexFile(), klass->GetDexClassDefIndex()); in AttemptSupertypeVerification()
4762 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8(); in VerifyClass()
4815 const DexFile& dex_file = *klass->GetDexCache()->GetDexFile(); in VerifyClass()
4821 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() in VerifyClass()
4844 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() in VerifyClass()
4885 << " in " << klass->GetDexCache()->GetLocation()->ToModifiedUtf8() in VerifyClass()
[all …]
Dclass_linker_test.cc278 EXPECT_TRUE(klass->GetDexCache() != nullptr); in AssertClass()
984 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache(); in TEST_F()
1005 Handle<mirror::DexCache> dex_cache = hs.NewHandle(all_fields_klass->GetDexCache()); in TEST_F()
1040 Handle<mirror::DexCache> dex_cache = hs.NewHandle(klass->GetDexCache()); in TEST_F()
Dart_method.h682 ObjPtr<mirror::DexCache> GetDexCache() REQUIRES_SHARED(Locks::mutator_lock_);
Dtransaction_test.cc499 Handle<mirror::DexCache> h_dex_cache(hs.NewHandle(h_klass->GetDexCache())); in TEST_F()
/art/runtime/mirror/
Dclass-inl.h103 inline ObjPtr<DexCache> Class::GetDexCache() { in GetDexCache() function
861 return *GetDexCache<kDefaultVerifyFlags, kWithoutReadBarrier>()->GetDexFile(); in GetDexFile()
Dclass.h698 ObjPtr<DexCache> GetDexCache() REQUIRES_SHARED(Locks::mutator_lock_);
/art/runtime/verifier/
Dverifier_deps.cc109 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache(); in GetClassDescriptorStringId()
281 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache(); in IsInClassPath()
/art/dex2oat/linker/
Doat_writer.cc1554 declaring_class->GetDexCache(), in StartClass()
1944 ObjPtr<mirror::DexCache> GetDexCache(const DexFile* target_dex_file) in GetDexCache() function in art::linker::OatWriter::WriteCodeMethodVisitor
1954 ObjPtr<mirror::DexCache> dex_cache = GetDexCache(patch.TargetTypeDexFile()); in GetTargetType()
1965 linker->LookupString(patch.TargetStringIndex(), GetDexCache(patch.TargetStringDexFile())); in GetTargetString()
Dimage_writer.cc1132 ObjPtr<mirror::DexCache> dex_cache = klass->GetDexCache(); in PruneImageClassInternal()
3557 DCHECK(klass->GetDexCache() == nullptr); in GetOatIndexForClass()
3560 DCHECK(klass->GetDexCache() != nullptr); in GetOatIndexForClass()
/art/runtime/interpreter/mterp/
Dmterp.cc788 klass->GetDexCache<kDefaultVerifyFlags, kWithoutReadBarrier>(); in MterpFieldAccessFast()
/art/runtime/jni/
Djava_vm_ext.cc927 ObjPtr<mirror::DexCache> dex_cache = caller->GetDexCache(); in LoadNativeLibrary()
Djni_internal.cc212 << " in " << c->GetDexCache()->GetLocation()->ToModifiedUtf8() in ReportInvalidJNINativeMethod()
2398 << c->GetDexCache()->GetLocation()->ToModifiedUtf8(); in RegisterNatives()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc1201 ObjPtr<mirror::DexCache> dex_cache = caller->GetDexCache(); in DumpB74410240DebugData()
2367 method_index, referrer->GetDexCache(), referrer->GetClassLoader()); in artLookupResolvedMethod()
/art/dex2oat/
Dverifier_deps_test.cc148 Handle<mirror::DexCache> dex_cache_handle(hs.NewHandle(klass_Main_->GetDexCache())); in VerifyMethod()
/art/openjdkjvmti/
Dti_class.cc722 if (!klass->IsProxyClass() && klass->GetDexCache() != nullptr) { in GetClassSignature()
Dti_redefine.cc800 art::ObjPtr<art::mirror::DexCache> current_dex_cache(GetMirrorClass()->GetDexCache()); in AllocateOrGetOriginalDexFile()
837 ObsoleteMap map(ext->GetObsoleteMethods(), ext->GetObsoleteDexCaches(), art_klass->GetDexCache()); in FindAndAllocateObsoleteMethods()
1978 dch.Assign(old_type->GetDexCache()); in FinishNewClassAllocations()
Dti_method.cc640 hs.NewHandle(method->GetDexCache()), in InferSlotTypeFromVerifier()
/art/runtime/jit/
Djit.cc1848 const DexFile& dex_file = *cls->GetDexCache()->GetDexFile(); in CanAssumeInitialized()
Djit_code_cache.cc1663 if (cls->GetDexCache() == nullptr) { in GetProfiledMethods()

123