Mercurial > libavcodec.hg
changeset 10943:3a723e8dcd26 libavcodec
Use constant offsets for memory operands since gcc is unable to
This fixes gcc failing to fit 6 memory locations into 7 registers on x86-32
author | conrad |
---|---|
date | Wed, 20 Jan 2010 00:34:10 +0000 |
parents | ee944149442f |
children | 0985f1f7ab72 |
files | x86/h264dsp_mmx.c |
diffstat | 1 files changed, 8 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/x86/h264dsp_mmx.c Wed Jan 20 00:17:16 2010 +0000 +++ b/x86/h264dsp_mmx.c Wed Jan 20 00:34:10 2010 +0000 @@ -834,9 +834,9 @@ "por %%mm1, %%mm0 \n\t" "movq %2, %%mm1 \n\t" - "movq %3, %%mm2 \n\t" - "psubw %4, %%mm1 \n\t" - "psubw %5, %%mm2 \n\t" + "movq 8+1*%2, %%mm2 \n\t" + "psubw %3, %%mm1 \n\t" + "psubw 8+1*%3, %%mm2 \n\t" "packsswb %%mm2, %%mm1 \n\t" "paddb %%mm5, %%mm1 \n\t" "pminub %%mm4, %%mm1 \n\t" @@ -845,9 +845,7 @@ ::"m"(ref[l][b_idx]), "m"(ref[l][b_idx+d_idx]), "m"(mv[l][b_idx][0]), - "m"(mv[l][b_idx+2][0]), - "m"(mv[l][b_idx+d_idx][0]), - "m"(mv[l][b_idx+d_idx+2][0]) + "m"(mv[l][b_idx+d_idx][0]) ); } if(bidir==1){ @@ -863,9 +861,9 @@ "por %%mm1, %%mm3 \n\t" "movq %2, %%mm1 \n\t" - "movq %3, %%mm2 \n\t" - "psubw %4, %%mm1 \n\t" - "psubw %5, %%mm2 \n\t" + "movq 8+1*%2, %%mm2 \n\t" + "psubw %3, %%mm1 \n\t" + "psubw 8+1*%3, %%mm2 \n\t" "packsswb %%mm2, %%mm1 \n\t" "paddb %%mm5, %%mm1 \n\t" "pminub %%mm4, %%mm1 \n\t" @@ -874,9 +872,7 @@ ::"m"(ref[l][b_idx]), "m"(ref[1-l][b_idx+d_idx]), "m"(mv[l][b_idx][0]), - "m"(mv[l][b_idx+2][0]), - "m"(mv[1-l][b_idx+d_idx][0]), - "m"(mv[1-l][b_idx+d_idx+2][0]) + "m"(mv[1-l][b_idx+d_idx][0]) ); } __asm__ volatile(