Tagged Questions
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.
34
votes
9answers
14k views
Are there any downsides to passing structs by value in C, rather than passing a pointer?
Are there any downsides to passing structs by value in C, rather than passing a pointer?
If the struct is large, the there is obviously the performancd aspect of copying lots of data, but for a ...
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
8answers
955 views
I never really understood: what is Application Binary Interface (ABI)?
I never clearly understood what is an ABI. I'm sorry for such a lengthy question. I just want to clearly understand things. Please don't point me to wiki article, If could understand it, I wouldn't be ...
15
votes
4answers
1k views
Creating Library with backward compatible ABI that uses Boost
I'm working on certain C++ library (or more framework). I want to make it backward
compatible with previous versions preserving not only API compatibility but also ABI (like the great job Qt does).
I ...
11
votes
2answers
259 views
If I jump out of a catch-block with “goto”, am I guaranteed that the exception-object will be free'ed?
I have such code as follows
try {
doSomething();
} catch(InterruptException) {
goto rewind_code;
}
if(0) {
rewind_code:
longjmp(savepoint, 1);
}
My question is, is the exception object that ...
9
votes
2answers
2k views
GCC ABI compatibility
As far as I've understood, it is not possible to link libraries that use different versions of GCC's Application Binary Interface (ABI). Are there ABI changes to every version of GCC? Is it possible ...
9
votes
5answers
5k views
What are the calling conventions for UNIX & Linux system calls on x86-64
Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32:
http://www.int80h.org/bsdasm/#system-calls
...
8
votes
4answers
279 views
In C++, does overriding an existing virtual function break ABI?
My library has two classes, a base class and a derived class. In the current version of the library the base class has a virtual function foo(), and the derived class does not override it. In the next ...
7
votes
1answer
103 views
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
I am developing a Java application. I would like to use the Java Native Interface (JNI) to call functions in a C++ ...
7
votes
3answers
160 views
C# interface breakage, ABI
Suppose we have the class X in version 1 of the assembly A.dll:
class X {
SomeType Property { set; get; }
}
and then in version 2 of the assembly A.dll:
class X {
SomeType Property { set; ...
6
votes
1answer
102 views
How does adding a private member variable break C++ ABI compatibility?
The pimpl idiom is commonly used in order to allow changing code in dynamically linked libraries without breaking ABI compatibility and having to recompile all the code that depends on the library.
...
6
votes
3answers
275 views
Are the default constructor and destructor ever inline?
I'm curious if the default constructor and destructor that the compiler generates are inline or not, because I can justify it either way. On the one hand, you want the default constructor/destructor ...
6
votes
6answers
587 views
What could C/C++ “lose” if they defined a standard ABI?
The title says everything. I am talking about C/C++ specifically, because both consider this as "implementation issue". I think, defining a standard interface can ease building a module system on top ...
6
votes
7answers
337 views
Why is Application Binary Interface important for programming
I don't understand why the ABI is important context of developing user-space applications. Is the set of system calls for an operating system considered an ABI? But if so then aren't all the ...
5
votes
3answers
102 views
Where do you check the prototypes of syscalls on x86-64 machines?
That is, how do you know
how many parameters a specific syscall expects,
which register each parameter should be in,
and finally what each parameter means?
Is there a man alike command to tell ...
5
votes
1answer
66 views
Objective-C 2.0 ABI specification
Does documentation for the Objective-C 2.0 ABI exist somewhere on the Internet? The release notes for objc4-493.9 say:
Forthcoming documentation will describe the ABI for the use of compilers and ...
5
votes
2answers
110 views
ARM register r9 in the Linux kernel
The "ARM Architecture Procedure Calling Standard" (AAPCS/EABI) states (5.1.1) that
"The role of register r9 is platform specific."
but
"A virtual platform [...] may designate r9 as an additional ...
5
votes
2answers
84 views
Build modern (4.x) GCC to target a 2.4.x kernel on the same architecture as the host?
The question is relatively straight forward: how can I build a GCC of the 4.x series (along with binutils and friends) that targets a 2.4 ABI on the same architecture as the host for the compiler?
...
5
votes
1answer
108 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
2answers
603 views
What is the format of the x86_64 va_list structure?
Anyone have a reference for the representation of va_list in the x86_64 ABI (the one used on Linux)? I'm trying to debug some code where the stack or arguments seem corrupt and it would really help to ...
4
votes
2answers
464 views
Monotouch: create custom UItextField and override methods
I've created a UITextField with a background image like this:
_tf = new CustomTextField(new RectangleF(0,0 200, 200));
_tf.BorderStyle = UITextBorderStyle.None;
_tf.Background = ...
4
votes
5answers
116 views
Does changing f(mystruct *a) to f(const mystruct *a) breaks API/ABI in C?
1: void f(mystruct *a)
2: void f(const mystruct *a)
Does changing the function signature from 1->2 break API/ABI in C? Changing 2->1 break API/ABI in C?
4
votes
1answer
666 views
Why would the ELF header of a shared library specify Linux as the OSABI?
All the standard shared libraries on my Linux system (Fedora 9) specify ELFOSABI_NONE (0) as their OSABI.
This is fine - however I've received a shared library from a supplier where the OSABI given ...
3
votes
2answers
255 views
i386 vs. AMD64 ABI Differences
Where can I find all the differences in data types between the i386 & AMD64 Application Binary Interface(ABI)s ?
I know that the long type is 32-bit in i386 ABI & 64-bit in AMD64. Is this ...
3
votes
1answer
529 views
ARM to C calling convention, NEON registers to save
There is a similar post that covers regular registers. What about NEON registers. As far as I remember either top half or bottom half of registers have to be preserved across function calls.
I can't ...
3
votes
2answers
167 views
Best Practise and Semantics of namespace nested fucntions and the use of extern “C”
I am creating a C++ library with a C-ABI interface.
This is how GCC treats the extern "C" qualifier with regards to mangling:
namespace x {
extern "C" int monkey(int x) {
return 1;
...
3
votes
1answer
324 views
How to use c library function fgets in assembly language?
As the title described, how to use c library function fgets in assembly language? Indeed, I want to know how to get the file pointer to stdin. Thanks for your reply.
3
votes
4answers
3k views
C Runtime objects, dll boundaries
What is the best way to design a C API for dlls which deals with the problem of passing "objects" which are C runtime dependent (FILE*, pointer returned by malloc, etc...). For example, if two dlls ...
3
votes
4answers
3k views
Why I need to re-compile vmware kernel module after a linux kernel upgrade?
After a linux kernel upgrade, my VMWare server cannot start until using vmware-config.pl to do some re-config work (including build some kernel modules).
If I update my windows VMWare host with ...
2
votes
2answers
116 views
ELF generation using libelf hints
I'm trying to generate a simple static ELF using libelf, but I seem to be having troubles.
I do not wish to generate an object file and then link it w/ LD, instead I wish to generate it on my own.
...
2
votes
1answer
95 views
Shared libraries and linking on Linux (elf)
I have read the thread on Creating Library with backward compatible ABI that uses Boost and I'm now trying to understand how I should link my shared libraries to maintain a stable ABI, and avoid ...
2
votes
1answer
73 views
Is it possible to produce a plain binary file only using GNU Assembler on Mac OS X?
I wrote some assembly code for x86, and wanted to assemble it into plain binary file (not Mach-O) by just using Mac's default assembler (the 'as'). After several googlings and tries, I failed.
...
2
votes
2answers
1k views
glibc: elf file OS ABI invalid
downloaded and compiled glibc-2.13. when i try to run a sample C program which does a malloc(). I get following error
"elf file OS ABI invalid"
Can anybody please pass my any ...
2
votes
2answers
98 views
How are compilation and ABI related?
How are compilation and ABI related?
Is a compiler's solely job to build Application Binary Interface (ABI) to OS and/or other applications?
About ABI, quoted from Wikipedia:
ABIs cover details ...
2
votes
1answer
343 views
Making syscalls on Linux without a stack
On Linux i386, the int $0x80 syscall ABI makes it easy to perform syscalls without having a valid userspace stack. The vdso/vsyscall interface, on the other hand, requires access to a stack. How do ...
2
votes
1answer
268 views
What is ABI(Application Binary Interface)?
This is what wikipedia says:
In computer software, an application
binary interface (ABI) describes the
low-level interface between an
application (or any type of) program
and the operating ...
2
votes
6answers
342 views
Does C have a standard ABI?
From a discussion somewhere else:
C++ has no standard ABI
But neither does C, right?
On any given platform it pretty much does. It wouldn't be useful as the lingua franca for ...
2
votes
4answers
215 views
Maintaining ABI: adding constructor to struct
We have a struct in revision 1 of a shared library that we need to maintain the ABI for:
struct Person
{
std::string first_name;
std::string last_name;
}
In the revision 2, we're changing ...
2
votes
3answers
2k views
How to expose STL list over DLL boundary?
I have a DLL which needs to access data stored in STL containers in the host application. Because C++ has no standard ABI, and I want to support different compilers, the interface between the ...
1
vote
1answer
43 views
How to avoid STT_GNU_IFUNC symbols in your binary?
I need to deploy to a Red Hat 4.1.2 box (which has gcc 4.1.2). I use GCC 4.6.1 on Ubuntu 11.10 for development. Unfortunately some of the binaries that my build process creates are not usable on the ...
1
vote
1answer
50 views
Does Eclipse have to deal with C++ ABI compatibility issues?
The Eclipse project offers installers for Linux. Do these installers (or the installed executables) contain any compiled C++ code? If so, how does Eclipse avoid C++ ABI compatibility issues?
I ...
1
vote
3answers
102 views
STL Containers and Binary Interface Compatibility
STL Binary Interfaces
I'm curious to know if anyone is working on compatible interface layers for STL objects across multiple compilers and platforms for C++.
The goal would be to support STL types ...
1
vote
1answer
88 views
Running executables of different format on any OS
This shouldn't be that hard that one may think, if I got it right. Specifically, I'll begin with iOS and the ELF executable format. Let's clarify that I have a jailbroken iPhone and I don't want to do ...
1
vote
1answer
68 views
How can Qt containers be passed as parameters to functions of a shared library?
I am writing a library function, and I really need to be able to pass arguments like vectors & maps to it.
I know you can't have a function with STL parameters declared at the header of a library
...
1
vote
2answers
81 views
programming for a generic ARM environment in C or C++ on X86
I'm looking for a solution to begin my journey in the ARM world's, i want to use the C as my main language and i'd like to create a basic program using the standard I/O library for this environment.
...
1
vote
1answer
63 views
What are the purposes of the ARM ABI and EABI?
The more i look at this PDF the less i understand what it means.
Also i'd like some comments on this others 1 and 2
i hope that someone could help.
1
vote
2answers
98 views
Gcc x64 function calling
As far as I know, there are two possible calling conventions for the x64 code - Microsoft x64 and AMD64.
Now, gcc can be launched with the -mregparm=0 parameter, which doesn't work if we are working ...
1
vote
4answers
176 views
Difference in integer size for 64-bit system(confuse with my old 32-bit pc system)
Few months ago i get myself a laptop with cpu intel i7-2630qm with a 64-bit windows. While practising my programming skils under this system , I encountered some difference in terms of integer size ...
1
vote
1answer
57 views
ABI compatibility of interfaces (abstract classes) with other virtual changes
Does the ABI of the view of a class remain stable even if other changes, involving virtuals, are made in the derived class?
That is, say I have an interface InterfaceA (abstract class with many pure ...
1
vote
1answer
203 views
retrieve Android ARM processor version programatically
Is there a way to retrieve the ARM processor version programatically? I'm trying to send it to Google Analytics. I've been told it's in the /proc/cpuinfo folder but I'm unsure how to retrieve this ...