Home | History | Annotate | Download | only in mips
      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     GET_OPA(a2)                            #  a2 <- AA
      8     EAS2(a2, rFP, a2)                      #  a2 <- &fp[AA]
      9     addu      a3, rSELF, offThread_retval  #  a3 <- &self->retval
     10     LOAD64(a0, a1, a2)                     #  a0/a1 <- vAA/vAA+1
     11     STORE64(a0, a1, a3)                    #  retval <- a0/a1
     12     b         common_returnFromMethod
     13 
     14