Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_phi_elimination.cc39 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in MarkDeadPhis() local
40 HPhi* phi = inst_it.Current()->AsPhi(); in MarkDeadPhis()
126 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in Run() local
127 worklist_.push_back(inst_it.Current()->AsPhi()); in Run()
Dside_effects_analysis.cc46 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run() local
47 inst_it.Advance()) { in Run()
48 HInstruction* instruction = inst_it.Current(); in Run()
Dlicm.cc128 for (HInstructionIterator inst_it(inner->GetInstructions()); in Run() local
129 !inst_it.Done(); in Run()
130 inst_it.Advance()) { in Run()
131 HInstruction* instruction = inst_it.Current(); in Run()
Dssa_liveness_analysis.cc121 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in NumberInstructions() local
122 HInstruction* current = inst_it.Current(); in NumberInstructions()
138 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in NumberInstructions() local
139 inst_it.Advance()) { in NumberInstructions()
140 HInstruction* current = inst_it.Current(); in NumberInstructions()
299 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in ComputeLiveRanges() local
300 HInstruction* current = inst_it.Current(); in ComputeLiveRanges()
Dprepare_for_register_allocation.cc26 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run() local
27 inst_it.Advance()) { in Run()
28 inst_it.Current()->Accept(this); in Run()
Dregister_allocator.cc118 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in AllocateRegisters() local
119 HInstruction* instruction = inst_it.Current(); in AllocateRegisters()
123 for (HInstructionIterator inst_it(block->GetInstructions()); in AllocateRegisters() local
124 !inst_it.Done(); in AllocateRegisters()
125 inst_it.Advance()) { in AllocateRegisters()
126 HInstruction* instruction = inst_it.Current(); in AllocateRegisters()
177 for (HInstructionIterator inst_it(block->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in AllocateRegistersInternal() local
178 ProcessInstruction(inst_it.Current()); in AllocateRegistersInternal()
1958 for (HInstructionIterator inst_it(current->GetPhis()); !inst_it.Done(); inst_it.Advance()) { in Resolve() local
1959 HInstruction* phi = inst_it.Current(); in Resolve()
Dintrinsics.cc572 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run() local
573 inst_it.Advance()) { in Run()
574 HInstruction* inst = inst_it.Current(); in Run()