Home | History | Annotate | Download | only in compiler

Lines Matching refs:control

90   Node* InsertReturn(Node* val, Node* effect, Node* control) {
91 Node* r = graph()->NewNode(common()->Return(), val, effect, control);
106 While NewWhile(Node* cond, Node* control = nullptr) {
107 if (control == nullptr) control = start();
108 Node* loop = graph()->NewNode(common()->Loop(2), control, control);
116 void Chain(While* a, Node* control) { a->loop->ReplaceInput(0, control); }
126 Branch NewBranch(Node* cond, Node* control = nullptr) {
127 if (control == nullptr) control = start();
128 Node* branch = graph()->NewNode(common()->Branch(), cond, control);