Lines Matching refs:GetScopedAllocator

91   SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator());  in Check()
94 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in Check()
106 ScopedArenaVector<LiveInterval*> intervals(GetScopedAllocator()->Adapter()); in TEST_F()
111 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 0)); in TEST_F()
112 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 1)); in TEST_F()
123 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
125 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
136 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
138 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
149 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
151 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
162 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0)); in TEST_F()
165 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1)); in TEST_F()
330 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in Loop3()
333 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in Loop3()
363 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
414 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in DeadPhi()
417 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in DeadPhi()
438 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
440 RegisterAllocatorLinearScan register_allocator(GetScopedAllocator(), &codegen, liveness); in TEST_F()
460 LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
464 interval = LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
468 interval = LiveInterval::MakeFixedInterval(GetScopedAllocator(), 0, DataType::Type::kInt32); in TEST_F()
564 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
569 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
580 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
587 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
598 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
605 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
616 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in PhiHint()
623 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in PhiHint()
679 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedInRegisterHint()
683 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedInRegisterHint()
693 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedInRegisterHint()
701 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedInRegisterHint()
747 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in SameAsFirstInputHint()
751 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in SameAsFirstInputHint()
762 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in SameAsFirstInputHint()
772 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in SameAsFirstInputHint()
816 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in ExpectedExactInRegisterAndSameOutputHint()
820 RegisterAllocator::Create(GetScopedAllocator(), &codegen, liveness, strategy); in ExpectedExactInRegisterAndSameOutputHint()
870 BuildInterval(phi_ranges, arraysize(phi_ranges), GetScopedAllocator(), -1, user); in TEST_F()
874 LiveInterval* first = BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), -1, one); in TEST_F()
875 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 8)); in TEST_F()
876 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 7)); in TEST_F()
877 first->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 6)); in TEST_F()
886 LiveInterval* second = BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), -1, two); in TEST_F()
897 LiveInterval* third = BuildInterval(ranges3, arraysize(ranges3), GetScopedAllocator(), -1, three); in TEST_F()
898 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 8)); in TEST_F()
899 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 4)); in TEST_F()
900 third->uses_.push_front(*new (GetScopedAllocator()) UsePosition(user, 0u, 3)); in TEST_F()
908 LiveInterval* fourth = BuildInterval(ranges4, arraysize(ranges4), GetScopedAllocator(), -1, four); in TEST_F()
914 SsaLivenessAnalysis liveness(graph, &codegen, GetScopedAllocator()); in TEST_F()
920 RegisterAllocatorLinearScan register_allocator(GetScopedAllocator(), &codegen, liveness); in TEST_F()
934 ScopedArenaVector<LiveInterval*> intervals(GetScopedAllocator()->Adapter()); in TEST_F()