Home | History | Annotate | Download | only in arm64
      1     /* int-to-long vA, vB */
      2     lsr     w3, wINST, #12              // w3<- B
      3     ubfx    w4, wINST, #8, #4           // w4<- A
      4     GET_VREG_S x0, w3                   // x0<- sign_extend(fp[B])
      5     FETCH_ADVANCE_INST 1                // advance rPC, load wINST
      6     GET_INST_OPCODE ip                  // extract opcode from wINST
      7     SET_VREG_WIDE x0, w4                // fp[A]<- x0
      8     GOTO_OPCODE ip                      // jump to next instruction
      9