Searched refs:FirstIntersectionWith (Results 1 – 3 of 3) sorted by relevance
/art/compiler/optimizing/ |
D | live_interval_test.cc | 98 TEST(LiveInterval, FirstIntersectionWith) { in TEST() argument 108 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST() 117 ASSERT_EQ(8u, interval1->FirstIntersectionWith(interval2)); in TEST() 126 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST() 135 ASSERT_EQ(9u, interval1->FirstIntersectionWith(interval2)); in TEST() 144 ASSERT_EQ(6u, interval1->FirstIntersectionWith(interval2)); in TEST() 153 ASSERT_EQ(55u, interval1->FirstIntersectionWith(interval2)); in TEST() 162 ASSERT_EQ(41u, interval1->FirstIntersectionWith(interval2)); in TEST()
|
D | register_allocator.cc | 787 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in TryAllocateFreeReg() 796 size_t next_intersection = inactive->FirstIntersectionWith(current); in TryAllocateFreeReg() 1035 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg() 1039 size_t next_intersection = inactive->FirstIntersectionWith(current); in AllocateBlockedReg() 1139 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg() 1141 size_t next_intersection = inactive->FirstIntersectionWith(current); in AllocateBlockedReg()
|
D | ssa_liveness_analysis.h | 446 size_t FirstIntersectionWith(LiveInterval* current) const { in FirstIntersectionWith() function
|