OSDN Git Service

* config/i386/i386.h (MS_AGGREGATE_RETURN): New define.
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / cygwin.h
1 /* Operating system specific defines to be used when targeting GCC for
2    hosting on Windows32, using a Unix style C library and tools.
3    Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
4    Free Software Foundation, Inc.
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 #define DBX_DEBUGGING_INFO 1
24 #define SDB_DEBUGGING_INFO 1
25 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
26
27 #define TARGET_VERSION fprintf (stderr, " (x86 Cygwin)"); 
28 #define TARGET_EXECUTABLE_SUFFIX ".exe"
29
30 #include <stdio.h>
31 #include "i386/i386.h"
32 #include "i386/unix.h"
33 #include "i386/bsd.h"
34 #include "i386/gas.h"
35 #include "dbxcoff.h"
36
37 /* Masks for subtarget switches used by other files.  */
38 #define MASK_NOP_FUN_DLLIMPORT 0x08000000 /* Ignore dllimport for functions */
39
40 /* Used in winnt.c.  */
41 #define TARGET_NOP_FUN_DLLIMPORT (target_flags & MASK_NOP_FUN_DLLIMPORT)
42
43 #undef  SUBTARGET_SWITCHES
44 #define SUBTARGET_SWITCHES \
45 { "cygwin",               0, N_("Use the Cygwin interface") },  \
46 { "no-cygwin",            0, N_("Use the Mingw32 interface") }, \
47 { "windows",              0, N_("Create GUI application") },    \
48 { "no-win32",             0, N_("Don't set Windows defines") }, \
49 { "win32",                0, N_("Set Windows defines") },       \
50 { "console",              0, N_("Create console application") },\
51 { "dll",                  0, N_("Generate code for a DLL") },   \
52 { "nop-fun-dllimport",    MASK_NOP_FUN_DLLIMPORT,               \
53   N_("Ignore dllimport for functions") },                       \
54 { "no-nop-fun-dllimport", -MASK_NOP_FUN_DLLIMPORT, "" },        \
55 { "threads",              0, N_("Use Mingw-specific thread support") },
56
57 #define MAYBE_UWIN_CPP_BUILTINS() /* Nothing.  */
58 #define TARGET_OS_CPP_BUILTINS()                                        \
59   do                                                                    \
60     {                                                                   \
61         builtin_define ("_X86_=1");                                     \
62         builtin_assert ("system=winnt");                                \
63         builtin_define ("__stdcall=__attribute__((__stdcall__))");      \
64         builtin_define ("__fastcall=__attribute__((__fastcall__))");    \
65         builtin_define ("__cdecl=__attribute__((__cdecl__))");          \
66         builtin_define ("__declspec(x)=__attribute__((x))");            \
67         if (!flag_iso)                                                  \
68           {                                                             \
69             builtin_define ("_stdcall=__attribute__((__stdcall__))");   \
70             builtin_define ("_fastcall=__attribute__((__fastcall__))"); \
71             builtin_define ("_cdecl=__attribute__((__cdecl__))");       \
72           }                                                             \
73         MAYBE_UWIN_CPP_BUILTINS ();                                     \
74     }                                                                   \
75   while (0)
76
77 #ifdef CROSS_COMPILE
78 #define CYGWIN_INCLUDES "%{!nostdinc:-idirafter " CYGWIN_CROSS_DIR "/include}"
79 #define W32API_INC "%{!nostdinc:-idirafter " CYGWIN_CROSS_DIR "/include/w32api}"
80 #define W32API_LIB "-L" CYGWIN_CROSS_DIR "/lib/w32api/"
81 #define CYGWIN_LIB CYGWIN_CROSS_DIR "/lib"
82 #define MINGW_LIBS "-L" CYGWIN_CROSS_DIR "/lib/mingw"
83 #define MINGW_INCLUDES "%{!nostdinc:-isystem " CYGWIN_CROSS_DIR "/include/mingw/g++-3 "\
84                        "-isystem " CYGWIN_CROSS_DIR "/include/mingw/g++ "\
85                        "-idirafter " CYGWIN_CROSS_DIR "/include/mingw}"
86 #else
87 #define CYGWIN_INCLUDES "%{!nostdinc:-isystem /usr/local/include "\
88                            "-idirafter " CYGWIN_CROSS_DIR "/include "\
89                            "-idirafter /usr/include}"
90 #define W32API_INC "%{!nostdinc:"\
91                       "-idirafter " CYGWIN_CROSS_DIR "/include/w32api "\
92                       "-idirafter /usr/include/w32api}"
93 #define W32API_LIB "-L" CYGWIN_CROSS_DIR "/lib/w32api/ -L/usr/lib/w32api/"
94 #define CYGWIN_LIB "/usr/lib"
95 #define MINGW_LIBS "-L/usr/local/lib/mingw -L/usr/lib/mingw"
96 #define MINGW_INCLUDES "%{!nostdinc:-isystem /usr/include/mingw/g++-3 "\
97                        "-isystem /usr/include/mingw/g++ "\
98                        "-isystem /usr/local/include/mingw "\
99                        "-idirafter " CYGWIN_CROSS_DIR "/include/mingw "\
100                        "-idirafter /usr/include/mingw}"
101 #endif
102
103 /* Get tree.c to declare a target-specific specialization of
104    merge_decl_attributes.  */
105 #define TARGET_DLLIMPORT_DECL_ATTRIBUTES
106
107 /* Support the __declspec keyword by turning them into attributes.
108    We currently only support: dllimport and dllexport.
109    Note that the current way we do this may result in a collision with
110    predefined attributes later on.  This can be solved by using one attribute,
111    say __declspec__, and passing args to it.  The problem with that approach
112    is that args are not accumulated: each new appearance would clobber any
113    existing args.  */
114
115 #undef CPP_SPEC
116 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} \
117   %{mno-win32:%{mno-cygwin: %emno-cygwin and mno-win32 are not compatible}} \
118   %{mno-cygwin:-D__MSVCRT__ -D__MINGW32__ %{mthreads:-D_MT} "\
119     MINGW_INCLUDES "} \
120   %{!mno-cygwin:-D__CYGWIN32__ -D__CYGWIN__ %{!ansi:-Dunix} -D__unix__ -D__unix "\
121     CYGWIN_INCLUDES "}\
122   %{mwin32|mno-cygwin:-DWIN32 -D_WIN32 -D__WIN32 -D__WIN32__ %{!ansi:-DWINNT}}\
123   %{!mno-win32:" W32API_INC "}\
124 "
125
126 #undef STARTFILE_SPEC
127 #define STARTFILE_SPEC "\
128   %{shared|mdll: %{mno-cygwin:" MINGW_LIBS " dllcrt2%O%s}}\
129   %{!shared: %{!mdll: %{!mno-cygwin:crt0%O%s} %{mno-cygwin:" MINGW_LIBS " crt2%O%s}\
130   %{pg:gcrt0%O%s}}}\
131 "
132
133 /* Normally, -lgcc is not needed since everything in it is in the DLL, but we
134    want to allow things to be added to it when installing new versions of
135    GCC without making a new CYGWIN.DLL, so we leave it.  Profiling is handled
136    by calling the init function from the prologue.  */
137
138 #undef LIBGCC_SPEC
139 #define LIBGCC_SPEC "%{mno-cygwin: %{mthreads:-lmingwthrd} -lmingw32} -lgcc %{mno-cygwin:-lmoldname -lmsvcrt}"
140
141 /* This macro defines names of additional specifications to put in the specs
142    that can be used in various specifications like CC1_SPEC.  Its definition
143    is an initializer with a subgrouping for each command option.
144
145    Each subgrouping contains a string constant, that defines the
146    specification name, and a string constant that used by the GNU CC driver
147    program.
148
149    Do not define this macro if it does not need to do anything.  */
150
151 #undef  SUBTARGET_EXTRA_SPECS
152 #define SUBTARGET_EXTRA_SPECS                                           \
153   { "mingw_include_path", DEFAULT_TARGET_MACHINE }
154
155 /* We have to dynamic link to get to the system DLLs.  All of libc, libm and
156    the Unix stuff is in cygwin.dll.  The import library is called
157    'libcygwin.a'.  For Windows applications, include more libraries, but
158    always include kernel32.  We'd like to specific subsystem windows to
159    ld, but that doesn't work just yet.  */
160
161 #undef LIB_SPEC
162 #define LIB_SPEC "\
163   %{pg:-lgmon} \
164   %{!mno-cygwin:-lcygwin} \
165   %{mno-cygwin:%{mthreads:-lmingwthrd} -lmingw32} \
166   %{mwindows:-lgdi32 -lcomdlg32} \
167   -luser32 -lkernel32 -ladvapi32 -lshell32"
168
169 #define LINK_SPEC W32API_LIB "\
170   %{mwindows:--subsystem windows} \
171   %{mconsole:--subsystem console} \
172   %{shared: %{mdll: %eshared and mdll are not compatible}} \
173   %{shared: --shared} %{mdll:--dll} \
174   %{static:-Bstatic} %{!static:-Bdynamic} \
175   %{shared|mdll: -e \
176     %{mno-cygwin:_DllMainCRTStartup@12} \
177     %{!mno-cygwin:__cygwin_dll_entry@12}}\
178   --dll-search-prefix=cyg"
179
180 #undef MATH_LIBRARY
181 #define MATH_LIBRARY ""
182
183 #define SIZE_TYPE "unsigned int"
184 #define PTRDIFF_TYPE "int"
185 #define WCHAR_TYPE_SIZE 16
186 #define WCHAR_TYPE "short unsigned int"
187
188 \f
189 /* Enable parsing of #pragma pack(push,<n>) and #pragma pack(pop).  */
190 #define HANDLE_PRAGMA_PACK_PUSH_POP 1
191
192 union tree_node;
193 #define TREE union tree_node *
194 \f
195 #undef EXTRA_SECTIONS
196 #define EXTRA_SECTIONS in_drectve
197
198 #undef EXTRA_SECTION_FUNCTIONS
199 #define EXTRA_SECTION_FUNCTIONS                                 \
200   DRECTVE_SECTION_FUNCTION                                      \
201   SWITCH_TO_SECTION_FUNCTION
202
203 #define DRECTVE_SECTION_FUNCTION \
204 void                                                                    \
205 drectve_section ()                                                      \
206 {                                                                       \
207   if (in_section != in_drectve)                                         \
208     {                                                                   \
209       fprintf (asm_out_file, "%s\n", "\t.section .drectve\n");          \
210       in_section = in_drectve;                                          \
211     }                                                                   \
212 }
213 void drectve_section PARAMS ((void));
214
215 /* Switch to SECTION (an `enum in_section').
216
217    ??? This facility should be provided by GCC proper.
218    The problem is that we want to temporarily switch sections in
219    ASM_DECLARE_OBJECT_NAME and then switch back to the original section
220    afterwards.  */
221 #define SWITCH_TO_SECTION_FUNCTION                              \
222 void switch_to_section PARAMS ((enum in_section, tree));        \
223 void                                                            \
224 switch_to_section (section, decl)                               \
225      enum in_section section;                                   \
226      tree decl;                                                 \
227 {                                                               \
228   switch (section)                                              \
229     {                                                           \
230       case in_text: text_section (); break;                     \
231       case in_data: data_section (); break;                     \
232       case in_named: named_section (decl, NULL, 0); break;      \
233       case in_drectve: drectve_section (); break;               \
234       default: abort (); break;                                 \
235     }                                                           \
236 }
237
238 /* Don't allow flag_pic to propagate since gas may produce invalid code
239    otherwise.  */
240
241 #undef  SUBTARGET_OVERRIDE_OPTIONS
242 #define SUBTARGET_OVERRIDE_OPTIONS                                      \
243 do {                                                                    \
244   if (flag_pic)                                                         \
245     {                                                                   \
246       warning ("-f%s ignored for target (all code is position independent)",\
247                (flag_pic > 1) ? "PIC" : "pic");                         \
248       flag_pic = 0;                                                     \
249     }                                                                   \
250 } while (0)                                                             \
251
252 /* Define this macro if references to a symbol must be treated
253    differently depending on something about the variable or
254    function named by the symbol (such as what section it is in).
255
256    On i386 running Windows NT, modify the assembler name with a suffix 
257    consisting of an atsign (@) followed by string of digits that represents
258    the number of bytes of arguments passed to the function, if it has the 
259    attribute STDCALL.
260
261    In addition, we must mark dll symbols specially. Definitions of 
262    dllexport'd objects install some info in the .drectve section.  
263    References to dllimport'd objects are fetched indirectly via
264    _imp__.  If both are declared, dllexport overrides.  This is also 
265    needed to implement one-only vtables: they go into their own
266    section and we need to set DECL_SECTION_NAME so we do that here.
267    Note that we can be called twice on the same decl.  */
268
269 #undef TARGET_ENCODE_SECTION_INFO
270 #define TARGET_ENCODE_SECTION_INFO  i386_pe_encode_section_info
271 #undef  TARGET_STRIP_NAME_ENCODING
272 #define TARGET_STRIP_NAME_ENCODING  i386_pe_strip_name_encoding_full
273 \f
274 /* Output a reference to a label.  */
275 #undef ASM_OUTPUT_LABELREF
276 #define ASM_OUTPUT_LABELREF  i386_pe_output_labelref
277
278 /* Output a common block.  */
279 #undef ASM_OUTPUT_COMMON
280 #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED)  \
281 do {                                                    \
282   if (i386_pe_dllexport_name_p (NAME))                  \
283     i386_pe_record_exported_symbol (NAME, 1);           \
284   if (! i386_pe_dllimport_name_p (NAME))                \
285     {                                                   \
286       fprintf ((STREAM), "\t.comm\t");                  \
287       assemble_name ((STREAM), (NAME));                 \
288       fprintf ((STREAM), ", %d\t%s %d\n",               \
289                (ROUNDED), ASM_COMMENT_START, (SIZE));   \
290     }                                                   \
291 } while (0)
292
293 /* Output the label for an initialized variable.  */
294 #undef ASM_DECLARE_OBJECT_NAME
295 #define ASM_DECLARE_OBJECT_NAME(STREAM, NAME, DECL)     \
296 do {                                                    \
297   if (i386_pe_dllexport_name_p (NAME))                  \
298     i386_pe_record_exported_symbol (NAME, 1);           \
299   ASM_OUTPUT_LABEL ((STREAM), (NAME));                  \
300 } while (0)
301
302 \f
303 /* Emit code to check the stack when allocating more that 4000
304    bytes in one go.  */
305
306 #define CHECK_STACK_LIMIT 4000
307
308 /* By default, target has a 80387, uses IEEE compatible arithmetic,
309    and returns float values in the 387 and needs stack probes */
310 #undef TARGET_SUBTARGET_DEFAULT
311
312 #define TARGET_SUBTARGET_DEFAULT \
313    (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS | MASK_STACK_PROBE) 
314
315 /* This is how to output an assembler line
316    that says to advance the location counter
317    to a multiple of 2**LOG bytes.  */
318
319 #undef ASM_OUTPUT_ALIGN
320 #define ASM_OUTPUT_ALIGN(FILE,LOG)      \
321     if ((LOG)!=0) fprintf ((FILE), "\t.align %d\n", 1<<(LOG))
322
323 /* Define this macro if in some cases global symbols from one translation
324    unit may not be bound to undefined symbols in another translation unit
325    without user intervention.  For instance, under Microsoft Windows
326    symbols must be explicitly imported from shared libraries (DLLs).  */
327 #define MULTIPLE_SYMBOL_SPACES
328
329 extern void i386_pe_unique_section PARAMS ((TREE, int));
330 #define TARGET_ASM_UNIQUE_SECTION i386_pe_unique_section
331
332 #define SUPPORTS_ONE_ONLY 1
333
334 /* Switch into a generic section.  */
335 #define TARGET_ASM_NAMED_SECTION  i386_pe_asm_named_section
336
337 /* Select attributes for named sections.  */
338 #define TARGET_SECTION_TYPE_FLAGS  i386_pe_section_type_flags
339
340 /* Write the extra assembler code needed to declare a function
341    properly.  If we are generating SDB debugging information, this
342    will happen automatically, so we only need to handle other cases.  */
343 #undef ASM_DECLARE_FUNCTION_NAME
344 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)                     \
345   do                                                                    \
346     {                                                                   \
347       if (i386_pe_dllexport_name_p (NAME))                              \
348         i386_pe_record_exported_symbol (NAME, 0);                       \
349       if (write_symbols != SDB_DEBUG)                                   \
350         i386_pe_declare_function_type (FILE, NAME, TREE_PUBLIC (DECL)); \
351       ASM_OUTPUT_LABEL (FILE, NAME);                                    \
352     }                                                                   \
353   while (0)
354
355 /* Add an external function to the list of functions to be declared at
356    the end of the file.  */
357 #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME)                           \
358   do                                                                    \
359     {                                                                   \
360       if (TREE_CODE (DECL) == FUNCTION_DECL)                            \
361         i386_pe_record_external_function (NAME);                        \
362     }                                                                   \
363   while (0)
364
365 /* Declare the type properly for any external libcall.  */
366 #define ASM_OUTPUT_EXTERNAL_LIBCALL(FILE, FUN) \
367   i386_pe_declare_function_type (FILE, XSTR (FUN, 0), 1)
368
369 /* This says out to put a global symbol in the BSS section.  */
370 #undef ASM_OUTPUT_ALIGNED_BSS
371 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
372   asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
373
374 /* Output function declarations at the end of the file.  */
375 #undef ASM_FILE_END
376 #define ASM_FILE_END(FILE) \
377   i386_pe_asm_file_end (FILE)
378
379 #undef ASM_COMMENT_START
380 #define ASM_COMMENT_START " #"
381
382 /* DWARF2 Unwinding doesn't work with exception handling yet.  To make
383    it work, we need to build a libgcc_s.dll, and dcrt0.o should be
384    changed to call __register_frame_info/__deregister_frame_info.  */
385 #define DWARF2_UNWIND_INFO 0
386
387 /* Don't assume anything about the header files.  */
388 #define NO_IMPLICIT_EXTERN_C
389
390 #undef PROFILE_HOOK
391 #define PROFILE_HOOK(LABEL)                                             \
392   if (MAIN_NAME_P (DECL_NAME (current_function_decl)))                  \
393     {                                                                   \
394       emit_call_insn (gen_rtx (CALL, VOIDmode,                          \
395         gen_rtx_MEM (FUNCTION_MODE,                                     \
396                      gen_rtx_SYMBOL_REF (Pmode, "_monstartup")),        \
397         const0_rtx));                                                   \
398     }
399
400 /* External function declarations.  */
401
402 extern void i386_pe_record_external_function PARAMS ((const char *));
403 extern void i386_pe_declare_function_type PARAMS ((FILE *, const char *, int));
404 extern void i386_pe_record_exported_symbol PARAMS ((const char *, int));
405 extern void i386_pe_asm_file_end PARAMS ((FILE *));
406 extern int i386_pe_dllexport_name_p PARAMS ((const char *));
407 extern int i386_pe_dllimport_name_p PARAMS ((const char *));
408
409 /* For Win32 ABI compatibility */
410 #undef DEFAULT_PCC_STRUCT_RETURN
411 #define DEFAULT_PCC_STRUCT_RETURN 0
412
413 /* MSVC returns aggregate types of up to 8 bytes via registers.
414    See i386.c:ix86_return_in_memory.  */
415 #undef MS_AGGREGATE_RETURN
416 #define MS_AGGREGATE_RETURN 1
417
418 /* No data type wants to be aligned rounder than this.  */
419 #undef  BIGGEST_ALIGNMENT
420 #define BIGGEST_ALIGNMENT 128
421
422 /* Native complier aligns internal doubles in structures on dword boundaries.  */
423 #undef  BIGGEST_FIELD_ALIGNMENT
424 #define BIGGEST_FIELD_ALIGNMENT 64
425
426 /* A bit-field declared as `int' forces `int' alignment for the struct.  */
427 #undef PCC_BITFIELD_TYPE_MATTERS
428 #define PCC_BITFIELD_TYPE_MATTERS 1
429 #define GROUP_BITFIELDS_BY_ALIGN TYPE_NATIVE(rec)
430
431
432 /* Enable alias attribute support.  */
433 #ifndef SET_ASM_OP
434 #define SET_ASM_OP "\t.set\t"
435 #endif
436
437 /* Override GCC's relative pathname lookup (ie., relocatability) unless
438    otherwise told by other subtargets.  */
439 #ifndef WIN32_NO_ABSOLUTE_INST_DIRS
440 #undef MD_STARTFILE_PREFIX
441 #define MD_STARTFILE_PREFIX     "/usr/lib/"
442
443 #undef STANDARD_STARTFILE_PREFIX
444 #define STANDARD_STARTFILE_PREFIX     "/usr/lib/mingw/"
445
446 #ifndef CROSS_COMPILE
447 #undef LOCAL_INCLUDE_DIR
448 #undef TOOL_INCLUDE_DIR
449 #undef SYSTEM_INCLUDE_DIR
450 #undef STANDARD_INCLUDE_DIR
451 #define STANDARD_INCLUDE_DIR 0
452 #endif /* not CROSS_COMPILE */
453 #endif /* not WIN32_NO_ABSOLUTE_INST_DIRS */
454
455 #undef TREE
456
457 #ifndef BUFSIZ
458 # undef FILE
459 #endif