Home
last modified time | relevance | path

Searched refs:integer_cache (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dintrinsic_objects.cc40 ObjPtr<mirror::ObjectArray<mirror::Object>> integer_cache = in LookupIntegerCache() local
43 CHECK(integer_cache != nullptr); in LookupIntegerCache()
44 return integer_cache; in LookupIntegerCache()
/art/dex2oat/linker/
Dimage_writer.cc159 Handle<mirror::ObjectArray<mirror::Object>> integer_cache = in AllocateBootImageLiveObjects() local
163 ((integer_cache != nullptr) ? (/* cache */ 1u + integer_cache->GetLength()) : 0u); in AllocateBootImageLiveObjects()
184 if (integer_cache != nullptr) { in AllocateBootImageLiveObjects()
185 live_objects->Set(index++, integer_cache.Get()); in AllocateBootImageLiveObjects()
186 for (int32_t i = 0, length = integer_cache->GetLength(); i != length; ++i) { in AllocateBootImageLiveObjects()
187 live_objects->Set(index++, integer_cache->Get(i)); in AllocateBootImageLiveObjects()
192 if (kIsDebugBuild && integer_cache != nullptr) { in AllocateBootImageLiveObjects()
193 CHECK_EQ(integer_cache.Get(), IntrinsicObjects::GetIntegerValueOfCache(live_objects)); in AllocateBootImageLiveObjects()
194 for (int32_t i = 0, len = integer_cache->GetLength(); i != len; ++i) { in AllocateBootImageLiveObjects()
195 CHECK_EQ(integer_cache->GetWithoutChecks(i), in AllocateBootImageLiveObjects()