Searched refs:Int32LessThan (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/v8/test/cctest/compiler/ |
D | test-branch-combine.cc | 83 m.Branch(m.Int32LessThan(p0, m.Int32Constant(0)), &blocka, &blockb); in TEST() 149 m.Branch(m.Int32LessThan(m.Int32Constant(0), p0), &blocka, &blockb); in TEST() 251 if (op == 0) m.Branch(m.Int32LessThan(p0, p1), &blocka, &blockb); in TEST() 284 if (op == 0) m.Branch(m.Int32LessThan(p0, p1), &blocka, &blockb); in TEST()
|
D | codegen-tester.h | 250 return machine->Int32LessThan(); in op()
|
D | test-simplified-lowering.cc | 483 Node* condition = t.Int32LessThan(index, limit); in RunCopyElements() 723 return graph()->NewNode(machine()->Int32LessThan(), node, in Use() 1218 const Operator* ops[] = {t.machine()->Int32LessThan(), in TEST()
|
D | test-machine-operator-reducer.cc | 562 R.binop = R.machine.Int32LessThan(); in TEST()
|
D | test-js-typed-lowering.cc | 1344 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), false}, in TEST() 1349 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), true}, in TEST()
|
D | test-run-machops.cc | 69 m.machine()->Int32LessThan(), m.machine()->Int32LessThanOrEqual(), in TEST() 400 m.Branch(m.Int32LessThan(phi, bt.param0), &body, end); in TEST() 2669 m.machine()->Int32UMod(), m.machine()->Int32LessThan(), in TEST()
|
/external/chromium_org/v8/src/compiler/ |
D | raw-machine-assembler.h | 237 Node* Int32LessThan(Node* a, Node* b) { in Int32LessThan() function 238 return NewNode(machine()->Int32LessThan(), a, b); in Int32LessThan() 249 Node* Int32GreaterThan(Node* a, Node* b) { return Int32LessThan(b, a); } in Int32GreaterThan()
|
D | machine-operator-unittest.cc | 202 PURE(Int32UMod, 2, 1), PURE(Int32LessThan, 2, 1), 297 EXPECT_EQ(machine.Int32LessThan(), machine.IntLessThan()); in TEST()
|
D | machine-operator.h | 92 const Operator* Int32LessThan();
|
D | opcodes.h | 193 V(Int32LessThan) \
|
D | machine-operator.cc | 87 V(Int32LessThan, Operator::kNoProperties, 2, 1) \
|
D | representation-change.h | 247 return machine()->Int32LessThan(); in Int32OperatorFor()
|
D | js-typed-lowering.cc | 323 less_than = machine()->Int32LessThan(); in ReduceJSComparison()
|