Lines Matching refs:control_node
445 void RawMachineAssembler::MarkControlDeferred(Node* control_node) {
449 switch (control_node->opcode()) {
454 control_node = NodeProperties::GetControlInput(control_node);
457 IfValueParameters parameters = IfValueParametersOf(control_node->op());
460 control_node, common()->IfValue(parameters.value(),
467 if (BranchHintOf(control_node->op()) != BranchHint::kFalse) {
468 NodeProperties::ChangeOp(control_node,
473 Node* branch = NodeProperties::GetControlInput(control_node);
478 control_node = NodeProperties::GetControlInput(branch);
486 Node* branch = NodeProperties::GetControlInput(control_node);
491 control_node = NodeProperties::GetControlInput(branch);
499 for (int i = 0; i < control_node->op()->ControlInputCount(); ++i) {
500 MarkControlDeferred(NodeProperties::GetControlInput(control_node, i));
504 control_node = NodeProperties::GetControlInput(control_node, 0);
512 DCHECK_EQ(1, control_node->op()->ControlInputCount());
513 control_node = NodeProperties::GetControlInput(control_node);