Home | History | Annotate | Download | only in arm64
      1     /* iget-wide-quick vA, vB, offset//CCCC */
      2     lsr     w2, wINST, #12              // w2<- B
      3     FETCH w4, 1                         // w4<- field byte offset
      4     GET_VREG w3, w2                     // w3<- object we're operating on
      5     ubfx    w2, wINST, #8, #4           // w2<- A
      6     cbz     w3, common_errNullObject        // object was null
      7     add     x4, x3, x4                  // create direct pointer
      8     ldr     x0, [x4]
      9     FETCH_ADVANCE_INST 2                // advance rPC, load wINST
     10     SET_VREG_WIDE x0, w2
     11     GET_INST_OPCODE ip                  // extract opcode from wINST
     12     GOTO_OPCODE ip                      // jump to next instruction
     13