This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: clobber list in inline assembly for calls


Daniel Mierswa <impulze@impulze.org> writes:

> I was wondering which registers I have to clobber or which special
> strings I have to put into the clobber list if all I'm going to do is:
>
> asm("call %0;" ::"m"(addr_of_myfunc));
>
> As I can't tell what the function is doing I may have to clobber all
> registers or am I wrong?
> I had in mind to clobber "cc" plus "eax", "ecx", "edx" which are by the
> i386 ABI not preserved for the caller.

You are correct: you have to list all the caller-saved registers in the
clobber list.  On 32-bit x86 this is all the registers other than %ebp,
%ebx, %edi and %esi.

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]