Home
last modified time | relevance | path

Searched refs:kNoLifetime (Results 1 – 7 of 7) sorted by relevance

/art/compiler/optimizing/
Dregister_allocator_linear_scan.cc384 if (first_register_use != kNoLifetime) { in ProcessInstruction()
670 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in TryAllocateFreeReg()
680 if (next_intersection != kNoLifetime) { in TryAllocateFreeReg()
882 DCHECK(first_register_use != kNoLifetime || (current->GetNextSibling() != nullptr)); in AllocateBlockedReg()
883 } else if (first_register_use == kNoLifetime) { in AllocateBlockedReg()
902 if (use != kNoLifetime) { in AllocateBlockedReg()
918 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg()
923 if (next_intersection != kNoLifetime) { in AllocateBlockedReg()
929 if (use != kNoLifetime) { in AllocateBlockedReg()
1022 DCHECK_EQ(inactive->FirstIntersectionWith(current), kNoLifetime); in AllocateBlockedReg()
[all …]
Dssa_liveness_analysis.h519 return kNoLifetime; in FirstIntersectionWith()
528 return kNoLifetime; in FirstIntersectionWith()
533 return kNoLifetime; in FirstIntersectionWith()
556 return position == GetStart() ? position : kNoLifetime; in FirstRegisterUseAfter()
575 return kNoLifetime; in FirstRegisterUseAfter()
587 return !HasRegister() && FirstRegisterUse() != kNoLifetime; in RequiresRegister()
592 return position == GetStart() ? position : kNoLifetime; in FirstUseAfter()
610 return kNoLifetime; in FirstUseAfter()
Dlive_interval_test.cc108 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST()
126 ASSERT_EQ(kNoLifetime, interval1->FirstIntersectionWith(interval2)); in TEST()
Dgraph_visualizer.cc631 && instruction->GetLifetimePosition() != kNoLifetime) { in PrintInstruction()
827 if (block->GetLifetimeStart() != kNoLifetime) { in VisitBasicBlock()
Dregister_allocator_test.cc384 ASSERT_EQ(interval->FirstRegisterUse(), kNoLifetime); in TEST_F()
Dnodes.h962 static constexpr size_t kNoLifetime = -1; variable
980 lifetime_start_(kNoLifetime), in graph_()
981 lifetime_end_(kNoLifetime), in graph_()
2040 lifetime_position_(kNoLifetime), in HInstruction()
2479 lifetime_position_(kNoLifetime), in HInstruction()
Dregister_allocator_graph_color.cc859 if (first_register_use != kNoLifetime) { in ProcessInstruction()