1 /* 2 * Generic 32bit-to-64bit floating-point unary operation. Provide an "instr" 3 * line that specifies an instruction that performs "fv0 = op fa0". 4 * 5 * For: int-to-double, float-to-double 6 */ 7 /* unop vA, vB */ 8 GET_OPA4(rOBJ) # rOBJ <- A+ 9 GET_OPB(a3) # a3 <- B 10 GET_VREG_F(fa0, a3) 11 FETCH_ADVANCE_INST(1) # advance rPC, load rINST 12 $instr 13 GET_INST_OPCODE(t0) # extract opcode from rINST 14 SET_VREG64_F_GOTO(fv0, fv0f, rOBJ, t0) # vA/vA+1 <- fv0 15