Fix missing dependencies and ensure correct CPPFLAGS.
[glibc.git] / sysdeps / x86_64 / sysdep.h
blob1d35f8fd1ebf071513935e033f96dcbc54dffb6e
1 /* Assembler macros for x86-64.
2 Copyright (C) 2001, 2002, 2003 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <sysdeps/generic/sysdep.h>
22 #ifdef __ASSEMBLER__
24 /* Syntactic details of assembler. */
26 #ifdef HAVE_ELF
28 /* ELF uses byte-counts for .align, most others use log2 of count of bytes. */
29 #define ALIGNARG(log2) 1<<log2
30 /* For ELF we need the `.type' directive to make shared libs work right. */
31 #define ASM_TYPE_DIRECTIVE(name,typearg) .type name,typearg;
32 #define ASM_SIZE_DIRECTIVE(name) .size name,.-name;
34 /* In ELF C symbols are asm symbols. */
35 #undef NO_UNDERSCORES
36 #define NO_UNDERSCORES
38 #else
40 #define ALIGNARG(log2) log2
41 #define ASM_TYPE_DIRECTIVE(name,type) /* Nothing is specified. */
42 #define ASM_SIZE_DIRECTIVE(name) /* Nothing is specified. */
44 #endif
47 /* Define an entry point visible from C. */
48 #define ENTRY(name) \
49 ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name); \
50 ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),@function) \
51 .align ALIGNARG(4); \
52 C_LABEL(name) \
53 cfi_startproc; \
54 CALL_MCOUNT
56 #undef END
57 #define END(name) \
58 cfi_endproc; \
59 ASM_SIZE_DIRECTIVE(name)
61 #define ENTRY_CHK(name) ENTRY (name)
62 #define END_CHK(name) END (name)
64 /* If compiled for profiling, call `mcount' at the start of each function. */
65 #ifdef PROF
66 /* The mcount code relies on a normal frame pointer being on the stack
67 to locate our caller, so push one just for its benefit. */
68 #define CALL_MCOUNT \
69 pushq %rbp; \
70 cfi_adjust_cfa_offset(8); \
71 movq %rsp, %rbp; \
72 cfi_def_cfa_register(%rbp); \
73 call JUMPTARGET(mcount); \
74 popq %rbp; \
75 cfi_def_cfa(rsp,8);
76 #else
77 #define CALL_MCOUNT /* Do nothing. */
78 #endif
80 #ifdef NO_UNDERSCORES
81 /* Since C identifiers are not normally prefixed with an underscore
82 on this system, the asm identifier `syscall_error' intrudes on the
83 C name space. Make sure we use an innocuous name. */
84 #define syscall_error __syscall_error
85 #define mcount _mcount
86 #endif
88 #define PSEUDO(name, syscall_name, args) \
89 lose: \
90 jmp JUMPTARGET(syscall_error) \
91 .globl syscall_error; \
92 ENTRY (name) \
93 DO_CALL (syscall_name, args); \
94 jb lose
96 #undef PSEUDO_END
97 #define PSEUDO_END(name) \
98 END (name)
100 #undef JUMPTARGET
101 #ifdef PIC
102 #define JUMPTARGET(name) name##@PLT
103 #else
104 #define JUMPTARGET(name) name
105 #endif
107 /* Local label name for asm code. */
108 #ifndef L
109 # ifdef HAVE_ELF
110 /* ELF-like local names start with `.L'. */
111 # define L(name) .L##name
112 # else
113 # define L(name) name
114 # endif
115 #endif
117 #endif /* __ASSEMBLER__ */