Home
last modified time | relevance | path

Searched refs:Word32And (Results 1 – 14 of 14) sorted by relevance

/external/v8/test/cctest/compiler/
Dtest-run-machops.cc62 m.machine()->Word32And(), m.machine()->Word32Or(), in TEST()
1490 bt.AddReturn(m.Word32And(bt.param0, bt.param1)); in TEST()
1501 bt.AddReturn(m.Word32And(bt.param0, m.Word32Not(bt.param1))); in TEST()
1512 bt.AddReturn(m.Word32And(m.Word32Not(bt.param0), bt.param1)); in TEST()
1528 m.Word32Shl(bt.param0, m.Word32And(bt.param1, m.Int32Constant(0x1f)))); in TEST()
1540 m.Word32Shl(bt.param0, m.Word32And(m.Int32Constant(0x1f), bt.param1))); in TEST()
1556 m.Word32Shr(bt.param0, m.Word32And(bt.param1, m.Int32Constant(0x1f)))); in TEST()
1568 m.Word32Shr(bt.param0, m.Word32And(m.Int32Constant(0x1f), bt.param1))); in TEST()
1584 m.Word32Sar(bt.param0, m.Word32And(bt.param1, m.Int32Constant(0x1f)))); in TEST()
1596 m.Word32Sar(bt.param0, m.Word32And(m.Int32Constant(0x1f), bt.param1))); in TEST()
[all …]
Dtest-machine-operator-reducer.cc210 R.binop = R.machine.Word32And(); in TEST()
554 R.CheckFoldBinop<int32_t>(x, R.machine.Word32And(), (1u << n) - 1, x, in TEST()
Dtest-js-typed-lowering.cc351 set(i++, machine.Word32And(), true); in JSBitwiseTypedLoweringTester()
Dtest-simplified-lowering.cc1204 t.machine()->Int32Mod(), t.machine()->Word32And(), in TEST()
/external/v8/src/compiler/
Dmachine-operator-unittest.cc190 PURE(Word32And, 2, 1), PURE(Word32Or, 2, 1),
282 EXPECT_EQ(machine.Word32And(), machine.WordAnd()); in TEST()
Dmachine-operator.h65 const Operator* Word32And();
Draw-machine-assembler.h150 Node* Word32And(Node* a, Node* b) { in Word32And() function
151 return NewNode(machine()->Word32And(), a, b); in Word32And()
Dopcodes.h168 V(Word32And) \
Dmachine-operator.cc61 V(Word32And, Operator::kAssociative | Operator::kCommutative, 2, 1) \
Djs-typed-lowering.cc72 node_->ReplaceInput(1, graph()->NewNode(machine()->Word32And(), rnum, in ConvertInputsForShift()
651 return ReduceI32Binop(node, true, true, machine()->Word32And()); in Reduce()
Dmachine-operator-reducer.cc273 node->set_op(machine()->Word32And()); in Reduce()
Dgraph-unittest.cc747 IS_BINOP_MATCHER(Word32And)
/external/v8/src/compiler/arm/
Dinstruction-selector-arm-unittest.cc33 {&RawMachineAssembler::Word32And, "Word32And", kArmAnd, kArmAnd, kArmTst},
1157 m.Return(m.Word32And(m.Parameter(0), m.Word32Not((m.*shift.constructor)( in TEST_P()
1172 m.Return(m.Word32And(m.Parameter(0), in TEST_P()
1659 m.Return(m.Word32And(m.Parameter(0), in TEST_F()
1670 m.Return(m.Word32And(m.Int32Constant(0xffffffffu >> (32 - width)), in TEST_F()
1686 m.Return(m.Word32And( in TEST_F()
1704 m.Word32And(m.Int32Constant(~((0xffffffffu >> (32 - width)) << lsb)), in TEST_F()
1728 m.Return(m.Word32Shr(m.Word32And(m.Parameter(0), m.Int32Constant(msk)), in TEST_F()
1745 m.Return(m.Word32Shr(m.Word32And(m.Int32Constant(msk), m.Parameter(0)), in TEST_F()
1761 m.Return(m.Word32And(m.Parameter(0), m.Word32Not(m.Parameter(1)))); in TEST_F()
[all …]
/external/v8/src/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc57 {&RawMachineAssembler::Word32And, "Word32And", kArm64And32, kMachInt32},
115 {&RawMachineAssembler::Word32And, "Word32And", kArm64Tst32, kMachInt32},
410 m.Branch(m.Word32And(m.Parameter(0), m.Int32Constant(imm)), &a, &b); in TEST_F()
464 m.Branch(m.Word32And(m.Int32Constant(imm), m.Parameter(0)), &a, &b); in TEST_F()