@@ -9839,11 +9839,7 @@ void emitter::emitIns_R_S(instruction ins, emitAttr attr, regNumber reg1, int va
9839
9839
scale = NaturalScale_helper(EA_16BYTE);
9840
9840
ssize_t mask = (1 << scale) - 1; // the mask of low bits that must be zero to encode the immediate
9841
9841
9842
- if (((imm & mask) == 0) && (isValidSimm<9>(imm >> scale)))
9843
- {
9844
- imm >>= scale; // The immediate is scaled by the size of the ld/st
9845
- }
9846
- else
9842
+ if (((imm & mask) != 0) || (!isValidSimm<9>(imm >> scale)))
9847
9843
{
9848
9844
useRegForImm = true;
9849
9845
regNumber rsvdReg = codeGen->rsGetRsvdReg();
@@ -9867,11 +9863,7 @@ void emitter::emitIns_R_S(instruction ins, emitAttr attr, regNumber reg1, int va
9867
9863
scale = NaturalScale_helper(EA_2BYTE);
9868
9864
ssize_t mask = (1 << scale) - 1; // the mask of low bits that must be zero to encode the immediate
9869
9865
9870
- if (((imm & mask) == 0) && (isValidSimm<9>(imm >> scale)))
9871
- {
9872
- imm >>= scale; // The immediate is scaled by the size of the ld/st
9873
- }
9874
- else
9866
+ if (((imm & mask) != 0) || (!isValidSimm<9>(imm >> scale)))
9875
9867
{
9876
9868
useRegForImm = true;
9877
9869
regNumber rsvdReg = codeGen->rsGetRsvdReg();
@@ -10118,11 +10110,7 @@ void emitter::emitIns_S_R(instruction ins, emitAttr attr, regNumber reg1, int va
10118
10110
scale = NaturalScale_helper(EA_16BYTE);
10119
10111
ssize_t mask = (1 << scale) - 1; // the mask of low bits that must be zero to encode the immediate
10120
10112
10121
- if (((imm & mask) == 0) && (isValidSimm<9>(imm >> scale)))
10122
- {
10123
- imm >>= scale; // The immediate is scaled by the size of the ld/st
10124
- }
10125
- else
10113
+ if (((imm & mask) != 0) || (!isValidSimm<9>(imm >> scale)))
10126
10114
{
10127
10115
useRegForImm = true;
10128
10116
regNumber rsvdReg = codeGen->rsGetRsvdReg();
@@ -10146,11 +10134,7 @@ void emitter::emitIns_S_R(instruction ins, emitAttr attr, regNumber reg1, int va
10146
10134
scale = NaturalScale_helper(EA_2BYTE);
10147
10135
ssize_t mask = (1 << scale) - 1; // the mask of low bits that must be zero to encode the immediate
10148
10136
10149
- if (((imm & mask) == 0) && (isValidSimm<9>(imm >> scale)))
10150
- {
10151
- imm >>= scale; // The immediate is scaled by the size of the ld/st
10152
- }
10153
- else
10137
+ if (((imm & mask) != 0) || (!isValidSimm<9>(imm >> scale)))
10154
10138
{
10155
10139
useRegForImm = true;
10156
10140
regNumber rsvdReg = codeGen->rsGetRsvdReg();
0 commit comments