Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Ddead_code_elimination.cc87 block->GetPhis().CountSize() + block->GetInstructions().CountSize()); in MaybeRecordDeadBlock()
161 HBackwardInstructionIterator i(block->GetInstructions()); in RemoveDeadInstructions()
Dside_effects_analysis.cc46 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Dinstruction_simplifier_arm64.h62 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
Dnodes.cc117 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in RemoveInstructionsAsUsersFromDeadBlocks()
1071 return block->GetInstructions().FoundBefore(this, other_instruction); in StrictlyDominates()
1163 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
1554 for (HInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) { in HasThrowingInstructions()
1564 && !block.GetInstructions().IsEmpty() in HasOnlyOneInstruction()
1577 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsControlFlow(); in EndsWithControlFlowInstruction()
1581 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsIf(); in EndsWithIf()
1585 return !GetInstructions().IsEmpty() && GetLastInstruction()->IsTryBoundary(); in EndsWithTryBoundary()
1762 for (HBackwardInstructionIterator it(GetInstructions()); !it.Done(); it.Advance()) { in DisconnectAndDelete()
1855 instructions_.Add(other->GetInstructions()); in MergeWith()
[all …]
Doptimizing_unit_test.h67 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in RemoveSuspendChecks()
Dlicm.cc128 for (HInstructionIterator inst_it(inner->GetInstructions()); in Run()
Dselect_generator.cc33 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in IsSimpleBlock()
Dprepare_for_register_allocation.cc26 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Dsharpening.cc39 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in Run()
Dssa_test.cc73 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in ReNumberInstructions()
Dssa_liveness_analysis.cc138 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in NumberInstructions()
251 for (HBackwardInstructionIterator back_it(block->GetInstructions()); !back_it.Done(); in ComputeLiveRanges()
Dgraph_checker.cc136 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
343 : input->GetBlock()->GetInstructions(); in VisitInstruction()
358 : user->GetBlock()->GetInstructions(); in VisitInstruction()
Dconstant_folding.cc82 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
Dreference_type_propagation.cc134 for (HInstructionIterator iti(block->GetInstructions()); !iti.Done(); iti.Advance()) { in ValidateTypes()
183 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in VisitBasicBlock()
Dintrinsics.cc572 for (HInstructionIterator inst_it(block->GetInstructions()); !inst_it.Done(); in Run()
Dssa_builder.cc29 for (HInstructionIterator it(itb.Current()->GetInstructions()); !it.Done(); it.Advance()) { in FixNullConstantType()
Dinliner.cc1119 for (HInstructionIterator instructions(callee_graph->GetEntryBlock()->GetInstructions()); in TryBuildAndInlineHelper()
1190 for (HInstructionIterator instr_it(block->GetInstructions()); in TryBuildAndInlineHelper()
Dgraph_visualizer.cc747 PrintInstructions(block->GetInstructions()); in VisitBasicBlock()
Dregister_allocator.cc123 for (HInstructionIterator inst_it(block->GetInstructions()); in AllocateRegisters()
173 for (HBackwardInstructionIterator back_it(block->GetInstructions()); !back_it.Done(); in AllocateRegistersInternal()
Dinduction_var_analysis.cc133 for (HInstructionIterator it(loop_block->GetInstructions()); !it.Done(); it.Advance()) { in VisitLoop()
Dcode_generator.cc233 for (HInstructionIterator it(block->GetInstructions()); !it.Done(); it.Advance()) { in Compile()
Dinstruction_builder.cc195 if (current_block_->GetInstructions().IsEmpty()) { in InsertInstructionAtTop()
256 return !block->GetInstructions().IsEmpty(); in IsBlockPopulated()
Dbounds_check_elimination.cc1640 for (HInstructionIterator it(true_block->GetInstructions()); !it.Done(); it.Advance()) { in InsertPhiNodes()
Dnodes.h905 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions() function