1%default { "store":"str" }
2    /* For: iput-quick, iput-object-quick */
3    /* op vA, vB, offset//CCCC */
4    lsr     w2, wINST, #12              // w2<- B
5    FETCH w1, 1                         // w1<- field byte offset
6    GET_VREG w3, w2                     // w3<- fp[B], the object pointer
7    ubfx    w2, wINST, #8, #4           // w2<- A
8    cmp     w3, #0                      // check object for null
9    cbz     w3, common_errNullObject    // object was null
10    GET_VREG w0, w2                     // w0<- fp[A]
11    FETCH_ADVANCE_INST 2                // advance rPC, load rINST
12    $store     w0, [x3, x1]             // obj.field<- w0
13    GET_INST_OPCODE ip                  // extract opcode from rINST
14    GOTO_OPCODE ip                      // jump to next instruction
15