The (Application Binary Interface) specifies the low level interface between the programs, libraries and the operating system. E.g. which registers are used to pass function parameters.

learn more… | top users | synonyms

21
votes
1answer
218 views

What platforms have incompatible ABIs for C and C++?

It has just come to my attention that the C++ standard says that C and C++ functions have different and incompatible types, even if their type signatures are the same (for more info see this ...
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 ...
-3
votes
0answers
27 views

Why the Windows ABI and DLLs are often described as “broken”? [closed]

What is the problem with the Windows ABI ( typically Visual Studio ABI ) that are often connected to the behaviour of compiled objects such as dlls ? It's a quite popular argument when talking about ...
1
vote
1answer
50 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 ...
1
vote
1answer
31 views

How is inline assembler implemented in Linux and Windows compilers and ELF/EXE?

Is the assembler already converted into the ABI binary in executables or is it done by OS? Please can you give me link to GCC or any other compiler source code, which converts x86-64 inline asm into ...
8
votes
1answer
51 views

Visual Studio parameter alignment restrictions and Windows x64 ABI

With Visual C++ on WIN32 there's a long-standing problem with functions with 4 or more SSE parameters, e.g. __m128i foo4(__m128i m0, __m128i m1, __m128i m2, __m128i m3) {} generates an error: ...
6
votes
1answer
101 views

std::type_info<T>::hash_code() uniqueness and the meaning of “should”

Is it meant to be guaranteed that same std::type_info::hash_code() values imply same types? Cplusplus.com seems to claim so: This function returns the same value for any two type_info objects ...
2
votes
1answer
29 views

What must be recompiled to run a x32 ABI application?

Can I compile an application with the new x32 ABI, and then run it in a normal kernel? What about the runtime C library? Is there any form of interoperability with precompiled x86/x86_64 libraries?
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
1answer
112 views

What happens to empty classes in the AMD64 ABI?

I'm looking at the AMD64 ABI and it does not appear to specify how to pass empty class types. For empty class member functions, it seems that this is passed as usual, but for empty classes, Clang ...
1
vote
0answers
21 views

Are the g++4.3 and g++4.7 series ABI compatible?

Also if I compile a piece of code with c++11 flag will it be compatible with another code compiled without c++11 flag? Where can I find the compatibility list?
10
votes
1answer
247 views

Do Visual Studio 2012 updates break C++ ABI?

When Microsoft initially released Visual Studio 2012 in September 2012, they announced their plan for providing updates for Visual Studio on a more regular basis. Since then, they have released Visual ...
0
votes
1answer
24 views

Where is the RHEL version 5 Developer Guide?

I found the "Developer Guide" for RHEL version 6 located at: https://access.redhat.com/knowledge/docs/Red_Hat_Enterprise_Linux/ --> click on the Developer Guide link. However when you scroll down ...
9
votes
1answer
116 views

C ABI: is it safe to change void function to return int?

Is there any non-exotic architecture/OS/compiler where change of: void func(void *, int, int) to: int func(void *, int, int) would break ABI? (i.e. program compiled for "void" version of a ...
9
votes
1answer
143 views

ARM C++ ABI: Constructor/destructor return values

I've been reading through Clang source code and discovered something interesting about the ARM C++ ABI that I can't seem to understand the justification for. From the an online version of the ARM ABI ...
1
vote
2answers
181 views

How Do You Configure IBM Worklight Studio to Build for ARM and MIPS devices?

I'm using Worklight Studio Developer Edition plugin for the Eclipse IDE Juno JAVA EE to test building hybrid apps and I'm trying to build and deploy to an Android MIPS based device. ARM devices and ...
3
votes
0answers
62 views

RTTI across module boundaries in Itanium and MSVC ABIs

I am reading the Itanium ABI which says that It is intended that two type_info pointers point to equivalent type descriptions if and only if the pointers are equal. An implementation must satisfy ...
0
votes
1answer
24 views

shared linking against libB.so, libB.so.3, or libB.so.3.0?

Suppose I would like to create a library A that links against another (system) library B of which the following files are installed: $ ll /usr/lib/libB* libB.so -> libB.so.3 libB.so.3 -> ...
3
votes
4answers
82 views

Is the ABI part of the C standard? [duplicate]

It seems to me that C libraries almost never have issues mixing libraries compiled with different versions or (sometimes) even different compilers, and that many languages seem to be able to interface ...
3
votes
2answers
129 views

Which registers are safe to use in a function (x86)

According to Wikipedia the Intel ABI allows using EAX, ECX and EDX without preserving them in a function. I am not sure what "Intel ABI" means. Does this mean it is enforced/followed by all compilers ...
1
vote
1answer
178 views

ASM block into function and ABI x86-64

I coded a very nice integer lib for large integer but limited to 512 bits (faster than GMP for various reason). I am trying to generalize the lib for large size. So I have to loop over an adcq ...
2
votes
0answers
175 views

SIMD vector interoperability between LLVM and gcc

I would like to accelerate an program I'm working on by dynamically generating code with LLVM's JIT. The algorithm can operate on vectors, and I'd rather like to use the SIMD vector extensions in LLVM ...
2
votes
1answer
212 views

What's the difference of section and segment in ELF file format

From wiki Executable and Linkable Format: The segments contain information that is necessary for runtime execution of the file, while sections contain important data for linking and relocation. ...
3
votes
2answers
154 views

Memory layout inheritance

Consider the following two structs: struct A { // A bunch of standard layout data }; struct B:public A { // Other data }; And an object B foo; Supposing sizeof(A) does not differ ...
7
votes
1answer
326 views

where is amd64 psABI? [closed]

The AMD64 psABI used to be hosted at x86-64.org. I have a copy of pdf file and it says explicitly: The architecture specification is available on the web at http://www.x86-64.org/documentation. ...
3
votes
0answers
113 views

Who invented the Red Zone? Where was it first used? [closed]

A Red Zone is a small region beyond the callstack's stack pointer into unallocated stack space that some systems make available for scratch use. On such systems, the Red Zone can be used by the ...
7
votes
2answers
188 views

To what extent does the Itanium ABI really specify padding and alignment?

I've been told: [ABIs] guarantee the exact layout of the struct, byte offset of every member, which bits are used for bit fields, where and how much padding there is, etc... But I've always ...
0
votes
0answers
44 views

What is the relevance of the parameter “preserve_fpu” in Boost.Context? [closed]

In Boost.Context library for switching CPU context (useful for implementing coroutines), what is the true relevance of the boolean parameter preserve_fpu in boost::context::jump_fcontext() ? Whatever ...
2
votes
1answer
100 views

readelf utility for Visual Studio C++ ABI and VS compiled objects?

I'm looking for alternatives to the readelf and objdump duo when using Visual Studio for compiling C++ source code and investigating lib, obj and dll. I'm aware that MinGW offers a porting of this ...
6
votes
1answer
120 views

What are the real ELF TLS ABI requirements for each cpu arch?

Ulrich Drepper's paper on thread-local storage outlines the TLS ABI for several different cpu architectures, but I'm finding it insufficient as a basis for implementing TLS for two reasons: It omits ...
6
votes
1answer
154 views

Determining most efficient word size for implementing bignums in C++11?

Typically bignums are implemented by using multiple words, but I'd like to pick the word size as portably as possible. This is more tricky than it might seem -- std::uint64_t is available in many ...
2
votes
4answers
71 views

Linux, compile a piece of code in one host, to run in another?

The code is written in c/c++,may depend some libs in the compiling host; and it should run in another host without libs depending problems. Both hosts are linux, may have different versions. Do you ...
9
votes
2answers
686 views

Visual Studio C++ dll library crashes in Qt application

I have a problem sharing "std::string" data between MS Visual C++ DLL library and Qt program. What I have are: DLL library written in Visual C++ 2010 Express, which exports one method: extern "C" ...
6
votes
2answers
207 views

Detecting ABI compatibility issues with GCC

I recently spent a fairly substantial amount of time tracking down a problem that turned out to be caused by compiling a library with -D_GLIBCXX_DEBUG (which tells libstdc++ to use a debug version of ...
3
votes
2answers
106 views

How to raise an exception from C++ that will trigger scripting exception handlers

I've been finding bits and pieces to this answer on the web, but not a crystal clear solution. Here's what i'm trying to do. 1) Create an ATL Simple Object. 2) Add a method to that object which ...
0
votes
0answers
143 views

Android NDK - OMAP4430 Settings [closed]

I have native code that runs successfully on the Galaxy Nexus, Galaxy S3 and Asus transformer tablets. I tried it on a Toshiba AT700 (OMAP 4430 based) and it crashes immediately (even on almost empty ...
4
votes
4answers
269 views

A few questions about legal arguments to printf(“%s”, …)

I'm creating a modified printf implementation, and I'm not sure about the answers to these questions. Does zero work as a null string? (Is printf("%s", 0) allowed?) I'm guessing no, because 0 is an ...
9
votes
1answer
3k views

Difference between armeabi and armeabi-v7a

As far as I can tell from the docs, the difference between the two supported flavors of ARM architecture in Android NDK is only in the set of supported CPU instructions. Is that really so? Is there no ...
1
vote
1answer
238 views

Linux kernel module ABI (x86)

I'm looking for an official definition of the ABI used for calls in kernel modules on x86. I recently looked into a compiled module and was surprised to discover that: it uses registers to pass the ...
4
votes
1answer
155 views

Why does Clang call %eip+1 when converting double to a ulonglong?

And where is the result stored? I read that it is typically %eax, but a 64-bit uint is too wide for that. I can't find the result in the stack either. % clang --version Debian clang version ...
2
votes
1answer
380 views

How to deal with this : selected processor does not support `qadd16 r1,r1,r0'

I am developing android application and in that i am working on NDK. while compiling the files i got the error of selected processor does not support `qadd16 r1,r1,r0'. can anyone explain me why and ...
10
votes
2answers
367 views

Architectures/ABIs where sizeof(long long) != 8

In x86/amd64 world sizeof(long long) is 8. Let me quote quite insightful 8 year old mail by Zack Weinberg: Scott Robert Ladd writes: On a 64-bit AMD64 architecture, GCC defines long ...
2
votes
2answers
120 views

Questions regarding detouring by modifying the virtual table

I've been practicing detours using the same approach as Microsoft Detours (replace the first five bytes with a jmp and an address). More recently I've been reading about detouring by modifying the ...
4
votes
3answers
207 views

G++ ABI compatibility list

I have compiled my preload file on Ubuntu server (two files for x32 and x64). Where I can get list, in which I will see with what OS my compiled files are compatible and with what I should recompile ...
2
votes
1answer
392 views

c++: vtables and this pointer

I was trying to learn some more about the inner workings of vtables and vpointers, so I decided to try to access the vtable directly using some tricks. I created two classes, Base and Derv, each ...
9
votes
2answers
114 views

Does reordering public non-virtual methods in a stand-alone class break ABI?

Does changing the order of public non-virtual non-inline overloaded methods in a stand-alone class break the ABI? Before: class MyFinalClass { public: // ... void doSomething(char c, int i, ...
4
votes
2answers
188 views

Link compatibility of enums and enum classes

Suppose there is a C++11 API that uses enum classes: // api.hpp enum class E {A, B, C}; void f(E); ... // api.cpp void f(E e) { if (e == E::A) ... } Now suppose I would like to use this ...
3
votes
0answers
284 views

Native library not loading under Android 4.0.3 (MIUI ROM)

A customer contacted me - an Android app of mine broke once he updated his Android ROM to MIUI equivalent to Android 4.0.3. The relevant line in LogCat is: 04-09 10:37:09.326 17789 17789 E ...
2
votes
1answer
227 views

How to make MS Visual C++ use LP64 instead of LLP64

I'd like to know if it's possible to make VC++ use LP64 instead of LLP64, I know I could use another compiler such as GCC or Intel C++, but I'd like to use VC++ for various reasons. There is no ...
1
vote
1answer
276 views

Compatibility between GCC and LLVM

I'm working on a project that is cross platform, and on OS X one section must be built with clang/llvm because it creates a Cocoa window, the rest of the project is built with GCC. This is compiled ...

1 2 3