Home | History | Annotate | Download | only in arm64
      1     /* const/4 vA, #+B */
      2     lsl     w1, wINST, #16              // w1<- Bxxx0000
      3     ubfx    w0, wINST, #8, #4           // w0<- A
      4     FETCH_ADVANCE_INST 1                // advance xPC, load wINST
      5     asr     w1, w1, #28                 // w1<- sssssssB (sign-extended)
      6     GET_INST_OPCODE ip                  // ip<- opcode from xINST
      7     SET_VREG w1, w0                     // fp[A]<- w1
      8     GOTO_OPCODE ip                      // execute next instruction
      9