Tagged Questions
The calling-convention tag has no wiki summary.
27
votes
7answers
16k 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 confused as to what ...
22
votes
10answers
3k 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 boundaries only. Yes, some ...
16
votes
4answers
939 views
Is fastcall really faster?
Is the fastcall calling convention really faster than other calling conventions, such as cdecl?
Are there any benchmarks out there that show how performance is affected by calling convention?
13
votes
4answers
960 views
What does “cdecl” stand for?
Yes, I know that "cdecl" is the name of a prominent calling convention, so please don't explain calling conventions to me. What I'm asking is what the abbreviation (?) "cdecl" actually stands for. I ...
11
votes
3answers
877 views
Why does Windows64 use a different calling convention from all other OSes on x86-64?
AMD has an ABI specification that describes the calling convention to use on x86-64. All OSes follow it, except for Windows which has it's own x86-64 calling convention. Why?
Does anyone know the ...
11
votes
3answers
220 views
What is on the 68000 stack when classic MacOS enters a program?
I'm trying to understand an old classic Mac application's entry point. I've disassembled the first CODE resource (not CODE#0, which is the jump table). The code refers to some variables off the stack: ...
9
votes
2answers
714 views
__cdecl or __stdcall on Windows?
I'm currently developing a C++ library for Windows which will be distributed as a DLL. My goal is to maximize binary interoperability; more precisely, the functions in my DLL must be usable from code ...
9
votes
3answers
170 views
Is it a convention to avoid using $_ when using other people's Perl API's?
I've just been caught out when using someone else's API in conjunction with the default variable $_
foreach (@rps_server_details) {
@server_data = ();
@server_data = split(/,/);
...
8
votes
4answers
216 views
Contiguous memory guarantees with C++ function parameters
Appel [App02] very briefly mentions that C (and presumably C++) provide guarantees regarding the locations of actual parameters in contiguous memory as opposed to registers when the address-of ...
8
votes
2answers
158 views
MS Visual C++: When should you care about using calling conventions?
In C/C++ (specifically, I'm using MSVS), in what situation would one ever need to worry about specifying a calling convention for a function definition? Are they ever important? Isn't the complied ...
8
votes
7answers
2k 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 if someone would ...
7
votes
4answers
1k views
C++: Pass Vector struct by reference or value?
This is my Vector struct: struct Vector{ float x, y; };
Should I pass it to functions by value or as const Vector&?
7
votes
5answers
5k views
Retrieving the calling method name from within a method (C#)
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 called this popular method.
Pseudo Code ...
7
votes
4answers
2k views
What's safecall?
I'm working on the creation of an ActiveX EXE using VB6, and the only example I got is all written in Delphi.
Reading the example code, I noticed there are some functions whose signatures are ...
6
votes
5answers
173 views
Why are there so many different calling conventions?
Historically, why does it seem like just about everyone and their kid brother defined their own calling conventions? You've got C, C++, Windows, Pascal, Fortran, Fastcall and probably a zillion ...
6
votes
1answer
183 views
When to use calling conventions
What are the key factors on using different calling conventions? When does someone know to use specific calling conventions such as __cdecl or __stdcall or __fastcall in different occasions.
Examples ...
6
votes
1answer
474 views
C callback functions defined in an unnamed namespace?
I have a C++ project that uses a C bison parser. The C parser uses a struct of function pointers to call functions that create proper AST nodes when productions are reduced by bison:
typedef void ...
6
votes
7answers
781 views
Pass a Delphi class to a C++ function/method that expects a class with __thiscall methods
I have some MSVC++ compiled DLL's for which I have created COM-like (lite) interfaces (abstract Delphi classes). Some of those classes have methods that need pointers to objects. These C++ methods ...
6
votes
4answers
335 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 method accesses ...
6
votes
6answers
852 views
What are the different calling conventions in C/C++ and what do each mean?
There are different calling conventions available in C/C++ stdcall, extern, pascal etc. How many such calling conventions are available and what do each mean? Are there any links that describe these?
5
votes
1answer
107 views
In the Win64 ABI, can the reserved argument stack space be used for general purpose storage?
I'm learning x64 assembly on Windows for 'fun'. The MSDN documentation for the x64 calling convention on Windows says:
The caller is responsible for allocating space for parameters to the callee, ...
5
votes
0answers
184 views
Is this interface binary compatible between MSVC and mingw?
I am working on a library that allows its users (other libraries residing in the same process) to exchange data buffers and streams. The library has to be usable from both MSVC and mingw code (more ...
5
votes
5answers
208 views
Should I prefer “default” calling convention over __fastcall when I don't really care of the calling convention?
We have a huge C++ codebase with lots of COM objects. Each function exposed to COM must have __stdcall calling convention (usually STDMETHODCALLTYPE macro) and so we have lots of functions marked ...
5
votes
3answers
293 views
Why did Microsoft choose stdcall as their API convention?
Is there a good reason?
Are their internal functions (not exported) also stdcall convention?
5
votes
4answers
318 views
Any real use case for using the calling convention fastcall?
Have you had any real use case for using the calling convention fastcall?
Thanks.
4
votes
1answer
80 views
C++ How to call code with unsupported calling convention
I have got a x86 DLL (to which I have no source) which I need to call from a C++ program (VC++ 10).
Ive been told the calling convention is left to right, with the first three parameters passed in ...
4
votes
3answers
302 views
__fastcall convention within c#
Considering that:
Microsoft Specific
The __fastcall calling convention
specifies that arguments to functions
are to be passed in registers, when
possible. The following list shows the
...
4
votes
1answer
332 views
Help understanding x86-64 function preamble
I am experiencing a crash, and while investigating I found myself totally blocked by the following code:
0000000000000a00 <_IO_vfprintf>:
a00: 55 push %rbp
a01: ...
4
votes
7answers
456 views
How to return a complex return value?
Currently I am writing some assembly language procedures. As some convention says, when I want to return some value to the caller, say an integer, I should return it in the EAX register. Now I am ...
4
votes
4answers
273 views
What are custom calling conventions?
What are these? And how am I affected by these as a developer?
Related:
What are the different calling conventions in C/C++ and what do each mean?
4
votes
5answers
409 views
Can I programatically deduce the calling convention used by a C++ dll?
Imagine you'd like to write a program that tests functions in a c++ dll file.
You should enable the user to select a dll (we assume we are talking about c++ dlls).
He should be able to obtain a list ...
4
votes
1answer
1k views
Custom X86_64 calling convention to C function call
I've to do an interface (say, a wrapper) that allow a call from X86_64 assembly code using his calling convention to C function, with other calling convention. The best thing would be to be pretty ...
4
votes
8answers
727 views
Why should default parameters be added last in C++ functions?
Why should default parameters be added last in C++ functions?
4
votes
4answers
474 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 good compiler ...
4
votes
1answer
518 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 on x64 machines ...
3
votes
3answers
74 views
cdecl error: expected initializer before
I have a problem with the cdecl calling convention:
void Test1(char* str, ...) // ok
{}
void cdecl Test2(char* str, ...) // error: expected initializer before 'Test2'
{}
int main()
{}
...
3
votes
3answers
140 views
x86_64 calling conventions and stack frames
I am trying to make sense out of the executable code that GCC (4.4.3) is generating for an x86_64 machine running under Ubuntu Linux. In particular, I don't understand how the code keeps track of ...
3
votes
1answer
58 views
CLR/Fastcall: How are large value types passed internally to called functions?
Just out of curiosity: value types are generally copied, and the JIT compiler seems to use Microsoft's Fastcall calling convention when calling a method. This puts the first few arguments in ...
3
votes
2answers
103 views
How are function arguments passed in C?
The only thing that I know about the mechanism of how C passes values is that it is done either through a register or the stack.
Register or Stack? Exactly how?
3
votes
2answers
437 views
C: Return value via stack/register question
I am new to C, and there is one thing I can not understand.
When function returns something that is not bigger than register -- my compiler puts it in EAX.
When I return big structure (not pointer but ...
3
votes
1answer
371 views
How to declare an __stdcall function pointer
I tried this
typedef void (* __stdcall MessageHandler)(const Task*);
This compiles but gives me this warning (VS2003):
warning C4229: anachronism used :
modifiers on data are ignored
I want ...
3
votes
4answers
291 views
Why isn't PInvoke crashing in case of violated calling convention (in .NET 3.5)?
My solution has an unmanaged C++ DLL, which exports a function, and a managed application that PInvokes this function.
I've just converted the solution from .NET 3.5 to .NET 4.0 and got this ...
3
votes
2answers
972 views
Can Scala call by reference?
I know that Scala supports call-by-name from ALGOL, and I think I understand what that means, but can Scala do call-by-reference like C#, VB.NET, and C++ can? I know that Java cannot do ...
3
votes
2answers
470 views
Force gcc to pass the parameters on the stack
Is there a way to force gcc to pass the parameters of a function on the stack?
I don't want to use the registers for parameter passing.
Update: I'am using arm-gcc from CodeSourcery
3
votes
1answer
870 views
Could someone explain __declspec(naked) please?
I'm looking into porting a script engine written for Windows to Linux; it's for Winamp's visualization platform AVS. I'm not sure if it's even possible at the moment. From what I can tell the code is ...
3
votes
1answer
690 views
Question about Objective C calling convention and argument passing on ARM
I want to know how objective C runtime handle arguments when I call a objective C method like
[NSString stringWithFomat:@"%@, %@", @"Hello", @"World"]
There are three arguments for this objective C ...
3
votes
9answers
267 views
Pass the current state of a function into another function in C/C++
Is there a way to pass the current state of a function into another function in C/C++? I mean all the parameters and local variables by current state. For example:
void funcA (int a, int b)
{
...
3
votes
4answers
624 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 the one that cleans ...
3
votes
2answers
595 views
The cdecl calling convention
From:
http://en.wikipedia.org/wiki/X86%5Fcalling%5Fconventions
push c
push b
push a
call function_name
add esp, 12 ;Stack clearing
mov x, eax
Why do we need to explicitly add 12 to ESP to clear ...
2
votes
1answer
49 views
How are AVX registers handled by the common calling conventions?
I could not find any document defining how YMM registers are handled by the caller and by the callee.
To focus my question, here is what I would like to know:
Which YMM registers must be restored ...