OSDN Git Service

* i386/386bsd.h, i386/beos-pe.h, i386/bsd386.h, i386/crtdll.h,
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / linux.h
1 /* Definitions for Intel 386 running Linux-based GNU systems with ELF format.
2    Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
3    Contributed by Eric Youngdale.
4    Modified for stabs-in-ELF by H.J. Lu.
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 LINUX_DEFAULT_ELF
24
25 /* A lie, I guess, but the general idea behind linux/ELF is that we are
26    supposed to be outputting something that will assemble under SVr4.
27    This gets us pretty close.  */
28 #include <i386/i386.h>  /* Base i386 target machine definitions */
29 #include <i386/att.h>   /* Use the i386 AT&T assembler syntax */
30 #include <linux.h>      /* some common stuff */
31
32 #undef TARGET_VERSION
33 #define TARGET_VERSION fprintf (stderr, " (i386 Linux/ELF)");
34
35 /* The svr4 ABI for the i386 says that records and unions are returned
36    in memory.  */
37 #undef DEFAULT_PCC_STRUCT_RETURN
38 #define DEFAULT_PCC_STRUCT_RETURN 1
39
40 #undef ASM_COMMENT_START
41 #define ASM_COMMENT_START "#"
42
43 /* This is how to output an element of a case-vector that is relative.
44    This is only used for PIC code.  See comments by the `casesi' insn in
45    i386.md for an explanation of the expression this outputs. */
46 #undef ASM_OUTPUT_ADDR_DIFF_ELT
47 #define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
48   fprintf (FILE, "\t.long _GLOBAL_OFFSET_TABLE_+[.-%s%d]\n", LPREFIX, VALUE)
49
50 /* Indicate that jump tables go in the text section.  This is
51    necessary when compiling PIC code.  */
52 #define JUMP_TABLES_IN_TEXT_SECTION (flag_pic)
53
54 #undef DBX_REGISTER_NUMBER
55 #define DBX_REGISTER_NUMBER(n)  svr4_dbx_register_map[n]
56
57 /* Output assembler code to FILE to increment profiler label # LABELNO
58    for profiling a function entry.  */
59
60 #undef FUNCTION_PROFILER
61 #define FUNCTION_PROFILER(FILE, LABELNO)  \
62 {                                                                       \
63   if (flag_pic)                                                         \
64     {                                                                   \
65       fprintf (FILE, "\tleal %sP%d@GOTOFF(%%ebx),%%edx\n",              \
66                LPREFIX, (LABELNO));                                     \
67       fprintf (FILE, "\tcall *mcount@GOT(%%ebx)\n");                    \
68     }                                                                   \
69   else                                                                  \
70     {                                                                   \
71       fprintf (FILE, "\tmovl $%sP%d,%%edx\n", LPREFIX, (LABELNO));      \
72       fprintf (FILE, "\tcall mcount\n");                                \
73     }                                                                   \
74 }
75
76 #undef SIZE_TYPE
77 #define SIZE_TYPE "unsigned int"
78  
79 #undef PTRDIFF_TYPE
80 #define PTRDIFF_TYPE "int"
81   
82 #undef WCHAR_TYPE
83 #define WCHAR_TYPE "long int"
84    
85 #undef WCHAR_TYPE_SIZE
86 #define WCHAR_TYPE_SIZE BITS_PER_WORD
87     
88 #undef CPP_PREDEFINES
89 #define CPP_PREDEFINES "-D__ELF__ -Dunix -Dlinux -Asystem(posix)"
90
91 #undef CPP_SPEC
92 #ifdef USE_GNULIBC_1
93 #define CPP_SPEC "%(cpp_cpu) %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE}"
94 #else
95 #define CPP_SPEC "%(cpp_cpu) %{fPIC:-D__PIC__ -D__pic__} %{fpic:-D__PIC__ -D__pic__} %{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
96 #endif
97
98 #undef CC1_SPEC
99 #define CC1_SPEC "%(cc1_cpu) %{profile:-p}"
100
101 /* Provide a LINK_SPEC appropriate for Linux.  Here we provide support
102    for the special GCC options -static and -shared, which allow us to
103    link things in one of these three modes by applying the appropriate
104    combinations of options at link-time. We like to support here for
105    as many of the other GNU linker options as possible. But I don't
106    have the time to search for those flags. I am sure how to add
107    support for -soname shared_object_name. H.J.
108
109    I took out %{v:%{!V:-V}}. It is too much :-(. They can use
110    -Wl,-V.
111
112    When the -shared link option is used a final link is not being
113    done.  */
114
115 /* If ELF is the default format, we should not use /lib/elf. */
116
117 #undef  LINK_SPEC
118 #ifdef USE_GNULIBC_1
119 #ifndef LINUX_DEFAULT_ELF
120 #define LINK_SPEC "-m elf_i386 %{shared:-shared} \
121   %{!shared: \
122     %{!ibcs: \
123       %{!static: \
124         %{rdynamic:-export-dynamic} \
125         %{!dynamic-linker:-dynamic-linker /lib/elf/ld-linux.so.1} \
126         %{!rpath:-rpath /lib/elf/}} %{static:-static}}}"
127 #else
128 #define LINK_SPEC "-m elf_i386 %{shared:-shared} \
129   %{!shared: \
130     %{!ibcs: \
131       %{!static: \
132         %{rdynamic:-export-dynamic} \
133         %{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.1}} \
134         %{static:-static}}}"
135 #endif
136 #else
137 #define LINK_SPEC "-m elf_i386 %{shared:-shared} \
138   %{!shared: \
139     %{!ibcs: \
140       %{!static: \
141         %{rdynamic:-export-dynamic} \
142         %{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2}} \
143         %{static:-static}}}"
144 #endif
145
146 /* Get perform_* macros to build libgcc.a.  */
147 #include "i386/perform.h"
148
149 /* A C statement (sans semicolon) to output to the stdio stream
150    FILE the assembler definition of uninitialized global DECL named
151    NAME whose size is SIZE bytes and alignment is ALIGN bytes.
152    Try to use asm_output_aligned_bss to implement this macro.  */
153
154 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
155   asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
156
157 /* A C statement to output to the stdio stream FILE an assembler
158    command to advance the location counter to a multiple of 1<<LOG
159    bytes if it is within MAX_SKIP bytes.
160
161    This is used to align code labels according to Intel recommendations.  */
162
163 #ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
164 #define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP)                    \
165   do {                                                                  \
166     if ((LOG) != 0) {                                                   \
167       if ((MAX_SKIP) == 0) fprintf ((FILE), "\t.p2align %d\n", (LOG));  \
168       else fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP));  \
169     }                                                                   \
170   } while (0)
171 #endif