3
votes
1answer
180 views
COM calling convention on x64
I am trying to get a definitive answer regarding the way COM behaves on a x64 machine. Does Windows use the normal x64 calling convention when dispatching calls to COM interfaces o …
2
votes
4answers
94 views
C calling conventions and passed arguments
When making a function call in Linux (or OS X for that matter), can the callee modify the values of the arguments on the stack? I was under the assumption that since the caller is …
6
votes
4answers
129 views
Can making a method static improve performance, and under what circumstances?
When, if ever, is it faster to pass arguments as arguments to a static method rather than have the method be non-static and access the same values via instance members. Assume the …
0
votes
1answer
69 views
Error linking with 3rd party static library built with previous version of Visual Studio.
I am working on a project that links to a 3rd party static library (herin refered to as EXTERNALLIB). In Visual Studio 2005 I was able to link to EXTERNALLIB and create a usable e …
1
vote
1answer
75 views
function calling convention with boost::function_types
Hey there,
I've just been experimenting with the boost::function_types library recently, and I've come across a bit of a snag. I want to find out the calling convention of a given …
4
votes
6answers
276 views
What is the meaning and usage of __stdcall ?
I come across _stdcall a lot these days. And in my opinion msdn doesn't explain very clearly what it really means, when and why should it be used, if at all.
I would appreciate i …
1
vote
2answers
149 views
Why would a .lib compiled in VS2003 fail to link with code compiled with VS2008?
We just had an interesting experience in trying to link a set of code compiled using Visual Studio Express 2008 with a .lib compiled with Visual Studio 2003. All in C++. To be pr …
4
votes
8answers
407 views
Why should default parameters be added last in C++ functions?
Why should default parameters be added last in C++ functions?
4
votes
4answers
141 views
Resources for x86 compiler backend
I am writing a Tiger compiler in F# and I have decided to emit x86 assembly. I know the basics of how a machine is constructed and also a bit of assembly, but not enough to write a …
0
votes
1answer
242 views
Writing naked functions with custom prolog and epilog code in Visual Studio
I'm writing some plugin code in a dll that is called by a host over which I have no control.
The host assumes that the plugins are exported as __stdcall functions. The host is tol …
6
votes
7answers
3k views
What is __stdcall?
I'm leaning some win32 programming, and the WinMain prototype looks like:
int WINAPI WinMain ( HINSTANCE instance, HINSTANCE prev_instance, PSTR cmd_line, int cmd_show )
I was c …
10
votes
6answers
1k views
Why does the Mac ABI require 16-byte stack alignment for x86-32?
I can understand this requirement for the old PPC RISC systems and even for x86-64, but for the old tried-and-true x86? In this case, the stack needs to be aligned on 4 byte bounda …
0
votes
5answers
804 views
c# how to retrieve the calling method from within a method
Good morning everyone,
I have a method in an object that is called from a number of places within the object. Is there a quick and easy way to get the name of the method that call …
2
votes
9answers
174 views
Is there a good use for inout parameters?
IS there a good use for inout (ref in C#, byref (like out parameters) in vb.net) parameters in .NET?
I feel that the confusion caused by a parameter used both as input and as a ret …
0
votes
1answer
217 views
Using __arglist with a varying set of named parameters
Hi,
in my application I have 2 layers. The first layer is a C legacy exposing cdecl functions that use the "..." syntax for a varying parameter list. The only way I found to call t …
