Home
last modified time | relevance | path

Searched refs:Int32Mul (Results 1 – 15 of 15) sorted by relevance

/external/v8/src/compiler/
Drepresentation-change.h239 return machine()->Int32Mul(); in Int32OperatorFor()
263 return machine()->Int32Mul(); in Uint32OperatorFor()
Dmachine-operator-unittest.cc200 PURE(Int32Mul, 2, 1), PURE(Int32Div, 2, 1),
292 EXPECT_EQ(machine.Int32Mul(), machine.IntMul()); in TEST()
Dmachine-operator.h87 const Operator* Int32Mul();
Djs-builtin-reducer.cc147 Node* value = graph()->NewNode(machine()->Int32Mul(), r.left(), r.right()); in ReduceMathImul()
Draw-machine-assembler.h222 Node* Int32Mul(Node* a, Node* b) { in Int32Mul() function
223 return NewNode(machine()->Int32Mul(), a, b); in Int32Mul()
Dopcodes.h188 V(Int32Mul) \
Dmachine-operator.cc82 V(Int32Mul, Operator::kAssociative | Operator::kCommutative, 2, 1) \
Dgraph-unittest.cc757 IS_BINOP_MATCHER(Int32Mul)
Dsimplified-lowering.cc860 index = graph()->NewNode(machine()->Int32Mul(), in ComputeIndex()
/external/v8/test/cctest/compiler/
Dtest-schedule.cc141 Node* mul = graph.NewNode(machine.Int32Mul(), param0, param1); in TEST()
Dtest-run-machops.cc66 m.machine()->Int32Sub(), m.machine()->Int32Mul(), in TEST()
1214 bt.AddReturn(m.Int32Mul(bt.param0, bt.param1)); in TEST()
1225 bt.AddReturn(m.Int32Mul(bt.param0, bt.param1)); in TEST()
1240 m.Return(m.Int32Mul(m.Int32Constant(*i), m.Parameter(0))); in TEST()
1250 m.Return(m.Int32Mul(m.Parameter(0), m.Int32Constant(*i))); in TEST()
1264 m.Int32Add(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); in TEST()
1280 m.Int32Add(m.Int32Mul(m.Parameter(0), m.Parameter(1)), m.Parameter(2))); in TEST()
1298 m.Int32Add(m.Int32Constant(*i), m.Int32Mul(bt.param0, bt.param1))); in TEST()
1316 m.Int32Sub(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); in TEST()
1335 m.Int32Sub(m.Int32Constant(*i), m.Int32Mul(bt.param0, bt.param1))); in TEST()
[all …]
Dtest-machine-operator-reducer.cc415 R.binop = R.machine.Int32Mul(); in TEST()
Dtest-simplified-lowering.cc1203 t.machine()->Int32Mul(), t.machine()->Int32Div(), in TEST()
/external/v8/src/compiler/arm/
Dinstruction-selector-arm-unittest.cc1349 m.Int32Add(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); in TEST_F()
1359 m.Int32Add(m.Int32Mul(m.Parameter(1), m.Parameter(2)), m.Parameter(0))); in TEST_F()
1468 m.Return(m.Int32Mul(m.Parameter(0), m.Parameter(1))); in TEST_F()
1481 m.Return(m.Int32Mul(m.Parameter(0), m.Int32Constant((1 << k) + 1))); in TEST_F()
1494 m.Return(m.Int32Mul(m.Parameter(0), m.Int32Constant((1 << k) - 1))); in TEST_F()
1507 m.Return(m.Int32Mul(m.Int32Constant((1 << k) + 1), m.Parameter(0))); in TEST_F()
1520 m.Return(m.Int32Mul(m.Int32Constant((1 << k) - 1), m.Parameter(0))); in TEST_F()
1536 m.Int32Sub(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); in TEST_F()
1550 m.Int32Sub(m.Parameter(0), m.Int32Mul(m.Parameter(1), m.Parameter(2)))); in TEST_F()
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc142 {&RawMachineAssembler::Int32Mul, "Int32Mul", kArm64Mul32, kMachInt32},