vote up 1 vote down star

So i have a piece of assembly that needs to call a function with the fastcall calling convention on windows, but gcc doesn't (afaict) support it. GCC does provide the regparm attribute but that expects the first 3 parameters to be passed in eax, edx and ecx, whereas fastcall expects the first two parameters to be passed in ecx and edx.

I'm merely trying to avoid effectively duplicating a few code paths, so this isn't exactly critical, but it would be great if it were avoidable.

flag

Note that there's really no such thing as "the" fastcall calling convention. What you've described matches what C++ Builder refers to as fastcall. Visual C++ appears to be the odd one out in this case, for what it's worth. – Rob Kennedy Mar 23 at 6:03

2 Answers

vote up 5 vote down check

GCC does support fastcall, via __attribute__((fastcall)); it appears to have been introduced in 3.4.

link|flag
vote up 1 vote down

If you're calling the function from asm then surely you have complete control over how you call the function. What's stopping you from just loading up the registers and issuing a CALL?

link|flag
The problem is that the caller is in assembler, the function i'm calling is in C -- and it's the compilers' codegen for the function that i'm calling that is problematic :-( – olliej Oct 3 '08 at 3:10
Aaaah...yep, I assumed you were concerned with the caller not the callee. – Mike F Oct 3 '08 at 3:14
No worries, i figured that was the confusion :D – olliej Oct 3 '08 at 3:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.