1%default {"srcreg":"s0", "tgtreg":"d0"}
2    /*
3     * Generic 64bit-to-32bit floating point unary operation.  Provide an
4     * "instr" line that specifies an instruction that performs "$tgtreg = op $srcreg".
5     *
6     * For: int-to-double, float-to-double, float-to-long
7     */
8    /* unop vA, vB */
9    lsr     w3, wINST, #12              // w3<- B
10    ubfx    w4, wINST, #8, #4           // w4<- A
11    GET_VREG_WIDE $srcreg, w3
12    FETCH_ADVANCE_INST 1                // advance rPC, load wINST
13    $instr                              // d0<- op
14    GET_INST_OPCODE ip                  // extract opcode from wINST
15    SET_VREG $tgtreg, w4                // vA<- d0
16    GOTO_OPCODE ip                      // jump to next instruction
17