Lines Matching refs:IntVal

106   bool MatchRegisterName(unsigned &RegNo, int64_t &IntVal);
1189 bool PPCAsmParser::MatchRegisterName(unsigned &RegNo, int64_t &IntVal) { in MatchRegisterName() argument
1199 IntVal = 8; in MatchRegisterName()
1202 IntVal = 9; in MatchRegisterName()
1205 IntVal = 256; in MatchRegisterName()
1207 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1208 RegNo = isPPC64() ? XRegs[IntVal] : RRegs[IntVal]; in MatchRegisterName()
1210 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1211 RegNo = FRegs[IntVal]; in MatchRegisterName()
1213 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1214 RegNo = VSRegs[IntVal]; in MatchRegisterName()
1216 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1217 RegNo = VRegs[IntVal]; in MatchRegisterName()
1219 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1220 RegNo = CRRegs[IntVal]; in MatchRegisterName()
1241 int64_t IntVal; in tryParseRegister() local
1242 if (MatchRegisterName(RegNo, IntVal)) in tryParseRegister()
1423 int64_t IntVal; in ParseOperand() local
1424 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1427 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1475 int64_t IntVal; in ParseOperand() local
1479 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1484 if (getParser().parseAbsoluteExpression(IntVal) || IntVal < 0 || in ParseOperand()
1485 IntVal > 31) in ParseOperand()
1496 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()