Home
last modified time | relevance | path

Searched refs:safepoints_ (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dregister_allocator_graph_color.h164 ScopedArenaVector<HInstruction*> safepoints_; variable
Dregister_allocator_linear_scan.cc61 safepoints_(allocator->Adapter(kArenaAllocRegisterAllocator)), in RegisterAllocatorLinearScan()
96 .Resolve(ArrayRef<HInstruction* const>(safepoints_), in AllocateRegisters()
283 safepoints_.push_back(instruction); in ProcessInstruction()
313 for (size_t safepoint_index = safepoints_.size(); safepoint_index > 0; --safepoint_index) { in ProcessInstruction()
314 HInstruction* safepoint = safepoints_[safepoint_index - 1u]; in ProcessInstruction()
318 DCHECK(safepoint_index == safepoints_.size() || in ProcessInstruction()
319 safepoints_[safepoint_index]->GetLifetimePosition() < safepoint_position); in ProcessInstruction()
324 DCHECK_EQ(safepoint_index, safepoints_.size()); in ProcessInstruction()
Dregister_allocator_linear_scan.h154 ScopedArenaVector<HInstruction*> safepoints_; variable
Dregister_allocator_graph_color.cc584 safepoints_(allocator->Adapter(kArenaAllocRegisterAllocator)), in RegisterAllocatorGraphColor()
718 .Resolve(ArrayRef<HInstruction* const>(safepoints_), in AllocateRegisters()
926 for (size_t safepoint_index = safepoints_.size(); safepoint_index > 0; --safepoint_index) { in AddSafepointsFor()
927 HInstruction* safepoint = safepoints_[safepoint_index - 1u]; in AddSafepointsFor()
931 DCHECK(safepoint_index == safepoints_.size() || in AddSafepointsFor()
932 safepoints_[safepoint_index]->GetLifetimePosition() < safepoint_position); in AddSafepointsFor()
937 DCHECK_EQ(safepoint_index, safepoints_.size()); in AddSafepointsFor()
995 safepoints_.push_back(instruction); in CheckForSafepoint()