Home | History | Annotate | Download | only in compiler

Lines Matching refs:binop

54         binop(NULL),
67 const Operator* binop;
87 // Check that the reduction of this binop applied to constants {a} and {b}
94 // Check that the reduction of this binop applied to {a} and {b} yields
98 CHECK_NE(NULL, binop);
99 Node* n = graph.NewNode(binop, a, b);
107 // Check that the reduction of this binop applied to {a} and {b} yields
110 CHECK_NE(NULL, binop);
111 Node* n = graph.NewNode(binop, a, b);
118 // Check that the reduction of this binop applied to {left} and {right} yields
119 // this binop applied to {left_expect} and {right_expect}.
122 CHECK_NE(NULL, binop);
123 Node* n = graph.NewNode(binop, left, right);
127 CHECK_EQ(binop, reduction.replacement()->op());
132 // Check that the reduction of this binop applied to {left} and {right} yields
137 CHECK_NE(NULL, binop);
138 Node* n = graph.NewNode(binop, left, right);
147 // Check that the reduction of this binop applied to {left} and {right} yields
152 CHECK_NE(NULL, binop);
153 Node* n = graph.NewNode(binop, left, right);
166 // TODO(titzer): CHECK(binop->HasProperty(Operator::kCommutative));
170 Node* n = graph.NewNode(binop, k, p);
178 Node* n = graph.NewNode(binop, p, k);
191 CHECK(!binop->HasProperty(Operator::kCommutative));
194 Node* n = graph.NewNode(binop, k, p);
210 R.binop = R.machine.Word32And();
236 R.binop = R.machine.Word32Or();
262 R.binop = R.machine.Word32Xor();
285 R.binop = R.machine.Word32Shl();
306 R.binop = R.machine.Word32Shr();
327 R.binop = R.machine.Word32Sar();
348 R.binop = R.machine.Word32Equal();
373 R.binop = R.machine.Int32Add();
395 R.binop = R.machine.Int32Sub();
415 R.binop = R.machine.Int32Mul();
453 R.binop = R.machine.Int32Div();
481 R.binop = R.machine.Int32UDiv();
510 R.binop = R.machine.Int32Mod();
534 R.binop = R.machine.Int32UMod();
562 R.binop = R.machine.Int32LessThan();
587 R.binop = R.machine.Int32LessThanOrEqual();
611 R.binop = R.machine.Uint32LessThan();
635 R.binop = R.machine.Uint32LessThanOrEqual();
700 R.binop = R.machine.Float64Add();
716 R.binop = R.machine.Float64Sub();
730 R.binop = R.machine.Float64Mul();
757 R.binop = R.machine.Float64Div();
777 R.binop = R.machine.Float64Mod();