Searched refs:IsDeadAt (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dlive_interval_test.cc42 TEST(LiveInterval, IsDeadAt) {
49 ASSERT_TRUE(interval->IsDeadAt(42));
50 ASSERT_TRUE(interval->IsDeadAt(43));
51 ASSERT_FALSE(interval->IsDeadAt(41));
52 ASSERT_FALSE(interval->IsDeadAt(0));
53 ASSERT_FALSE(interval->IsDeadAt(22));
59 ASSERT_TRUE(interval->IsDeadAt(16));
60 ASSERT_TRUE(interval->IsDeadAt(32));
61 ASSERT_FALSE(interval->IsDeadAt(0));
62 ASSERT_FALSE(interval->IsDeadAt(
[all...]
H A Dregister_allocator.cc330 } else if (current->IsDeadAt(safepoint_position)) {
597 if (interval->IsDeadAt(position)) {
613 if (interval->IsDeadAt(position)) {
674 if (interval->IsDeadAt(position)) {
679 DCHECK(interval->GetHighInterval()->IsDeadAt(position));
806 if (!current->IsDeadAt(free_until[reg])) {
1171 DCHECK(!interval->IsDeadAt(position));
H A Dssa_liveness_analysis.h416 bool IsDeadAt(size_t position) const { function in class:art::LiveInterval
421 return GetStart() <= position && !IsDeadAt(position);
899 DCHECK(IsDeadAt(position));
1019 // for liveness (see `IsDeadAt`).

Completed in 52 milliseconds