HomeSort by relevance Sort by last modified time
    Searched refs:kNoValue (Results 1 - 4 of 4) sorted by null

  /external/v8/test/unittests/compiler/
instruction-sequence-unittest.h 19 static const int kNoValue = kMinInt;
24 VReg() : value_(kNoValue) {}
48 TestOperand() : type_(kInvalid), vreg_(), value_(kNoValue) {}
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...]
move-optimizer-unittest.cc 64 CHECK_EQ(kNoValue, op.vreg_.value_);
65 CHECK_NE(kNoValue, op.value_);
instruction-sequence-unittest.cc 170 if (inputs[input_count].value_ == kNoValue) break;
193 CHECK(vreg.value_ != kNoValue);
368 CHECK_EQ(op.vreg_.value_, kNoValue);
371 CHECK_NE(op.vreg_.value_, kNoValue);
401 CHECK_EQ(op.vreg_.value_, kNoValue);
register-allocator-unittest.cc 46 test_op.value_ == InstructionSequenceTest::kNoValue);

Completed in 89 milliseconds