]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/langhooks.c
Makefile.in: Update.
[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
b03e38e1 42/* Do nothing (tree). */
63e1b1c4
NB
43
44void
45lhd_do_nothing_t (t)
46 tree t ATTRIBUTE_UNUSED;
47{
48}
49
b03e38e1
NB
50/* Do nothing (function). */
51
52void
53lhd_do_nothing_f (f)
54 struct function *f ATTRIBUTE_UNUSED;
55{
56}
57
ac79cd5a
RK
58/* Do nothing (return the tree node passed). */
59
60tree
61lhd_return_tree (t)
62 tree t;
63{
64 return t;
65}
66
c88770e9
NB
67/* Do nothing (return NULL_TREE). */
68
69tree
70lhd_return_null_tree (t)
71 tree t ATTRIBUTE_UNUSED;
72{
73 return NULL_TREE;
74}
75
77b1a921 76/* Do nothing; the default hook to decode an option. */
8ac61af7 77
77b1a921 78int
d23c55c2 79lhd_decode_option (argc, argv)
77b1a921
NB
80 int argc ATTRIBUTE_UNUSED;
81 char **argv ATTRIBUTE_UNUSED;
82{
83 return 0;
84}
69dcadff 85
5d69f816
NB
86/* Called from by print-tree.c. */
87
88void
89lhd_print_tree_nothing (file, node, indent)
90 FILE *file ATTRIBUTE_UNUSED;
91 tree node ATTRIBUTE_UNUSED;
92 int indent ATTRIBUTE_UNUSED;
93{
ac79cd5a
RK
94}
95
96/* Called from safe_from_p. */
97
98int
99lhd_safe_from_p (x, exp)
f80230c1
RK
100 rtx x ATTRIBUTE_UNUSED;
101 tree exp ATTRIBUTE_UNUSED;
ac79cd5a
RK
102{
103 return 1;
d062a680
JM
104}
105
48a7a235
NB
106/* Called from unsafe_for_reeval. */
107
108int
109lhd_unsafe_for_reeval (t)
110 tree t ATTRIBUTE_UNUSED;
111{
112 return -1;
113}
114
d062a680
JM
115/* Called from staticp. */
116
117int
118lhd_staticp (exp)
990290e8 119 tree exp ATTRIBUTE_UNUSED;
d062a680
JM
120{
121 return 0;
5d69f816
NB
122}
123
ef4f94ac
RH
124/* Called from check_global_declarations. */
125
126bool
127lhd_warn_unused_global_decl (decl)
128 tree decl;
129{
130 /* This is what used to exist in check_global_declarations. Probably
131 not many of these actually apply to non-C languages. */
132
133 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
134 return false;
135 if (TREE_CODE (decl) == VAR_DECL && TREE_READONLY (decl))
136 return false;
137 if (DECL_IN_SYSTEM_HEADER (decl))
138 return false;
139
140 return true;
141}
142
5d69f816
NB
143/* Called when -dy is given on the command line. */
144
145void
146lhd_set_yydebug (value)
147 int value;
148{
149 if (value)
150 fprintf (stderr, "warning: no yacc/bison-generated output to debug!\n");
151}
152
599bba86
NB
153/* Set the DECL_ASSEMBLER_NAME for DECL. */
154void
155lhd_set_decl_assembler_name (decl)
156 tree decl;
157{
158 /* The language-independent code should never use the
159 DECL_ASSEMBLER_NAME for lots of DECLs. Only FUNCTION_DECLs and
160 VAR_DECLs for variables with static storage duration need a real
161 DECL_ASSEMBLER_NAME. */
162 if (TREE_CODE (decl) == FUNCTION_DECL
163 || (TREE_CODE (decl) == VAR_DECL
164 && (TREE_STATIC (decl)
165 || DECL_EXTERNAL (decl)
166 || TREE_PUBLIC (decl))))
167 /* By default, assume the name to use in assembly code is the
168 same as that used in the source language. (That's correct
169 for C, and GCC used to set DECL_ASSEMBLER_NAME to the same
170 value as DECL_NAME in build_decl, so this choice provides
171 backwards compatibility with existing front-ends. */
172 SET_DECL_ASSEMBLER_NAME (decl, DECL_NAME (decl));
173 else
174 /* Nobody should ever be asking for the DECL_ASSEMBLER_NAME of
175 these DECLs -- unless they're in language-dependent code, in
176 which case set_decl_assembler_name hook should handle things. */
177 abort ();
178}
179
37207ee7
ZW
180/* Provide a default routine to clear the binding stack. This is used
181 by languages that don't need to do anything special. */
182void
d23c55c2 183lhd_clear_binding_stack ()
37207ee7 184{
43577e6b 185 while (! (*lang_hooks.decls.global_bindings_p) ())
37207ee7
ZW
186 poplevel (0, 0, 0);
187}
188
ab393bf1
NB
189/* Type promotion for variable arguments. */
190tree
191lhd_type_promotes_to (type)
192 tree type ATTRIBUTE_UNUSED;
193{
194 abort ();
195}
196
7a228918
NB
197/* Invalid use of an incomplete type. */
198void
199lhd_incomplete_type_error (value, type)
200 tree value ATTRIBUTE_UNUSED, type;
201{
202 if (TREE_CODE (type) == ERROR_MARK)
203 return;
204
205 abort ();
206}
207
37207ee7
ZW
208/* Provide a default routine for alias sets that always returns -1. This
209 is used by languages that don't need to do anything special. */
210
211HOST_WIDE_INT
d23c55c2 212lhd_get_alias_set (t)
37207ee7
ZW
213 tree t ATTRIBUTE_UNUSED;
214{
215 return -1;
216}
217
8ac61af7
RK
218/* Provide a hook routine for alias sets that always returns 0. This is
219 used by languages that haven't deal with alias sets yet. */
220
221HOST_WIDE_INT
222hook_get_alias_set_0 (t)
223 tree t ATTRIBUTE_UNUSED;
224{
225 return 0;
226}
227
c9d892a8
NB
228/* This is the default expand_expr function. */
229
230rtx
231lhd_expand_expr (t, r, mm, em)
232 tree t ATTRIBUTE_UNUSED;
233 rtx r ATTRIBUTE_UNUSED;
234 enum machine_mode mm ATTRIBUTE_UNUSED;
235 int em ATTRIBUTE_UNUSED;
236{
237 abort ();
238}
239
7afff7cf
NB
240/* This is the default decl_printable_name function. */
241
242const char *
243lhd_decl_printable_name (decl, verbosity)
244 tree decl;
245 int verbosity ATTRIBUTE_UNUSED;
246{
247 return IDENTIFIER_POINTER (DECL_NAME (decl));
248}
249
69dcadff
AO
250/* lang_hooks.tree_inlining.walk_subtrees is called by walk_tree()
251 after handling common cases, but before walking code-specific
252 sub-trees. If this hook is overridden for a language, it should
253 handle language-specific tree codes, as well as language-specific
254 information associated to common tree codes. If a tree node is
255 completely handled within this function, it should set *SUBTREES to
256 0, so that generic handling isn't attempted. For language-specific
257 tree codes, generic handling would abort(), so make sure it is set
258 properly. Both SUBTREES and *SUBTREES is guaranteed to be non-zero
259 when the function is called. */
260
261tree
d23c55c2 262lhd_tree_inlining_walk_subtrees (tp,subtrees,func,data,htab)
69dcadff
AO
263 tree *tp ATTRIBUTE_UNUSED;
264 int *subtrees ATTRIBUTE_UNUSED;
265 walk_tree_fn func ATTRIBUTE_UNUSED;
266 void *data ATTRIBUTE_UNUSED;
267 void *htab ATTRIBUTE_UNUSED;
268{
269 return NULL_TREE;
270}
271
272/* lang_hooks.tree_inlining.cannot_inline_tree_fn is called to
273 determine whether there are language-specific reasons for not
274 inlining a given function. */
275
276int
d23c55c2 277lhd_tree_inlining_cannot_inline_tree_fn (fnp)
6aa77e6c 278 tree *fnp;
69dcadff 279{
2cb921f4 280 if (flag_really_no_inline
6aa77e6c
AH
281 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (*fnp)) == NULL)
282 return 1;
283
69dcadff
AO
284 return 0;
285}
286
287/* lang_hooks.tree_inlining.disregard_inline_limits is called to
288 determine whether a function should be considered for inlining even
289 if it would exceed inlining limits. */
290
291int
d23c55c2 292lhd_tree_inlining_disregard_inline_limits (fn)
6aa77e6c 293 tree fn;
69dcadff 294{
6aa77e6c
AH
295 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
296 return 1;
297
69dcadff
AO
298 return 0;
299}
300
301/* lang_hooks.tree_inlining.add_pending_fn_decls is called before
302 starting to inline a function, to push any language-specific
303 functions that should not be inlined into the current function,
304 into VAFNP. PFN is the top of varray, and should be returned if no
305 functions are pushed into VAFNP. The top of the varray should be
306 returned. */
307
308tree
d23c55c2 309lhd_tree_inlining_add_pending_fn_decls (vafnp, pfn)
69dcadff
AO
310 void *vafnp ATTRIBUTE_UNUSED;
311 tree pfn;
312{
313 return pfn;
314}
315
316/* lang_hooks.tree_inlining.tree_chain_matters_p indicates whether the
317 TREE_CHAIN of a language-specific tree node is relevant, i.e.,
318 whether it should be walked, copied and preserved across copies. */
319
320int
d23c55c2 321lhd_tree_inlining_tree_chain_matters_p (t)
69dcadff
AO
322 tree t ATTRIBUTE_UNUSED;
323{
324 return 0;
325}
326
327/* lang_hooks.tree_inlining.auto_var_in_fn_p is called to determine
328 whether VT is an automatic variable defined in function FT. */
329
330int
d23c55c2 331lhd_tree_inlining_auto_var_in_fn_p (var, fn)
69dcadff
AO
332 tree var, fn;
333{
334 return (DECL_P (var) && DECL_CONTEXT (var) == fn
335 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
336 && ! TREE_STATIC (var))
337 || TREE_CODE (var) == LABEL_DECL
338 || TREE_CODE (var) == RESULT_DECL));
339}
340
341/* lang_hooks.tree_inlining.copy_res_decl_for_inlining should return a
342 declaration for the result RES of function FN to be inlined into
343 CALLER. NDP points to an integer that should be set in case a new
344 declaration wasn't created (presumably because RES was of aggregate
345 type, such that a TARGET_EXPR is used for the result). TEXPS is a
346 pointer to a varray with the stack of TARGET_EXPRs seen while
347 inlining functions into caller; the top of TEXPS is supposed to
348 match RES. */
349
350tree
d23c55c2
NB
351lhd_tree_inlining_copy_res_decl_for_inlining (res, fn, caller,
352 dm, ndp, texps)
69dcadff
AO
353 tree res, fn, caller;
354 void *dm ATTRIBUTE_UNUSED;
355 int *ndp ATTRIBUTE_UNUSED;
356 void *texps ATTRIBUTE_UNUSED;
357{
358 return copy_decl_for_inlining (res, fn, caller);
359}
360
361/* lang_hooks.tree_inlining.anon_aggr_type_p determines whether T is a
362 type node representing an anonymous aggregate (union, struct, etc),
363 i.e., one whose members are in the same scope as the union itself. */
364
365int
d23c55c2 366lhd_tree_inlining_anon_aggr_type_p (t)
69dcadff
AO
367 tree t ATTRIBUTE_UNUSED;
368{
369 return 0;
370}
371
742a37d5
JM
372/* lang_hooks.tree_inlining.start_inlining and end_inlining perform any
373 language-specific bookkeeping necessary for processing
374 FN. start_inlining returns non-zero if inlining should proceed, zero if
375 not.
376
377 For instance, the C++ version keeps track of template instantiations to
378 avoid infinite recursion. */
379
380int
381lhd_tree_inlining_start_inlining (fn)
382 tree fn ATTRIBUTE_UNUSED;
383{
384 return 1;
385}
386
387void
388lhd_tree_inlining_end_inlining (fn)
389 tree fn ATTRIBUTE_UNUSED;
390{
391}
392
f735a153
JJ
393/* lang_hooks.tree_inlining.convert_parm_for_inlining performs any
394 language-specific conversion before assigning VALUE to PARM. */
395
396tree
397lhd_tree_inlining_convert_parm_for_inlining (parm, value, fndecl)
398 tree parm ATTRIBUTE_UNUSED;
399 tree value;
400 tree fndecl ATTRIBUTE_UNUSED;
401{
402 return value;
403}
404
89d684bb
BM
405/* lang_hooks.tree_dump.dump_tree: Dump language-specific parts of tree
406 nodes. Returns non-zero if it does not want the usual dumping of the
407 second argument. */
408
409int
410lhd_tree_dump_dump_tree (di, t)
411 void *di ATTRIBUTE_UNUSED;
412 tree t ATTRIBUTE_UNUSED;
413{
414 return 0;
415}
416
417/* lang_hooks.tree_dump.type_qual: Determine type qualifiers in a
418 language-specific way. */
419
420int
421lhd_tree_dump_type_quals (t)
422 tree t;
423{
424 return TYPE_QUALS (t);
425}
426