Home
last modified time | relevance | path

Searched refs:Int32LessThan (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/v8/test/cctest/compiler/
Dtest-branch-combine.cc83 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()
Dcodegen-tester.h250 return machine->Int32LessThan(); in op()
Dtest-simplified-lowering.cc483 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()
Dtest-machine-operator-reducer.cc562 R.binop = R.machine.Int32LessThan(); in TEST()
Dtest-js-typed-lowering.cc1344 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), false}, in TEST()
1349 R.machine.Int32LessThan(), R.simplified.NumberLessThan(), true}, in TEST()
Dtest-run-machops.cc69 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/
Draw-machine-assembler.h237 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()
Dmachine-operator-unittest.cc202 PURE(Int32UMod, 2, 1), PURE(Int32LessThan, 2, 1),
297 EXPECT_EQ(machine.Int32LessThan(), machine.IntLessThan()); in TEST()
Dmachine-operator.h92 const Operator* Int32LessThan();
Dopcodes.h193 V(Int32LessThan) \
Dmachine-operator.cc87 V(Int32LessThan, Operator::kNoProperties, 2, 1) \
Drepresentation-change.h247 return machine()->Int32LessThan(); in Int32OperatorFor()
Djs-typed-lowering.cc323 less_than = machine()->Int32LessThan(); in ReduceJSComparison()