POOL32F 010101 |
rt |
fs |
00 |
MFHC1 1100000 |
POOL32FXf 111011 |
6 |
5 |
5 |
2 |
8 |
6 |
MFHC1 rt, fs |
microMIPS |
Move Word From High Half of Floating Point Register |
Move Word From High Half of Floating Point Register
To copy a word from the high half of an FPU (CP1) general register to a GPR.
GPR[rt] = sign_extend(FPR[fs]63..32)
The contents of the high word of FPR fs are sign-extended and loaded into general register rt. This instruction is primarily intended to support 64-bit floating point units on a 32-bit CPU, but the semantics of the instruction are defined for all cases.
In implementations prior to Release 2 of the architecture, this instruction resulted in a Reserved Instruction exception.
The results are UNPREDICTABLE if StatusFR = 0 and fs is odd.
data = ValueFPR(fs, UNINTERPRETED_DOUBLEWORD)63..32 GPR[rt] = sign_extend(data)
Coprocessor Unusable, Reserved Instruction