Lines Matching refs:IntVal

106   bool MatchRegisterName(unsigned &RegNo, int64_t &IntVal);
1202 bool PPCAsmParser::MatchRegisterName(unsigned &RegNo, int64_t &IntVal) { in MatchRegisterName() argument
1212 IntVal = 8; in MatchRegisterName()
1215 IntVal = 9; in MatchRegisterName()
1218 IntVal = 256; in MatchRegisterName()
1220 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1221 RegNo = isPPC64() ? XRegs[IntVal] : RRegs[IntVal]; in MatchRegisterName()
1223 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1224 RegNo = FRegs[IntVal]; in MatchRegisterName()
1226 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1227 RegNo = VSRegs[IntVal]; in MatchRegisterName()
1229 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1230 RegNo = VRegs[IntVal]; in MatchRegisterName()
1232 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1233 RegNo = CRRegs[IntVal]; in MatchRegisterName()
1254 int64_t IntVal; in tryParseRegister() local
1255 if (MatchRegisterName(RegNo, IntVal)) in tryParseRegister()
1436 int64_t IntVal; in ParseOperand() local
1437 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1440 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1488 int64_t IntVal; in ParseOperand() local
1492 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1497 if (getParser().parseAbsoluteExpression(IntVal) || IntVal < 0 || in ParseOperand()
1498 IntVal > 31) in ParseOperand()
1509 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()