summaryrefslogtreecommitdiff
path: root/runtime/class_linker_test.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2021-02-23 01:05:32 +0000
committer David Srbecky <dsrbecky@google.com> 2021-10-05 13:12:20 +0000
commit6fbcc2915949d0680e6e9578a5836ee8dcbc467f (patch)
treeb5dfdf2ab21f693ca2d702345263bcefa9448291 /runtime/class_linker_test.cc
parent0069ad7ddb159a8d368e0f6a289d0335238ae6c4 (diff)
Change ClassLinker::dex_caches_ from list to unordered_map.
Move the DexFile* pointer from struct field out to map key. This makes it easy and fast to find DexCache from DexFile. Add check that given DexFile* is registered only once. Test: test.py -b -r --host --64 Test: generated images are identical as before Change-Id: I84a6d6cbf963af2408abe5bb5e4c99d0ca11df78
Diffstat (limited to 'runtime/class_linker_test.cc')
-rw-r--r--runtime/class_linker_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc
index e0f498d6aa..035a9cbfa5 100644
--- a/runtime/class_linker_test.cc
+++ b/runtime/class_linker_test.cc
@@ -1520,7 +1520,8 @@ TEST_F(ClassLinkerTest, RegisterDexFileName) {
MutableHandle<mirror::DexCache> dex_cache(hs.NewHandle<mirror::DexCache>(nullptr));
{
ReaderMutexLock mu(soa.Self(), *Locks::dex_lock_);
- for (const ClassLinker::DexCacheData& data : class_linker->GetDexCachesData()) {
+ for (const auto& entry : class_linker->GetDexCachesData()) {
+ const ClassLinker::DexCacheData& data = entry.second;
dex_cache.Assign(soa.Self()->DecodeJObject(data.weak_root)->AsDexCache());
if (dex_cache != nullptr) {
break;