HomeSort by relevance Sort by last modified time
    Searched refs:heap_location_collector (Results 1 - 4 of 4) sorted by null

  /art/compiler/optimizing/
load_store_analysis_test.cc 69 HeapLocationCollector heap_location_collector(graph_);
70 ASSERT_EQ(heap_location_collector.GetNumberOfHeapLocations(), 0U);
71 ASSERT_FALSE(heap_location_collector.HasHeapStores());
75 heap_location_collector.VisitBasicBlock(entry);
76 ASSERT_EQ(heap_location_collector.GetNumberOfHeapLocations(), 3U);
77 ASSERT_TRUE(heap_location_collector.HasHeapStores());
80 ReferenceInfo* ref = heap_location_collector.FindReferenceInfoOf(array);
84 size_t loc1 = heap_location_collector.FindHeapLocationIndex(ref, field, c1, vec, class_def);
85 size_t loc2 = heap_location_collector.FindHeapLocationIndex(ref, field, c2, vec, class_def);
86 size_t loc3 = heap_location_collector.FindHeapLocationIndex(ref, field, index, vec, class_def)
238 const HeapLocationCollector& heap_location_collector = lsa.GetHeapLocationCollector(); local
402 const HeapLocationCollector& heap_location_collector = lsa.GetHeapLocationCollector(); local
555 const HeapLocationCollector& heap_location_collector = lsa.GetHeapLocationCollector(); local
    [all...]
scheduler_test.cc 278 HeapLocationCollector heap_location_collector(graph_);
279 heap_location_collector.VisitBasicBlock(entry);
280 heap_location_collector.BuildAliasingMatrix();
281 scheduling_graph.SetHeapLocationCollector(heap_location_collector);
285 // from LSA/heap_location_collector.
290 ASSERT_EQ(heap_location_collector.GetNumberOfHeapLocations(), 9U);
291 ASSERT_TRUE(heap_location_collector.HasHeapStores());
299 loc1 = heap_location_collector.GetArrayHeapLocation(arr, c0);
300 loc2 = heap_location_collector.GetArrayHeapLocation(arr, c1);
301 ASSERT_FALSE(heap_location_collector.MayAlias(loc1, loc2))
    [all...]
scheduler.h 276 void SetHeapLocationCollector(const HeapLocationCollector& heap_location_collector) {
277 heap_location_collector_ = &heap_location_collector;
load_store_elimination.cc 958 const HeapLocationCollector& heap_location_collector = lsa_.GetHeapLocationCollector(); local
    [all...]

Completed in 59 milliseconds