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    cbz     w3, common_errNullObject    // object was null
9    GET_VREG w0, w2                     // w0<- fp[A]
10    FETCH_ADVANCE_INST 2                // advance rPC, load rINST
11    $store     w0, [x3, x1]             // obj.field<- w0
12    GET_INST_OPCODE ip                  // extract opcode from rINST
13    GOTO_OPCODE ip                      // jump to next instruction
14