Home | History | Annotate | Download | only in armv5te
      1 %verify "executed"
      2     /*
      3      * Return a 64-bit value.  Copies the return value into the "thread"
      4      * structure, then jumps to the return handler.
      5      */
      6     /* return-wide vAA */
      7     mov     r2, rINST, lsr #8           @ r2<- AA
      8     add     r2, rFP, r2, lsl #2         @ r2<- &fp[AA]
      9     add     r3, rSELF, #offThread_retval  @ r3<- &self->retval
     10     ldmia   r2, {r0-r1}                 @ r0/r1 <- vAA/vAA+1
     11     stmia   r3, {r0-r1}                 @ retval<- r0/r1
     12     b       common_returnFromMethod
     13