Initial import from FreeBSD RELENG_4:
[games.git] / contrib / gcc / config / openbsd.h
1 /* Base configuration file for all OpenBSD targets.
2    Copyright (C) 1999 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21 /* Common OpenBSD configuration. 
22    All OpenBSD architectures include this file, which is intended as
23    a repository for common defines. 
24
25    Some defines are common to all architectures, a few of them are
26    triggered by OBSD_* guards, so that we won't override architecture
27    defaults by mistakes.
28
29    OBSD_HAS_CORRECT_SPECS: 
30       another mechanism provides correct specs already.
31    OBSD_NO_DYNAMIC_LIBRARIES: 
32       no implementation of dynamic libraries.
33    OBSD_OLD_GAS: 
34       older flavor of gas which needs help for PIC.
35    OBSD_HAS_DECLARE_FUNCTION_NAME, OBSD_HAS_DECLARE_FUNCTION_SIZE,
36    OBSD_HAS_DECLARE_OBJECT: 
37       PIC support, FUNCTION_NAME/FUNCTION_SIZE are independent, whereas
38       the corresponding logic for OBJECTS is necessarily coupled.
39
40    There are also a few `default' defines such as ASM_WEAKEN_LABEL,
41    intended as common ground for arch that don't provide 
42    anything suitable.  */
43
44 /* OPENBSD_NATIVE is defined only when gcc is configured as part of
45    the OpenBSD source tree, specifically through Makefile.bsd-wrapper.
46
47    In such a case the include path can be trimmed as there is no
48    distinction between system includes and gcc includes.  */
49
50 /* This configuration method, namely Makefile.bsd-wrapper and
51    OPENBSD_NATIVE is NOT recommended for building cross-compilers.  */
52
53 #ifdef OPENBSD_NATIVE
54
55 #undef GCC_INCLUDE_DIR
56 #define GCC_INCLUDE_DIR "/usr/include"
57
58 /* The compiler is configured with ONLY the gcc/g++ standard headers.  */
59 #undef INCLUDE_DEFAULTS
60 #define INCLUDE_DEFAULTS                        \
61   {                                             \
62     { GPLUSPLUS_INCLUDE_DIR, "G++", 1, 1 },     \
63     { GCC_INCLUDE_DIR, "GCC", 0, 0 },           \
64     { 0, 0, 0, 0 }                              \
65   }
66
67 /* Under OpenBSD, the normal location of the various *crt*.o files is the
68    /usr/lib directory.  */
69 #define STANDARD_STARTFILE_PREFIX       "/usr/lib/"
70
71 #endif
72
73 \f
74 /* Controlling the compilation driver.  */
75
76 /* CPP_SPEC appropriate for OpenBSD. We deal with -posix and -pthread.
77    XXX the way threads are handling currently is not very satisfying,
78    since all code must be compiled with -pthread to work. 
79    This two-stage defines makes it easy to pick that for targets that
80    have subspecs.  */
81 #define OBSD_CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_POSIX_THREADS}"
82
83 /* LIB_SPEC appropriate for OpenBSD.  Select the appropriate libc, 
84    depending on profiling and threads.  Basically, 
85    -lc(_r)?(_p)?, select _r for threads, and _p for p or pg.  */
86 #define OBSD_LIB_SPEC "-lc%{pthread:_r}%{p:_p}%{!p:%{pg:_p}}"
87
88 #ifndef OBSD_HAS_CORRECT_SPECS
89
90 #ifndef OBSD_NO_DYNAMIC_LIBRARIES
91 #undef SWITCH_TAKES_ARG
92 #define SWITCH_TAKES_ARG(CHAR) \
93   (DEFAULT_SWITCH_TAKES_ARG (CHAR) \
94    || (CHAR) == 'R')
95 #endif
96
97 #undef CPP_SPEC
98 #define CPP_SPEC OBSD_CPP_SPEC
99
100 #ifdef OBSD_OLD_GAS
101 /* ASM_SPEC appropriate for OpenBSD.  For some architectures, OpenBSD 
102    still uses a special flavor of gas that needs to be told when generating 
103    pic code.  */
104 #undef ASM_SPEC
105 #define ASM_SPEC "%{fpic:-k} %{fPIC:-k -K} %|"
106 #else
107 /* Since we use gas, stdin -> - is a good idea, but we don't want to
108    override native specs just for that.  */
109 #ifndef ASM_SPEC
110 #define ASM_SPEC "%|"
111 #endif
112 #endif
113
114 /* LINK_SPEC appropriate for OpenBSD.  Support for GCC options 
115    -static, -assert, and -nostdlib.  */
116 #undef LINK_SPEC
117 #ifdef OBSD_NO_DYNAMIC_LIBRARIES
118 #define LINK_SPEC \
119   "%{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{assert*}"
120 #else
121 #define LINK_SPEC \
122   "%{!nostdlib:%{!r*:%{!e*:-e start}}} -dc -dp %{R*} %{static:-Bstatic} %{assert*}"
123 #endif
124
125 #undef LIB_SPEC
126 #define LIB_SPEC OBSD_LIB_SPEC
127 #endif
128
129 \f
130 /* Runtime target specification.  */
131
132 /* You must redefine CPP_PREDEFINES in any arch specific file.  */
133 #undef CPP_PREDEFINES
134
135 /* Implicit calls to library routines.  */
136
137 /* Use memcpy and memset instead of bcopy and bzero.  */
138 #define TARGET_MEM_FUNCTIONS
139
140 /* Miscellaneous parameters.  */
141
142 /* Tell libgcc2.c that OpenBSD targets support atexit.  */
143 #define HAVE_ATEXIT
144
145 /* Controlling debugging info: dbx options.  */
146
147 /* Don't use the `xsTAG;' construct in DBX output; OpenBSD systems that
148    use DBX don't support it.  */
149 #define DBX_NO_XREFS
150
151 \f
152 /* Support of shared libraries, mostly imported from svr4.h through netbsd.  */
153 /* Two differences from svr4.h:
154    - we use . - _func instead of a local label,
155    - we put extra spaces in expressions such as 
156      .type _func , @function
157      This is more readable for a human being and confuses c++filt less.  */
158
159 /* Assembler format: output and generation of labels.  */
160
161 /* Define the strings used for the .type and .size directives.
162    These strings generally do not vary from one system running OpenBSD
163    to another, but if a given system needs to use different pseudo-op
164    names for these, they may be overridden in the arch specific file.  */ 
165
166 /* OpenBSD assembler is hacked to have .type & .size support even in a.out
167    format object files.  Functions size are supported but not activated 
168    yet (look for GRACE_PERIOD_EXPIRED in gas/config/obj-aout.c).  
169    SET_ASM_OP is needed for attribute alias to work.  */
170
171 #undef TYPE_ASM_OP
172 #undef SIZE_ASM_OP
173 #undef SET_ASM_OP
174
175 #define TYPE_ASM_OP     ".type"
176 #define SIZE_ASM_OP     ".size"
177 #define SET_ASM_OP      ".set"
178
179 /* The following macro defines the format used to output the second
180    operand of the .type assembler directive.  */
181 #undef TYPE_OPERAND_FMT
182 #define TYPE_OPERAND_FMT        "@%s"
183
184 /* Provision if extra assembler code is needed to declare a function's result
185    (taken from svr4, not needed yet actually).  */
186 #ifndef ASM_DECLARE_RESULT
187 #define ASM_DECLARE_RESULT(FILE, RESULT)
188 #endif
189
190 /* These macros generate the special .type and .size directives which
191    are used to set the corresponding fields of the linker symbol table
192    entries under OpenBSD.  These macros also have to output the starting 
193    labels for the relevant functions/objects.  */
194
195 #ifndef OBSD_HAS_DECLARE_FUNCTION_NAME
196 /* Extra assembler code needed to declare a function properly.
197    Some assemblers may also need to also have something extra said 
198    about the function's return value.  We allow for that here.  */
199 #undef ASM_DECLARE_FUNCTION_NAME
200 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)                     \
201   do {                                                                  \
202     fprintf (FILE, "\t%s\t", TYPE_ASM_OP);                              \
203     assemble_name (FILE, NAME);                                         \
204     fputs (" , ", FILE);                                                \
205     fprintf (FILE, TYPE_OPERAND_FMT, "function");                       \
206     putc ('\n', FILE);                                                  \
207     ASM_DECLARE_RESULT (FILE, DECL_RESULT (DECL));                      \
208     ASM_OUTPUT_LABEL(FILE, NAME);                                       \
209   } while (0)
210 #endif
211
212 #ifndef OBSD_HAS_DECLARE_FUNCTION_SIZE
213 /* Declare the size of a function.  */
214 #undef ASM_DECLARE_FUNCTION_SIZE
215 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)                    \
216   do {                                                                  \
217     if (!flag_inhibit_size_directive)                                   \
218       {                                                                 \
219         fprintf (FILE, "\t%s\t", SIZE_ASM_OP);                          \
220         assemble_name (FILE, (FNAME));                                  \
221         fputs (" , . - ", FILE);                                        \
222         assemble_name (FILE, (FNAME));                                  \
223         putc ('\n', FILE);                                              \
224       }                                                                 \
225   } while (0)
226 #endif
227
228 #ifndef OBSD_HAS_DECLARE_OBJECT
229 /* Extra assembler code needed to declare an object properly.  */
230 #undef ASM_DECLARE_OBJECT_NAME
231 #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL)                       \
232   do {                                                                  \
233     fprintf (FILE, "\t%s\t ", TYPE_ASM_OP);                             \
234     assemble_name (FILE, NAME);                                         \
235     fputs (" , ", FILE);                                                \
236     fprintf (FILE, TYPE_OPERAND_FMT, "object");                         \
237     putc ('\n', FILE);                                                  \
238     size_directive_output = 0;                                          \
239     if (!flag_inhibit_size_directive && DECL_SIZE (DECL))               \
240       {                                                                 \
241         size_directive_output = 1;                                      \
242         fprintf (FILE, "\t%s\t", SIZE_ASM_OP);                          \
243         assemble_name (FILE, NAME);                                     \
244         fprintf (FILE, " , %d\n", int_size_in_bytes (TREE_TYPE (DECL)));\
245       }                                                                 \
246     ASM_OUTPUT_LABEL (FILE, NAME);                                      \
247   } while (0)
248
249 /* Output the size directive for a decl in rest_of_decl_compilation
250    in the case where we did not do so before the initializer.
251    Once we find the error_mark_node, we know that the value of
252    size_directive_output was set by ASM_DECLARE_OBJECT_NAME 
253    when it was run for the same decl.  */
254 #undef ASM_FINISH_DECLARE_OBJECT
255 #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP_LEVEL, AT_END)         \
256 do {                                                                     \
257      char *name = XSTR (XEXP (DECL_RTL (DECL), 0), 0);                   \
258      if (!flag_inhibit_size_directive && DECL_SIZE (DECL)                \
259          && ! AT_END && TOP_LEVEL                                        \
260          && DECL_INITIAL (DECL) == error_mark_node                       \
261          && !size_directive_output)                                      \
262        {                                                                 \
263          size_directive_output = 1;                                      \
264          fprintf (FILE, "\t%s\t", SIZE_ASM_OP);                  \
265          assemble_name (FILE, name);                                     \
266          fprintf (FILE, " , %d\n", int_size_in_bytes (TREE_TYPE (DECL)));\
267        }                                                                 \
268    } while (0)
269 #endif
270
271 \f
272 /* Those are `generic' ways to weaken/globalize a label. We shouldn't need
273    to override a processor specific definition. Hence, #ifndef ASM_*
274    In case overriding turns out to be needed, one can always #undef ASM_* 
275    before including this file.  */
276
277 /* Tell the assembler that a symbol is weak.  */
278 /* Note: netbsd arm32 assembler needs a .globl here. An override may 
279    be needed when/if we go for arm32 support.  */
280 #ifndef ASM_WEAKEN_LABEL
281 #define ASM_WEAKEN_LABEL(FILE,NAME) \
282   do { fputs ("\t.weak\t", FILE); assemble_name (FILE, NAME); \
283        fputc ('\n', FILE); } while (0)
284 #endif
285
286 /* Tell the assembler that a symbol is global.  */
287 #ifndef ASM_GLOBALIZE_LABEL
288 #define ASM_GLOBALIZE_LABEL(FILE,NAME) \
289   do { fputs ("\t.globl\t", FILE); assemble_name (FILE, NAME); \
290        fputc ('\n', FILE); } while(0)
291 #endif
292
293 \f
294 /* Storage layout.  */
295
296 /* We don't have to worry about binary compatibility with older C++ code,
297    but there is a big known bug with vtable thunks which has not been
298    fixed yet, so DON'T activate it by default.  */
299 /* #define DEFAULT_VTABLE_THUNKS 1 */
300
301 \f
302 /* Otherwise, since we support weak, gthr.h erroneously tries to use
303    #pragma weak.  */
304 #define GTHREAD_USE_WEAK 0
305
306 /* bug work around: we don't want to support #pragma weak, but the current
307    code layout needs HANDLE_PRAGMA_WEAK asserted for __attribute((weak)) to
308    work.  On the other hand, we don't define HANDLE_PRAGMA_WEAK directly,
309    as this depends on a few other details as well...  */
310 #define HANDLE_SYSV_PRAGMA
311