Home
last modified time | relevance | path

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

/aosp12/art/compiler/optimizing/
H A Dload_store_analysis.h253 heap_locations_(allocator->Adapter(kArenaAllocLSA)), in HeapLocationCollector()
267 heap_locations_.clear(); in CleanUp()
279 return heap_locations_.size(); in GetNumberOfHeapLocations()
283 return heap_locations_[index]; in GetHeapLocation()
287 auto res = std::find(heap_locations_.cbegin(), heap_locations_.cend(), hl); in GetHeapLocationIndex()
288 return std::distance(heap_locations_.cbegin(), res); in GetHeapLocationIndex()
378 for (size_t i = 0; i < heap_locations_.size(); i++) { in FindHeapLocationIndex()
379 HeapLocation* loc = heap_locations_[i]; in FindHeapLocationIndex()
479 HeapLocation* loc1 = heap_locations_[index1]; in ComputeMayAlias()
480 HeapLocation* loc2 = heap_locations_[index2]; in ComputeMayAlias()
[all …]
H A Dload_store_analysis.cc188 for (auto hl : heap_locations_) { in DumpReferenceStats()