mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
Added clobber lists to the inline assembly functions.
This commit is contained in:
parent
eb53c02579
commit
6bd508f82c
@ -139,8 +139,8 @@ static DWORD cxx_frame_handler( PEXCEPTION_RECORD rec, cxx_exception_frame* fram
|
||||
inline static void *call_ebp_func( void *func, void *ebp )
|
||||
{
|
||||
void *ret;
|
||||
__asm__ __volatile__ ("pushl %%ebp; movl %2,%%ebp; call *%%eax;; popl %%ebp" \
|
||||
: "=a" (ret) : "0" (func), "g" (ebp));
|
||||
__asm__ __volatile__ ("pushl %%ebp; movl %2,%%ebp; call *%%eax; popl %%ebp" \
|
||||
: "=a" (ret) : "0" (func), "g" (ebp) : "ecx", "edx", "memory" );
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -151,16 +151,16 @@ inline static void call_copy_ctor( void *func, void *this, void *src, int has_vb
|
||||
if (has_vbase)
|
||||
/* in that case copy ctor takes an extra bool indicating whether to copy the base class */
|
||||
__asm__ __volatile__("pushl $1; pushl %2; call *%0"
|
||||
: : "r" (func), "c" (this), "g" (src) );
|
||||
: : "r" (func), "c" (this), "g" (src) : "eax", "edx", "memory" );
|
||||
else
|
||||
__asm__ __volatile__("pushl %2; call *%0"
|
||||
: : "r" (func), "c" (this), "g" (src) );
|
||||
: : "r" (func), "c" (this), "g" (src) : "eax", "edx", "memory" );
|
||||
}
|
||||
|
||||
/* call the destructor of the exception object */
|
||||
inline static void call_dtor( void *func, void *object )
|
||||
{
|
||||
__asm__ __volatile__("call *%0" : : "r" (func), "c" (object) );
|
||||
__asm__ __volatile__("call *%0" : : "r" (func), "c" (object) : "eax", "edx", "memory" );
|
||||
}
|
||||
|
||||
|
||||
|
@ -71,11 +71,13 @@ inline static void call_finally_block( void *code_block, void *base_ptr )
|
||||
: : "a" (code_block), "g" (base_ptr));
|
||||
}
|
||||
|
||||
static DWORD call_filter( void *func, void *arg, void *ebp )
|
||||
inline static DWORD call_filter( void *func, void *arg, void *ebp )
|
||||
{
|
||||
DWORD ret;
|
||||
__asm__ __volatile__ ("pushl %%ebp; pushl %3; movl %2,%%ebp; call *%%eax; popl %%ebp; popl %%ebp"
|
||||
: "=a" (ret) : "0" (func), "g" (ebp), "g" (arg) );
|
||||
: "=a" (ret)
|
||||
: "0" (func), "g" (ebp), "g" (arg)
|
||||
: "ecx", "edx", "memory" );
|
||||
return ret;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user