Home | History | Annotate | Download | only in compiler

Lines Matching defs:binop

1187   Node* binop = t->graph()->NewNode(op, t->p0, t->p1);
1188 t->Return(binop);
1190 CHECK_EQ(input_change, binop->InputAt(0)->opcode());
1191 CHECK_EQ(input_change, binop->InputAt(1)->opcode());
1192 CHECK_EQ(t->p0, binop->InputAt(0)->InputAt(0));
1193 CHECK_EQ(t->p1, binop->InputAt(1)->InputAt(0));
1195 CHECK_EQ(binop, t->ret->InputAt(0)->InputAt(0));