Home
last modified time | relevance | path

Searched refs:GetInstructions (Results 1 – 18 of 18) sorted by relevance

/art/compiler/optimizing/
Ddead_code_elimination.cc59 block->GetPhis().CountSize() + block->GetInstructions().CountSize()); in MaybeRecordDeadBlock()
123 HBackwardInstructionIterator i(block->GetInstructions()); in RemoveDeadInstructions()
Dnodes.cc58 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in RemoveInstructionsAsUsersFromDeadBlocks()
731 return block->GetInstructions().FoundBefore(this, other_instruction); in StrictlyDominates()
812 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
967 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow(); in EndsWithControlFlowInstruction()
971 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf(); in EndsWithIf()
1105 instructions_.Add(other->GetInstructions()); in MergeWith()
1154 instructions_.Add(other->GetInstructions()); in MergeWithInlined()
1213 for (HBackwardInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in DeleteDeadBlock()
1234 invoke->GetBlock()->instructions_.AddAfter(invoke, body->GetInstructions()); in InlineInto()
1235 body->GetInstructions().SetBlockOfInstructions(invoke->GetBlock()); in InlineInto()
[all …]
Dprepare_for_register_allocation.cc26 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Dside_effects_analysis.cc45 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Doptimizing_unit_test.h64 for (HInstructionIterator it(graph->GetBlocks().Get(i)->GetInstructions()); in RemoveSuspendChecks()
Dlicm.cc112 for (HInstructionIterator inst_it(inner->GetInstructions()); in Run()
Dssa_builder.cc180 for (HInstructionIterator it(itb.Current()->GetInstructions()); !it.Done(); it.Advance()) { in FixNullConstantType()
336 for (HInstructionIterator it(GetGraph()->GetEntryBlock()->GetInstructions()); in BuildSsa()
413 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
Dgraph_checker.cc107 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
164 : input->GetBlock()->GetInstructions(); in VisitInstruction()
180 : use->GetBlock()->GetInstructions(); in VisitInstruction()
Dconstant_folding.cc52 for (HInstructionIterator inst_it(block->GetInstructions()); in Run()
Dinliner.cc248 for (HInstructionIterator instr_it(block->GetInstructions()); in TryBuildAndInline()
Dssa_liveness_analysis.cc137 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in NumberInstructions()
209 for (HBackwardInstructionIterator back_it(block->GetInstructions()); !back_it.Done(); in ComputeLiveRanges()
Dssa_test.cc72 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in ReNumberInstructions()
Dintrinsics.cc335 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Dreference_type_propagation.cc41 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
Dgraph_visualizer.cc334 PrintInstructions(block->GetInstructions()); in VisitBasicBlock()
Dregister_allocator.cc116 for (HInstructionIterator inst_it(block->GetInstructions()); in AllocateRegisters()
155 for (HBackwardInstructionIterator back_it(block->GetInstructions()); !back_it.Done(); in AllocateRegistersInternal()
Dcode_generator.cc175 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in CompileInternal()
Dnodes.h561 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions() function