Searched refs:cache (Results 1 – 11 of 11) sorted by relevance
/art/runtime/verifier/ |
D | reg_type_test.cc | 35 RegTypeCache cache(true); in TEST_F() local 36 RegType& ref_type_const_0 = cache.FromCat1Const(10, true); in TEST_F() 37 RegType& ref_type_const_1 = cache.FromCat1Const(10, true); in TEST_F() 38 RegType& ref_type_const_2 = cache.FromCat1Const(30, true); in TEST_F() 39 RegType& ref_type_const_3 = cache.FromCat1Const(30, false); in TEST_F() 44 RegType& ref_type_const_wide_0 = cache.FromCat2ConstHi(50, true); in TEST_F() 45 RegType& ref_type_const_wide_1 = cache.FromCat2ConstHi(50, true); in TEST_F() 48 RegType& ref_type_const_wide_2 = cache.FromCat2ConstLo(50, true); in TEST_F() 49 RegType& ref_type_const_wide_3 = cache.FromCat2ConstLo(50, true); in TEST_F() 50 RegType& ref_type_const_wide_4 = cache.FromCat2ConstLo(55, true); in TEST_F() [all …]
|
D | reg_type.cc | 543 RegType& RegType::HighHalf(RegTypeCache* cache) const { in HighHalf() 546 return cache->LongHi(); in HighHalf() 548 return cache->DoubleHi(); in HighHalf() 551 return cache->FromCat2ConstHi(ConstantValue(), false); in HighHalf() 617 RegType& RegType::GetSuperClass(RegTypeCache* cache) { in GetSuperClass() argument 624 return cache->FromClass(super_klass->GetDescriptor(&temp), super_klass, false); in GetSuperClass() 626 return cache->Zero(); in GetSuperClass() 632 return cache->JavaLangObject(true); in GetSuperClass() 634 return cache->FromUnresolvedSuperClass(*this); in GetSuperClass()
|
D | reg_type.h | 123 RegType& HighHalf(RegTypeCache* cache) const SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 222 RegType& GetSuperClass(RegTypeCache* cache)
|
/art/compiler/dex/quick/ |
D | dex_file_method_inliner.h | 293 static uint32_t FindClassIndex(const DexFile* dex_file, IndexCache* cache, 295 static uint32_t FindNameIndex(const DexFile* dex_file, IndexCache* cache, 297 static uint32_t FindProtoIndex(const DexFile* dex_file, IndexCache* cache, 299 static uint32_t FindMethodIndex(const DexFile* dex_file, IndexCache* cache,
|
D | dex_file_method_inliner.cc | 575 uint32_t DexFileMethodInliner::FindClassIndex(const DexFile* dex_file, IndexCache* cache, in FindClassIndex() argument 577 uint32_t* class_index = &cache->class_indexes[index]; in FindClassIndex() 598 uint32_t DexFileMethodInliner::FindNameIndex(const DexFile* dex_file, IndexCache* cache, in FindNameIndex() argument 600 uint32_t* name_index = &cache->name_indexes[index]; in FindNameIndex() 614 uint32_t DexFileMethodInliner::FindProtoIndex(const DexFile* dex_file, IndexCache* cache, in FindProtoIndex() argument 616 uint32_t* proto_index = &cache->proto_indexes[index]; in FindProtoIndex() 622 uint32_t return_index = FindClassIndex(dex_file, cache, proto_def.return_type); in FindProtoIndex() 633 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex() 652 uint32_t DexFileMethodInliner::FindMethodIndex(const DexFile* dex_file, IndexCache* cache, in FindMethodIndex() argument 654 uint32_t declaring_class_index = FindClassIndex(dex_file, cache, method_def.declaring_class); in FindMethodIndex() [all …]
|
/art/tools/ |
D | art | 62 mkdir -p $ANDROID_DATA/dalvik-cache/{x86,x86_64}
|
/art/ |
D | Android.mk | 71 rm -rf $(TMPDIR)/$(USER)/test-*/dalvik-cache/* 72 rm -rf $(TMPDIR)/android-data/dalvik-cache/* 74 rm -rf /tmp/$(USER)/test-*/dalvik-cache/* 75 rm -rf /tmp/android-data/dalvik-cache/* 90 adb shell rm -rf data/run-test/test-*/dalvik-cache/* 301 OUT_OAT_FILE := $(call dalvik-cache-out,$(1)/classes.dex)
|
/art/build/ |
D | Android.common_path.mk | 23 ART_TARGET_DALVIK_CACHE_DIR := /data/dalvik-cache
|
/art/test/115-native-bridge/ |
D | expected.txt | 1 Code cache exists: './code_cache'.
|
/art/test/etc/ |
D | push-and-run-prebuilt-test-jar | 143 ARCH=$(adb shell ls -F /data/dalvik-cache | grep -Ewo "${ARCHITECTURES_PATTERN}")
|
/art/runtime/gc/space/ |
D | image_space.cc | 361 std::unique_ptr<ImageHeader> cache(ReadSpecificImageHeader(cache_filename.c_str(), in ReadImageHeader() local 364 (cache.get() != nullptr && cache->GetOatChecksum() == system->GetOatChecksum())) { in ReadImageHeader() 365 return cache.release(); in ReadImageHeader()
|