Lines Matching refs:intVal
886 int64_t intVal = 0; in matchRegisterName() local
912 && !name.substr(3).getAsInteger(10, intVal) in matchRegisterName()
913 && intVal > 0 && intVal < 32) { in matchRegisterName()
914 RegNo = ASRRegs[intVal]; in matchRegisterName()
965 && !name.substr(3).getAsInteger(10, intVal) in matchRegisterName()
966 && intVal < 4) { in matchRegisterName()
968 RegNo = Sparc::FCC0 + intVal; in matchRegisterName()
975 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
976 && intVal < 8) { in matchRegisterName()
977 RegNo = IntRegs[intVal]; in matchRegisterName()
983 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
984 && intVal < 8) { in matchRegisterName()
985 RegNo = IntRegs[8 + intVal]; in matchRegisterName()
990 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
991 && intVal < 8) { in matchRegisterName()
992 RegNo = IntRegs[16 + intVal]; in matchRegisterName()
997 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
998 && intVal < 8) { in matchRegisterName()
999 RegNo = IntRegs[24 + intVal]; in matchRegisterName()
1005 && !name.substr(1, 2).getAsInteger(10, intVal) && intVal < 32) { in matchRegisterName()
1006 RegNo = FloatRegs[intVal]; in matchRegisterName()
1012 && !name.substr(1, 2).getAsInteger(10, intVal) in matchRegisterName()
1013 && intVal >= 32 && intVal <= 62 && (intVal % 2 == 0)) { in matchRegisterName()
1015 RegNo = DoubleRegs[intVal/2]; in matchRegisterName()
1022 && !name.substr(1, 2).getAsInteger(10, intVal) && intVal < 31) { in matchRegisterName()
1023 RegNo = IntRegs[intVal]; in matchRegisterName()