- Application binary interface
In
computer software , an application binary interface (ABI) describes the low-level interface between an application program and theoperating system , or the interface between an application and its libraries, or that between component parts of an application. An ABI is similar to anapplication programming interface (API); however, the latter defines asource code interface. [allowing e.g. the same source code to compile on any system supporting that API] Simply put, ABIs enable binary compatibility, whereas APIs enable source code compatibility.For example, the
POSIX standard defines an API that allows a wide range of common computing functions to be written such that they may operate on many different systems (Mac OS X and various BSDs implement this interface); however, making use of this requires re-compilation for each platform. A compatible ABI, on the other hand, allows compiledobject code to function without any changes, on any system implementing that ABI. This is advantageous to both software providers (where they may distribute existing software on new systems without producing/distributing upgrades) and users (where they may install older software on their new systems without purchasing upgrades), although this generally requires various software libraries implementing the necessary APIs too.Content
ABIs cover details such as data type size and alignment, the
calling convention , which controls how functions' arguments are passed and return values retrieved; thesystem call numbers and how an application should make system calls to the operating system; and in the case of a complete operating system ABI, the binary format ofobject file s, program libraries and so on. A complete ABI, such as theIntel Binary Compatibility Standard (iBCS), [ [http://www.everything2.com/index.pl?node=iBCS Intel Binary Compatibility Standard (iBCS)] ] allows a program from one operating system supporting that ABI to run without modifications on any other such system.Other ABIs standardize details such as the C++ name decoration, [ [http://www.codesourcery.com/cxx-abi/abi.html Itanium C++ ABI] (compatible with multiple architectures)] exception propagation, [ [http://www.codesourcery.com/cxx-abi/abi-eh.html Itanium C++ ABI: Exception Handling] (compatible with multiple architectures)] and calling convention between compilers on the same platform, but do not require cross-platform compatibility.
OS implementations
Microsoft has shown significant commitment to a backward compatible ABI, particularly within theirWin32 library, such that older applications may run on newer versions of Windows.Apple_Inc. has shown less propensity to this concern, expiring compatibility or implementing ABI in a slower "emulation mode"; this allows greater freedom in development at the cost of obsoleting older software. AmongUnix-like operating systems, there are many related but incompatible operating systems running on a common hardware platform (particularlyIntel 80386 -compatible systems). There have been several attempts to standardise the ABI such that software vendors may distribute one binary application for all these systems; however to date, none of these have met with much success. TheLinux Standard Base is attempting to do this for theLinux platform whilst many of the BSD unices (OpenBSD /NetBSD /FreeBSD ) implement various levels of ABI compatibility for both backward compatibility (allowing applications written for older versions to run on newer distributions of the system) and cross-platform compatibility (allowing the execution of foreign code without recompilation).ee also
*
Programming
*Opaque pointer
*PowerOpen Environment
*Embedded Application Binary Interface References
External links
* [http://www.x86-64.org/documentation.html AMD64(x86_64) Application Binary Interface]
* [http://infocenter.arm.com/help/topic/com.arm.doc.ihi0036a/index.html Application Binary Interface (ABI) for the ARM Architecture]
* [http://www.cygwin.com/ml/binutils/2003-06/msg00436.html MIPS EABI documentation]
* [http://developers.sun.com/solaris/articles/about_amd64_abi.html Sun Studio 10 Compilers and the AMD64 ABI] Good summary and comparison about some popular ABIs
Wikimedia Foundation. 2010.