System V Application Binary Interface: AMD64 Architecture Processor Supplement Draft Version 0.99.7
System V Application Binary Interface: AMD64 Architecture Processor Supplement Draft Version 0.99.7
System V Application Binary Interface: AMD64 Architecture Processor Supplement Draft Version 0.99.7
Edited by
Michael Matz , Jan Hubička2 , Andreas Jaeger3 , Mark Mitchell4
1
1 [email protected]
2 [email protected]
3 [email protected]
4 [email protected]
1 Introduction 8
2 Software Installation 9
1
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.5.7 Variable Argument Lists . . . . . . . . . . . . . . . . . . 49
3.6 DWARF Definition . . . . . . . . . . . . . . . . . . . . . . . . . 54
3.6.1 DWARF Release Number . . . . . . . . . . . . . . . . . 55
3.6.2 DWARF Register Number Mapping . . . . . . . . . . . . 55
3.7 Stack Unwind Algorithm . . . . . . . . . . . . . . . . . . . . . . 55
4 Object Files 59
4.1 ELF Header . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
4.1.1 Machine Information . . . . . . . . . . . . . . . . . . . . 59
4.1.2 Number of Program Headers . . . . . . . . . . . . . . . . 59
4.2 Sections . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 60
4.2.1 Section Flags . . . . . . . . . . . . . . . . . . . . . . . . 60
4.2.2 Section types . . . . . . . . . . . . . . . . . . . . . . . . 61
4.2.3 Special Sections . . . . . . . . . . . . . . . . . . . . . . 61
4.2.4 EH_FRAME sections . . . . . . . . . . . . . . . . . . . 62
4.3 Symbol Table . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
4.4 Relocation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 68
4.4.1 Relocation Types . . . . . . . . . . . . . . . . . . . . . . 68
4.4.2 Large Models . . . . . . . . . . . . . . . . . . . . . . . . 73
6 Libraries 83
6.1 C Library . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83
6.1.1 Global Data Symbols . . . . . . . . . . . . . . . . . . . . 83
6.1.2 Floating Point Environment Functions . . . . . . . . . . . 83
6.2 Unwind Library Interface . . . . . . . . . . . . . . . . . . . . . . 84
6.2.1 Exception Handler Framework . . . . . . . . . . . . . . . 85
6.2.2 Data Structures . . . . . . . . . . . . . . . . . . . . . . . 87
6.2.3 Throwing an Exception . . . . . . . . . . . . . . . . . . . 89
6.2.4 Exception Object Management . . . . . . . . . . . . . . . 92
6.2.5 Context Management . . . . . . . . . . . . . . . . . . . . 92
6.2.6 Personality Routine . . . . . . . . . . . . . . . . . . . . . 95
2
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
6.3 Unwinding Through Assembler Code . . . . . . . . . . . . . . . 99
9 Conventions 104
9.1 C++ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 105
9.2 Fortran . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
9.2.1 Names . . . . . . . . . . . . . . . . . . . . . . . . . . . 106
9.2.2 Representation of Fortran Types . . . . . . . . . . . . . . 107
9.2.3 Argument Passing . . . . . . . . . . . . . . . . . . . . . 108
9.2.4 Functions . . . . . . . . . . . . . . . . . . . . . . . . . . 109
9.2.5 COMMON blocks . . . . . . . . . . . . . . . . . . . . . 110
9.2.6 Intrinsics . . . . . . . . . . . . . . . . . . . . . . . . . . 111
3
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
List of Tables
4
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
List of Figures
5
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.27 Implicit Calculation of Target Address . . . . . . . . . . . . . . . 47
3.28 Position-Independent Branching Code . . . . . . . . . . . . . . . 48
3.29 Absolute Switch Code . . . . . . . . . . . . . . . . . . . . . . . 48
3.30 Position-Independent Switch Code . . . . . . . . . . . . . . . . . 49
3.31 Parameter Passing Example with Variable-Argument List . . . . . 50
3.32 Register Allocation Example for Variable-Argument List . . . . . 50
3.33 Register Save Area . . . . . . . . . . . . . . . . . . . . . . . . . 51
3.34 va_list Type Declaration . . . . . . . . . . . . . . . . . . . . 52
3.35 Sample Implementation of va_arg(l, int) . . . . . . . . . . 54
3.36 DWARF Register Number Mapping . . . . . . . . . . . . . . . . 56
3.37 Pointer Encoding Specification Byte . . . . . . . . . . . . . . . . 57
Revision History
0.99 Add description of TLS relocations (thanks to Alexandre Oliva) and mention
the decimal floating point and AVX types (thanks to H.J. Lu).
0.98 Various clarifications and fixes according to feedback from Sun, thanks to
Terrence Miller. DWARF register numbers for some system registers, thanks
to Jan Beulich. Add R_X86_64_SIZE32 and R_X86_64_SIZE64 relo-
cations; extend meaning of e_phnum to handle more than 0xffff program
headers, thanks to Rod Evans. Add footnote about passing of decimal
datatypes. Specify that _Bool is booleanized at the caller.
6
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
who also noted that there are no global VLAs in C99. Thanks also to Robert
R. Henry.
0.95 Include description of the medium PIC memory model (thanks to Jan Hu-
bička) and large model (thanks to Evandro Menezes).
0.93 Add sections about program headers, new section types and special sections
for unwinding information. Thanks to Michael Walker.
0.92 Fix some typos (thanks to Bryan Ford), add section about stack layout in the
Linux kernel. Fix example in figure 3.5 (thanks to Tom Horsley). Add sec-
tion on unwinding through assembler (written by Michal Ludvig). Remove
mmxext feature (thanks to Evandro Menezes). Add section on Fortran (by
Steven Bosscher) and stack unwinding (by Jan Hubička).
0.91 Clarify that x87 is default mode, not MMX (by Hans Peter Anvin).
0.90 Change DWARF register numbers again; mention that __m128 needs align-
ment; fix typo in figure 3.3; add some comments on kernel expectations;
mention TLS extensions; add example for passing of variable-argument
lists; change semantics of %rax in variable-argument lists; improve for-
matting; mention that X87 class is not used for passing; make /lib64 a
Linux specific section; rename x86-64 to AMD64; describe passing of com-
plex types. Special thanks to Andi Kleen, Michal Ludvig, Michael Matz,
David O’Brien and Eric Young for their comments.
7
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
0.19 — 2002-03-27 Set name of Linux dynamic linker, mention %fs. Incorpo-
rate changes from H. Peter Anvin <[email protected]> for booleans and de-
fine handling of sub-64-bit integer types in registers.
8
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 1
Introduction
1
AMD64 has been previously called x86-64. The latter name is used in a number of places out
of historical reasons instead of AMD64.
2
The architecture specification is available on the web at http://www.x86-64.org/
documentation.
3
See section 9.1 for details on C++ ABI.
9
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 2
Software Installation
This document does not specify how software must be installed on an AMD64
architecture machine.
10
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 3
Fundamental Types
Figure 3.1 shows the correspondence between ISO C’s scalar types and the pro-
cessor’s. __int128, __float128, __m64, __m128 and __m256 types are
optional.
The __float128 type uses a 15-bit exponent, a 113-bit mantissa (the high
order significant bit is implicit) and an exponent bias of 16383.2
The long double type uses a 15 bit exponent, a 64-bit mantissa with an ex-
plicit high order significant bit and an exponent bias of 16383.3 Although a long
1
The Intel386 ABI uses the term halfword for a 16-bit object, the term word for a 32-bit object,
the term doubleword for a 64-bit object. But most IA-32 processor specific documentation define
a word as a 16-bit object, a doubleword as a 32-bit object, a quadword as a 64-bit object and a
double quadword as a 128-bit object.
2
Initial implementations of the AMD64 architecture are expected to support operations on the
__float128 type only via software emulation.
3
This type is the x87 double extended precision data type.
11
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.1: Scalar Types
Alignment AMD64
Type C sizeof (bytes) Architecture
_Bool† 1 1 boolean
char 1 1 signed byte
signed char
unsigned char 1 1 unsigned byte
short 2 2 signed twobyte
signed short
unsigned short 2 2 unsigned twobyte
int 4 4 signed fourbyte
Integral signed int
enum†††
unsigned int 4 4 unsigned fourbyte
long 8 8 signed eightbyte
signed long
long long
signed long long
unsigned long 8 8 unsigned eightbyte
unsigned long long 8 8 unsigned eightbyte
__int128†† 16 16 signed sixteenbyte
signed __int128†† 16 16 signed sixteenbyte
unsigned __int128†† 16 16 unsigned sixteenbyte
Pointer any-type * 8 8 unsigned eightbyte
any-type (*)()
Floating- float 4 4 single (IEEE-754)
point double 8 8 double (IEEE-754)
long double 16 16 80-bit extended (IEEE-754)
__float128†† 16 16 128-bit extended (IEEE-754)
Decimal- _Decimal32 4 4 32bit BID (IEEE-754R)
floating- _Decimal64 8 8 64bit BID (IEEE-754R)
point _Decimal128 16 16 128bit BID (IEEE-754R)
Packed __m64†† 8 8 MMX and 3DNow!
__m128†† 16 16 SSE and SSE-2
__m256†† 32 32 AVX
† This type is called bool in C++.
†† These types are optional.
††† C++ and some implementations of C permit enums larger than an int. The underlying
type is bumped to an unsigned int, long int or unsigned long int, in that order.
12
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
double requires 16 bytes of storage, only the first 10 bytes are significant. The
remaining six bytes are tail padding, and the contents of these bytes are undefined.
The __int128 type is stored in little-endian order in memory, i.e., the 64
low-order bits are stored at a a lower address than the 64 high-order bits.
A null pointer (for all types) has the value zero.
The type size_t is defined as unsigned long.
Booleans, when stored in a memory object, are stored as single byte objects the
value of which is always 0 (false) or 1 (true). When stored in integer registers
(except for passing as arguments), all 8 bytes of the register are significant; any
nonzero value is considered true.
Like the Intel386 architecture, the AMD64 architecture in general does not re-
quire all data accesses to be properly aligned. Misaligned data accesses are slower
than aligned accesses but otherwise behave identically. The only exceptions are
that __m128 and __m256 must always be aligned properly.
Bit-Fields
C struct and union definitions may include bit-fields that define integral values of
a specified size.
The ABI does not permit bit-fields having the type __m64, __m128 or __m256.
Programs using bit-fields of these types are not portable.
Bit-fields that are neither signed nor unsigned always have non-negative val-
ues. Although they may have type char, short, int, or long (which can have neg-
4
The alignment requirement allows the use of SSE instructions when operating on the array.
The compiler cannot in general calculate the size of a variable-length array (VLA), but it is ex-
pected that most VLAs will require at least 16 bytes, so it is logical to mandate that VLAs have at
least a 16-byte alignment.
13
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.2: Bit-Field Ranges
ative values), these bit-fields have the same range as a bit-field of the same size
with the corresponding unsigned type. Bit-fields obey the same size and alignment
rules as other structure and union members.
Also:
• bit-fields may share a storage unit with other struct / union members
14
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
ferent conventions. Nevertheless, it is recommended that all functions use the
standard calling sequence when possible.
15
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.3: Stack Frame with Base Pointer
16
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.2.3 Parameter Passing
After the argument values have been computed, they are placed either in regis-
ters or pushed on the stack. The way how values are passed is described in the
following sections.
INTEGER This class consists of integral types that fit into one of the general
purpose registers.
SSE The class consists of types that fit into a vector register.
SSEUP The class consists of types that fit into a vector register and can be passed
and returned in the upper bytes of it.
X87, X87UP These classes consists of types that will be returned via the x87
FPU.
COMPLEX_X87 This class consists of types that will be returned via the x87
FPU.
NO_CLASS This class is used as initializer in the algorithms. It will be used for
padding and empty structures and unions.
MEMORY This class consists of types that will be passed and returned in mem-
ory via the stack.
17
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
• Arguments of types __float128, _Decimal128 and __m128 are split
into two halves. The least significant ones belong to class SSE, the most
significant one to class SSEUP.
• Arguments of type __m256 are split into four eightbyte chunks. The least
significant one belongs to class SSE and all the others to class SSEUP.
• The 64-bit mantissa of arguments of type long double belongs to class
X87, the 16-bit exponent plus 6 bytes of padding belongs to class X87UP.
• Arguments of type __int128 offer the same operations as INTEGERs,
yet they do not fit into one general purpose register but require two registers.
For classification purposes __int128 is treated as if it were implemented
as:
typedef struct {
long low, high;
} __int128;
with the exception that arguments of type __int128 that are stored in
memory must be aligned on a 16-byte boundary.
• Arguments of complex T where T is one of the types float or double
are treated as if they are implemented as:
struct complexT {
T real;
T imag;
};
• A variable of type complex long double is classified as type COM-
PLEX_X87.
The classification of aggregate (structures and arrays) and union types works
as follows:
1. If the size of an object is larger than four eightbytes, or it contains unaligned
fields, it has class MEMORY 10 .
10
The post merger clean up described later ensures that, for the processors that do not support
the __m256 type, if the size of an object is larger than two eightbytes and the first eightbyte is not
SSE or any other eightbyte is not SSEUP, it still has class MEMORY. This in turn ensures that for
processors that do support the __m256 type, if the size of an object is four eightbytes and the first
eightbyte is SSE and all other eightbytes are SSEUP, it can be passed in a register.
18
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
2. If a C++ object has either a non-trivial copy constructor or a non-trivial
destructor 11 , it is passed by invisible reference (the object is replaced in the
parameter list by a pointer that has class INTEGER) 12 .
3. If the size of the aggregate exceeds a single eightbyte, each is classified
separately. Each eightbyte gets initialized to class NO_CLASS.
4. Each field of an object is classified recursively so that always two fields are
considered. The resulting class is calculated according to the classes of the
fields in the eightbyte:
(a) If both classes are equal, this is the resulting class.
(b) If one of the classes is NO_CLASS, the resulting class is the other
class.
(c) If one of the classes is MEMORY, the result is the MEMORY class.
(d) If one of the classes is INTEGER, the result is the INTEGER.
(e) If one of the classes is X87, X87UP, COMPLEX_X87 class, MEM-
ORY is used as class.
(f) Otherwise class SSE is used.
5. Then a post merger cleanup is done:
(a) If one of the classes is MEMORY, the whole argument is passed in
memory.
(b) If X87UP is not preceded by X87, the whole argument is passed in
memory.
(c) If the size of the aggregate exceeds two eightbytes and the first eight-
byte isn’t SSE or any other eightbyte isn’t SSEUP, the whole argument
is passed in memory.
11
A de/constructor is trivial if it is an implicitly-declared default de/constructor and if:
• its class has no virtual functions and no virtual base classes, and
• all the direct base classes of its class have trivial de/constructors, and
• for all the nonstatic data members of its class that are of class type (or array thereof), each
such class has a trivial de/constructor.
12
An object with either a non-trivial copy constructor or a non-trivial destructor cannot be
passed by value because such objects must have well defined addresses. Similar issues apply
when returning an object from a function.
19
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
(d) If SSEUP is not preceded by SSE or SSEUP, it is converted to SSE.
Passing Once arguments are classified, the registers get assigned (in left-to-right
order) for passing as follows:
2. If the class is INTEGER, the next available register of the sequence %rdi,
%rsi, %rdx, %rcx, %r8 and %r9 is used13 .
3. If the class is SSE, the next available vector register is used, the registers
are taken in the order from %xmm0 to %xmm7.
4. If the class is SSEUP, the eightbyte is passed in the next available eightbyte
chunk of the last used vector register.
20
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.4: Register Usage
Preserved across
Register Usage function calls
%rax temporary register; with variable arguments No
passes information about the number of vector
registers used; 1st return register
%rbx callee-saved register Yes
%rcx used to pass 4th integer argument to functions No
%rdx used to pass 3rd argument to functions; 2nd return No
register
%rsp stack pointer Yes
%rbp callee-saved register; optionally used as frame Yes
pointer
%rsi used to pass 2nd argument to functions No
%rdi used to pass 1st argument to functions No
%r8 used to pass 5th argument to functions No
%r9 used to pass 6th argument to functions No
%r10 temporary register, used for passing a function’s No
static chain pointer
%r11 temporary register No
%r12-r14 callee-saved registers Yes
%r15 callee-saved register; optionally used as GOT Yes
base pointer
%xmm0–%xmm1 used to pass and return floating point arguments No
%xmm2–%xmm7 used to pass floating point arguments No
%xmm8–%xmm15 temporary registers No
%mmx0–%mmx7 temporary registers No
%st0,%st1 temporary registers; used to return long No
double arguments
%st2–%st7 temporary registers No
%fs Reserved for system (as thread specific data reg- No
ister)
mxcsr SSE2 control and status word partial
x87 SW x87 status word No
x87 CW x87 control word Yes
21
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
of %al do not need to match exactly the number of registers, but must be an upper
bound on the number of vector registers used and is in the range 0–8 inclusive.
When passing __m256 arguments to functions that use varargs or stdarg,
function prototypes must be provided. Otherwise, the run-time behavior is un-
defined.
2. If the type has class MEMORY, then the caller provides space for the return
value and passes the address of this storage in %rdi as if it were the first
argument to the function. In effect, this address becomes a “hidden” first ar-
gument. This storage must not overlap any data visible to the callee through
other names than this argument.
On return %rax will contain the address that has been passed in by the
caller in %rdi.
3. If the class is INTEGER, the next available register of the sequence %rax,
%rdx is used.
4. If the class is SSE, the next available vector register of the sequence %xmm0,
%xmm1 is used.
5. If the class is SSEUP, the eightbyte is returned in the next available eightbyte
chunk of the last used vector register.
6. If the class is X87, the value is returned on the X87 stack in %st0 as 80-bit
x87 number.
7. If the class is X87UP, the value is returned together with the previous X87
value in %st0.
22
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
is given in Figure 3.6, the stack frame offset given shows the frame before calling
the function.
typedef struct {
int a, b;
double d;
} structparm;
structparm s;
int e, f, g, h, i, j, k;
long double ld;
double m, n;
__m256 y;
23
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.3 Operating System Interface
3.3.1 Exception Interface
As the AMD64 manuals describe, the processor changes mode to handle excep-
tions, which may be synchronous, floating-point/coprocessor or asynchronous.
Synchronous and floating-point/coprocessor exceptions, being caused by instruc-
tion execution, can be explicitly generated by a process. This section, therefore,
specifies those exception types with defined behavior. The AMD64 architecture
classifies exceptions as faults, traps, and aborts. See the Intel386 ABI for more
information about their differences.
24
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 3.1: Hardware Exceptions and Signals
Code Reason
FPE_FLTDIV floating-point divide by zero
FPE_FLTOVF floating-point overflow
FPE_FLTUND floating-point underflow
FPE_FLTRES floating-point inexact result
FPE_FLTINV invalid floating-point operation
25
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
• The system reserves a configuration dependent amount of virtual space.
Programs that dereference null pointers are erroneous and a process should
not expect 0x0 to be a valid address.
Although applications may control their memory assignments, the typical ar-
rangement appears in figure 3.8.
26
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.8: Conventional Segment Arrangements
...
0x80000000000 Dynamic segments
Stack segment
...
...
Data segments
...
0x400000 Text segments
0 Unmapped
27
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 3.4: MXCSR Status Bits
The rFLAGS register contains the system flags, such as the direction flag and
the carry flag. The low 16 bits (FLAGS portion) of rFLAGS are accessible by
application software. The state of them at process initialization is shown in table
3.5.
Stack State
This section describes the machine state that exec (BA_OS) creates for new
processes. Various language implementations transform this initial program state
to the state required by the language standard.
28
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
For example, a C program begins executing at a function named main de-
clared as:
extern int main ( int argc , char *argv[ ] , char* envp[ ] );
where
argc is a non-negative argument count
argv is an array of argument strings, with argv[argc] == 0
envp is an array of environment strings, terminated by a null pointer.
When main() returns its value is passed to exit() and if that has been
over-ridden and returns, _exit() (which must be immune to user interposition).
The initial state of the process stack, i.e. when _start is called is shown in
figure 3.9.
29
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
%rbp The content of this register is unspecified at process initialization time,
but the user code should mark the deepest stack frame by setting the frame
pointer to zero.
%rsp The stack pointer holds the address of the byte with lowest address which
is part of the stack. It is guaranteed to be 16-byte aligned at process entry.
%rdx a function pointer that the application should register with atexit (BA_OS).
It is unspecified whether the data and stack segments are initially mapped with
execute permissions or not. Applications which need to execute code on the stack
or data segments should take proper precautions, e.g., by calling mprotect().
typedef struct
{
int a_type;
union {
long a_val;
void *a_ptr;
void (*a_fnc)();
} a_un;
} auxv_t;
The AMD64 ABI uses the auxiliary vector types defined in figure 3.11.
30
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.11: Auxiliary Vector Types
AT_NULL The auxiliary vector has no fixed length; instead its last entry’s a_type
member has this value.
AT_IGNORE This type indicates the entry has no meaning. The corresponding
value of a_un is undefined.
AT_PHDR The system may create the memory image of the application program
before passing control to the interpreter program. When this happens, the
a_ptr member of the AT_PHDR entry tells the interpreter where to find
the program header table in the memory image.
31
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
AT_PHENT The a_val member of this entry holds the size, in bytes, of one
entry in the program header table to which the AT_PHDR entry points.
AT_PHNUM The a_val member of this entry holds the number of entries in
the program header table to which the AT_PHDR entry points.
AT_PAGESZ If present, this entry’s a_val member gives the system page size,
in bytes.
AT_BASE The a_ptr member of this entry holds the base address at which the
interpreter program was loaded into memory. See “Program Header” in the
System V ABI for more information about the base address.
AT_FLAGS If present, the a_val member of this entry holds one-bit flags. Bits
with undefined semantics are set to zero.
AT_ENTRY The a_ptr member of this entry holds the entry point of the appli-
cation program to which the interpreter program should transfer control.
AT_UID The a_val member of this entry holds the real user id of the process.
AT_EUID The a_val member of this entry holds the effective user id of the
process.
AT_GID The a_val member of this entry holds the real group id of the process.
AT_EGID The a_val member of this entry holds the effective group id of the
process.
32
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.5.1 Architectural Constraints
The AMD64 architecture usually does not allow an instruction to encode arbitrary
64-bit constants as immediate operand. Most instructions accept 32-bit immedi-
ates that are sign extended to the 64-bit ones. Additionally the 32-bit operations
with register destinations implicitly perform zero extension making loads of 64-bit
immediates with upper half set to 0 even cheaper.
Additionally the branch instructions accept 32-bit immediate operands that are
sign extended and used to adjust the instruction pointer. Similarly an instruction
pointer relative addressing mode exists for data accesses with equivalent limita-
tions.
In order to improve performance and reduce code size, it is desirable to use
different code models depending on the requirements.
Code models define constraints for symbolic values that allow the compiler to
generate better code. Basically code models differ in addressing (absolute versus
position independent), code size, data size and address range. We define only a
small number of code models that are of general interest:
Small code model The virtual address of code executed is known at link time.
Additionally all symbols are known to be located in the virtual addresses in
the range from 0 to 231 − 224 − 1 or from 0x00000000 to 0x7ef f f f f f 18 .
This allows the compiler to encode symbolic references with offsets in the
range from −(231 ) to 224 or from 0x80000000 to 0x01000000 directly in the
sign extended immediate operands, with offsets in the range from 0 to 231 −
224 or from 0x00000000 to 0x7f 000000 in the zero extended immediate
operands and use instruction pointer relative addressing for the symbols
with offsets in the range −(224 ) to 224 or 0xf f 000000 to 0x01000000.
This is the fastest code model and we expect it to be suitable for the vast
majority of programs.
Kernel code model The kernel of an operating system is usually rather small but
runs in the negative half of the address space. So we define all symbols to
be in the range from 264 − 231 to 264 − 224 or from 0xf f f f f f f f 80000000
to 0xf f f f f f f f f f 000000.
18
The number 24 is chosen arbitrarily. It allows for all memory of objects of size up to 224
or 16M bytes to be addressed directly because the base address of such objects is constrained to
be less than 231 − 224 or 0x7f 000000. Without such constraint only the base address would be
accessible directly, but not any offsetted variant of it.
33
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
This code model has advantages similar to those of the small model, but
allows encoding of zero extended symbolic references only for offsets from
231 to 231 + 224 or from 0x80000000 to 0x81000000. The range offsets
for sign extended reference changes to 0 to 231 + 224 or 0x00000000 to
0x81000000.
Medium code model In the medium model, the data section is split into two
parts — the data section still limited in the same way as in the small code
model and the large data section having no limits except for available ad-
dressing space. The program layout must be set in a way so that large data
sections (.ldata, .lrodata, .lbss) come after the text and data sec-
tions.
This model requires the compiler to use movabs instructions to access
large static data and to load addresses into registers, but keeps the advan-
tages of the small code model for manipulation of addresses in the small
data and text sections (specially needed for branches).
By default only data larger than 65535 bytes will be placed in the large data
section.
Large code model The large code model makes no assumptions about addresses
and sizes of sections.
The compiler is required to use the movabs instruction, as in the medium
code model, even for dealing with addresses inside the text section. Addi-
tionally, indirect branches are needed when branching to addresses whose
offset from the current instruction pointer is unknown.
It is possible to avoid the limitation on the text section in the small and
medium models by breaking up the program into multiple shared libraries,
so this model is strictly only required if the text of a single function becomes
larger than what the medium model allows.
Small position independent code model (PIC) Unlike the previous models, the
virtual addresses of instructions and data are not known until dynamic link
time. So all addresses have to be relative to the instruction pointer.
Additionally the maximum distance between a symbol and the end of an
instruction is limited to 231 −224 −1 or 0x7ef f f f f f , allowing the compiler
to use instruction pointer relative branches and addressing modes supported
34
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
by the hardware for every symbol with an offset in the range −(224 ) to 224
or 0xf f 000000 to 0x01000000.
Medium position independent code model (PIC) This model is like the previ-
ous model, but similarly to the medium static model adds large data sections
at the end of object files.
In the medium PIC model, the instruction pointer relative addressing can
not be used directly for accessing large static data, since the offset can ex-
ceed the limitations on the size of the displacement field in the instruction.
Instead an unwind sequence consisting of movabs, lea and add needs to
be used.
Large position independent code model (PIC) This model is like the previous
model, but makes no assumptions about the distance of symbols.
The large PIC model implies the same limitation as the medium PIC model
regarding addressing of static data. Additionally, references to the global
offset table and to the procedure linkage table and branch destinations need
to be calculated in a similar way. Further the size of the text segment is
allowed to be up to 16EB in size, hence similar restrictions apply to all
address references into the text segments, including branches.
3.5.2 Conventions
In this document some special assembler symbols are used in the coding examples
and discussion. They are:
• name@GOT: specifies the offset to the GOT entry for the symbol name
from the base of the GOT.
• name@GOTPLT: specifies the offset to the GOT entry for the symbol name
from the base of the GOT, implying that there is a corresponding PLT entry.
• name@GOTOFF: specifies the offset to the location of the symbol name
from the base of the GOT.
• name@GOTPCREL: specifies the offset to the GOT entry for the symbol
name from the current code location.
• name@PLT: specifies the offset to the PLT entry of symbol name from the
current code location.
35
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
• name@PLTOFF: specifies the offset to the PLT entry of symbol name from
the base of the GOT.
large model:
pushq %r15 # save %r15
leaq 1f(%rip),%r11 # absolute %rip
1: movabs $_GLOBAL_OFFSET_TABLE_,%r15 # offset to the GOT (R_X86_64_GOTPC64)
leaq (%r11,%r15),%r15 # absolute address of the GOT
For the medium model the GOT pointer is directly loaded, for the large model
the absolute value of %rip is added to the relative offset to the base of the GOT
19
If, at code generation-time, it is determined that either no other functions are called (leaf
functions), the called functions addresses can be resolved and are within 2GB, or no global data
objects are referred to, it is not necessary to store the GOT address in %r15 and the prolog code
that initializes it may be omitted.
36
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
in order to obtain its absolute address (see figure 3.12).
37
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Small models
38
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.14: Position-Independent Load and Store (Small PIC Model)
39
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Medium models
40
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.16: Position-Independent Load and Store (Medium PIC Model)
41
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.17: Position-Independent Load and Store (Medium PIC Model), contin-
ued
Large Models
Again, in order to access data at any position in the 64-bit addressing space, it is
necessary to calculate the address explicitly21 , not unlike the medium code model.
21
If, at code generation-time, it is determined that a referred to global data object address is
resolved within 2GB, the %rip-relative addressing mode can be used instead. See example
in figure 3.19.
42
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.18: Absolute Global Data Load and Store
For position-independent code access to both static and external global data
assumes that the GOT address is stored in a dedicated register. In these examples
we assume it is in %r1522 (see Function Prologue):
22
If, at code generation-time, it is determined that a referred to global data object address is
resolved within 2GB, the %rip-relative addressing mode can be used instead. See example
in figure 3.21.
43
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.20: Position-Independent Global Data Load and Store
44
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.5.5 Function Calls
Small and Medium Models
Large models
It cannot be assumed that a function is within 2GB in general. Therefore, it is
necessary to explicitly calculate the desired address reaching the whole 64-bit
address space.
45
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.24: Absolute Direct and Indirect Function Call
static void (*ptr) (void); Lptr: .quad
extern void foo (void); .globl foo
static void bar (void); Lbar: ...
foo (); movabs $foo,%r11 ; R_X86_64_64
call *%r11
bar (); movabs $Lbar,%r11 ; R_X86_64_64
call *%r11
ptr = foo; movabs $Lptr,%rax ; R_X86_64_64
movabs $foo,%r11 ; R_X86_64_64
movq %r11,(%rax)
ptr = bar; movabs $Lbar,%r11 ; R_X86_64_64
movq %r11,(%rax)
(*ptr) (); movabs $Lptr,%r11 ; R_X86_64_64
call *(%r11)
46
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Implementation advice
If, at code generation-time, certain conditions are determined, it’s possible to
generate faster or smaller code sequences as the large model normally requires.
When:
(absolute) target of function call is within 2GB , a direct call or %rip-relative
addressing might be used:
bar (); call Lbar
ptr = bar; movabs $Lptr,%rax ; R_X86_64_64
leaq $Lbar(%rip),%r11
movq %r11,(%rax)
(PIC) the base of GOT is within 2GB an indirect call to the GOT entry might
be implemented like so:
foo (); call *(foo@GOT) ; R_X86_64_GOTPCREL
(PIC) the base of PLT is within 2GB , the PLT entry may be referred to rela-
tively to %rip:
ptr = foo; movabs $Lptr@GOTOFF,%rax ; R_X86_64_GOTOFF64
leaq $foo@PLT(%rip),%r11 ; R_X86_64_PLT32
movq %r11,(%rax,%r15)
(PIC) target of function call is within 2GB and is either not global or bound lo-
cally, a direct call to the symbol may be used or it may be referred to rela-
tively to %rip:
bar (); call Lbar
ptr = bar; movabs $Lptr@GOTOFF,%rax ; R_X86_64_GOTOFF64
leaq $Lbar(%rip),%r11
movq %r11,(%rax,%r15)
3.5.6 Branching
Small and Medium Models
As all labels are within 2GB no special care has to be taken when implementing
branches. The full AMD64 ISA is usable.
Large Models
Because functions can be theoretically up to 16EB long, the maximum 32-bit
displacement of conditional and unconditional branches in the AMD64 ISA are
47
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
not enough to address the branch target. Therefore, a branch target address is
calculated explicitly 24 . For absolute objects:
48
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.28: Position-Independent Branching Code
if (!a) testl %eax,%eax
{ jnz 1f
movabs $2f@GOTOFF,%r11 ; R_X86_64_GOTOFF64
leaq (%r11,%r15),%r11
jmpq *%r11
1: ...
... 2:
}
goto Label; movabs $Label@GOTOFF,%r11 ; R_X86_64_GOTOFF64
leaq (%r11,%r15),%r11
jmpq *%r11
...
... Label:
Label:
49
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.30: Position-Independent Switch Code
switch (a) cmpl $0,%eax
{ jl .Ldefault
cmpl $2,%eax
jg .Ldefault
movabs $.Ltable@GOTOFF,%r11 ; R_X86_64_GOTOFF64
leaq (%r11,%r15),%r11
movq *(%r11,%eax,8),%r11
leaq (%r11,%r15),%r11
jmpq *%r11
.section .lrodata,"aLM",@progbits,8
.align 8
.Ltable: .quad .Lcase0@GOTOFF ; R_X86_64_GOTOFF64
.quad .Ldefault@GOTOFF ; R_X86_64_GOTOFF64
.quad .Lcase2@GOTOFF ; R_X86_64_GOTOFF64
.previous
default: .Ldefault:
... ...
case 0: .Lcase0:
... ...
case 2: .Lcase2:
... ...
}
25
50
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
ters.26
When __m256 is passed as variable-argument, it should always be passed on
stack. Only named __m256 arguments may be passed in register as specified in
section 3.2.3.
int a, b;
long double ld;
double m, n;
__m256 u, y;
51
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
known to never accept arguments passed in registers27 , the register save area may
be omitted entirely.
The prologue should use %rax to avoid unnecessarily saving XMM registers.
This is especially important for integer only programs to prevent the initialization
of the XMM unit.
Register Offset
%rdi 0
%rsi 8
%rdx 16
%rcx 24
%r8 32
%r9 40
%xmm0 48
%xmm1 64
...
%xmm15 288
52
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.34: va_list Type Declaration
typedef struct {
unsigned int gp_offset;
unsigned int fp_offset;
void *overflow_arg_area;
void *reg_save_area;
} va_list[1];
reg_save_area The element points to the start of the register save area.
gp_offset The element holds the offset in bytes from reg_save_area to the
place where the next available general purpose argument register is saved.
In case all argument registers have been exhausted, it is set to the value 48
(6 ∗ 8).
fp_offset The element holds the offset in bytes from reg_save_area to the
place where the next available floating point argument register is saved. In
case all argument registers have been exhausted, it is set to the value 304
(6 ∗ 8 + 16 ∗ 16).
53
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
2. Compute num_gp to hold the number of general purpose registers needed
to pass type and num_fp to hold the number of floating point registers
needed.
or
l->fp_offset > 304 − num_fp ∗ 16
go to step 7.
5. Set:
l->gp_offset = l->gp_offset + num_gp ∗ 8
l->fp_offset = l->fp_offset + num_fp ∗ 16.
l->overflow_arg_area + sizeof(type)
54
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The va_arg macro is usually implemented as a compiler builtin and ex-
panded in simplified forms for each particular type. Figure 3.35 is a sample im-
plementation of the va_arg macro.
55
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
3.6.1 DWARF Release Number
The DWARF definition requires some machine-specific definitions. The register
number mapping needs to be specified for the AMD64 registers. In addition, the
DWARF Version 3 specification requires processor-specific address class codes to
be defined.
Position independence In order to avoid load time relocations for position inde-
pendent code, the FDE CIE offset pointer should be stored relative to the
start of CIE table entry. Frames using this extension of the DWARF stan-
dard must set the CIE identifier tag to 1.
Outgoing arguments area delta To maintain the size of the temporarily allo-
cated outgoing arguments area present on the end of the stack (when us-
ing push instructions), operation GNU_ARGS_SIZE (0x2e) can be used.
This operation takes a single uleb128 argument specifying the current
size. This information is used to adjust the stack frame when jumping into
the exception handler of the function after unwinding the stack frame. Ad-
ditionally the CIE Augmentation shall contain an exact specification of the
encoding used. It is recommended to use a PC relative encoding whenever
possible and adjust the size according to the code model used.
29
The table defines Return Address to have a register number, even though the address is stored
in 0(%rsp) and not in a physical register.
30
This document does not define mappings for privileged registers.
56
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.36: DWARF Register Number Mapping
57
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 3.37: Pointer Encoding Specification Byte
Mask Meaning
0x1 Values are stored as uleb128 or sleb128 type (according to flag 0x8)
0x2 Values are stored as 2 bytes wide integers (udata2 or sdata2)
0x3 Values are stored as 4 bytes wide integers (udata4 or sdata4)
0x4 Values are stored as 8 bytes wide integers (udata8 or sdata8)
0x8 Values are signed
0x10 Values are PC relative
0x20 Values are text section relative
0x30 Values are data section relative
0x40 Values are relative to the start of function
When the augmentation is present, the first command must always be ‘z’ to
allow easy skipping of the information.
58
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
In order to simplify manipulation of the unwind tables, the runtime library
provide higher level API to stack unwinding mechanism, for details see section
6.2.
59
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 4
Object Files
Position Value
e_ident[EI_CLASS] ELFCLASS64
e_ident[EI_DATA] ELFDATA2LSB
60
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
If the number of program headers is greater than or equal to PN_XNUM (0xffff),
this member has the value PN_XNUM (0xffff). The actual number of program
header table entries is contained in the sh_info field of the section header at
index 0. Otherwise, the sh_info member of the initial entry contains the value
zero.
4.2 Sections
4.2.1 Section Flags
In order to allow linking object files of different code models, it is necessary to
provide for a way to differentiate those sections which may hold more than 2GB
from those which may not. This is accomplished by defining a processor-specific
section attribute flag for sh_flag (see table 4.2).
Name Value
SHF_X86_64_LARGE 0x10000000
SHF_X86_64_LARGE If an object file section does not have this flag set, then
it may not hold more than 2GB and can be freely referred to in objects using
smaller code models. Otherwise, only objects using larger code models can
refer to them. For example, a medium code model object can refer to data
in a section that sets this flag besides being able to refer to data in a section
that does not set it; likewise, a small code model object can refer only to
code in a section that does not set this flag.
61
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
4.2.2 Section types
.eh_frame This section holds the unwind function table. The contents are de-
scribed in Section 4.2.4 of this document.
The additional sections defined in table 4.5 are used by a system supporting
the large code model.
62
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.5: Additional Special Sections for the Large Code Model
In order to enable static linking of objects using different code models, the
following section ordering is suggested:
.plt .init .fini .text .got .rodata .rodata1 .data .data1 .bss
These sections can have a combined size of up to 2GB.
63
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Using the preferred encoding specified below, the .eh_frame section can be
entirely resolved at link time and thus can become part of the text segment.
EH_PE encoding below refers to the pointer encoding as specified in the en-
hanced LSB Chapter 7 for Eh_Frame_Hdr.
64
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.6: Common Information Entry (CIE)
65
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.7: CIE Augmentation Section Content
66
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.8: Frame Descriptor Entry (FDE)
67
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.9: FDE Augmentation Section Content
The existence and size of the optional call frame instruction area must be com-
puted based on the overall size and the offset reached while scanning the preceding
fields of the CIE or FDE.
The overall size of a .eh_frame section is given in the ELF section header.
The only way to determine the number of entries is to scan the section until the
end, counting entries as they are encountered.
68
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
4.4 Relocation
4.4.1 Relocation Types
Figure 4.4.1 shows the allowed relocatable fields.
7 word8 0
15 word16 0
31 word32 0
63 word64 0
A Represents the addend used to compute the value of the relocatable field.
69
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
B Represents the base address at which a shared object has been loaded into mem-
ory during execution. Generally, a shared object is built with a 0 base virtual
address, but the execution address will be different.
G Represents the offset into the global offset table at which the relocation entry’s
symbol will reside during execution.
L Represents the place (section offset or address) of the Procedure Linkage Table
entry for a symbol.
P Represents the place (section offset or address) of the storage unit being relo-
cated (computed using r_offset).
S Represents the value of the symbol whose index resides in the relocation entry.
Z Represents the size of the symbol whose index resides in the relocation entry.
70
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 4.10: Relocation Types
71
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The special semantics for most of these relocation types are identical to those
used for the Intel386 ABI. 3 4
The R_X86_64_GOTPCREL relocation has different semantics from the
R_X86_64_GOT32 or equivalent i386 R_I386_GOTPC relocation. In partic-
ular, because the AMD64 architecture has an addressing mode relative to the in-
struction pointer, it is possible to load an address from the GOT using a single in-
struction. The calculation done by the R_X86_64_GOTPCREL relocation gives
the difference between the location in the GOT where the symbol’s address is
given and the location where the relocation is applied.
The R_X86_64_32 and R_X86_64_32S relocations truncate the com-
puted value to 32-bits. The linker must verify that the generated value for the
R_X86_64_32 (R_X86_64_32S) relocation zero-extends (sign-extends) to the
original 64-bit value.
A program or object file using R_X86_64_8, R_X86_64_16,
R_X86_64_PC16 or R_X86_64_PC8 relocations is not conformant to
this ABI, these relocations are only added for documentation purposes. The
R_X86_64_16, and R_X86_64_8 relocations truncate the computed value to
16-bits resp. 8-bits.
The relocations R_X86_64_DTPMOD64, R_X86_64_DTPOFF64,
R_X86_64_TPOFF64, R_X86_64_TLSGD, R_X86_64_TLSLD,
R_X86_64_DTPOFF32, R_X86_64_GOTTPOFF and R_X86_64_TPOFF32
are listed for completeness. They are part of the Thread-Local Storage ABI
extensions and are documented in the document called “ELF Handling for
Thread-Local Storage”5 . The relocations R_X86_64_GOTPC32_TLSDESC,
R_X86_64_TLSDESC_CALL and R_X86_64_TLSDESC are also used for
Thread-Local Storage, but are not documented there as of this writing. A
description can be found in the document “Thread-Local Storage Descriptors for
3
Even though the AMD64 architecture supports IP-relative addressing modes, a GOT is still
required since the offset from a particular instruction to a particular data item cannot be known by
the static linker.
4
Note that the AMD64 architecture assumes that offsets into GOT are 32-bit values, not 64-bit
values. This choice means that a maximum of 232 /8 = 229 entries can be placed in the GOT.
However, that should be more than enough for most programs. In the event that it is not enough,
the linker could create multiple GOTs. Because 32-bit offsets are used, loads of global data do
not require loading the offset into a displacement register; the base plus immediate displacement
addressing form can be used.
5
This document is currently available via http://people.redhat.com/drepper/
tls.pdf
72
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
IA32 and AMD64/EM64T”6 .
In order to make this document self-contained, a description of the TLS relo-
cations follows.
R_X86_64_DTPMOD64 resolves to the index of the dynamic thread vec-
tor entry that points to the base address of the TLS block corresponding to
the module that defines the referenced symbol. R_X86_64_DTPOFF64 and
R_X86_64_DTPOFF32 compute the offset from the pointer in that entry to
the referenced symbol. The linker generates such relocations in adjacent en-
tries in the GOT, in response to R_X86_64_TLSGD and R_X86_64_TLSLD
relocations. If the linker can compute the offset itself, because the referenced
symbol binds locally, the relocations R_X86_64_64 and R_X86_64_32 may
be used instead. Otherwise, such relocations are always in pairs, such that the
R_X86_64_DTPOFF64 relocation applies to the word64 right past the corre-
sponding R_X86_64_DTPMOD64 relocation.
R_X86_64_TPOFF64 and R_X86_64_TPOFF32 resolve to the offset from
the thread pointer to a thread-local variable. The former is generated in response
to R_X86_64_GOTTPOFF, that resolves to a PC-relative address of a GOT entry
containing such a 64-bit offset.
R_X86_64_TLSGD and R_X86_64_TLSLD both resolve to PC-relative off-
sets to a DTPMOD GOT entry. The difference between them is that, for R_X86_64_TLSGD,
the following GOT entry will contain the offset of the referenced symbol into its
TLS block, whereas, for R_X86_64_TLSLD, the following GOT entry will con-
tain the offset for the base address of the TLS block. The idea is that adding this
offset to the result of R_X86_64_DTPMOD32 for a symbol ought to yield the
same as the result of R_X86_64_DTPMOD64 for the same symbol.
R_X86_64_TLSDESC resolves to a pair of word64s, called TLS Descriptor,
the first of which is a pointer to a function, followed by an argument. The function
is passed a pointer to the this pair of entries in %rax and, using the argument in
the second entry, it must compute and return in %rax the offset from the thread
pointer to the symbol referenced in the relocation, without modifying any reg-
isters other than processor flags. R_X86_64_GOTPC32_TLSDESC resolves to
the PC-relative address of a TLS descriptor corresponding to the named symbol.
R_X86_64_TLSDESC_CALL must annotate the instruction used to call the TLS
Descriptor resolver function, so as to enable relaxation of that instruction.
R_X86_64_IRELATIVE is similar to R_X86_64_RELATIVE except that
6
This document is currently available via http://people.redhat.com/aoliva/
writeups/TLS/RFC-TLSDESC-x86.txt
73
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
the value used in this relocation is the program address returned by the func-
tion, which takes no arguments, at the address of the result of the corresponding
R_X86_64_RELATIVE relocation.
One use of the R_X86_64_IRELATIVE relocation is to avoid name lookup
for the locally defined STT_GNU_IFUNC symbols at load-time. Support for this
relocation is optional, but is required for the STT_GNU_IFUNC symbols.
74
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 5
75
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
“Coding Examples”). For the process to execute correctly, the segments must
reside at the virtual addresses used to build the executable file. Thus the system
uses the p_vaddr values unchanged as virtual addresses.
On the other hand, shared object segments typically contain position-independent
code. This lets a segments virtual address change from one process to another,
without invalidating execution behavior. Though the system chooses virtual ad-
dresses for individual processes, it maintains the segments’ relative positions. Be-
cause position-independent code uses relative addressing between segments, the
difference between virtual addresses in memory must match the difference be-
tween virtual addresses in the file.
Name Value
PT_GNU_EH_FRAME 0x6474e550
PT_SUNW_EH_FRAME 0x6474e550
PT_SUNW_UNWIND 0x6464e550
76
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Global Offset Table (GOT)
Position-independent code cannot, in general, contain absolute virtual addresses.
Global offset tables hold absolute addresses in private data, thus making the ad-
dresses available without compromising the position-independence and shareabil-
ity of a program’s text. A program references its global offset table using position-
independent addressing and extracts absolute values, thus redirecting position-
independent references to absolute locations.
If a program requires direct access to the absolute address of a symbol, that
symbol will have a global offset table entry. Because the executable file and shared
objects have separate global offset tables, a symbol’s address may appear in sev-
eral tables. The dynamic linker processes all the global offset table relocations
before giving control to any code in the process image, thus ensuring the absolute
addresses are available during execution.
The tables first entry (number zero) is reserved to hold the address of the dy-
namic structure, referenced with the symbol _DYNAMIC. This allows a program,
such as the dynamic linker, to find its own dynamic structure without having yet
processed its relocation entries. This is especially important for the dynamic
linker, because it must initialize itself without relying on other programs to re-
locate its memory image. On the AMD64 architecture, entries one and two in the
global offset table also are reserved.
The global offset table contains 64-bit addresses.
For the large models the GOT is allowed to be up to 16EB in size.
Function Addresses
References to the address of a function from an executable file and the shared
objects associated with it might not resolve to the same value. References from
77
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
within shared objects will normally be resolved by the dynamic linker to the vir-
tual address of the function itself. References from within the executable file to
a function defined in a shared object will normally be resolved by the link editor
to the address of the procedure linkage table entry for that function within the
executable file.
To allow comparisons of function addresses to work as expected, if an exe-
cutable file references a function defined in a shared object, the link editor will
place the address of the procedure linkage table entry for that function in its as-
sociated symbol table entry. This will result in symbol table entries with section
index of SHN_UNDEF but a type of STT_FUNC and a non-zero st_value. A
reference to the address of a function from within a shared library will be satisfied
by such a definition in the executable.
Some relocations are associated with procedure linkage table entries. These
entries are used for direct function calls rather than for references to function
addresses. These relocations do not use the special symbol value described above.
Otherwise a very tight endless loop would be created.
78
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 5.2: Procedure Linkage Table (small and medium models)
Following the steps below, the dynamic linker and the program “cooperate”
to resolve symbolic references through the procedure linkage table and the global
offset table.
1. When first creating the memory image of the program, the dynamic linker
sets the second and the third entries in the global offset table to special
values. Steps below explain more about these values.
2. Each shared object file in the process image has its own procedure linkage
table, and control transfers to a procedure linkage table entry only from
within the same object file.
3. For illustration, assume the program calls name1, which transfers control
to the label .PLT1.
4. The first instruction jumps to the address in the global offset table entry for
name1. Initially the global offset table holds the address of the following
pushq instruction, not the real address of name1.
5. Now the program pushes a relocation index (index) on the stack. The reloca-
tion index is a 32-bit, non-negative index into the relocation table addressed
by the DT_JMPREL dynamic section entry. The designated relocation en-
try will have type R_X86_64_JUMP_SLOT, and its offset will specify the
79
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
global offset table entry used in the previous jmp instruction. The reloca-
tion entry contains a symbol table index that will reference the appropriate
symbol, name1 in the example.
6. After pushing the relocation index, the program then jumps to .PLT0, the
first entry in the procedure linkage table. The pushq instruction places the
value of the second global offset table entry (GOT+8) on the stack, thus giv-
ing the dynamic linker one word of identifying information. The program
then jumps to the address in the third global offset table entry (GOT+16),
which transfers control to the dynamic linker.
7. When the dynamic linker receives control, it unwinds the stack, looks at
the designated relocation entry, finds the symbol’s value, stores the “real”
address for name1 in its global offset table entry, and transfers control to
the desired destination.
80
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
used as the TLS descriptor resolver function for lazy resolution from within this
module. The PLT entry must push the linkmap of the module onto the stack and
tail-call the internal TLS Descriptor resolver function.
Large Models
In the small and medium code models the size of both the PLT and the GOT is
limited by the maximum 32-bit displacement size. Consequently, the base of the
PLT and the top of the GOT can be at most 2GB apart.
Therefore, in order to support the available addressing space of 16EB, it is nec-
essary to extend both the PLT and the GOT. Moreover, the PLT needs to support
the GOT being over 2GB away and the GOT can be over 2GB in size.3
The PLT is extended as shown in figure 5.3 with the assumption that the GOT
address is in %r154 .
3
If it is determined that the base of the PLT is within 2GB of the top of the GOT, it is also
allowed to use the same PLT layout for a large code model object as that of the small and medium
code models.
4
See Function Prologue.
81
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 5.3: Final Large Code Model PLT
This way, for the first 102261125 entries, each PLT entry besides .PLT0 uses
only 21 bytes. Afterwards, the PLT entry code changes by repeating that of .PLT0,
when each PLT entry is 27 bytes long. Notice that any alignment consideration is
dropped in order to keep the PLT size down.
Each extended PLT entry is thus 5 to 11 bytes larger than the small and
medium code model PLT entries.
The functionality of entry .PLT0 remains unchanged from the small and medium
code models.
Note that the symbol index is still limited to 32 bits, which would allow for up
to 4G global and external functions.
Typically, UNIX compilers support two types of PLT, generally through the
options -fpic and -fPIC. When building position-independent objects using
the large code model, only -fPIC is allowed. Using the option -fpic with the
large code model remains reserved for future use.
82
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
5.2.1 Program Interpreter
There is one valid program interpreter for programs conforming to the AMD64
ABI:
/lib/ld64.so.1
However, Linux puts this in
/lib64/ld-linux-x86-64.so.2
83
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 6
Libraries
6.1 C Library
6.1.1 Global Data Symbols
The symbols _fp_hw, __flt_rounds and __huge_val are not provided by
the AMD64 ABI.
84
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
6.2 Unwind Library Interface
This section defines the Unwind Library interface1 , expected to be provided by
any AMD64 psABI-compliant system. This is the interface on which the C++
ABI exception-handling facilities are built. We assume as a basis the Call Frame
Information tables described in the DWARF Debugging Information Format doc-
ument.
This section is meant to specify a language-independent interface that can be
used to provide higher level exception-handling facilities such as those defined by
C++.
The unwind library interface consists of at least the following routines:
_Unwind_RaiseException ,
_Unwind_Resume ,
_Unwind_DeleteException ,
_Unwind_GetGR ,
_Unwind_SetGR ,
_Unwind_GetIP ,
_Unwind_SetIP ,
_Unwind_GetRegionStart ,
_Unwind_GetLanguageSpecificData ,
_Unwind_ForcedUnwind ,
_Unwind_GetCFA
In addition, two data types are defined (_Unwind_Context and _Unwind_Exception
) to interface a calling runtime (such as the C++ runtime) and the above rou-
tine. All routines and interfaces behave as if defined extern "C". In particular,
the names are not mangled. All names defined as part of this interface have a
"_Unwind_" prefix.
Lastly, a language and vendor specific personality routine will be stored by
the compiler in the unwind descriptor for the stack frames requiring exception
processing. The personality routine is called by the unwinder to handle language-
specific tasks such as identifying the frame handling a particular exception.
1
The overall structure and the external interface is derived from the IA-64 UNIX System V
ABI
85
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
6.2.1 Exception Handler Framework
Reasons for Unwinding
There are two major reasons for unwinding the stack:
The interface described here tries to keep both similar. There is a major dif-
ference, however.
• In the case where an exception is thrown, the stack is unwound while the
exception propagates, but it is expected that the personality routine for each
stack frame knows whether it wants to catch the exception or pass it through.
This choice is thus delegated to the personality routine, which is expected to
act properly for any type of exception, whether “native” or “foreign”. Some
guidelines for “acting properly” are given below.
86
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The Unwind Process
The standard ABI exception handling/unwind process begins with the raising of an
exception, in one of the forms mentioned above. This call specifies an exception
object and an exception class.
The runtime framework then starts a two-phase process:
• In the search phase, the framework repeatedly calls the personality routine,
with the _UA_SEARCH_PHASE flag as described below, first for the cur-
rent %rip and register state, and then unwinding a frame to a new %rip
at each step, until the personality routine reports either success (a handler
found in the queried frame) or failure (no handler) in all frames. It does not
actually restore the unwound state, and the personality routine must access
the state through the API.
• If the search phase reports a failure, e.g. because no handler was found, it
will call terminate() rather than commence phase 2.
If the search phase reports success, the framework restarts in the cleanup
phase. Again, it repeatedly calls the personality routine, with the _UA_CLEANUP_PHASE
flag as described below, first for the current %rip and register state, and
then unwinding a frame to a new %rip at each step, until it gets to the
frame with an identified handler. At that point, it restores the register state,
and control is transferred to the user landing pad code.
Each of these two phases uses both the unwind library and the personality
routines, since the validity of a given handler and the mechanism for transferring
control to it are language-dependent, but the method of locating and restoring
previous stack frames is language-independent.
A two-phase exception-handling model is not strictly necessary to implement
C++ language semantics, but it does provide some benefits. For example, the first
phase allows an exception-handling mechanism to dismiss an exception before
stack unwinding begins, which allows presumptive exception handling (correcting
the exceptional condition and resuming execution at the point where it was raised).
While C++ does not support presumptive exception handling, other languages do,
and the two-phase model allows C++ to coexist with those languages on the stack.
Note that even with a two-phase model, we may execute each of the two phases
more than once for a single exception, as if the exception was being thrown more
than once. For instance, since it is not possible to determine if a given catch clause
will re-throw or not without executing it, the exception propagation effectively
87
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
stops at each catch clause, and if it needs to restart, restarts at phase 1. This
process is not needed for destructors (cleanup code), so the phase 1 can safely
process all destructor-only frames at once and stop at the next enclosing catch
clause.
For example, if the first two frames unwound contain only cleanup code, and
the third frame contains a C++ catch clause, the personality routine in phase 1,
does not indicate that it found a handler for the first two frames. It must do so for
the third frame, because it is unknown how the exception will propagate out of
this third frame, e.g. by re-throwing the exception or throwing a new one in C++.
The API specified by the AMD64 psABI for implementing this framework is
described in the following sections.
Exception Header
The unwind interface uses a pointer to an exception header object as its repre-
sentation of an exception being thrown. In general, the full representation of an
exception object is language- and implementation-specific, but is prefixed by a
header understood by the unwind interface, defined as follows:
88
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
typedef void (*_Unwind_Exception_Cleanup_Fn)
(_Unwind_Reason_Code reason,
struct _Unwind_Exception *exc);
struct _Unwind_Exception {
uint64 exception_class;
_Unwind_Exception_Cleanup_Fn exception_cleanup;
uint64 private_1;
uint64 private_2;
};
An _Unwind_Exception object must be eightbyte aligned. The first two
fields are set by user code prior to raising the exception, and the latter two should
never be touched except by the runtime.
The exception_class field is a language- and implementation-specific
identifier of the kind of exception. It allows a personality routine to distinguish
between native and foreign exceptions, for example. By convention, the high 4
bytes indicate the vendor (for instance AMD\0), and the low 4 bytes indicate the
language. For the C++ ABI described in this document, the low four bytes are
C++\0.
The exception_cleanup routine is called whenever an exception object
needs to be destroyed by a different runtime than the runtime which created the
exception object, for instance if a Java exception is caught by a C++ catch handler.
In such a case, a reason code (see above) indicates why the exception object needs
to be deleted:
89
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The private unwinder state (private_1 and private_2) in an exception
object should be neither read by nor written to by personality routines or other
parts of the language-specific runtime. It is used by the specific implementation
of the unwinder on the host to store internal information, for instance to remember
the final handler frame between unwinding phases.
In addition to the above information, a typical runtime such as the C++ run-
time will add language-specific information used to process the exception. This
is expected to be a contiguous area of memory after the _Unwind_Exception
object, but this is not required as long as the matching personality routines know
how to deal with it, and the exception_cleanup routine de-allocates it prop-
erly.
Unwind Context
The _Unwind_Context type is an opaque type used to refer to a system-
specific data structure used by the system unwinder. This context is created and
destroyed by the system, and passed to the personality routine during unwinding.
struct _Unwind_Context
90
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
fied the stack. The C++ runtime will normally call uncaught_exception()
in this case.
_Unwind_ForcedUnwind
typedef _Unwind_Reason_Code (*_Unwind_Stop_Fn)
(int version,
_Unwind_Action actions,
uint64 exceptionClass,
struct _Unwind_Exception *exceptionObject,
struct _Unwind_Context *context,
void *stop_parameter );
_Unwind_Reason_Code_Unwind_ForcedUnwind
( struct _Unwind_Exception *exception_object,
_Unwind_Stop_Fn stop,
void *stop_parameter );
Raise an exception for forced unwinding, passing along the given exception
object, which should have its exception_class and exception_cleanup
fields set. The exception object has been allocated by the language-specific run-
time, and has a language-specific format, except that it must contain an _Unwind_Exception
struct (see Exception Header above).
Forced unwinding is a single-phase process (phase 2 of the normal exception-
handling process). The stop and stop_parameter parameters control the
termination of the unwind process, instead of the usual personality routine query.
The stop function parameter is called for each unwind frame, with the pa-
91
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
rameters described for the usual personality routine below, plus an additional
stop_parameter.
When the stop function identifies the destination frame, it transfers control
(according to its own, unspecified, conventions) to the user code as appropriate
without returning, normally after calling _Unwind_DeleteException. If
not, it should return an _Unwind_Reason_Code value as follows:
_URC_NO_REASON This is not the destination frame. The unwind runtime will
call the frame’s personality routine with the _UA_FORCE_UNWIND and
_UA_CLEANUP_PHASE flags set in actions, and then unwind to the next
frame and call the stop function again.
If the stop function returns any reason code other than _URC_NO_REASON,
the stack state is indeterminate from the point of view of the caller of
_Unwind_ForcedUnwind. Rather than attempt to return, therefore, the un-
wind library should return _URC_FATAL_PHASE2_ERROR to its caller.
Example: longjmp_unwind()
The expected implementation of longjmp_unwind() is as follows. The
setjmp() routine will have saved the state to be restored in its custom-
ary place, including the frame pointer. The longjmp_unwind() routine
will call _Unwind_ForcedUnwind with a stop function that compares the
frame pointer in the context record with the saved frame pointer. If equal,
it will restore the setjmp() state as customary, and otherwise it will return
_URC_NO_REASON or _URC_END_OF_STACK.
If a future requirement for two-phase forced unwinding were identified, an al-
ternate routine could be defined to request it, and an actions parameter flag defined
to support it.
92
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
_Unwind_Resume
void _Unwind_Resume
(struct _Unwind_Exception *exception_object);
Resume propagation of an existing exception e.g. after executing cleanup code
in a partially unwound stack. A call to this routine is inserted at the end of a
landing pad that performed cleanup, but did not resume normal execution. It
causes unwinding to proceed further.
_Unwind_Resume should not be used to implement re-throwing. To the
unwinding runtime, the catch code that re-throws was a handler, and the previous
unwinding session was terminated before entering it. Re-throwing is implemented
by calling _Unwind_RaiseException again with the same exception object.
This is the only routine in the unwind library which is expected to be called
directly by generated code: it will be called at the end of a landing pad in a
"landing-pad" model.
93
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
_Unwind_GetGR
uint64 _Unwind_GetGR
(struct _Unwind_Context *context, int index);
This function returns the 64-bit value of the given general register. The register
is identified by its index as given in 3.36.
During the two phases of unwinding, no registers have a guaranteed value.
_Unwind_SetGR
void _Unwind_SetGR
(struct _Unwind_Context *context,
int index,
uint64 new_value);
This function sets the 64-bit value of the given register, identified by its index
as for _Unwind_GetGR.
The behavior is guaranteed only if the function is called during phase 2 of
unwinding, and applied to an unwind context representing a handler frame, for
which the personality routine will return _URC_INSTALL_CONTEXT. In that
case, only registers %rdi, %rsi, %rdx, %rcx should be used. These scratch
registers are reserved for passing arguments between the personality routine and
the landing pads.
_Unwind_GetIP
uint64 _Unwind_GetIP
(struct _Unwind_Context *context);
This function returns the 64-bit value of the instruction pointer (IP).
During unwinding, the value is guaranteed to be the address of the instruction
immediately following the call site in the function identified by the unwind con-
text. This value may be outside of the procedure fragment for a function call that
is known to not return (such as _Unwind_Resume).
_Unwind_SetIP
void _Unwind_SetIP
(struct _Unwind_Context *context,
uint64 new_value);
This function sets the value of the instruction pointer (IP) for the routine iden-
tified by the unwind context.
94
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The behavior is guaranteed only when this function is called for an unwind
context representing a handler frame, for which the personality routine will return
_URC_INSTALL_CONTEXT. In this case, control will be transferred to the given
address, which should be the address of a landing pad.
_Unwind_GetLanguageSpecificData
uint64 _Unwind_GetLanguageSpecificData
(struct _Unwind_Context *context);
This routine returns the address of the language-specific data area for the cur-
rent stack frame.
This routine is not strictly required: it could be accessed through _Unwind_GetIP
using the documented format of the DWARF Call Frame Information Tables, but
since this work has been done for finding the personality routine in the first place,
it makes sense to cache the result in the context. We could also pass it as an
argument to the personality routine.
_Unwind_GetRegionStart
uint64 _Unwind_GetRegionStart
(struct _Unwind_Context *context);
This routine returns the address of the beginning of the procedure or code
fragment described by the current unwind descriptor block.
This information is required to access any data stored relative to the beginning
of the procedure fragment. For instance, a call site table might be stored relative
to the beginning of the procedure fragment that contains the calls. During un-
winding, the function returns the start of the procedure fragment containing the
call site in the current stack frame.
_Unwind_GetCFA
uint64 _Unwind_GetCFA
(struct _Unwind_Context *context);
This function returns the 64-bit Canonical Frame Address which is defined as
the value of %rsp at the call site in the previous frame. This value is guaranteed
to be correct any time the context has been passed to a personality routine or a
stop function.
95
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
6.2.6 Personality Routine
_Unwind_Reason_Code (*__personality_routine)
(int version,
_Unwind_Action actions,
uint64 exceptionClass,
struct _Unwind_Exception *exceptionObject,
struct _Unwind_Context *context);
The personality routine is the function in the C++ (or other language) run-
time library which serves as an interface between the system unwind library and
language-specific exception handling semantics. It is specific to the code fragment
described by an unwind info block, and it is always referenced via the pointer in
the unwind info block, and hence it has no psABI-specified name.
Parameters
The personality routine parameters are as follows:
context Unwinder state information for use by the personality routine. This is
an opaque handle used by the personality routine in particular to access the
frame’s registers (see the Unwind Context section above).
96
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
return value The return value from the personality routine indicates how further
unwind should happen, as well as possible error conditions. See the follow-
ing section.
97
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Transferring Control to a Landing Pad
If the personality routine determines that it should transfer control to a landing
pad (in phase 2), it may set up registers (including IP) with suitable values for
entering the landing pad (e.g. with landing pad parameters), by calling the context
management routines above. It then returns _URC_INSTALL_CONTEXT.
Prior to executing code in the landing pad, the unwind library restores registers
not altered by the personality routine, using the context record, to their state in that
frame before the call that threw the exception, as follows. All registers specified
as callee-saved by the base ABI are restored, as well as scratch registers %rdi,
%rsi, %rdx, %rcx (see below). Except for those exceptions, scratch (or caller-
saved) registers are not preserved, and their contents are undefined on transfer.
The landing pad can either resume normal execution (as, for instance, at the
end of a C++ catch), or resume unwinding by calling _Unwind_Resume and
passing it the exceptionObject argument received by the personality routine.
_Unwind_Resume will never return.
_Unwind_Resume should be called if and only if the personality routine
did not return _Unwind_HANDLER_FOUND during phase 1. As a result, the
unwinder can allocate resources (for instance memory) and keep track of them in
the exception object reserved words. It should then free these resources before
transferring control to the last (handler) landing pad. It does not need to free the
resources before entering non-handler landing-pads, since _Unwind_Resume
will ultimately be called.
The landing pad may receive arguments from the runtime, typically passed
in registers set using _Unwind_SetGR by the personality routine. For a landing
pad that can call to _Unwind_Resume, one argument must be the exceptionObject
pointer, which must be preserved to be passed to _Unwind_Resume.
The landing pad may receive other arguments, for instance a switch value
indicating the type of the exception. Four scratch registers are reserved for this
use (%rdi, %rsi, %rdx, %rcx).
98
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
a foreign language are mapped to the native language in that frame.
If a runtime resumes normal execution, and the caught exception was created
by another runtime, it should call _Unwind_DeleteException. This is true
even if it understands the exception object format (such as would be the case
between different C++ run times).
A runtime is not allowed to catch an exception if the _UA_FORCE_UNWIND
flag was passed to the personality routine.
All these cases might involve accessing C++ specific content of the thrown
exception, for instance to chain active exceptions.
Otherwise, a catch block catching a foreign exception is allowed:
• to re-throw the foreign exception. In that case, the original exception object
must be unaltered by the C++ runtime.
99
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
if this happens, unwinding will proceed at the end of the catch-all block, whether
or not there is an explicit re-throw.
Setting the low 4 bytes of exception class to C++\0 is reserved for use by C++
run-times compatible with the common C++ ABI.
.cfi_endproc is used at the end of a function where it closes its unwind en-
try previously opened by .cfi_startproc and emits it to .eh_frame.
100
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
.cfi_rel_offset REGISTER, OFFSET saves the previous value of REG-
ISTER at offset OFFSET from the current CFA register. This is transformed
to .cfi_offset using the known displacement of the CFA register from
the CFA. This is often easier to use, because the number will match the code
it is annotating.
101
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Figure 6.1: Examples for Unwinding in Assembler
102
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 7
Development Environment
During compilation of C or C++ code at least the symbols in table 7.1 are defined
by the pre-processor.
__amd64
__amd64__
__x86_64
__x86_64__
103
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 8
Execution Environment
104
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Chapter 9
Conventions
1
This chapter is used to document some features special to the AMD64 ABI. The different
sections might be moved to another place or removed completely.
105
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
9.1 C++
For the C++ ABI we will use the IA-64 C++ ABI and instantiate it appropriately.
The current draft of that ABI is available at:
http://www.codesourcery.com/cxx-abi/
106
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
9.2 Fortran
A formal Fortran ABI does not exist. Most Fortran compilers are designed for
very specific high performance computing applications, so Fortran compilers use
different passing conventions and memory layouts optimized for their specific
purpose. For example, Fortran applications that must run on distributed memory
machines need a different data representation for array descriptors (also known as
dope vectors, or fat pointers) than applications running on symmetric multipro-
cessor shared memory machines. A normative ABI for Fortran is therefore not
desirable. However, for interoperability of different Fortran compilers, as well as
for interoperability with other languages, this section provides some some guide-
lines for data types representation, and argument passing. The guidelines in this
section are derived from the GNU Fortran 77 (G77) compiler, and are also fol-
lowed by the GNU Fortran 95 (gfortran) compiler (restricted to Fortran 77
features). Other Fortran compilers already available for AMD64 at the time of
this writing may use different conventions, so compatibility is not guaranteed.
When this text uses the term Fortran procedure, the text applies to both For-
tran FUNCTION and SUBROUTINE subprograms as well as for alternate ENTRY
points, unless specifically stated otherwise.
Everything not explicitely defined in this ABI is left to the implementation.
9.2.1 Names
External names in Fortran are names of entities visible to all subprograms at link
time. This includes names of COMMON blocks and Fortran procedures. To avoid
name space conflicts with linked-in libraries, all external names have to be man-
gled. And to avoid name space conflicts of mangled external names with local
names, all local names must also be mangled. The mangling scheme is straight-
forward as follows:
• all names that do not have any underscores in it should have one underscore
appended
• all external names containing one or more underscores in it (whereever)
should have two underscores appended 2 .
• all external names should be mapped to lower case, following the traditional
UNIX model for Fortran compilers
2
Historically, this is to be compatible with f2c.
107
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
For examples see figure 9.1:
The entry point of the main program unit is called MAIN__. The symbol name
for the blank common block is __BLNK__. the external name of the unnamed
BLOCK DATA routine is __BLOCK_DATA__.
3
G77 provides a header g2c.h with the equivalent C type definitions for all supported Fortran
scalar types.
108
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
The values for type LOGICAL are .TRUE. implemented as 1 and .FALSE.
implemented as 0.
Data objects with a CHARACTER type4 are represented as an array of char-
acters of the C char type (not guaranteed to be “\0” terminated) with a separate
length counter to distinguish between CHARACTER data objects with a length pa-
rameter, and aggregate types of CHARACTER data objects, possibly also with a
length parameter.
Layout of other aggregate types is implementation defined. GNU Fortran puts
all arrays in contiguous memory in column-major order. GNU Fortran 95 builds
an equivalent C struct for derived types without reordering the type fields. Other
compilers may use other representations as needed. The representation and use of
Fortran 90/95 array descriptors is implementation defined. Note that array indices
start at 1 by default.
Fortran 90/95 allow different kinds of each basic type using the kind type
parameter of a type. Kind type parameter values are implementation defined.
Layout of he commonly used Cray pointers is implementation defined.
109
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
its value is the length of the array of characters, that is the length, passed as the
first argument. This length is passed by value. When more than one CHARACTER
argument is present in an argument list, the length arguments are appended in the
order the original arguments appear. The above discussion also applies to sub-
strings.
This ABI does not define the passing of optional arguments. They are allowed
only in Fortran 90/95 and their passing is implementation defined.
This ABI does not define array functions (function returning arrays). They are
allowed only in Fortran 90/95 and requires the definition of array descriptors.
Note that Fortran 90/95 procedure arguments with the INTENT(IN) attribute
should also passed by reference if the procedure is to be linked with code written in
Fortran 77. Fortran 77 does not and can not support the INTENT attribute because
it has no concept of explicit interfaces. It is therefore not possible to declare the
callee’s arguments as INTENT(IN). A Fortran 77 compiler must assume that all
procedure arguments are INTENT(INOUT) in the Fortran 90/95 sense.
9.2.4 Functions
The calling of statement functions is implementation defined (as they are defined
only locally, the compiler has the freedom to apply any calling convention it likes).
Subroutines with alternate returns (e.g. "SUBROUTINE X(*,*)" called as
"CALL X(*10,*20)") are implemented as functions returning an INTEGER of the
default kind. The value of this returned integer is whatever integer is specified
in the "RETURN" statement for the subroutine 5 , or 0 for a RETURN statement
without an argument. It is up to the caller to jump to the corresponding alternate
return label. The actual alternate-return arguments are omitted from the calling
sequence.
An example:
110
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
RETURN
30 WRITE (*,*) ’2nd alternate return’
RETURN
END
All in all the effect is that the index of the returned to label (starting from 1)
will be contained in %rax after the call.
Alternate ENTRY points of a SUBROUTINE or FUNCTION should be treated
as separate subprograms, as mandated by the Fortran standard. I.e. arguments
passed to an alternate ENTRY should be passed as if the alternate ENTRY is a sep-
arate SUBROUTINE or FUNCTION. If a FUNCTION has alternate ENTRY points,
the result of each of the alternate ENTRY points must be returned as if the alternate
ENTRY is a separate FUNCTION with the result type of the alternate ENTRY. The
external naming of alternate ENTRY points follows 9.2.1.
111
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
• If two arrays are equivalenced, the larger array must be named in the COMMON
block, and there must be complete inclusion, in particular the other array
may not extend the size of the equivalenced segment. It may also not change
the alignment requirement.
• If an array element and a scalar are equivalenced, the array must be named
in the COMMON block and it must not be smaller than the scalar. The type of
the scalar must not require bigger alignment than the array.
• if two scalars are equivalenced they must have the same size and alignment
requirements.
9.2.6 Intrinsics
This sections lists the set of intrinsics which has to be supported at minimum by
a conforming compiler. They are separated by origin. They follow regular calling
and naming conventions.
The signature of intrinsics uses the syntax return−type(argtype1, argtype2, ...),
where the individual types can be the following characters: V (as in void) des-
ignates a SUBROUTINE, L a LOGICAL, I an INTEGER, R a REAL, and C a
CHARACTER. Hence I(R,L) designates a FUNCTION returning an INTEGER
and taking a REAL and a LOGICAL. If an argument is an array, this is indicated
using a trailing number, e.g. I13 is an INTEGER array with 13 elements. If a
CHARACTER argument or return value has a fixed length, this is indicated using
an asterisk and a trailing number, for example C*16 is a CHARACTER(len=16).
If a CHARACTER argument of arbitrary length must be passed, the trailing number
is replaced with N, for example C*N.
112
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 9.1: Mil intrinsics
BTest (I, Pos) Returns .TRUE. if bit Pos in I is set, returns .FALSE. oth-
erwise.
IAnd (I, J) Returns value resulting from a boolean AND on each pair of bits
in I and J.
IOr (I, J) Returns value resulting from a boolean OR on each pair of bits in
I and J.
IEOr (I, J) Returns value resulting from a boolean XOR on each pair of bits
in I and J.
Not (I) Returns value resulting from a boolean NOT on each bit in I.
IBClr (I, Pos) Returns the value of I with bit Pos cleared (set to zero).
IBits (I, Pos, Len) Extracts a subfield starting from bit position Pos and
with a length (towards the most significant bit) of Len bits from I. The
result is right-justified and the remaining bits are zeroed.
IBSet (I, Pos) Returns the value of I with the bit in position Pos set to one.
113
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
IShft (I, Shift) All bits of I are shifted Shift places. Shift.GT.0 in-
dicates a left shift, Shift.EQ.0 indicates no shift, and Shift.LT.0
indicates a right shift. Bits shifted out from the least (when shifting right)
or most (when shifting left) significant position are lost. Bits shifted in at
the opposite end are not set (i.e. zero).
IShftC (I, Shift, Size) The rightmost Size bits of the argument I are
shifted circularly Shift places. The unshifted bits of the result are the
same as the unshifted bits of I.
MvBits (From, FromPos, Len, To, ToPos) Move Len bits of From from
bit positions FromPos through FromPos+Len-1 to bit positions ToPos
through ToPos+Len-1 of To. The bit portions of To that are not affected
by the movement of bits are unchanged.
114
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 9.2: F77 intrinsics
Name Meaning
Abs Absolute value
ACos Arc cosine
AInt Truncate to whole number
ANInt Round to nearest whole number
ASin Arc sine
ATan Arc Tangent
ATan2 Arc Tangent
Char Character from code
Cmplx Construct COMPLEX(KIND=1) value
Conjg Complex conjugate
Cos Cosine
CosH Hyperbolic cosine
Dble Convert to double precision
DiM Difference magnitude (non-negative subtract)
DProd Double-precision product
Exp Exponential
IChar Code for character
Index Locate a CHARACTER substring
Int Convert to INTEGER value truncated to whole number
Len Length of character entity
LGe Lexically greater than or equal
LGt Lexically greater than
LLe Lexically less than or equal
LLt Lexically less than
Log Natural logarithm
Log10 Common logarithm
Max Maximum value
Min Minimum value
Mod Remainder
NInt Convert to INTEGER value rounded to nearest whole number
Real Convert value to type REAL(KIND=1)
Sin Sine
SinH Hyperbolic sine
SqRt Square root
Tan Tangent
TanH Hyperbolic tangent 115
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Refer to the Fortran 77 language standard for signature and definition of the
F77 intrinsics listed in table 9.2. These intrinsics can have a prefix as per the
standard hence the table is not exhaustive.
Name Meaning
AChar ASCII character from code
Bit_Size Number of bits in arguments type
CPU_Time Get current CPU time
IAChar ASCII code for character
Len_Trim Get last non-blank character in string
System_Clock Get current system clock value
Refer to the Fortran 90 language standard for signature and definition of the
F90 intrinsics listed in table 9.3.
BesJ0 (X) Calculates the Bessel function of the first kind of order 0 of X. Returns
a REAL of the same kind as X.
116
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
BesJ1 (X) Calculates the Bessel function of the first kind of order 1 of X. Returns
a REAL of the same kind as X.
BesJN (N, X) Calculates the Bessel function of the first kind of order N of X.
Returns a REAL of the same kind as X.
BesY0 (X) Calculates the Bessel function of the second kind of order 0 of X.
Returns a REAL of the same kind as X.
BesY1 (X) Calculates the Bessel function of the second kind of order 1 of X.
Returns a REAL of the same kind as X.
BesYN (N, X) Calculates the Bessel function of the second kind of order N of X.
Returns a REAL of the same kind as X.
ErF (X) Calculates the error function of X. Returns a REAL of the same kind
as X.
SRand (Seed) Reinitializes the random number generator for IRand and Rand
with the seed in Seed.
117
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table 9.5: Unix intrinsics
Access (Name, Mode) Checks file Name for accessibility in the mode specified
by Mode. Returns 0 if the file is accessible in that mode, otherwise an er-
ror code. Name must be a NULL-terminated string of CHARACTER (i.e.
a C-style string). Trailing blanks in Name are ignored. Mode must be a
concatenation of any of the following characters: r meaning test for read
118
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
permission, w meaning test for write permission, x meaning test for exe-
cute/search permission, or a space meaning test for existence of the file.
DTime (TArray, Result) When called for the first time, returns the num-
ber of seconds of runtime since the start of the program in Result, the
user component of this runtime in TArray(1), and the system time in
TArray(2). Subsequent invocations values based on accumulations since
the previous invocation.
Flush (Unit) Flushes the Fortran I/O unit with ID Unit. The unit must be
open for output. If the optional Unit argument is omitted, all open units
are flushed.
FNum (Unit) Returns the UNIX(tm) file descriptor number corresponding to the
Fortran I/O unit Unit. The unit must be open.
FStat (Unit, SArray, Status) Obtains data about the file open on For-
tran I/O unit Unit and places it in the array SArray. The values in this
array are as follows:
1. Device ID
2. Inode number
3. File mode
4. Number of links
5. Owner’s UID
6. Owner’s GID
7. ID of device containing directory entry for file
8. File size (bytes)
9. Last access time
10. Last modification time
11. Last file status change time
119
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
12. Preferred I/O block size (-1 if not available)
13. Number of blocks allocated (-1 if not available)
Gerror (Message) Returns the system error message corresponding to the last
system error (errno in C). The message is returned in Message. If Message
is longer than the error message, it is padded with blanks after the message.
If Message is not long enough to hold the error message, the error message
is truncated to the length of Message.
GetLog (Login) Returns the login name for the process in Login, or a blank
string if the host system does not support getlogin(3). If Login is
120
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
longer than the login name, it is padded with blanks after the login name.
If Login is not long enough to hold the login name, the login name is
truncated to the length of of Login.
HotNm (Name, Status) Returns in Name system’s host name. If the optional
Status argument is supplied, it contains 0 on success or a nonzero error
code upon return. If Name is longer than the host name, it is padded with
blanks after the host name. If Name is not long enough to hold the host
name, the host name is truncated to the length of of Name.
IDate (TArray) Returns the current local date day, month, year in elements 1,
2, and 3 of Tarray, respectively. The year has four significant digits.
ITime (TArray) Returns the current local time hour, minutes, and seconds in
elements 1, 2, and 3 of TArray, respectively.
LStat (File, SArray, Status) Obtains data about a file named File and
places places it in the array SArray. The values in this array are as follows:
1. Device ID
2. Inode number
3. File mode
4. Number of links
5. Owner’s UID
6. Owner’s GID
7. ID of device containing directory entry for file
8. File size (bytes)
9. Last access time
10. Last modification time
11. Last file status change time
12. Preferred I/O block size (-1 if not available)
121
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
13. Number of blocks allocated (-1 if not available)
Rename (Path1, Path2, Status) Renames the file named Path1 to Path2.
A null character marks the end of the names. Trailing blanks are ignored.
If the optional Status argument is supplied, it contains 0 on success or a
nonzero error code upon return.
122
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Appendix A
Linux Conventions
This chapter describes some details that are only relevant to GNU/Linux systems
and the Linux kernel.
123
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
1. User-level applications use as integer registers for passing the sequence
%rdi, %rsi, %rdx, %rcx, %r8 and %r9. The kernel interface uses %rdi,
%rsi, %rdx, %r10, %r8 and %r9.
5. Returning from the syscall, register %rax contains the result of the
system-call. A value in the range between -4095 and -1 indicates an error,
it is -errno.
6. Only values of class INTEGER or class MEMORY are passed to the kernel.
124
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Table A.1: Required Processor Features
Feature Comment
Features need for programs
fpu Necessary for long double, MMX
tsc User-visible
cx8 User-visible
cmov User-visible
mmx User-visible
sse User-visible, required for float
sse2 User-visible, required for double
fxsr Required for SSE/SSE2
syscall For calling the kernel
Features need in the kernel
pae This kind of page tables is used
pse PAE needs PSE.
msr At least needed to enter long mode
pge Kernel optimization
pat Kernel optimization
clflush Kernel optimization
125
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Index
.cfi_adjust_cfa_offset, 96 boolean, 9
.cfi_def_cfa, 96 byte, 7
.cfi_def_cfa_offset, 96
.cfi_def_cfa_register, 96 C++, 102
.cfi_endproc, 96 Call Frame Information tables, 81
.cfi_escape, 97 code models, 29
.cfi_offset, 96 double quadword, 7
.cfi_rel_offset, 97 doubleword, 7
.cfi_startproc, 96 DT_FINI, 79
.eh_frame, 96 DT_FINI_ARRAY, 79
%rax, 46 DT_INIT, 79
_UA_CLEANUP_PHASE, 83 DT_INIT_ARRAY, 79
_UA_FORCE_UNWIND, 82 DT_JMPREL, 75
_UA_SEARCH_PHASE, 83 DT_PREINIT_ARRAY, 79
_Unwind_Context, 81 DWARF Debugging Information Format,
_Unwind_DeleteException, 81 81, 96
_Unwind_Exception, 81
_Unwind_ForcedUnwind, 81, 82 eightbyte, 7
_Unwind_GetCFA, 81 exceptions, 20
_Unwind_GetGR, 81 exec, 24
_Unwind_GetIP, 81
fegetround, 80
_Unwind_GetLanguageSpecificData,
81 fourbyte, 7
_Unwind_GetRegionStart, 81
global offset table, 73
_Unwind_RaiseException, 81, 82
_Unwind_Resume, 81 halfword, 7
_Unwind_SetGR, 81
_Unwind_SetIP, 81 Kernel code model, 29
__float128, 7
Large code model, 30
auxiliary vector, 26
126
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08
Large position independent code model,
31
longjmp, 82
PIC, 30, 31
Procedure Linkage Table, 66
procedure linkage table, 74–76
program interpreter, 79
quadword, 7
R_X86_64_JUMP_SLOT, 75, 76
R_X86_64_TLSDESC, 76
red zone, 12, 120
register save area, 47
signal, 20
sixteenbyte, 7
size_t, 9
Small code model, 29
Small position independent code model,
30
terminate(), 83
Thread-Local Storage, 68
twobyte, 7
va_arg, 49
va_list, 48
va_start, 49
word, 7
127
AMD64 ABI Draft 0.99.7 – November 17, 2014 – 15:08