Application binary interface

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Jim1138 (talk | contribs) at 06:32, 24 March 2017 (Reverted edits by 2001:14BA:8300:0:0:0:3:7E1F (talk) (HG) (3.1.22)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

A high-level comparison of in-kernel and kernel-to-userspace APIs and ABIs
Linux kernel and GNU C Library define the Linux API. After compilation, the binaries offer an ABI; keeping this ABI stable over a long time is important for ISVs.

In computer software, an application binary interface (ABI) is the interface between two program modules, one of which is often a library or operating system, at the level of machine code. An ABI determines such details as how functions are called and in which binary format information should be passed from one program component to the next, or to the operating system in the case of a system call.

Adhering to ABIs (which may or may not be officially standardized) is usually the job of the compiler, OS or library writer, but application programmers may have to deal with ABIs directly when writing programs in a mix of programming languages, using foreign function call interfaces between them.

ABIs differ from application programming interfaces (APIs), which similarly define interfaces between program components, but at the source code level.

Description

ABIs cover details such as:

  • the sizes, layout, and alignment of data types
  • the calling convention, which controls how functions' arguments are passed and return values retrieved; for example, whether all parameters are passed on the stack or some are passed in registers, which registers are used for which function parameters, and whether the first function parameter passed on the stack is pushed first or last onto the stack
  • how an application should make system calls to the operating system and, if the ABI specifies direct system calls rather than procedure calls to system call stubs, the system call numbers
  • and in the case of a complete operating system ABI, the binary format of object files, program libraries and so on.

Complete ABIs

A complete ABI, such as the Intel Binary Compatibility Standard (iBCS),[1] allows a program from one operating system supporting that ABI to run without modifications on any other such system, provided that necessary shared libraries are present, and similar prerequisites are fulfilled.

Other[which?] ABIs standardize details such as the C++ name mangling,[2] exception propagation,[3] and calling convention between compilers on the same platform, but do not require cross-platform compatibility.

Embedded ABIs

An embedded-application binary interface (EABI) specifies standard conventions for file formats, data types, register usage, stack frame organization, and function parameter passing of an embedded software program, for use with an embedded operating system.

Compilers that support the EABI create object code that is compatible with code generated by other such compilers, allowing developers to link libraries generated with one compiler with object code generated with another compiler. Developers writing their own[clarification needed] assembly language code may also interface with assembly generated by a compliant compiler.

EABIs allow privileged[how?] instructions in application code, do not require[why?] dynamic linking (sometimes it is completely disallowed), and save memory[how?] via a more compact stack frame organization.[4] The choice of EABI can affect performance.[5][6]

Widely used EABIs include PowerPC,[4] ARM EABI2[7] and MIPS EABI.[8]

See also

References

  1. ^ Intel Binary Compatibility Standard (iBCS)
  2. ^ Itanium C++ ABI (compatible with multiple architectures)
  3. ^ Itanium C++ ABI: Exception Handling (compatible with multiple architectures)
  4. ^ a b "EABI Summary". PowerPC Embedded Application Binary Interface: 32-Bit Implementation (PDF) (Version 1.0 ed.). Freescale Semiconductor, Inc. 1995-10-01. pp. 28–30.
  5. ^ "Debian ARM accelerates via EABI port". Linuxdevices.com. 2016-10-16. Archived from the original on 21 January 2007. Retrieved 2007-10-11. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  6. ^ Andrés Calderón and Nelson Castillo (2007-03-14). "Why ARM's EABI matters". Linuxdevices.com. Archived from the original on 31 March 2007. Retrieved 2007-10-11. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  7. ^ "ARM Information Center". Infocenter.arm.com. Retrieved 2014-02-27.
  8. ^ "Eric Christopher - mips eabi documentation". Cygwin.com. 2003-06-11. Retrieved 2014-02-27.

External links