Mercurial > mplayer.hg
changeset 21044:d6e342ac2363
Avoid code like "fstps %1+64(,%%ecx,4)\n\t", it might end up as
"fstps (%eax)+64(,%ecx,4)", which will not compile.
author | reimar |
---|---|
date | Sun, 19 Nov 2006 16:39:34 +0000 |
parents | 80581271f64d |
children | 20b2f1257397 |
files | mp3lib/tabinit_MMX.c |
diffstat | 1 files changed, 16 insertions(+), 16 deletions(-) [+] |
line wrap: on
line diff
--- a/mp3lib/tabinit_MMX.c Sun Nov 19 16:39:24 2006 +0000 +++ b/mp3lib/tabinit_MMX.c Sun Nov 19 16:39:34 2006 +0000 @@ -73,9 +73,9 @@ "fildl (%%esp)\n\t" "fdivs "MANGLE(intwindiv)"\n\t" "popl %%eax\n\t" - "fimull %2\n\t" - "fsts %1(,%%ecx,4)\n\t" - "fstps %1+64(,%%ecx,4)\n\t" + "fimull %1\n\t" + "fsts "MANGLE(mp3lib_decwin)"(,%%ecx,4)\n\t" + "fstps "MANGLE(mp3lib_decwin)"+64(,%%ecx,4)\n\t" ".L02:\n\t" "leal -1(%%esi),%%edx\n\t" "and %%ebx,%%edx\n\t" @@ -84,19 +84,19 @@ "addl $-1023,%%ecx\n\t" "test %%esi,%%ebx\n\t" "jz .L03\n\t" - "negl %2\n\t" + "negl %1\n\t" ".L03:\n\t" "addl %%esi,%%ecx\n\t" - "addl %3,%%edi\n\t" + "addl %2,%%edi\n\t" "incl %%ebx\n\t" "cmpl %0,%%edi\n\t" "jz .L04\n\t" "cmp $256,%%ebx\n\t" "jnz .L00\n\t" - "negl %3\n\t" + "negl %2\n\t" "jmp .L00\n\t" ".L04:\n\t" - ::"g"(intwinbase_MMX),"m"(mp3lib_decwin[0]),"m"(scaleval),"m"(intwinbase_step) + ::"g"(intwinbase_MMX),"m"(scaleval),"m"(intwinbase_step) :"memory","%eax","%ebx","%ecx","%edx","%esi","%edi"); intwinbase_step=2; __asm __volatile( @@ -111,7 +111,7 @@ "addl $60000,%%eax\n\t" ".L06:\n\t" "cltd\n\t" - "imull %2\n\t" + "imull %1\n\t" "shrdl $17,%%edx,%%eax\n\t" "cmpl $32767,%%eax\n\t" "movl $1055,%%edx\n\t" @@ -126,15 +126,15 @@ "cmpl $512,%%ecx\n\t" "jnc .L09\n\t" "subl %%ecx,%%edx\n\t" - "movw %%ax,%1(,%%edx,2)\n\t" - "movw %%ax,%1-32(,%%edx,2)\n\t" + "movw %%ax,"MANGLE(mp3lib_decwins)"(,%%edx,2)\n\t" + "movw %%ax,"MANGLE(mp3lib_decwins)"-32(,%%edx,2)\n\t" ".L09:\n\t" "testl $1,%%ecx\n\t" "jnz .L10\n\t" "negl %%eax\n\t" ".L10:\n\t" - "movw %%ax,%1(,%%ecx,2)\n\t" - "movw %%ax,%1+32(,%%ecx,2)\n\t" + "movw %%ax,"MANGLE(mp3lib_decwins)"(,%%ecx,2)\n\t" + "movw %%ax,"MANGLE(mp3lib_decwins)"+32(,%%ecx,2)\n\t" ".L11:\n\t" "leal -1(%%esi),%%edx\n\t" "and %%ebx,%%edx\n\t" @@ -143,18 +143,18 @@ "addl $-1023,%%ecx\n\t" "test %%esi,%%ebx\n\t" "jz .L12\n\t" - "negl %2\n\t" + "negl %1\n\t" ".L12:\n\t" "addl %%esi,%%ecx\n\t" - "addl %3,%%edi\n\t" + "addl %2,%%edi\n\t" "incl %%ebx\n\t" "cmpl %0,%%edi\n\t" "jz .L13\n\t" "cmp $256,%%ebx\n\t" "jnz .L05\n\t" - "negl %3\n\t" + "negl %2\n\t" "jmp .L05\n\t" ".L13:\n\t" - ::"g"(intwinbase_MMX),"m"(mp3lib_decwins[0]),"m"(scaleval),"m"(intwinbase_step) + ::"g"(intwinbase_MMX),"m"(scaleval),"m"(intwinbase_step) :"memory","%eax","%ebx","%ecx","%edx","%esi","%edi"); }