]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/config/alpha/linux.h
dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Honor DWARF_ALT_FRAME_RETURN_COLUMN.
[thirdparty/gcc.git] / gcc / config / alpha / linux.h
1 /* Definitions of target machine for GNU compiler,
2 for Alpha Linux-based GNU systems.
3 Copyright (C) 1996, 1997, 1998, 2002, 2003 Free Software Foundation, Inc.
4 Contributed by Richard Henderson.
5
6 This file is part of GCC.
7
8 GCC 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 GCC 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 GCC; 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 #undef TARGET_DEFAULT
24 #define TARGET_DEFAULT (MASK_FP | MASK_FPREGS | MASK_GAS)
25
26 #define TARGET_OS_CPP_BUILTINS() \
27 do { \
28 builtin_define ("__gnu_linux__"); \
29 builtin_define ("_LONGLONG"); \
30 builtin_define_std ("linux"); \
31 builtin_define_std ("unix"); \
32 builtin_assert ("system=linux"); \
33 /* The GNU C++ standard library requires this. */ \
34 if (c_dialect_cxx ()) \
35 builtin_define ("_GNU_SOURCE"); \
36 } while (0)
37
38 #undef LIB_SPEC
39 #define LIB_SPEC \
40 "%{pthread:-lpthread} \
41 %{shared:-lc} \
42 %{!shared: %{profile:-lc_p}%{!profile:-lc}}"
43
44 /* Show that we need a GP when profiling. */
45 #undef TARGET_PROFILING_NEEDS_GP
46 #define TARGET_PROFILING_NEEDS_GP 1
47
48 /* Don't care about faults in the prologue. */
49 #undef TARGET_CAN_FAULT_IN_PROLOGUE
50 #define TARGET_CAN_FAULT_IN_PROLOGUE 1
51
52 /* OS fixes up EV5 data fault on prefetch. */
53 #undef TARGET_FIXUP_EV5_PREFETCH
54 #define TARGET_FIXUP_EV5_PREFETCH 1
55
56 #undef WCHAR_TYPE
57 #define WCHAR_TYPE "int"
58
59 /* Define this so that all GNU/Linux targets handle the same pragmas. */
60 #define HANDLE_PRAGMA_PACK_PUSH_POP
61
62 /* Determine whether the the entire c99 runtime is present in the
63 runtime library. */
64 #define TARGET_C99_FUNCTIONS 1
65
66 #define TARGET_HAS_F_SETLKW
67
68 #define LINK_GCC_C_SEQUENCE_SPEC \
69 "%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
70
71 /* Do code reading to identify a signal frame, and set the frame
72 state data appropriately. See unwind-dw2.c for the structs. */
73
74 #ifdef IN_LIBGCC2
75 #include <signal.h>
76 #include <sys/ucontext.h>
77 #endif
78
79 #define MD_FALLBACK_FRAME_STATE_FOR(CONTEXT, FS, SUCCESS) \
80 do { \
81 unsigned int *pc_ = (CONTEXT)->ra; \
82 struct sigcontext *sc_; \
83 long new_cfa_, i_; \
84 \
85 if (pc_[0] != 0x47fe0410 /* mov $30,$16 */ \
86 || pc_[2] != 0x00000083 /* callsys */) \
87 break; \
88 if ((CONTEXT)->cfa == 0) \
89 break; \
90 if (pc_[1] == 0x201f0067) /* lda $0,NR_sigreturn */ \
91 sc_ = (CONTEXT)->cfa; \
92 else if (pc_[1] == 0x201f015f) /* lda $0,NR_rt_sigreturn */ \
93 { \
94 struct rt_sigframe { \
95 struct siginfo info; \
96 struct ucontext uc; \
97 } *rt_ = (CONTEXT)->cfa; \
98 sc_ = &rt_->uc.uc_mcontext; \
99 } \
100 else \
101 break; \
102 new_cfa_ = sc_->sc_regs[30]; \
103 (FS)->cfa_how = CFA_REG_OFFSET; \
104 (FS)->cfa_reg = 30; \
105 (FS)->cfa_offset = new_cfa_ - (long) (CONTEXT)->cfa; \
106 for (i_ = 0; i_ < 30; ++i_) \
107 { \
108 (FS)->regs.reg[i_].how = REG_SAVED_OFFSET; \
109 (FS)->regs.reg[i_].loc.offset \
110 = (long)&sc_->sc_regs[i_] - new_cfa_; \
111 } \
112 for (i_ = 0; i_ < 31; ++i_) \
113 { \
114 (FS)->regs.reg[i_+32].how = REG_SAVED_OFFSET; \
115 (FS)->regs.reg[i_+32].loc.offset \
116 = (long)&sc_->sc_fpregs[i_] - new_cfa_; \
117 } \
118 (FS)->regs.reg[64].how = REG_SAVED_OFFSET; \
119 (FS)->regs.reg[64].loc.offset = (long)&sc_->sc_pc - new_cfa_; \
120 (FS)->retaddr_column = 64; \
121 goto SUCCESS; \
122 } while (0)