Home | History | Annotate | Download | only in armv5te
      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     mov     r2, rINST, lsr #8           @ r2<- AA
     10     GET_VREG(r0, r2)                    @ r0<- vAA
     11     str     r0, [rSELF, #offThread_retval] @ retval.i <- vAA
     12     b       common_returnFromMethod
     13