]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/langhooks.c
* dyn-string.c: Add libgcc exception to copyright notice.
[thirdparty/gcc.git] / gcc / langhooks.c
CommitLineData
69dcadff 1/* Default language-specific hooks.
43577e6b 2 Copyright 2001, 2002 Free Software Foundation, Inc.
69dcadff
AO
3 Contributed by Alexandre Oliva <aoliva@redhat.com>
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22#include "config.h"
23#include "system.h"
24#include "toplev.h"
25#include "tree.h"
89d684bb 26#include "c-tree.h"
69dcadff 27#include "tree-inline.h"
1affb409
JJ
28#include "rtl.h"
29#include "insn-config.h"
30#include "integrate.h"
29ac78d5 31#include "flags.h"
59bee412 32#include "langhooks.h"
d23c55c2 33#include "langhooks-def.h"
59bee412 34
77b1a921 35/* Do nothing; in many cases the default hook. */
8ac61af7 36
77b1a921 37void
d23c55c2 38lhd_do_nothing ()
77b1a921
NB
39{
40}
41
63e1b1c4
NB
42/* Do nothing. */
43
44void
45lhd_do_nothing_t (t)
46 tree t ATTRIBUTE_UNUSED;
47{
48}
49
ac79cd5a
RK
50/* Do nothing (return the tree node passed). */
51
52tree
53lhd_return_tree (t)
54 tree t;
55{
56 return t;
57}
58
c88770e9
NB
59/* Do nothing (return NULL_TREE). */
60
61tree
62lhd_return_null_tree (t)
63 tree t ATTRIBUTE_UNUSED;
64{
65 return NULL_TREE;
66}
67
77b1a921 68/* Do nothing; the default hook to decode an option. */
8ac61af7 69
77b1a921 70int
d23c55c2 71lhd_decode_option (argc, argv)
77b1a921
NB
72 int argc ATTRIBUTE_UNUSED;
73 char **argv ATTRIBUTE_UNUSED;
74{
75 return 0;
76}
69dcadff 77
5d69f816
NB
78/* Called from by print-tree.c. */
79
80void
81lhd_print_tree_nothing (file, node, indent)
82 FILE *file ATTRIBUTE_UNUSED;
83 tree node ATTRIBUTE_UNUSED;
84 int indent ATTRIBUTE_UNUSED;
85{
ac79cd5a
RK
86}
87
88/* Called from safe_from_p. */
89
90int
91lhd_safe_from_p (x, exp)
f80230c1
RK
92 rtx x ATTRIBUTE_UNUSED;
93 tree exp ATTRIBUTE_UNUSED;
ac79cd5a
RK
94{
95 return 1;
d062a680
JM
96}
97
98/* Called from staticp. */
99
100int
101lhd_staticp (exp)
990290e8 102 tree exp ATTRIBUTE_UNUSED;
d062a680
JM
103{
104 return 0;
5d69f816
NB
105}
106
107/* Called when -dy is given on the command line. */
108
109void
110lhd_set_yydebug (value)
111 int value;
112{
113 if (value)
114 fprintf (stderr, "warning: no yacc/bison-generated output to debug!\n");
115}
116
37207ee7
ZW
117/* Provide a default routine to clear the binding stack. This is used
118 by languages that don't need to do anything special. */
119void
d23c55c2 120lhd_clear_binding_stack ()
37207ee7 121{
43577e6b 122 while (! (*lang_hooks.decls.global_bindings_p) ())
37207ee7
ZW
123 poplevel (0, 0, 0);
124}
125
126/* Provide a default routine for alias sets that always returns -1. This
127 is used by languages that don't need to do anything special. */
128
129HOST_WIDE_INT
d23c55c2 130lhd_get_alias_set (t)
37207ee7
ZW
131 tree t ATTRIBUTE_UNUSED;
132{
133 return -1;
134}
135
8ac61af7
RK
136/* Provide a hook routine for alias sets that always returns 0. This is
137 used by languages that haven't deal with alias sets yet. */
138
139HOST_WIDE_INT
140hook_get_alias_set_0 (t)
141 tree t ATTRIBUTE_UNUSED;
142{
143 return 0;
144}
145
7afff7cf
NB
146/* This is the default decl_printable_name function. */
147
148const char *
149lhd_decl_printable_name (decl, verbosity)
150 tree decl;
151 int verbosity ATTRIBUTE_UNUSED;
152{
153 return IDENTIFIER_POINTER (DECL_NAME (decl));
154}
155
69dcadff
AO
156/* lang_hooks.tree_inlining.walk_subtrees is called by walk_tree()
157 after handling common cases, but before walking code-specific
158 sub-trees. If this hook is overridden for a language, it should
159 handle language-specific tree codes, as well as language-specific
160 information associated to common tree codes. If a tree node is
161 completely handled within this function, it should set *SUBTREES to
162 0, so that generic handling isn't attempted. For language-specific
163 tree codes, generic handling would abort(), so make sure it is set
164 properly. Both SUBTREES and *SUBTREES is guaranteed to be non-zero
165 when the function is called. */
166
167tree
d23c55c2 168lhd_tree_inlining_walk_subtrees (tp,subtrees,func,data,htab)
69dcadff
AO
169 tree *tp ATTRIBUTE_UNUSED;
170 int *subtrees ATTRIBUTE_UNUSED;
171 walk_tree_fn func ATTRIBUTE_UNUSED;
172 void *data ATTRIBUTE_UNUSED;
173 void *htab ATTRIBUTE_UNUSED;
174{
175 return NULL_TREE;
176}
177
178/* lang_hooks.tree_inlining.cannot_inline_tree_fn is called to
179 determine whether there are language-specific reasons for not
180 inlining a given function. */
181
182int
d23c55c2 183lhd_tree_inlining_cannot_inline_tree_fn (fnp)
6aa77e6c 184 tree *fnp;
69dcadff 185{
2cb921f4 186 if (flag_really_no_inline
6aa77e6c
AH
187 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (*fnp)) == NULL)
188 return 1;
189
69dcadff
AO
190 return 0;
191}
192
193/* lang_hooks.tree_inlining.disregard_inline_limits is called to
194 determine whether a function should be considered for inlining even
195 if it would exceed inlining limits. */
196
197int
d23c55c2 198lhd_tree_inlining_disregard_inline_limits (fn)
6aa77e6c 199 tree fn;
69dcadff 200{
6aa77e6c
AH
201 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
202 return 1;
203
69dcadff
AO
204 return 0;
205}
206
207/* lang_hooks.tree_inlining.add_pending_fn_decls is called before
208 starting to inline a function, to push any language-specific
209 functions that should not be inlined into the current function,
210 into VAFNP. PFN is the top of varray, and should be returned if no
211 functions are pushed into VAFNP. The top of the varray should be
212 returned. */
213
214tree
d23c55c2 215lhd_tree_inlining_add_pending_fn_decls (vafnp, pfn)
69dcadff
AO
216 void *vafnp ATTRIBUTE_UNUSED;
217 tree pfn;
218{
219 return pfn;
220}
221
222/* lang_hooks.tree_inlining.tree_chain_matters_p indicates whether the
223 TREE_CHAIN of a language-specific tree node is relevant, i.e.,
224 whether it should be walked, copied and preserved across copies. */
225
226int
d23c55c2 227lhd_tree_inlining_tree_chain_matters_p (t)
69dcadff
AO
228 tree t ATTRIBUTE_UNUSED;
229{
230 return 0;
231}
232
233/* lang_hooks.tree_inlining.auto_var_in_fn_p is called to determine
234 whether VT is an automatic variable defined in function FT. */
235
236int
d23c55c2 237lhd_tree_inlining_auto_var_in_fn_p (var, fn)
69dcadff
AO
238 tree var, fn;
239{
240 return (DECL_P (var) && DECL_CONTEXT (var) == fn
241 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
242 && ! TREE_STATIC (var))
243 || TREE_CODE (var) == LABEL_DECL
244 || TREE_CODE (var) == RESULT_DECL));
245}
246
247/* lang_hooks.tree_inlining.copy_res_decl_for_inlining should return a
248 declaration for the result RES of function FN to be inlined into
249 CALLER. NDP points to an integer that should be set in case a new
250 declaration wasn't created (presumably because RES was of aggregate
251 type, such that a TARGET_EXPR is used for the result). TEXPS is a
252 pointer to a varray with the stack of TARGET_EXPRs seen while
253 inlining functions into caller; the top of TEXPS is supposed to
254 match RES. */
255
256tree
d23c55c2
NB
257lhd_tree_inlining_copy_res_decl_for_inlining (res, fn, caller,
258 dm, ndp, texps)
69dcadff
AO
259 tree res, fn, caller;
260 void *dm ATTRIBUTE_UNUSED;
261 int *ndp ATTRIBUTE_UNUSED;
262 void *texps ATTRIBUTE_UNUSED;
263{
264 return copy_decl_for_inlining (res, fn, caller);
265}
266
267/* lang_hooks.tree_inlining.anon_aggr_type_p determines whether T is a
268 type node representing an anonymous aggregate (union, struct, etc),
269 i.e., one whose members are in the same scope as the union itself. */
270
271int
d23c55c2 272lhd_tree_inlining_anon_aggr_type_p (t)
69dcadff
AO
273 tree t ATTRIBUTE_UNUSED;
274{
275 return 0;
276}
277
742a37d5
JM
278/* lang_hooks.tree_inlining.start_inlining and end_inlining perform any
279 language-specific bookkeeping necessary for processing
280 FN. start_inlining returns non-zero if inlining should proceed, zero if
281 not.
282
283 For instance, the C++ version keeps track of template instantiations to
284 avoid infinite recursion. */
285
286int
287lhd_tree_inlining_start_inlining (fn)
288 tree fn ATTRIBUTE_UNUSED;
289{
290 return 1;
291}
292
293void
294lhd_tree_inlining_end_inlining (fn)
295 tree fn ATTRIBUTE_UNUSED;
296{
297}
298
f735a153
JJ
299/* lang_hooks.tree_inlining.convert_parm_for_inlining performs any
300 language-specific conversion before assigning VALUE to PARM. */
301
302tree
303lhd_tree_inlining_convert_parm_for_inlining (parm, value, fndecl)
304 tree parm ATTRIBUTE_UNUSED;
305 tree value;
306 tree fndecl ATTRIBUTE_UNUSED;
307{
308 return value;
309}
310
89d684bb
BM
311/* lang_hooks.tree_dump.dump_tree: Dump language-specific parts of tree
312 nodes. Returns non-zero if it does not want the usual dumping of the
313 second argument. */
314
315int
316lhd_tree_dump_dump_tree (di, t)
317 void *di ATTRIBUTE_UNUSED;
318 tree t ATTRIBUTE_UNUSED;
319{
320 return 0;
321}
322
323/* lang_hooks.tree_dump.type_qual: Determine type qualifiers in a
324 language-specific way. */
325
326int
327lhd_tree_dump_type_quals (t)
328 tree t;
329{
330 return TYPE_QUALS (t);
331}
332