Home
last modified time | relevance | path

Searched refs:Word64And (Results 1 – 12 of 12) 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()
Dint64-lowering-unittest.cc226 LowerGraph(graph()->NewNode(machine()->Word64And(), Int64Constant(value(0)), in TEST_F()
654 LowerGraph(graph()->NewNode(machine()->Word64And(), common, in TEST_F()
655 graph()->NewNode(machine()->Word64And(), common, in TEST_F()
Dnode-test-utils.cc2262 IS_BINOP_MATCHER(Word64And)
/external/v8/test/unittests/compiler/arm64/
Dinstruction-selector-arm64-unittest.cc66 {&RawMachineAssembler::Word64And, "Word64And", kArm64And,
178 {&RawMachineAssembler::Word64And, "Word64And", kArm64Tst,
1025 m.Branch(m.Word64And(m.Parameter(0), m.Int64Constant(imm)), &a, &b); in TEST_F()
1108 m.Branch(m.Word64And(m.Int64Constant(imm), m.Parameter(0)), &a, &b); in TEST_F()
1230 m.Branch(m.Word64And(m.Parameter(0), m.Int64Constant(mask)), &a, &b); in TEST_F()
1251 m.Branch(m.Word64And(m.Int64Constant(mask), m.Parameter(0)), &a, &b); in TEST_F()
1314 m.Branch(m.Word64Equal(m.Word64And(m.Int64Constant(mask), m.Parameter(0)), in TEST_F()
1335 m.Word64NotEqual(m.Word64And(m.Int64Constant(mask), m.Parameter(0)), in TEST_F()
3253 {&RawMachineAssembler::Word64And, "Word64And", kArm64Bic,
3463 m.Return(m.Word64Shr(m.Word64And(m.Parameter(0), m.Int64Constant(msk)), in TEST_F()
[all …]
/external/v8/src/compiler/
Dcode-assembler.h103 V(Word64And) \
Dmachine-operator.h217 const Operator* Word64And();
Draw-machine-assembler.h210 Node* Word64And(Node* a, Node* b) { in Word64And() function
211 return AddNode(machine()->Word64And(), a, b); in Word64And()
Dopcodes.h305 V(Word64And) \
Dmachine-operator.cc81 V(Word64And, Operator::kAssociative | Operator::kCommutative, 2, 0, 1) \
Dwasm-compiler.cc456 op = m->Word64And(); in Binop()
992 node = graph()->NewNode(jsgraph()->machine()->Word64And(), node, in MaskShiftCount64()
/external/v8/test/cctest/compiler/
Dtest-run-machops.cc465 m.machine()->Word64And(), m.machine()->Word64Or(), in TEST()