Home
last modified time | relevance | path

Searched refs:Word64And (Results 1 – 10 of 10) sorted by relevance

/external/v8/test/unittests/compiler/mips64/
Dinstruction-selector-mips64-unittest.cc74 {&RawMachineAssembler::Word64And, "Word64And", kMips64And,
411 m.Return(m.Word64Shr(m.Word64And(m.Parameter(0), m.Int64Constant(msk)), in TEST_F()
429 m.Return(m.Word64Shr(m.Word64And(m.Int64Constant(msk), m.Parameter(0)), in TEST_F()
472 m.Return(m.Word64And(m.Parameter(0), m.Int64Constant(mask))); in TEST_F()
483 m.Return(m.Word64And(m.Int64Constant(mask), m.Parameter(0))); in TEST_F()
656 m.Return(m.Word64And(m.Word64Shr(m.Parameter(0), m.Int64Constant(shift)), in TEST_F()
673 m.Word64And(m.Int64Constant(msk), in TEST_F()
711 m.Word64Shl(m.Word64And(p0, m.Int64Constant((1L << (63 - shift)) - 1)), in TEST_F()
/external/v8/test/unittests/compiler/
Dmachine-operator-unittest.cc202 PURE(Word64And, 2, 0, 1), // --
401 EXPECT_EQ(machine.Word64And(), machine.WordAnd()); in TEST_F()
Dnode-test-utils.cc2056 IS_BINOP_MATCHER(Word64And)
/external/v8/src/compiler/
Dmachine-operator.h165 const Operator* Word64And();
Dopcodes.h241 V(Word64And) \
Draw-machine-assembler.h198 Node* Word64And(Node* a, Node* b) { in Word64And() function
199 return AddNode(machine()->Word64And(), a, b); in Word64And()
Dmachine-operator.cc105 V(Word64And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
Dwasm-compiler.cc529 op = m->Word64And(); in Binop()
/external/v8/test/unittests/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc66 {&RawMachineAssembler::Word64And, "Word64And", kArm64And,
178 {&RawMachineAssembler::Word64And, "Word64And", kArm64Tst,
976 m.Branch(m.Word64And(m.Parameter(0), m.Int64Constant(imm)), &a, &b); in TEST_F()
1059 m.Branch(m.Word64And(m.Int64Constant(imm), m.Parameter(0)), &a, &b); in TEST_F()
1182 m.Branch(m.Word64And(m.Parameter(0), m.Int64Constant(mask)), &a, &b); in TEST_F()
1203 m.Branch(m.Word64And(m.Int64Constant(mask), m.Parameter(0)), &a, &b); in TEST_F()
2688 {&RawMachineAssembler::Word64And, "Word64And", kArm64Bic,
2898 m.Return(m.Word64Shr(m.Word64And(m.Parameter(0), m.Int64Constant(msk)), in TEST_F()
2916 m.Return(m.Word64Shr(m.Word64And(m.Int64Constant(msk), m.Parameter(0)), in TEST_F()
2976 m.Return(m.Word64And(m.Word64Shr(m.Parameter(0), m.Int64Constant(shift)), in TEST_F()
[all …]
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc394 m.machine()->Word64And(), m.machine()->Word64Or(), in TEST()