Home
last modified time | relevance | path

Searched refs:FirstIntersectionWith (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dlive_interval_test.cc99 TEST(LiveInterval, FirstIntersectionWith) { in TEST() argument
109 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST()
118 ASSERT_EQ(8u, interval1->FirstIntersectionWith(interval2)); in TEST()
127 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST()
136 ASSERT_EQ(9u, interval1->FirstIntersectionWith(interval2)); in TEST()
145 ASSERT_EQ(6u, interval1->FirstIntersectionWith(interval2)); in TEST()
154 ASSERT_EQ(55u, interval1->FirstIntersectionWith(interval2)); in TEST()
163 ASSERT_EQ(41u, interval1->FirstIntersectionWith(interval2)); in TEST()
Dregister_allocator_linear_scan.cc761 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in TryAllocateFreeReg()
775 size_t next_intersection = inactive->FirstIntersectionWith(current); in TryAllocateFreeReg()
1023 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg()
1027 size_t next_intersection = inactive->FirstIntersectionWith(current); in AllocateBlockedReg()
1132 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg()
1134 size_t next_intersection = inactive->FirstIntersectionWith(current); in AllocateBlockedReg()
Dssa_liveness_analysis.h510 size_t FirstIntersectionWith(LiveInterval* current) const { in FirstIntersectionWith() function