Next: , Previous: Visium Function Attributes, Up: Function Attributes


6.31.32 x86 Function Attributes

These function attributes are supported by the x86 back end:

cdecl
On the x86-32 targets, the cdecl attribute causes the compiler to assume that the calling function pops off the stack space used to pass arguments. This is useful to override the effects of the -mrtd switch.
fastcall
On x86-32 targets, the fastcall attribute causes the compiler to pass the first argument (if of integral type) in the register ECX and the second argument (if of integral type) in the register EDX. Subsequent and other typed arguments are passed on the stack. The called function pops the arguments off the stack. If the number of arguments is variable all arguments are pushed on the stack.
thiscall
On x86-32 targets, the thiscall attribute causes the compiler to pass the first argument (if of integral type) in the register ECX. Subsequent and other typed arguments are passed on the stack. The called function pops the arguments off the stack. If the number of arguments is variable all arguments are pushed on the stack. The thiscall attribute is intended for C++ non-static member functions. As a GCC extension, this calling convention can be used for C functions and for static member methods.
ms_abi
sysv_abi
On 32-bit and 64-bit x86 targets, you can use an ABI attribute to indicate which calling convention should be used for a function. The ms_abi attribute tells the compiler to use the Microsoft ABI, while the sysv_abi attribute tells the compiler to use the ABI used on GNU/Linux and other systems. The default is to use the Microsoft ABI when targeting Windows. On all other systems, the default is the x86/AMD ABI.

Note, the ms_abi attribute for Microsoft Windows 64-bit targets currently requires the -maccumulate-outgoing-args option.

callee_pop_aggregate_return (number)
On x86-32 targets, you can use this attribute to control how aggregates are returned in memory. If the caller is responsible for popping the hidden pointer together with the rest of the arguments, specify number equal to zero. If callee is responsible for popping the hidden pointer, specify number equal to one.

The default x86-32 ABI assumes that the callee pops the stack for hidden pointer. However, on x86-32 Microsoft Windows targets, the compiler assumes that the caller pops the stack for hidden pointer.

ms_hook_prologue
On 32-bit and 64-bit x86 targets, you can use this function attribute to make GCC generate the “hot-patching” function prologue used in Win32 API functions in Microsoft Windows XP Service Pack 2 and newer.
regparm (number)
On x86-32 targets, the regparm attribute causes the compiler to pass arguments number one to number if they are of integral type in registers EAX, EDX, and ECX instead of on the stack. Functions that take a variable number of arguments continue to be passed all of their arguments on the stack.

Beware that on some ELF systems this attribute is unsuitable for global functions in shared libraries with lazy binding (which is the default). Lazy binding sends the first call via resolving code in the loader, which might assume EAX, EDX and ECX can be clobbered, as per the standard calling conventions. Solaris 8 is affected by this. Systems with the GNU C Library version 2.1 or higher and FreeBSD are believed to be safe since the loaders there save EAX, EDX and ECX. (Lazy binding can be disabled with the linker or the loader if desired, to avoid the problem.)

sseregparm
On x86-32 targets with SSE support, the sseregparm attribute causes the compiler to pass up to 3 floating-point arguments in SSE registers instead of on the stack. Functions that take a variable number of arguments continue to pass all of their floating-point arguments on the stack.
force_align_arg_pointer
On x86 targets, the force_align_arg_pointer attribute may be applied to individual function definitions, generating an alternate prologue and epilogue that realigns the run-time stack if necessary. This supports mixing legacy codes that run with a 4-byte aligned stack with modern codes that keep a 16-byte stack for SSE compatibility.
stdcall
On x86-32 targets, the stdcall attribute causes the compiler to assume that the called function pops off the stack space used to pass arguments, unless it takes a variable number of arguments.
target (options)
As discussed in Common Function Attributes, this attribute allows specification of target-specific compilation options.

On the x86, the following options are allowed:

abm
no-abm
Enable/disable the generation of the advanced bit instructions.
aes
no-aes
Enable/disable the generation of the AES instructions.
default
See Function Multiversioning, where it is used to specify the default function version.
mmx
no-mmx
Enable/disable the generation of the MMX instructions.
pclmul
no-pclmul
Enable/disable the generation of the PCLMUL instructions.
popcnt
no-popcnt
Enable/disable the generation of the POPCNT instruction.
sse
no-sse
Enable/disable the generation of the SSE instructions.
sse2
no-sse2
Enable/disable the generation of the SSE2 instructions.
sse3
no-sse3
Enable/disable the generation of the SSE3 instructions.
sse4
no-sse4
Enable/disable the generation of the SSE4 instructions (both SSE4.1 and SSE4.2).
sse4.1
no-sse4.1
Enable/disable the generation of the sse4.1 instructions.
sse4.2
no-sse4.2
Enable/disable the generation of the sse4.2 instructions.
sse4a
no-sse4a
Enable/disable the generation of the SSE4A instructions.
fma4
no-fma4
Enable/disable the generation of the FMA4 instructions.
xop
no-xop
Enable/disable the generation of the XOP instructions.
lwp
no-lwp
Enable/disable the generation of the LWP instructions.
ssse3
no-ssse3
Enable/disable the generation of the SSSE3 instructions.
cld
no-cld
Enable/disable the generation of the CLD before string moves.
fancy-math-387
no-fancy-math-387
Enable/disable the generation of the sin, cos, and sqrt instructions on the 387 floating-point unit.
fused-madd
no-fused-madd
Enable/disable the generation of the fused multiply/add instructions.
ieee-fp
no-ieee-fp
Enable/disable the generation of floating point that depends on IEEE arithmetic.
inline-all-stringops
no-inline-all-stringops
Enable/disable inlining of string operations.
inline-stringops-dynamically
no-inline-stringops-dynamically
Enable/disable the generation of the inline code to do small string operations and calling the library routines for large operations.
align-stringops
no-align-stringops
Do/do not align destination of inlined string operations.
recip
no-recip
Enable/disable the generation of RCPSS, RCPPS, RSQRTSS and RSQRTPS instructions followed an additional Newton-Raphson step instead of doing a floating-point division.
arch=ARCH
Specify the architecture to generate code for in compiling the function.
tune=TUNE
Specify the architecture to tune for in compiling the function.
fpmath=FPMATH
Specify which floating-point unit to use. You must specify the target("fpmath=sse,387") option as target("fpmath=sse+387") because the comma would separate different options.

On the x86, the inliner does not inline a function that has different target options than the caller, unless the callee has a subset of the target options of the caller. For example a function declared with target("sse3") can inline a function with target("sse2"), since -msse3 implies -msse2.