1 /* Assembler macros for x86-64.
2 Copyright (C) 2001-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #ifndef _X86_64_SYSDEP_H
20 #define _X86_64_SYSDEP_H 1
22 #include <sysdeps/x86/sysdep.h>
23 #include <x86-lp_size.h>
27 /* Syntactic details of assembler. */
29 /* This macro is for setting proper CFI with DW_CFA_expression describing
30 the register as saved relative to %rsp instead of relative to the CFA.
31 Expression is DW_OP_drop, DW_OP_breg7 (%rsp is register 7), sleb128 offset
33 #define cfi_offset_rel_rsp(regn, off) .cfi_escape 0x10, regn, 0x4, 0x13, \
34 0x77, off & 0x7F | 0x80, off >> 7
36 /* If compiled for profiling, call `mcount' at the start of each function. */
38 /* The mcount code relies on a normal frame pointer being on the stack
39 to locate our caller, so push one just for its benefit. */
42 cfi_adjust_cfa_offset(8); \
44 cfi_def_cfa_register(%rbp); \
45 call JUMPTARGET(mcount); \
49 #define CALL_MCOUNT /* Do nothing. */
52 #define PSEUDO(name, syscall_name, args) \
54 jmp JUMPTARGET(syscall_error) \
55 .globl syscall_error; \
57 DO_CALL (syscall_name, args); \
63 # define JUMPTARGET(name) *name##@GOTPCREL(%rip)
65 # define JUMPTARGET(name) name##@PLT
68 /* For static archives, branch to target directly. */
69 # define JUMPTARGET(name) name
72 /* Instruction to operate on long and pointer. */
73 #define LP_OP(insn) insn##q
75 /* Assembler address directive. */
76 #define ASM_ADDR .quad
78 /* Registers to hold long and pointer. */
96 /* Zero upper vector registers and return with xtest. NB: Use VZEROALL
97 to avoid RTM abort triggered by VZEROUPPER inside transactionally. */
98 #define ZERO_UPPER_VEC_REGISTERS_RETURN_XTEST \
107 /* Can be used to replace vzeroupper that is not directly before a
108 return. This is useful when hoisting a vzeroupper from multiple
109 return paths to decrease the total number of vzerouppers and code
111 #define COND_VZEROUPPER_XTEST \
120 /* In RTM define this as COND_VZEROUPPER_XTEST. */
121 #ifndef COND_VZEROUPPER
122 # define COND_VZEROUPPER vzeroupper
125 /* Zero upper vector registers and return. */
126 #ifndef ZERO_UPPER_VEC_REGISTERS_RETURN
127 # define ZERO_UPPER_VEC_REGISTERS_RETURN \
132 #ifndef VZEROUPPER_RETURN
133 # define VZEROUPPER_RETURN VZEROUPPER; ret
136 #else /* __ASSEMBLER__ */
138 /* Instruction to operate on long and pointer. */
139 #define LP_OP(insn) #insn "q"
141 /* Assembler address directive. */
142 #define ASM_ADDR ".quad"
144 /* Registers to hold long and pointer. */
162 #endif /* __ASSEMBLER__ */
164 #endif /* _X86_64_SYSDEP_H */