summaryrefslogtreecommitdiffstats
path: root/mp3lib/decode_i586.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-24 00:05:43 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-12-24 00:05:43 +0000
commite12f387870ff1bc1356e0dd514870c06b24aa2c2 (patch)
tree32599635c88fa0bf43c64db640fb571659ece2eb /mp3lib/decode_i586.c
parent6ebd5ba5f32a573b422e73390d5b4761afdc3bf4 (diff)
downloadmpv-e12f387870ff1bc1356e0dd514870c06b24aa2c2.tar.bz2
mpv-e12f387870ff1bc1356e0dd514870c06b24aa2c2.tar.xz
decode_i586.c version uses %ebp for its own use, so:
- we need to compile this with -fomit-frame-pointer or we cannot access the function parameters - we need to save & restore %ebp, or we'll destroy the caller's stack ptr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8544 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/decode_i586.c')
-rw-r--r--mp3lib/decode_i586.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mp3lib/decode_i586.c b/mp3lib/decode_i586.c
index c898085ff5..a2d0a65b43 100644
--- a/mp3lib/decode_i586.c
+++ b/mp3lib/decode_i586.c
@@ -28,12 +28,14 @@
static long buffs[1088];
static long bo=1;
+static long saved_ebp;
int synth_1to1_pent(real *bandPtr, int channel, short *samples)
{
real tmp[3];
register int retval;
__asm __volatile(
+" movl %%ebp,"MANGLE(saved_ebp)"\n\t"
" movl %1,%%eax\n\t"/*bandPtr*/
" movl %3,%%esi\n\t"
" xorl %%edi,%%edi\n\t"
@@ -301,8 +303,9 @@ int synth_1to1_pent(real *bandPtr, int channel, short *samples)
" decl %%ebp\n\t"
" jnz .L68\n\t"
" movl %%edi,%%eax\n\t"
+" movl "MANGLE(saved_ebp)",%%ebp\n\t"
:"=a"(retval)
:"m"(bandPtr),"m"(channel),"m"(samples),"m"(tmp[0])
- :"memory","%ebp","%edi","%esi","%ebx");
+ :"memory","%edi","%esi","%ebx");
return retval;
}