A calling convention refers to the way a function transmits parameters to a called function and receives a return value from it.

learn more… | top users | synonyms

0
votes
1answer
45 views

On Mac OS X, is it more efficient to pass vectors by reference or by value?

Clang has a C/C++ extension that which allows you to treat vector values as first-class citizens: typedef double double4 __attribute__((ext_vector_type(4)); // easy assignment double4 a = {1, 2, 3, ...
1
vote
0answers
13 views

In which cases is the C compiler allowed to ignore the calling conventions?

For obvious reasons, a C compiler has to compile all functions that are externally visible to other shared libraries so that they conform to the platform's calling conventions and other ABI ...
0
votes
0answers
24 views

JRuby Calling Java Methods - TypeError/ConcreteJavaProxy

I am creating a jruby library that has JDI bindings, but when calling a java method, I am getting some weird object inconsistencies that aren't allowing me to call certain methods. new_value ...
1
vote
1answer
49 views

How are params passed when calling Printf from 64 bit asm?

I am learning to do assembly language again, and the only problem I have had so far has been doing calls to C. The book I have is geared to 32 bit, and I am working in 64 bit. Apparently there is a ...
4
votes
2answers
121 views

What is the Windows RT on ARM native code calling convention?

I couldn't find any documentation on the Windows RT on ARM calling convention used by Visual Studio C++. Is Microsoft using ARM's AAPCS? If Microsoft is using the AAPCS/EABI for Windows RT on ARM, is ...
1
vote
1answer
24 views

“ABI-volatile” register treated as non-volatile across function call

On Windows x64, when is a compiler allowed to treat registers that the ABI marks as volatile as non-volatile given some additional insight? I have a disassembled function where r11 is used to restore ...
3
votes
2answers
107 views

Understanding C disassembled call

I want to learn about C calling convention. To do this I wrote the following code: #include <stdio.h> #include <stdlib.h> struct tstStruct { void *sp; int k; }; void ...
2
votes
3answers
175 views

Use GCC generated assembler inside C++ Builder

I'm using C++builder for GUI application on Win32. Borland compiler optimization is very bad and does not know how to use SSE. I have a function that is 5 times faster when compiled with mingw gcc ...
3
votes
3answers
71 views

When using PInvoke, why use __stdcall?

I have been using PInvoke to let my C# application call C++ functions I wrote. Now, I keep hearing everywhere and beyond that I need to define those externally accessible functions with the __stdcall ...
3
votes
0answers
86 views

how to declare __stdcall calling convention function pointer that is GCC compatible

This works with MSVC (compile and link). extern void (_TMDLLENTRY * _TMDLLENTRY tpsetunsol _((void (_TMDLLENTRY *)(char _TM_FAR *, long, long)))) _((char _TM_FAR *, long, long)); But with GCC ...
1
vote
2answers
31 views

BSD Stack Clean Up

I am learning Assembly language and have a question about calling conventions, and the stack clean up. Since I am using OSX I need to use the BSD calling convention for system calls which looks like ...
4
votes
1answer
238 views

How to pass functions parameters in a register with gcc asm keyword

In gcc you can declare that a local variable should be put in a register using the following syntax. register int arg asm("eax"); In some old code I found on the internet this syntax was used to ...
0
votes
1answer
294 views

Calling Win32's Sleep function from assembly creates access violation error

I'm using MASM and Visual C++, and I'm compiling in x64. This is my C++ code: // include directive #include "stdafx.h" // external functions extern "C" int Asm(); // main function int main() { ...
4
votes
2answers
282 views

__cdecl, __stdcall and __fastcall are all called the exact same way?

I am using Visual C++ 2010, and MASM as my x64-Assembler. This is my C++ code: // include directive #include "stdafx.h" // functions extern "C" int Asm(); extern "C" int (convention) sum(int x, int ...
12
votes
2answers
352 views

What's the default calling convention of a C++ lambda function?

The following code was compiled with VC++ 2012: void f1(void (__stdcall *)()) {} void f2(void (__cdecl *)()) {} void __cdecl h1() {} void __stdcall h2() {} int main() { f1(h1); // error C2664 ...
0
votes
1answer
97 views

When calling into C from MIPS do we use JR or JALR?

I'm writing some self-modifying code and I want to call a C function (call it foo) from MIPS. I've loaded the mem add of foo, &foo into $t1. Now I jr/jalr $t1. Will C set $ra as my current ...
1
vote
1answer
93 views

Setting a calling convention for std::function

I'm very new to using std and I'm currently trying to call into a function that takes an std::function as a param. Something similar to below: In the .h file in one lib: typedef bool t (/*Params*/); ...
4
votes
1answer
177 views

how to specify vc11 lambda calling convention

I want to pass a lambda function pointer, which nested in a class, to the Windows API callback function. I found there is no place for me to specify the __stdcall keyword. Some people told me the ...
0
votes
1answer
93 views

Lua alien returning multiple values

I have this function, i would like to return multiple values but i dont know how to achieve this function GetDiskSpace(_disk) require("alien") local kernel32 = alien.load("kernel32.dll") ...
0
votes
3answers
152 views

inline function and __thiscall __cdecl Bjarne String example

I have implementation of String class as in Bjarne "C++...". I want to have read() and other accessor functions inlined, so I marked them inline. It's ok, but defining hash function that do a read on ...
0
votes
0answers
255 views

(x86_64 linux assembly) Why printf with float format string work only with rsp % 0x10 = 0

I have a problem with write a call of printf on x86_64 linux assembler. If i try print a double value when rsp % 0x10 != 0, printf a fall down with segfault. Look to my code (nasm syntax): [bits 64] ...
1
vote
1answer
238 views

Plainly and simply, why do we use _stdcall?

I've come across calling conventions whilst studying states for game making with C++. In a previous question someone stated that MSDN doesn't explain _stdcall very well - I agree. What are the ...
0
votes
1answer
91 views

Ask GCC to MOV arguments in registers before PUSHing them

I am writing a bit of 16-bit (pun intended) code in C++, compiling it with G++. More on the context I'm compiling in here: Force GCC to push arguments on the stack before calling function (using PUSH ...
2
votes
1answer
109 views

Segfaults using functions x86 nasm

I'm writing a compiler with bison, and trying to implement procedures. I found the "global intpow" example online, and that works totally fine, and I made my own procedure calls modelled after it. The ...
0
votes
1answer
88 views

Luabind calling convention issues

I am having an issue with Luabind that I am unsure of how to fix without some over-simplified solution. Luabind appears to only allow binding to functions using the __cdecl calling convention. In my ...
0
votes
1answer
263 views

Calling C++ DLL from C# within VS fails. Run exe outside VS and it works

I have a C++ DLL that is being called like below from a C# console app. When run in Visual Studio to debug it, it throws an exception saying the stack is unstable and to check that the method ...
2
votes
1answer
125 views

Calling convention in C++/CLI

I've defined a function for a C++/CLI library: extern "C" { INT_PTR __cdecl brl_graphics_Graphics(int Width, int Height, int Depth, int Hertz, int Flags); } And this is the function that calls ...
2
votes
1answer
205 views

How does defining an explicit destructor for a C++ struct affect calling conventions?

A coworker poked me with this question, after noticing a curious behavior with C++ structs. Take this trivial code: struct S { int i; #ifdef TEST ~S() {} #endif }; void foo (S s) { (void)s; } ...
4
votes
1answer
84 views

Automatically detecting violations of assembly calling convention

Is there a way for the assembler (or a static analyzer) to warn if the hand-coded assembly code contains violations of the platform's assembly calling convention? The platform I'm using is ARMv7A ...
0
votes
0answers
65 views

LNK2028 in 2-project program (VS2010) [closed]

I've got solution with 2 project: First project is console app, which contain class System definition. Second is WinWorms c++ application, which used this class. When I try to use functions from ...
0
votes
2answers
149 views

compiler option for setting Default calling convention?

I kind of recall that in Turbo Pascal or early Delphi versions there were options to make functions calling convention not register by default but any other type. Maybe i mistake it for {$W+} or ...
0
votes
2answers
165 views

calling constructor through array of objects

class A { static int i; A() { System.out.println(++i); } public static void main(String h[]) { A obj[] = new A[30]; } } A obj[30] = new A[30]; :- this line should invoke ...
3
votes
2answers
647 views

Passing parameters and return values for a subroutine in assembly

I am working with ARM assembly, where I have to write one subroutine for which I am following the ARM calling convention(this will have to be integrated with some separate higher level implementation ...
1
vote
2answers
464 views

Linker error due to “__cdecl” and “__thiscall” Calling convention mismatch when using MFC?

I am using Visual Studio 2008. I am getting the a linker error when building a project that contains a statically linked library only when using MFC CString (vs std::wstring). So this works: ...
1
vote
1answer
193 views

the use of __stdcall and __cdecl in Windows CE DLLs

I have a Visual Studio 2008 C++03 application for Windows CE 6.0 x86. I'm having an issue where invoking a function from a DLL is causing an access violation exception, but only in debug mode. // DLL ...
0
votes
1answer
124 views

Is Microsoft Visual C++ not using the C/C++ calling conventions with floats?

I've been researching floating-point numbers for my compiler projects, especially how they are converted from decimal notation to bytes. I did find answers to all of my questions, but this YouTube ...
1
vote
1answer
107 views

Getting calling conventions from DWARF info

I am trying to get information about calling conventions from DWARF info. More specific, I want to get which registers / stack locations are used to pass arguments to functions. My problem is that I ...
2
votes
2answers
109 views

Stack View when printf is called?

I was just learning about format string vulnerabilities that makes me ask this question Consider the following simple program: #include<stdio.h> void main(int argc, char **argv) { char ...
0
votes
1answer
232 views

Calling Conventions in Visual Studio

I have a fortran DLL built in the CVF convention and my c++ code built using cdecl calling convention to get the stuff it needs from my DLL. I checked in my c++ code obj files and the symbols are ...
3
votes
1answer
263 views

x64 calling convention (stack) and varargs

I've read Microsoft's documentation, but the scheme is so awkward, I thought I'd double-check to make sure I'm understanding it correctly... My understanding is the generic method by which parameters ...
0
votes
3answers
352 views

Why is visual studio 2010 looking for __thiscall rather than __cdecl calling conventions?

Overall I am trying to link an opencv test program with the opencv libraries I compiled using 64-bit visual studio 2010 professional. An example error is: 1>webcamtest.obj : error LNK2001: ...
12
votes
6answers
291 views

Why would you pass an object by value in C++ [duplicate]

Possible Duplicate: Is it better in C++ to pass by value or pass by constant reference? I'm aware of the differences of passing by value, pointer and reference in C++, and I'd consider ...
3
votes
1answer
155 views

Compiler ignore __stdcall

It seems to me, that MSVS ignores __stdcall directive on my functions. I'm cleaning up the stack manually, but the compiler still append ADD ESP instructions after each CALL. This is how I declare ...
4
votes
2answers
172 views

In C, is it ever safe to cast a variadic function pointer to a function pointer with finite arguments?

I want to create a function pointer to a function that will handle a subset of cases for a function that takes a variable parameter list. The use case is casting a function that takes ... to a ...
1
vote
1answer
216 views

Using thunks to go from cdecl to thiscall (Linux x86)

I've been trying to use 'thunking' so I can use member functions to legacy APIs which expects a C function. I'm trying to use a similar solution to this. This is my thunk structure so far: struct ...
0
votes
1answer
149 views

How to combine libraries with __stdcall and __cdecl in one vs2008 project

I want to use two 3rd party libraries in my project but one was compiled with __stdcall convention and another with __cdecl. No matter what I set my project property to, the LINKER fails to link one ...
0
votes
0answers
308 views

__thiscall with __stdcall behaviour

I am reverse engineering an old C++ code and I found something which I cannot understand how can be accomplisehd from a normal C++ code. The function signature, from the DLL, is a mangled name which ...
0
votes
1answer
101 views

OS X calling convention return value

I've seen a gdb disassembly output of a main function that does nothing particular and it looks like this: 1 push %rbp 2 mov %rsp, %rbp 3 sub $0x10,%rsp 4 movl $0x0, -0x8(%rbp) ; ...
1
vote
1answer
272 views

PUSH/POP in ARMv5 assembly

I'm new to ARMv5 assembly coding. Suppose I wish to call a C function from my assembly code using CALL_VM_FUNCTION. My C function uses three arguments. Which registers do I save the arguments in ...
2
votes
1answer
178 views

Windows32 API: “mov edi,edi” on function entry?

I'm stepping through Structured Error Handling recovery code in Windows 7 (e.g, what happens after SEH handler is done and passes back "CONTINUE" code). Here's a function which is called: 7783BD9F ...

1 2 3 4