SPECIAL 000000 |
0 00000 |
rt |
rd |
sa |
DSLL32 111100 |
6 |
5 |
5 |
5 |
5 |
6 |
DSLL32 rd, rt, sa |
MIPS64 |
Doubleword Shift Left Logical Plus 32 |
Doubleword Shift Left Logical Plus 32
To execute a left-shift of a doubleword by a fixed amount-32 to 63 bits
GPR[rd] = GPR[rt] << (sa+32)
The 64-bit doubleword contents of GPR rt are shifted left, inserting zeros into the emptied bits; the result is placed in
GPR rd. The bit-shift amount in the range 0 to 31 is specified by sa.
s = 1 || sa /* 32+sa */ GPR[rd] = GPR[rt](63-s)..0 || 0s
Reserved Instruction