Home | History | Annotate | Download | only in x86
      1 %verify "executed"
      2     /*
      3      * Return a 32-bit value.  Copies the return value into the "self"
      4      * structure, then jumps to the return handler.
      5      *
      6      * for: return, return-object
      7      */
      8     /* op vAA */
      9     movl    rSELF,%ecx
     10     GET_VREG_R %eax rINST               # eax<- vAA
     11     movl    %eax,offThread_retval(%ecx)   # retval.i <- AA
     12     jmp     common_returnFromMethod
     13