Home | History | Annotate | Download | only in x86_64
      1     /* mul vA, vB */
      2     movl    rINST, %ecx                     # rcx <- A+
      3     sarl    $$4, rINST                      # rINST <- B
      4     andb    $$0xf, %cl                      # ecx <- A
      5     GET_VREG %eax, %rcx                     # eax <- vA
      6     imull   (rFP,rINSTq,4), %eax
      7     SET_VREG %eax, %rcx
      8     ADVANCE_PC_FETCH_AND_GOTO_NEXT 1
      9