Lines Matching refs:orig
82 Node* orig = all.live[i];
83 Node* copy = mapping->at(orig->id());
88 if (orig->InputCount() == 0 || orig->opcode() == IrOpcode::kParameter ||
89 orig->opcode() == IrOpcode::kOsrValue) {
91 mapping->at(orig->id()) = orig;
97 for (Node* input : orig->inputs()) {
100 copy = graph->NewNode(orig->op(), orig->InputCount(), &tmp_inputs[0]);
101 if (NodeProperties::IsTyped(orig)) {
102 NodeProperties::SetType(copy, NodeProperties::GetType(orig));
104 mapping->at(orig->id()) = copy;
105 TRACE(" copy #%d:%s -> #%d\n", orig->id(), orig->op()->mnemonic(),
110 for (Node* orig : all.live) {
111 Node* copy = mapping->at(orig->id());
114 copy->ReplaceInput(j, mapping->at(orig->InputAt(j)->id()));