OSDN Git Service

* target.h (struct gcc_target): New member external_libcall.
[pf3gnuchains/gcc-fork.git] / gcc / targhooks.c
1 /* Default target hook functions.
2    Copyright (C) 2003 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING.  If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.  */
20
21 /* The migration of target macros to target hooks works as follows:
22
23    1. Create a target hook that uses the existing target macros to
24       implement the same functionality.
25
26    2. Convert all the MI files to use the hook instead of the macro.
27
28    3. Repeat for a majority of the remaining target macros.  This will
29       take some time.
30
31    4. Tell target maintainers to start migrating.
32
33    5. Eventually convert the backends to override the hook instead of
34       defining the macros.  This will take some time too.
35
36    6. TBD when, poison the macros.  Unmigrated targets will break at
37       this point.
38
39    Note that we expect steps 1-3 to be done by the people that
40    understand what the MI does with each macro, and step 5 to be done
41    by the target maintainers for their respective targets.
42
43    Note that steps 1 and 2 don't have to be done together, but no
44    target can override the new hook until step 2 is complete for it.
45
46    Once the macros are poisoned, we will revert to the old migration
47    rules - migrate the macro, callers, and targets all at once.  This
48    comment can thus be removed at that point.  */
49
50 #include "config.h"
51 #include "system.h"
52 #include "coretypes.h"
53 #include "tm.h"
54 #include "machmode.h"
55 #include "rtl.h"
56 #include "tree.h"
57 #include "expr.h"
58 #include "toplev.h"
59 #include "function.h"
60 #include "target.h"
61 #include "tm_p.h"
62 #include "target-def.h"
63
64 void
65 default_external_libcall (rtx fun ATTRIBUTE_UNUSED)
66 {
67 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
68   ASM_OUTPUT_EXTERNAL_LIBCALL(asm_out_file, fun);
69 #endif
70 }
71
72 bool
73 default_promote_function_args (tree fntype ATTRIBUTE_UNUSED)
74 {
75 #ifdef PROMOTE_FUNCTION_ARGS
76   return true;
77 #else
78   return false;
79 #endif
80 }
81
82 bool
83 default_promote_function_return (tree fntype ATTRIBUTE_UNUSED)
84 {
85 #ifdef PROMOTE_FUNCTION_RETURN
86   return true;
87 #else
88   return false;
89 #endif
90 }
91
92 bool
93 default_promote_prototypes (tree fntype ATTRIBUTE_UNUSED)
94 {
95   if (PROMOTE_PROTOTYPES)
96     return true;
97   else
98     return false;
99 }
100
101 rtx
102 default_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED, int incoming)
103 {
104   rtx rv = 0;
105   if (incoming)
106     {
107 #ifdef STRUCT_VALUE_INCOMING
108       rv = STRUCT_VALUE_INCOMING;
109 #else
110 #ifdef STRUCT_VALUE_INCOMING_REGNUM
111       rv = gen_rtx_REG (Pmode, STRUCT_VALUE_INCOMING_REGNUM);
112 #else
113 #ifdef STRUCT_VALUE
114       rv = STRUCT_VALUE;
115 #else
116 #ifndef STRUCT_VALUE_REGNUM
117       abort();
118 #else
119       rv = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
120 #endif
121 #endif
122 #endif
123 #endif
124     }
125   else
126     {
127 #ifdef STRUCT_VALUE
128       rv = STRUCT_VALUE;
129 #else
130 #ifndef STRUCT_VALUE_REGNUM
131       abort();
132 #else
133       rv = gen_rtx_REG (Pmode, STRUCT_VALUE_REGNUM);
134 #endif
135 #endif
136     }
137   return rv;
138 }
139
140 bool
141 default_return_in_memory (tree type,
142                           tree fntype ATTRIBUTE_UNUSED)
143 {
144 #ifndef RETURN_IN_MEMORY
145   return (TYPE_MODE (type) == BLKmode);
146 #else
147   return RETURN_IN_MEMORY (type);
148 #endif
149 }
150
151 rtx
152 default_expand_builtin_saveregs (void)
153 {
154 #ifdef EXPAND_BUILTIN_SAVEREGS
155   return EXPAND_BUILTIN_SAVEREGS ();
156 #else
157   error ("__builtin_saveregs not supported by this target");
158   return const0_rtx;
159 #endif
160 }
161
162 void
163 default_setup_incoming_varargs (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
164                                 enum machine_mode mode ATTRIBUTE_UNUSED,
165                                 tree type ATTRIBUTE_UNUSED,
166                                 int *pretend_arg_size ATTRIBUTE_UNUSED,
167                                 int second_time ATTRIBUTE_UNUSED)
168 {
169 #ifdef SETUP_INCOMING_VARARGS
170   SETUP_INCOMING_VARARGS ((*ca), mode, type, (*pretend_arg_size), second_time);
171 #endif
172 }
173
174 bool
175 default_strict_argument_naming (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
176 {
177 #ifdef STRICT_ARGUMENT_NAMING
178   return STRICT_ARGUMENT_NAMING;
179 #else
180   return 0;
181 #endif
182 }
183
184 bool
185 default_pretend_outgoing_varargs_named(CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED)
186 {
187 #ifdef PRETEND_OUTGOING_VARARGS_NAMED
188   return PRETEND_OUTGOING_VARARGS_NAMED;
189 #else
190 #ifdef SETUP_INCOMING_VARARGS
191   return 1;
192 #else
193   return (targetm.calls.setup_incoming_varargs != default_setup_incoming_varargs);
194 #endif
195 #endif
196 }