Home | History | Annotate | Download | only in x86
      1     /* move-result-wide vAA */
      2     movl    OFF_FP_RESULT_REGISTER(rFP), %eax    # get pointer to result JType.
      3     movl    4(%eax), %ecx                   # Get high
      4     movl    (%eax), %eax                    # Get low
      5     SET_VREG %eax, rINST                    # v[AA+0] <- eax
      6     SET_VREG_HIGH %ecx, rINST               # v[AA+1] <- ecx
      7     ADVANCE_PC_FETCH_AND_GOTO_NEXT 1
      8