Lines Matching refs:GetScopedAllocator

93   SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator());  in Check()
96 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in Check()
108 ScopedArenaVector<LiveInterval*> intervals(GetScopedAllocator()->Adapter()); in TEST_F()
113 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 0)); in TEST_F()
114 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 1)); in TEST_F()
125 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
127 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
138 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
140 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
151 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
153 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
164 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
167 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
332 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in Loop3()
335 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in Loop3()
365 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
416 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in DeadPhi()
419 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in DeadPhi()
440 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
442 RegisterAllocatorLinearScan register_allocator(GetScopedAllocator(), &codegen, liveness); in TEST_F()
462 LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
466 interval = LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
470 interval = LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
566 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
571 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
582 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
589 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
600 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
607 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
618 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
625 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
681 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedInRegisterHint()
685 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedInRegisterHint()
695 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedInRegisterHint()
703 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedInRegisterHint()
749 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in SameAsFirstInputHint()
753 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in SameAsFirstInputHint()
764 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in SameAsFirstInputHint()
774 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in SameAsFirstInputHint()
818 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedExactInRegisterAndSameOutputHint()
822 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedExactInRegisterAndSameOutputHint()
872 BuildInterval(phi_ranges, arraysize(phi_ranges), GetScopedAllocator(), -1, user); in TEST_F()
876 LiveInterval* first = BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), -1, one); in TEST_F()
877 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 8)); in TEST_F()
878 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 7)); in TEST_F()
879 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 6)); in TEST_F()
888 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), -1, two); in TEST_F()
899 LiveInterval* third = BuildInterval(ranges3, arraysize(ranges3), GetScopedAllocator(), -1, three); in TEST_F()
900 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 8)); in TEST_F()
901 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 4)); in TEST_F()
902 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 3)); in TEST_F()
910 LiveInterval* fourth = BuildInterval(ranges4, arraysize(ranges4), GetScopedAllocator(), -1, four); in TEST_F()
916 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
922 RegisterAllocatorLinearScan register_allocator(GetScopedAllocator(), &codegen, liveness); in TEST_F()
936 ScopedArenaVector<LiveInterval*> intervals(GetScopedAllocator()->Adapter()); in TEST_F()