Lines Matching refs:intVal
938 int64_t intVal = 0; in matchRegisterName() local
964 && !name.substr(3).getAsInteger(10, intVal) in matchRegisterName()
965 && intVal > 0 && intVal < 32) { in matchRegisterName()
966 RegNo = ASRRegs[intVal]; in matchRegisterName()
1035 && !name.substr(3).getAsInteger(10, intVal) in matchRegisterName()
1036 && intVal < 4) { in matchRegisterName()
1038 RegNo = Sparc::FCC0 + intVal; in matchRegisterName()
1045 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
1046 && intVal < 8) { in matchRegisterName()
1047 RegNo = IntRegs[intVal]; in matchRegisterName()
1053 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
1054 && intVal < 8) { in matchRegisterName()
1055 RegNo = IntRegs[8 + intVal]; in matchRegisterName()
1060 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
1061 && intVal < 8) { in matchRegisterName()
1062 RegNo = IntRegs[16 + intVal]; in matchRegisterName()
1067 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
1068 && intVal < 8) { in matchRegisterName()
1069 RegNo = IntRegs[24 + intVal]; in matchRegisterName()
1075 && !name.substr(1, 2).getAsInteger(10, intVal) && intVal < 32) { in matchRegisterName()
1076 RegNo = FloatRegs[intVal]; in matchRegisterName()
1082 && !name.substr(1, 2).getAsInteger(10, intVal) in matchRegisterName()
1083 && intVal >= 32 && intVal <= 62 && (intVal % 2 == 0)) { in matchRegisterName()
1085 RegNo = DoubleRegs[intVal/2]; in matchRegisterName()
1092 && !name.substr(1, 2).getAsInteger(10, intVal) && intVal < 31) { in matchRegisterName()
1093 RegNo = IntRegs[intVal]; in matchRegisterName()
1100 && !name.substr(1).getAsInteger(10, intVal) in matchRegisterName()
1101 && intVal < 32) { in matchRegisterName()
1102 RegNo = CoprocRegs[intVal]; in matchRegisterName()