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

/art/runtime/verifier/
H A Dreg_type.cc543 RegType& RegType::HighHalf(RegTypeCache* cache) const {
546 return cache->LongHi();
548 return cache->DoubleHi();
551 return cache->FromCat2ConstHi(ConstantValue(), false);
617 RegType& RegType::GetSuperClass(RegTypeCache* cache) { argument
624 return cache->FromClass(super_klass->GetDescriptor(&temp), super_klass, false);
626 return cache->Zero();
632 return cache->JavaLangObject(true);
634 return cache->FromUnresolvedSuperClass(*this);
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc575 uint32_t DexFileMethodInliner::FindClassIndex(const DexFile* dex_file, IndexCache* cache, argument
577 uint32_t* class_index = &cache->class_indexes[index];
598 uint32_t DexFileMethodInliner::FindNameIndex(const DexFile* dex_file, IndexCache* cache, argument
600 uint32_t* name_index = &cache->name_indexes[index];
614 uint32_t DexFileMethodInliner::FindProtoIndex(const DexFile* dex_file, IndexCache* cache, argument
616 uint32_t* proto_index = &cache->proto_indexes[index];
622 uint32_t return_index = FindClassIndex(dex_file, cache, proto_def.return_type);
633 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]);
652 uint32_t DexFileMethodInliner::FindMethodIndex(const DexFile* dex_file, IndexCache* cache, argument
654 uint32_t declaring_class_index = FindClassIndex(dex_file, cache, method_de
685 IndexCache cache; local
[all...]

Completed in 1064 milliseconds