1 %verify "executed" 2 /* 3 * Return a 32-bit value. Copies the return value into the "thread" 4 * structure, then jumps to the return handler. 5 * 6 * for: return, return-object 7 */ 8 /* op vAA */ 9 GET_OPA(a2) # a2 <- AA 10 GET_VREG(a0, a2) # a0 <- vAA 11 sw a0, offThread_retval(rSELF) # retval.i <- vAA 12 b common_returnFromMethod 13 14