Home | History | Annotate | Download | only in arm64
      1 %default { "is_object":"0" }
      2     /* for: move/from16, move-object/from16 */
      3     /* op vAA, vBBBB */
      4     FETCH w1, 1                         // r1<- BBBB
      5     lsr     w0, wINST, #8               // r0<- AA
      6     FETCH_ADVANCE_INST 2                // advance rPC, load wINST
      7     GET_VREG w2, w1                     // r2<- fp[BBBB]
      8     GET_INST_OPCODE ip                  // extract opcode from wINST
      9     .if $is_object
     10     SET_VREG_OBJECT w2, w0              // fp[AA]<- r2
     11     .else
     12     SET_VREG w2, w0                     // fp[AA]<- r2
     13     .endif
     14     GOTO_OPCODE ip                      // jump to next instruction
     15