Lines Matching defs:condition

327                      Node* condition, Node* frame_state);
329 Node* condition, Node* frame_state);
349 void BranchWithCriticalSafetyCheck(Node* condition,
355 void Branch(Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* if_true,
359 void BranchWithHint(Node* condition,
369 void GotoIf(Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* label,
374 // The branch hint refers to the expected outcome of the provided condition,
378 void GotoIfNot(Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* label,
383 void GotoIf(Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* label,
388 void GotoIfNot(Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* label,
521 void BranchImpl(Node* condition,
694 void GraphAssembler::Branch(Node* condition,
703 BranchImpl(condition, if_true, if_false, hint, vars...);
708 Node* condition, GraphAssemblerLabel<sizeof...(Vars)>* if_true,
711 BranchImpl(condition, if_true, if_false, hint, vars...);
715 void GraphAssembler::BranchImpl(Node* condition,
721 Node* branch = graph()->NewNode(common()->Branch(hint), condition, control());
745 void GraphAssembler::GotoIf(Node* condition,
748 Node* branch = graph()->NewNode(common()->Branch(hint), condition, control());
757 void GraphAssembler::GotoIfNot(Node* condition,
760 Node* branch = graph()->NewNode(common()->Branch(hint), condition, control());
769 void GraphAssembler::GotoIf(Node* condition,
774 return GotoIf(condition, label, hint, vars...);
778 void GraphAssembler::GotoIfNot(Node* condition,
782 return GotoIfNot(condition, label, hint, vars...);