Lines Matching defs:branch
95 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
96 // to BooleanNot as new condition for {branch}. Note we assume that {cond} was
116 // Update the condition of {branch}. No need to mark the uses for revisit,
117 // since we tell the graph reducer that the {branch} was changed and the
120 // Negate the hint for {branch}.
200 Node* const branch = if_true->InputAt(0);
201 DCHECK_EQ(IrOpcode::kBranch, branch->opcode());
202 DCHECK(branch->OwnedBy(if_true, if_false));
203 Node* const control = branch->InputAt(1);
204 // Mark the {branch} as {Dead}.
205 branch->TrimInputCount(0);
206 NodeProperties::ChangeOp(branch, common()->Dead());
260 Node* const branch = if_true->InputAt(0);
261 // Check that the branch is not dead already.
262 if (branch->opcode() != IrOpcode::kBranch) return NoChange();
263 Node* const cond = branch->InputAt(0);