Lines Matching refs:kNoValue
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); }
83 CHECK_NE(kNoValue, index); in Const()
107 BlockCompletion completion = {kFallThrough, TestOperand(), 1, kNoValue}; in FallThrough()
112 BlockCompletion completion = {kJump, TestOperand(), offset, kNoValue}; in Jump()
123 BlockCompletion completion = {kBlockEnd, TestOperand(), kNoValue, kNoValue}; in Last()