This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / config / mips / linux.h
blob66f22e54bb83301ebc8915b4d894d428bfb91ed9
1 /* Definitions for MIPS running Linux-based GNU systems with ELF format.
2 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 #undef WCHAR_TYPE
23 #define WCHAR_TYPE "int"
25 #undef WCHAR_TYPE_SIZE
26 #define WCHAR_TYPE_SIZE 32
28 /* If defined, a C expression whose value is a string containing the
29 assembler operation to identify the following data as
30 uninitialized global data. If not defined, and neither
31 `ASM_OUTPUT_BSS' nor `ASM_OUTPUT_ALIGNED_BSS' are defined,
32 uninitialized global data will be output in the data section if
33 `-fno-common' is passed, otherwise `ASM_OUTPUT_COMMON' will be
34 used. */
35 #define BSS_SECTION_ASM_OP "\t.section\t.bss"
37 #define ASM_OUTPUT_ALIGNED_BSS mips_output_aligned_bss
39 #undef ASM_DECLARE_OBJECT_NAME
40 #define ASM_DECLARE_OBJECT_NAME mips_declare_object_name
42 #undef TARGET_VERSION
43 #if TARGET_ENDIAN_DEFAULT == 0
44 #define TARGET_VERSION fprintf (stderr, " (MIPSel GNU/Linux with ELF)");
45 #else
46 #define TARGET_VERSION fprintf (stderr, " (MIPS GNU/Linux with ELF)");
47 #endif
49 #undef MD_EXEC_PREFIX
50 #undef MD_STARTFILE_PREFIX
52 /* If we don't set MASK_ABICALLS, we can't default to PIC. */
53 #undef TARGET_DEFAULT
54 #define TARGET_DEFAULT (MASK_ABICALLS|MASK_GAS)
56 #define TARGET_OS_CPP_BUILTINS() \
57 do { \
58 LINUX_TARGET_OS_CPP_BUILTINS(); \
59 builtin_define ("__PIC__"); \
60 builtin_define ("__pic__"); \
61 builtin_assert ("machine=mips"); \
62 /* The GNU C++ standard library requires this. */ \
63 if (c_dialect_cxx ()) \
64 builtin_define ("_GNU_SOURCE"); \
66 if (mips_abi == ABI_N32) \
67 { \
68 builtin_define ("_ABIN32=2"); \
69 builtin_define ("_MIPS_SIM=_ABIN32"); \
70 builtin_define ("_MIPS_SZLONG=32"); \
71 builtin_define ("_MIPS_SZPTR=32"); \
72 } \
73 else if (mips_abi == ABI_64) \
74 { \
75 builtin_define ("_ABI64=3"); \
76 builtin_define ("_MIPS_SIM=_ABI64"); \
77 builtin_define ("_MIPS_SZLONG=64"); \
78 builtin_define ("_MIPS_SZPTR=64"); \
79 } \
80 else \
81 { \
82 builtin_define ("_ABIO32=1"); \
83 builtin_define ("_MIPS_SIM=_ABIO32"); \
84 builtin_define ("_MIPS_SZLONG=32"); \
85 builtin_define ("_MIPS_SZPTR=32"); \
86 } \
87 if (TARGET_FLOAT64) \
88 builtin_define ("_MIPS_FPSET=32"); \
89 else \
90 builtin_define ("_MIPS_FPSET=16"); \
92 if (TARGET_INT64) \
93 builtin_define ("_MIPS_SZINT=64"); \
94 else \
95 builtin_define ("_MIPS_SZINT=32"); \
96 } while (0)
98 #undef SUBTARGET_CPP_SPEC
99 #define SUBTARGET_CPP_SPEC "\
100 %{fno-PIC:-U__PIC__ -U__pic__} %{fno-pic:-U__PIC__ -U__pic__} \
101 %{fPIC|fPIE|fpic|fpie:-D__PIC__ -D__pic__} \
102 %{pthread:-D_REENTRANT}"
104 /* From iris5.h */
105 /* -G is incompatible with -KPIC which is the default, so only allow objects
106 in the small data section if the user explicitly asks for it. */
107 #undef MIPS_DEFAULT_GVALUE
108 #define MIPS_DEFAULT_GVALUE 0
110 /* Borrowed from sparc/linux.h */
111 #undef LINK_SPEC
112 #define LINK_SPEC \
113 "%(endian_spec) \
114 %{shared:-shared} \
115 %{!shared: \
116 %{!ibcs: \
117 %{!static: \
118 %{rdynamic:-export-dynamic} \
119 %{!dynamic-linker:-dynamic-linker /lib/ld.so.1}} \
120 %{static:-static}}}"
122 #undef SUBTARGET_ASM_SPEC
123 #define SUBTARGET_ASM_SPEC "\
124 %{mabi=64: -64} \
125 %{!fno-PIC:%{!fno-pic:-KPIC}} \
126 %{fno-PIC:-non_shared} %{fno-pic:-non_shared}"
128 /* The MIPS assembler has different syntax for .set. We set it to
129 .dummy to trap any errors. */
130 #undef SET_ASM_OP
131 #define SET_ASM_OP "\t.dummy\t"
133 #undef ASM_OUTPUT_DEF
134 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
135 do { \
136 fputc ( '\t', FILE); \
137 assemble_name (FILE, LABEL1); \
138 fputs ( " = ", FILE); \
139 assemble_name (FILE, LABEL2); \
140 fputc ( '\n', FILE); \
141 } while (0)
143 #undef ASM_DECLARE_FUNCTION_NAME
144 #define ASM_DECLARE_FUNCTION_NAME(STREAM, NAME, DECL) \
145 do { \
146 if (!flag_inhibit_size_directive) \
148 fputs ("\t.ent\t", STREAM); \
149 assemble_name (STREAM, NAME); \
150 putc ('\n', STREAM); \
152 ASM_OUTPUT_TYPE_DIRECTIVE (STREAM, NAME, "function"); \
153 assemble_name (STREAM, NAME); \
154 fputs (":\n", STREAM); \
155 } while (0)
157 #undef ASM_DECLARE_FUNCTION_SIZE
158 #define ASM_DECLARE_FUNCTION_SIZE(STREAM, NAME, DECL) \
159 do { \
160 if (!flag_inhibit_size_directive) \
162 fputs ("\t.end\t", STREAM); \
163 assemble_name (STREAM, NAME); \
164 putc ('\n', STREAM); \
166 } while (0)
168 /* Tell function_prologue in mips.c that we have already output the .ent/.end
169 pseudo-ops. */
170 #undef FUNCTION_NAME_ALREADY_DECLARED
171 #define FUNCTION_NAME_ALREADY_DECLARED 1
173 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL) \
174 (flag_pic \
175 ? ((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4\
176 : DW_EH_PE_absptr)
178 /* The glibc _mcount stub will save $v0 for us. Don't mess with saving
179 it, since ASM_OUTPUT_REG_PUSH/ASM_OUTPUT_REG_POP do not work in the
180 presence of $gp-relative calls. */
181 #undef ASM_OUTPUT_REG_PUSH
182 #undef ASM_OUTPUT_REG_POP
184 #undef LIB_SPEC
185 #define LIB_SPEC "\
186 %{shared: -lc} \
187 %{!static:-rpath-link %R/lib:%R/usr/lib} \
188 %{!shared: %{pthread:-lpthread} \
189 %{profile:-lc_p} %{!profile: -lc}}"
191 #ifndef inhibit_libc
192 /* Do code reading to identify a signal frame, and set the frame
193 state data appropriately. See unwind-dw2.c for the structs. */
194 #ifdef IN_LIBGCC2
195 #include <signal.h>
197 /* The third parameter to the signal handler points to something with
198 * this structure defined in asm/ucontext.h, but the name clashes with
199 * struct ucontext from sys/ucontext.h so this private copy is used. */
200 typedef struct _sig_ucontext {
201 unsigned long uc_flags;
202 struct _sig_ucontext *uc_link;
203 stack_t uc_stack;
204 struct sigcontext uc_mcontext;
205 sigset_t uc_sigmask;
206 } _sig_ucontext_t;
208 #endif /* IN_LIBGCC2 */
210 #define MD_FALLBACK_FRAME_STATE_FOR(CONTEXT, FS, SUCCESS) \
211 do { \
212 u_int32_t *pc_ = (u_int32_t *) (CONTEXT)->ra; \
213 struct sigcontext *sc_; \
214 _Unwind_Ptr new_cfa_; \
215 int i_; \
217 /* 24021061 li v0, 0x1061 (rt_sigreturn)*/ \
218 /* 0000000c syscall */ \
219 /* or */ \
220 /* 24021017 li v0, 0x1017 (sigreturn) */ \
221 /* 0000000c syscall */ \
222 if (*(pc_ + 1) != 0x0000000c) \
223 break; \
224 if (*(pc_ + 0) == 0x24021017) \
226 struct sigframe { \
227 u_int32_t trampoline[2]; \
228 struct sigcontext sigctx; \
229 } *rt_ = (CONTEXT)->ra; \
230 sc_ = &rt_->sigctx; \
232 else if (*(pc_ + 0) == 0x24021061) \
234 struct rt_sigframe { \
235 u_int32_t trampoline[2]; \
236 struct siginfo info; \
237 _sig_ucontext_t uc; \
238 } *rt_ = (CONTEXT)->ra; \
239 sc_ = &rt_->uc.uc_mcontext; \
241 else \
242 break; \
244 new_cfa_ = (_Unwind_Ptr)sc_; \
245 (FS)->cfa_how = CFA_REG_OFFSET; \
246 (FS)->cfa_reg = STACK_POINTER_REGNUM; \
247 (FS)->cfa_offset = new_cfa_ - (_Unwind_Ptr) (CONTEXT)->cfa; \
249 for (i_ = 0; i_ < 32; i_++) { \
250 (FS)->regs.reg[i_].how = REG_SAVED_OFFSET; \
251 (FS)->regs.reg[i_].loc.offset \
252 = (_Unwind_Ptr)&(sc_->sc_regs[i_]) - new_cfa_; \
254 (FS)->regs.reg[SIGNAL_UNWIND_RETURN_COLUMN].how = REG_SAVED_OFFSET; \
255 (FS)->regs.reg[SIGNAL_UNWIND_RETURN_COLUMN].loc.offset \
256 = (_Unwind_Ptr)&(sc_->sc_pc) - new_cfa_; \
257 (FS)->retaddr_column = SIGNAL_UNWIND_RETURN_COLUMN; \
259 goto SUCCESS; \
260 } while (0)
261 #endif