Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 14 of 14) sorted by relevance

/art/runtime/verifier/
Dreg_type_test.cc37 RegTypeCache cache(true); in TEST_F() local
38 const RegType& ref_type_const_0 = cache.FromCat1Const(10, true); in TEST_F()
39 const RegType& ref_type_const_1 = cache.FromCat1Const(10, true); in TEST_F()
40 const RegType& ref_type_const_2 = cache.FromCat1Const(30, true); in TEST_F()
41 const RegType& ref_type_const_3 = cache.FromCat1Const(30, false); in TEST_F()
46 const RegType& ref_type_const_wide_0 = cache.FromCat2ConstHi(50, true); in TEST_F()
47 const RegType& ref_type_const_wide_1 = cache.FromCat2ConstHi(50, true); in TEST_F()
50 const RegType& ref_type_const_wide_2 = cache.FromCat2ConstLo(50, true); in TEST_F()
51 const RegType& ref_type_const_wide_3 = cache.FromCat2ConstLo(50, true); in TEST_F()
52 const RegType& ref_type_const_wide_4 = cache.FromCat2ConstLo(55, true); in TEST_F()
[all …]
Dreg_type.cc450 const RegType& RegType::HighHalf(RegTypeCache* cache) const { in HighHalf()
453 return cache->LongHi(); in HighHalf()
455 return cache->DoubleHi(); in HighHalf()
459 return cache->FromCat2ConstHi(const_val->ConstantValue(), false); in HighHalf()
498 const RegType& RegType::GetSuperClass(RegTypeCache* cache) const { in GetSuperClass()
505 return cache->FromClass(super_klass->GetDescriptor(&temp), super_klass, false); in GetSuperClass()
507 return cache->Zero(); in GetSuperClass()
513 return cache->JavaLangObject(true); in GetSuperClass()
515 return cache->FromUnresolvedSuperClass(*this); in GetSuperClass()
Dreg_type.h115 const RegType& HighHalf(RegTypeCache* cache) const
189 const RegType& GetSuperClass(RegTypeCache* cache) const
/art/runtime/jit/
Djit_instrumentation.cc29 explicit JitCompileTask(ArtMethod* method, JitInstrumentationCache* cache) in JitCompileTask() argument
30 : method_(method), cache_(cache) { in JitCompileTask()
115 JitInstrumentationListener::JitInstrumentationListener(JitInstrumentationCache* cache) in JitInstrumentationListener() argument
116 : instrumentation_cache_(cache) { in JitInstrumentationListener()
Djit_instrumentation.h67 explicit JitInstrumentationListener(JitInstrumentationCache* cache);
/art/compiler/dex/quick/
Ddex_file_method_inliner.h340 static uint32_t FindClassIndex(const DexFile* dex_file, IndexCache* cache,
342 static uint32_t FindNameIndex(const DexFile* dex_file, IndexCache* cache,
344 static uint32_t FindProtoIndex(const DexFile* dex_file, IndexCache* cache,
346 static uint32_t FindMethodIndex(const DexFile* dex_file, IndexCache* cache,
Ddex_file_method_inliner.cc703 uint32_t DexFileMethodInliner::FindClassIndex(const DexFile* dex_file, IndexCache* cache, in FindClassIndex() argument
705 uint32_t* class_index = &cache->class_indexes[index]; in FindClassIndex()
726 uint32_t DexFileMethodInliner::FindNameIndex(const DexFile* dex_file, IndexCache* cache, in FindNameIndex() argument
728 uint32_t* name_index = &cache->name_indexes[index]; in FindNameIndex()
742 uint32_t DexFileMethodInliner::FindProtoIndex(const DexFile* dex_file, IndexCache* cache, in FindProtoIndex() argument
744 uint32_t* proto_index = &cache->proto_indexes[index]; in FindProtoIndex()
750 uint32_t return_index = FindClassIndex(dex_file, cache, proto_def.return_type); in FindProtoIndex()
761 uint32_t param_index = FindClassIndex(dex_file, cache, proto_def.params[i]); in FindProtoIndex()
780 uint32_t DexFileMethodInliner::FindMethodIndex(const DexFile* dex_file, IndexCache* cache, in FindMethodIndex() argument
782 uint32_t declaring_class_index = FindClassIndex(dex_file, cache, method_def.declaring_class); in FindMethodIndex()
[all …]
/art/
DAndroid.mk47 rm -rf $(TMPDIR)/$(USER)/test-*/dalvik-cache/*
48 rm -rf $(TMPDIR)/android-data/dalvik-cache/*
50 rm -rf /tmp/$(USER)/test-*/dalvik-cache/*
51 rm -rf /tmp/android-data/dalvik-cache/*
67 adb shell rm -rf data/run-test/test-*/dalvik-cache/*
/art/build/
DAndroid.common_path.mk23 ART_TARGET_DALVIK_CACHE_DIR := /data/dalvik-cache
/art/test/115-native-bridge/
Dexpected.txt1 Code cache exists: './code_cache'.
/art/runtime/gc/space/
Dimage_space.cc397 std::unique_ptr<ImageHeader> cache(ReadSpecificImageHeader(cache_filename.c_str(), in ReadImageHeader() local
400 (cache.get() != nullptr && cache->GetOatChecksum() == system->GetOatChecksum())) { in ReadImageHeader()
401 return cache.release(); in ReadImageHeader()
/art/tools/
Dart84 mkdir -p $ANDROID_DATA/dalvik-cache/{arm,arm64,x86,x86_64}
/art/test/etc/
Drun-test-jar302 ISA=$(adb shell ls -F /data/dalvik-cache | grep -Ewo "${ARCHITECTURES_PATTERN}")
/art/compiler/optimizing/
Dnodes.h302 ArenaSafeMap<ValueType, InstructionType*>* cache) { in CreateConstant() argument
305 auto cached_constant = cache->find(value); in CreateConstant()
306 if (cached_constant != cache->end()) { in CreateConstant()
313 cache->Overwrite(value, constant); in CreateConstant()