Searched refs:InsertInstructionBefore (Results 1 – 12 of 12) sorted by relevance
/art/compiler/optimizing/ |
D | graph_test.cc | 287 TEST(GraphTest, InsertInstructionBefore) { in TEST() argument 298 block->InsertInstructionBefore(first_instruction, got); in TEST() 311 block->InsertInstructionBefore(second_instruction, got); in TEST()
|
D | bounds_check_elimination.cc | 862 deopt_block->InsertInstructionBefore(cond, deopt_block->GetLastInstruction()); in AddDeoptimizationConstant() 863 deopt_block->InsertInstructionBefore(deoptimize, deopt_block->GetLastInstruction()); in AddDeoptimizationConstant() 957 deopt_block->InsertInstructionBefore( in AddDeoptimizationArrayLength() 959 deopt_block->InsertInstructionBefore( in AddDeoptimizationArrayLength() 969 deopt_block->InsertInstructionBefore(new_array_length, deopt_block->GetLastInstruction()); in AddDeoptimizationArrayLength() 1005 deopt_block->InsertInstructionBefore(added, deopt_block->GetLastInstruction()); in AddDeoptimizationArrayLength() 1009 deopt_block->InsertInstructionBefore(cond, deopt_block->GetLastInstruction()); in AddDeoptimizationArrayLength() 1010 deopt_block->InsertInstructionBefore(deopt, deopt_block->GetLastInstruction()); in AddDeoptimizationArrayLength() 1774 block->InsertInstructionBefore(cond, bounds_check); in AddCompareWithDeoptimization() 1775 block->InsertInstructionBefore(deoptimize, bounds_check); in AddCompareWithDeoptimization()
|
D | reference_type_propagation.cc | 99 notNullBlock->InsertInstructionBefore(bound_type, notNullBlock->GetFirstInstruction()); in BoundTypeForIfNotNull() 170 instanceOfTrueBlock->InsertInstructionBefore( in BoundTypeForIfInstanceOf()
|
D | boolean_simplifier.cc | 126 block->InsertInstructionBefore(replacement, if_instruction); in TryRemovingBooleanSelection()
|
D | gvn_test.cc | 282 outer_loop_body->InsertInstructionBefore( in TEST() 299 inner_loop_body->InsertInstructionBefore( in TEST()
|
D | instruction_simplifier.cc | 129 binop->GetBlock()->InsertInstructionBefore(neg, binop->GetNext()); in TryMoveNegOnInputsAfterBinop() 682 instruction->GetBlock()->InsertInstructionBefore(add, instruction); in VisitSub() 684 instruction->GetBlock()->InsertInstructionBefore(neg, instruction); in VisitSub()
|
D | nodes_test.cc | 88 entry->InsertInstructionBefore(to_insert, parameter2); in TEST()
|
D | nodes.cc | 252 header->InsertInstructionBefore(check, first_instruction); in SimplifyLoop() 299 entry_block_->InsertInstructionBefore(constant, entry_block_->GetLastInstruction()); in InsertConstant() 467 InsertInstructionBefore(replacement, initial); in ReplaceAndRemoveInstructionWith() 491 void HBasicBlock::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore() function in art::HBasicBlock 501 instructions_.InsertInstructionBefore(instruction, cursor); in InsertInstructionBefore() 633 void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore() function in art::HInstructionList
|
D | register_allocator.cc | 1326 user->GetBlock()->InsertInstructionBefore(move, user); in AddInputMoveFor() 1374 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt() 1389 at->GetBlock()->InsertInstructionBefore(move, at->GetNext()); in InsertParallelMoveAt() 1405 at->GetBlock()->InsertInstructionBefore(move, at); in InsertParallelMoveAt() 1437 block->InsertInstructionBefore(move, last); in InsertParallelMoveAtExitOf() 1459 block->InsertInstructionBefore(move, first); in InsertParallelMoveAtEntryOf() 1483 instruction->GetBlock()->InsertInstructionBefore(move, instruction->GetNext()); in InsertMoveAfter()
|
D | codegen_test.cc | 566 block->InsertInstructionBefore(move, block->GetLastInstruction()); in TEST() 672 block->InsertInstructionBefore(move, block->GetLastInstruction()); in TEST() 738 block->InsertInstructionBefore(move, block->GetLastInstruction()); in TEST()
|
D | ssa_builder.cc | 431 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetFloatEquivalent() 454 constant->GetBlock()->InsertInstructionBefore(result, constant->GetNext()); in GetDoubleEquivalent()
|
D | nodes.h | 80 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor); 685 void InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor); 2336 ART_FRIEND_TEST(GraphTest, InsertInstructionBefore);
|