Lines Matching refs:IntVal
106 bool MatchRegisterName(MCRegister &RegNo, int64_t &IntVal);
1292 bool PPCAsmParser::MatchRegisterName(MCRegister &RegNo, int64_t &IntVal) { in MatchRegisterName() argument
1302 IntVal = 8; in MatchRegisterName()
1305 IntVal = 9; in MatchRegisterName()
1308 IntVal = 256; in MatchRegisterName()
1310 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1311 RegNo = isPPC64() ? XRegs[IntVal] : RRegs[IntVal]; in MatchRegisterName()
1313 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1314 RegNo = FRegs[IntVal]; in MatchRegisterName()
1316 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1317 RegNo = VSRegs[IntVal]; in MatchRegisterName()
1319 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1320 RegNo = VRegs[IntVal]; in MatchRegisterName()
1322 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1323 RegNo = CRRegs[IntVal]; in MatchRegisterName()
1325 !Name.substr(3).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1326 RegNo = ACCRegs[IntVal]; in MatchRegisterName()
1328 !Name.substr(7).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1329 RegNo = ACCRegs[IntVal]; in MatchRegisterName()
1331 !Name.substr(4).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1332 RegNo = WACCRegs[IntVal]; in MatchRegisterName()
1334 !Name.substr(7).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1335 RegNo = DMRROWpRegs[IntVal]; in MatchRegisterName()
1337 !Name.substr(6).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1338 RegNo = DMRROWRegs[IntVal]; in MatchRegisterName()
1340 !Name.substr(4).getAsInteger(10, IntVal) && IntVal < 4) { in MatchRegisterName()
1341 RegNo = DMRROWpRegs[IntVal]; in MatchRegisterName()
1343 !Name.substr(3).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1344 RegNo = DMRRegs[IntVal]; in MatchRegisterName()
1364 int64_t IntVal; in tryParseRegister() local
1365 if (MatchRegisterName(Reg, IntVal)) in tryParseRegister()
1546 int64_t IntVal; in ParseOperand() local
1547 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1550 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1628 int64_t IntVal; in ParseOperand() local
1632 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1637 if (getParser().parseAbsoluteExpression(IntVal) || IntVal < 0 || in ParseOperand()
1638 IntVal > 31) in ParseOperand()
1649 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()