Searched refs:kNoValue (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/unittests/compiler/ |
D | instruction-sequence-unittest.h | 19 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 …]
|
D | instruction-sequence-unittest.cc | 170 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()
|
D | move-optimizer-unittest.cc | 64 CHECK_EQ(kNoValue, op.vreg_.value_); in ConvertMoveArg() 65 CHECK_NE(kNoValue, op.value_); in ConvertMoveArg()
|
D | register-allocator-unittest.cc | 46 test_op.value_ == InstructionSequenceTest::kNoValue); in AllocatedOperandMatches()
|