As far as I know, only the caller-clean-stack convention can use variable arguments.
By the way, the WinApi StringCchPrintfW is declared like this.(I removed the SAL)

_inline HRESULT _stdcall
StringCchPrintfW(
STRSAFE_LPWSTR pszDest, size_t cchDest, STRSAFE_LPCWSTR pszFormat, ...
);

Can stdcall have a variable arguments either?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

No. The stdcall calling convention has the callee clean the stack. Since the callee is cleaning the stack there is no way for it to know at compile time how much to pop off, therefore it cannot have variable arguments.

In order to have variable number of function arguments you need to use cdecl, which has the caller clean the stack. This all the compiler to determine how many arguments are being passed and since the caller is cleaning up the stack it also knows how much to pop off the stack when the call to the function returns.

In the case mentioned above, the function is declared to use __stdcall, which as previously mentioned does not support variable arguments. In this case, the compiler makes the decision to ignore the calling convention defined and revert back to __cdecl. This behavior is alluded to in the description for stdcall, mentioned above. I quote:

The callee cleans the stack, so the compiler makes vararg functions __cdecl.

This can be observed if the following code is compiled and a call to the function disassembled.

int __stdcall Bar(int a, int b, ...)
{
  return b * a;
}

The resulting code will be treated as __cdecl. As to the reason this is defined that way, I do not know.

link|improve this answer
Yeah sorry about that. Got confused with the old pascal calling convention. – linuxuser27 Sep 1 '10 at 6:09
Don't be. Thanks :) – Benjamin Sep 1 '10 at 6:13
I don't think the point is left-to-right or right-to-left order, by the way. The point is who has a responsiblity to clean-up the stack. – Benjamin Sep 1 '10 at 6:14
2  
@Benjamin: Consider printf as an example. The first argument tells the types of the rest of the arguments. With arguments pushed R2L, that's at the top of the stack so printf can use it to determine the types of the others. If the arguments pushed L2R, the TOS would be the last argument pushed, which could be an int or a long or a double, or whatever, but doesn't tell printf anything about the other arguments. – Jerry Coffin Sep 19 '10 at 22:23
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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