Is there a good reason?

Are their internal functions (not exported) also stdcall convention?

link|improve this question

Why did Microsoft choose stdcall as their API convention? – JustBoo Aug 24 '10 at 13:51
Thanks Constantin :) – Benjamin Aug 24 '10 at 14:50
feedback

3 Answers

up vote 6 down vote accepted

It was an adaptation to the pascal calling convention for 32-bit code. Pascal was the calling convention for 16-bit operating systems like OS/2 and Windows 3. Why pascal was chosen is a bit of a guess, even I was a small pup back then, but it is slightly more efficient. Which mattered back when 640 KB was all you had to work with.

Most Win32 functions aren't true stdcall as it also prescribes how the exported function is decorated before presented to the linker. Like void Mumble(int arg) becomes _Mumble@4. The number after the @ describes the activation frame size. But most Win32 functions are exported without any decoration. Probably to give the programmer a fighting chance to make GetProcAddress() work. I think the decoration was intended to help the linker detect mismatches between the declared API function signature and the actual one. Having a mismatch in the number of passed arguments is an automatic kaboom since the callee will pop more or less arguments off the stack then were passed. Hard to diagnose too. A weakness of stdcall, the cdecl convention doesn't have this problem.

Internal calling is a mixed bag between stdcall, cdecl and thiscall. Can't say I've ever detected a pattern, although single-stepping Windows code isn't something I enjoy doing.

link|improve this answer
2  
the lack of symbol decoration is cause the winapi binaries use .def files for exporting(which strips decoration and/or uses an ordianl), this makes importing via GetProcAddress simple, as there is no symbol decoration – Necrolis Aug 24 '10 at 12:04
Good point, I think you're right. – Hans Passant Aug 24 '10 at 12:05
Hey, unexpected reversal :) – Hans Passant Oct 19 '10 at 23:43
feedback

Code compiled with stdcall is significantly smaller than code compiled with cdecl (the alternative). At the time the decision was made, smaller code was faster code.

link|improve this answer
Actually I preferred Hans Passant's answer to mine, but whatever. – Larry Osterman Aug 25 '10 at 3:38
Because you are a Microsoftee(for long time), I chose your answer. – Benjamin Aug 25 '10 at 21:20
feedback

It's faster than the others.

link|improve this answer
1  
Really? Why is it faster? – Benjamin Aug 24 '10 at 11:57
1  
the speed depends on the situation, stdcall prevents register thrashing in big loops/functions, however accesing a register(__fastcall 0 - 2 arg) is faster than pop/accessing the stack – Necrolis Aug 24 '10 at 12:01
I guess regarding performance, "less code" would have been the deciding factor back then: restoring the stack pointer in the function, rather than at the caller. – peterchen Aug 24 '10 at 14:40
feedback

Your Answer

 
or
required, but never shown

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