Lines Matching refs:IntVal

109   bool MatchRegisterName(unsigned &RegNo, int64_t &IntVal);
1174 bool PPCAsmParser::MatchRegisterName(unsigned &RegNo, int64_t &IntVal) { in MatchRegisterName() argument
1179 IntVal = 8; in MatchRegisterName()
1182 IntVal = 9; in MatchRegisterName()
1185 IntVal = 256; in MatchRegisterName()
1187 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1188 RegNo = isPPC64()? XRegs[IntVal] : RRegs[IntVal]; in MatchRegisterName()
1190 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1191 RegNo = FRegs[IntVal]; in MatchRegisterName()
1193 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 64) { in MatchRegisterName()
1194 RegNo = VSRegs[IntVal]; in MatchRegisterName()
1196 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1197 RegNo = VRegs[IntVal]; in MatchRegisterName()
1199 !Name.substr(1).getAsInteger(10, IntVal) && IntVal < 32) { in MatchRegisterName()
1200 RegNo = QFRegs[IntVal]; in MatchRegisterName()
1202 !Name.substr(2).getAsInteger(10, IntVal) && IntVal < 8) { in MatchRegisterName()
1203 RegNo = CRRegs[IntVal]; in MatchRegisterName()
1218 int64_t IntVal; in ParseRegister() local
1219 if (MatchRegisterName(RegNo, IntVal)) in ParseRegister()
1452 int64_t IntVal; in ParseOperand() local
1453 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1456 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1474 int64_t IntVal; in ParseOperand() local
1475 if (!MatchRegisterName(RegNo, IntVal)) { in ParseOperand()
1476 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()
1518 int64_t IntVal; in ParseOperand() local
1523 if (MatchRegisterName(RegNo, IntVal)) in ParseOperand()
1530 else if (getParser().parseAbsoluteExpression(IntVal) || IntVal < 0 || in ParseOperand()
1531 IntVal > 31) in ParseOperand()
1537 if (!MatchRegisterName(RegNo, IntVal)) { in ParseOperand()
1550 Operands.push_back(PPCOperand::CreateImm(IntVal, S, E, isPPC64())); in ParseOperand()