1%default { "store":"sw" }
2    /* For: iput-quick, iput-object-quick */
3    # op vA, vB, offset                    /* CCCC */
4    GET_OPB(a2)                            #  a2 <- B
5    GET_VREG(a3, a2)                       #  a3 <- fp[B], the object pointer
6    FETCH(a1, 1)                           #  a1 <- field byte offset
7    GET_OPA4(a2)                           #  a2 <- A(+)
8    beqz      a3, common_errNullObject     #  object was null
9    GET_VREG(a0, a2)                       #  a0 <- fp[A]
10    FETCH_ADVANCE_INST(2)                  #  advance rPC, load rINST
11    addu      t0, a3, a1
12    $store    a0, 0(t0)                    #  obj.field (8/16/32 bits) <- a0
13    GET_INST_OPCODE(t0)                    #  extract opcode from rINST
14    GOTO_OPCODE(t0)                        #  jump to next instruction
15