Lines Matching refs:IntVal
106 bool MatchRegisterName(MCRegister &RegNo, int64_t &IntVal);
1294 bool PPCAsmParser::MatchRegisterName(MCRegister &RegNo, int64_t &IntVal) { in MatchRegisterName() argument
1304 IntVal = 8; in MatchRegisterName()
1307 IntVal = 9; in MatchRegisterName()
1310 IntVal = 256; in MatchRegisterName()
1312 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1313 RegNo = isPPC64() ? XRegs[IntVal] : RRegs[IntVal]; in MatchRegisterName()
1315 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1316 RegNo = FRegs[IntVal]; in MatchRegisterName()
1318 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1319 RegNo = VSRegs[IntVal]; in MatchRegisterName()
1321 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1322 RegNo = VRegs[IntVal]; in MatchRegisterName()
1324 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1325 RegNo = CRRegs[IntVal]; in MatchRegisterName()
1327 !Name.substr(3).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1328 RegNo = ACCRegs[IntVal]; in MatchRegisterName()
1330 !Name.substr(7).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1331 RegNo = ACCRegs[IntVal]; in MatchRegisterName()
1333 !Name.substr(4).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1334 RegNo = WACCRegs[IntVal]; in MatchRegisterName()
1336 !Name.substr(7).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1337 RegNo = DMRROWpRegs[IntVal]; in MatchRegisterName()
1339 !Name.substr(6).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1340 RegNo = DMRROWRegs[IntVal]; in MatchRegisterName()
1342 !Name.substr(4).getAsInteger(10, IntVal) && IntVal < 4) { in MatchRegisterName()
1343 RegNo = DMRROWpRegs[IntVal]; in MatchRegisterName()
1345 !Name.substr(3).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1346 RegNo = DMRRegs[IntVal]; in MatchRegisterName()
1366 int64_t IntVal; in tryParseRegister() local
1367 if (MatchRegisterName(Reg, IntVal)) in tryParseRegister()
1548 int64_t IntVal; in ParseOperand() local
1549 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1552 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1630 int64_t IntVal; in ParseOperand() local
1634 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1639 if (getParser().parseAbsoluteExpression(IntVal) || IntVal < 0 || in ParseOperand()
1640 IntVal > 31) in ParseOperand()
1651 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()