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     ldr     x0, [x3, x4]                // x0<- obj.field
      8     FETCH_ADVANCE_INST 2                // advance rPC, load wINST
      9     SET_VREG_WIDE x0, w2
     10     GET_INST_OPCODE ip                  // extract opcode from wINST
     11     GOTO_OPCODE ip                      // jump to next instruction
     12