Lines Matching full:branch
77 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
78 // to BooleanNot as new condition for {branch}. Note we assume that {cond} was
98 // Update the condition of {branch}. No need to mark the uses for revisit,
99 // since we tell the graph reducer that the {branch} was changed and the
102 // Negate the hint for {branch}.
104 node, common()->Branch(NegateBranchHint(BranchHintOf(node->op()))));
169 // c) and the {IfTrue} and {IfFalse} nodes point to the same {Branch}.
182 Node* const branch = if_true->InputAt(0);
183 DCHECK_EQ(IrOpcode::kBranch, branch->opcode());
184 DCHECK(branch->OwnedBy(if_true, if_false));
185 Node* const control = branch->InputAt(1);
186 // Mark the {branch} as {Dead}.
187 branch->TrimInputCount(0);
188 NodeProperties::ChangeOp(branch, common()->Dead());
239 Node* const branch = if_true->InputAt(0);
240 // Check that the branch is not dead already.
241 if (branch->opcode() != IrOpcode::kBranch) return NoChange();
242 Node* const cond = branch->InputAt(0);