Home
last modified time | relevance | path

Searched refs:kNoValue (Results 1 – 4 of 4) sorted by relevance

/external/v8/test/unittests/compiler/
Dinstruction-sequence-unittest.h19 static const int kNoValue = kMinInt; variable
24 VReg() : value_(kNoValue) {} in VReg()
48 TestOperand() : type_(kInvalid), vreg_(), value_(kNoValue) {} in TestOperand()
51 TestOperand(TestOperandType type, VReg vreg, int value = kNoValue)
66 static TestOperand Reg(VReg vreg, int index = kNoValue) {
68 if (index != kNoValue) type = kFixedRegister;
72 static TestOperand Reg(int index = kNoValue) { return Reg(VReg(), index); }
74 static TestOperand Slot(VReg vreg, int index = kNoValue) {
76 if (index != kNoValue) type = kFixedSlot;
80 static TestOperand Slot(int index = kNoValue) { return Slot(VReg(), index); }
[all …]
Dinstruction-sequence-unittest.cc170 if (inputs[input_count].value_ == kNoValue) break; in Phi()
193 CHECK(vreg.value_ != kNoValue); in SetInput()
368 CHECK_EQ(op.vreg_.value_, kNoValue); in ConvertInputOp()
371 CHECK_NE(op.vreg_.value_, kNoValue); in ConvertInputOp()
401 CHECK_EQ(op.vreg_.value_, kNoValue); in ConvertOutputOp()
Dmove-optimizer-unittest.cc64 CHECK_EQ(kNoValue, op.vreg_.value_); in ConvertMoveArg()
65 CHECK_NE(kNoValue, op.value_); in ConvertMoveArg()
Dregister-allocator-unittest.cc46 test_op.value_ == InstructionSequenceTest::kNoValue); in AllocatedOperandMatches()