Searched refs:ReplaceInput (Results 1 - 11 of 11) sorted by relevance

/art/compiler/optimizing/
H A Dpc_relative_fixups_x86.cc67 ReplaceInput(ret, value, 0, true);
95 ReplaceInput(bin, rhs, 1, false);
170 void ReplaceInput(HInstruction* insn, HConstant* value, int input_index, bool materialize) { function in class:art::x86::PCRelativeHandlerVisitor
178 insn->ReplaceInput(load_constant, input_index);
208 ReplaceInput(invoke, input, i, true);
H A Dinduction_var_analysis_test.cc619 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0);
621 ifs->ReplaceInput(graph_->GetIntConstant(127), 1);
624 basic_[0]->ReplaceInput(conv, 1);
638 basic_[0]->ReplaceInput(graph_->GetIntConstant(-128), 0);
640 ifs->ReplaceInput(graph_->GetIntConstant(128), 1);
643 basic_[0]->ReplaceInput(conv, 1);
656 basic_[0]->ReplaceInput(graph_->GetIntConstant(-32768), 0);
658 ifs->ReplaceInput(graph_->GetIntConstant(32767), 1);
661 basic_[0]->ReplaceInput(conv, 1);
676 basic_[0]->ReplaceInput(graph
[all...]
H A Dselect_generator.cc131 phi->ReplaceInput(select, predecessor_index_false);
H A Dinstruction_simplifier.cc171 binop->ReplaceInput(left_neg->GetInput(), 0);
172 binop->ReplaceInput(right_neg->GetInput(), 1);
689 select->ReplaceInput(false_value, 0);
690 select->ReplaceInput(true_value, 1);
691 select->ReplaceInput(condition, 2);
728 instruction->ReplaceInput(condition->InputAt(0), 0);
1097 condition->ReplaceInput(left->InputAt(0), 0);
1098 condition->ReplaceInput(left->InputAt(1), 1);
1488 instruction->ReplaceInput(left->InputAt(0), 0);
1489 instruction->ReplaceInput(righ
[all...]
H A Dssa_builder.cc53 equality_instr->ReplaceInput(graph_->GetNullConstant(), int_operand == right ? 1 : 0);
202 phi->ReplaceInput(equivalent, i);
387 aset->ReplaceInput(equivalent, /* input_index */ 2);
H A Dinstruction_simplifier_arm64.cc64 access->ReplaceInput(address, 0);
H A Dprepare_for_register_allocation.cc130 instruction->ReplaceInput(GetGraph()->GetIntConstant(load_class->GetTypeIndex()), 0);
H A Dreference_type_propagation.cc273 // Increment `it` now because `*it` may disappear thanks to user->ReplaceInput().
295 user->ReplaceInput(bound_type, index);
413 // Increment `it` now because `*it` may disappear thanks to user->ReplaceInput().
430 user->ReplaceInput(bound_type, index);
H A Dnodes.h1940 void ReplaceInput(HInstruction* replacement, size_t index);
1946 other->ReplaceInput(this, use_index);
2959 ReplaceInput(right, 0);
2960 ReplaceInput(left, 1);
2980 ReplaceInput(right, 0);
2981 ReplaceInput(left, 1);
H A Dbounds_check_elimination.cc1649 // Increment `it2` now because `*it2` may disappear thanks to user->ReplaceInput().
1655 user->ReplaceInput(phi, index); // Removes the use node from the list.
H A Dnodes.cc1099 void HInstruction::ReplaceInput(HInstruction* replacement, size_t index) { function in class:art::HInstruction

Completed in 133 milliseconds