blob: 732a9a45f16a2c4d9b9e324ac079fec923c1ed61 [file] [log] [blame]
%default { "handler":"artSet32InstanceFromMterp" }
/*
* General 32-bit instance field put.
*
* for: iput, iput-boolean, iput-byte, iput-char, iput-short
*/
# op vA, vB, field /* CCCC */
.extern $handler
EXPORT_PC()
FETCH(a0, 1) # a0 <- field ref CCCC
GET_OPB(a1) # a1 <- B
GET_VREG(a1, a1) # a1 <- fp[B], the object pointer
GET_OPA4(a2) # a2 <- A+
GET_VREG(a2, a2) # a2 <- fp[A]
lw a3, OFF_FP_METHOD(rFP) # a3 <- referrer
PREFETCH_INST(2) # load rINST
JAL($handler)
bnez v0, MterpPossibleException # bail out
ADVANCE(2) # advance rPC
GET_INST_OPCODE(t0) # extract opcode from rINST
GOTO_OPCODE(t0) # jump to next instruction