]> gcc.gnu.org Git - gcc.git/blame - gcc/langhooks.c
acinclude.m4 (LIB_AC_PROG_CXX): Copied from libstdc++-v3.
[gcc.git] / gcc / langhooks.c
CommitLineData
69dcadff
AO
1/* Default language-specific hooks.
2 Copyright 2001 Free Software Foundation, Inc.
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"
59bee412 31#include "langhooks.h"
d23c55c2 32#include "langhooks-def.h"
59bee412 33
77b1a921 34/* Do nothing; in many cases the default hook. */
8ac61af7 35
77b1a921 36void
d23c55c2 37lhd_do_nothing ()
77b1a921
NB
38{
39}
40
ac79cd5a
RK
41/* Do nothing (return the tree node passed). */
42
43tree
44lhd_return_tree (t)
45 tree t;
46{
47 return t;
48}
49
77b1a921 50/* Do nothing; the default hook to decode an option. */
8ac61af7 51
77b1a921 52int
d23c55c2 53lhd_decode_option (argc, argv)
77b1a921
NB
54 int argc ATTRIBUTE_UNUSED;
55 char **argv ATTRIBUTE_UNUSED;
56{
57 return 0;
58}
69dcadff 59
5d69f816
NB
60/* Called from by print-tree.c. */
61
62void
63lhd_print_tree_nothing (file, node, indent)
64 FILE *file ATTRIBUTE_UNUSED;
65 tree node ATTRIBUTE_UNUSED;
66 int indent ATTRIBUTE_UNUSED;
67{
ac79cd5a
RK
68}
69
70/* Called from safe_from_p. */
71
72int
73lhd_safe_from_p (x, exp)
f80230c1
RK
74 rtx x ATTRIBUTE_UNUSED;
75 tree exp ATTRIBUTE_UNUSED;
ac79cd5a
RK
76{
77 return 1;
d062a680
JM
78}
79
80/* Called from staticp. */
81
82int
83lhd_staticp (exp)
990290e8 84 tree exp ATTRIBUTE_UNUSED;
d062a680
JM
85{
86 return 0;
5d69f816
NB
87}
88
89/* Called when -dy is given on the command line. */
90
91void
92lhd_set_yydebug (value)
93 int value;
94{
95 if (value)
96 fprintf (stderr, "warning: no yacc/bison-generated output to debug!\n");
97}
98
37207ee7
ZW
99/* Provide a default routine to clear the binding stack. This is used
100 by languages that don't need to do anything special. */
101void
d23c55c2 102lhd_clear_binding_stack ()
37207ee7
ZW
103{
104 while (! global_bindings_p ())
105 poplevel (0, 0, 0);
106}
107
108/* Provide a default routine for alias sets that always returns -1. This
109 is used by languages that don't need to do anything special. */
110
111HOST_WIDE_INT
d23c55c2 112lhd_get_alias_set (t)
37207ee7
ZW
113 tree t ATTRIBUTE_UNUSED;
114{
115 return -1;
116}
117
8ac61af7
RK
118/* Provide a hook routine for alias sets that always returns 0. This is
119 used by languages that haven't deal with alias sets yet. */
120
121HOST_WIDE_INT
122hook_get_alias_set_0 (t)
123 tree t ATTRIBUTE_UNUSED;
124{
125 return 0;
126}
127
69dcadff
AO
128/* lang_hooks.tree_inlining.walk_subtrees is called by walk_tree()
129 after handling common cases, but before walking code-specific
130 sub-trees. If this hook is overridden for a language, it should
131 handle language-specific tree codes, as well as language-specific
132 information associated to common tree codes. If a tree node is
133 completely handled within this function, it should set *SUBTREES to
134 0, so that generic handling isn't attempted. For language-specific
135 tree codes, generic handling would abort(), so make sure it is set
136 properly. Both SUBTREES and *SUBTREES is guaranteed to be non-zero
137 when the function is called. */
138
139tree
d23c55c2 140lhd_tree_inlining_walk_subtrees (tp,subtrees,func,data,htab)
69dcadff
AO
141 tree *tp ATTRIBUTE_UNUSED;
142 int *subtrees ATTRIBUTE_UNUSED;
143 walk_tree_fn func ATTRIBUTE_UNUSED;
144 void *data ATTRIBUTE_UNUSED;
145 void *htab ATTRIBUTE_UNUSED;
146{
147 return NULL_TREE;
148}
149
150/* lang_hooks.tree_inlining.cannot_inline_tree_fn is called to
151 determine whether there are language-specific reasons for not
152 inlining a given function. */
153
154int
d23c55c2 155lhd_tree_inlining_cannot_inline_tree_fn (fnp)
6aa77e6c 156 tree *fnp;
69dcadff 157{
6aa77e6c
AH
158 if (optimize == 0
159 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (*fnp)) == NULL)
160 return 1;
161
69dcadff
AO
162 return 0;
163}
164
165/* lang_hooks.tree_inlining.disregard_inline_limits is called to
166 determine whether a function should be considered for inlining even
167 if it would exceed inlining limits. */
168
169int
d23c55c2 170lhd_tree_inlining_disregard_inline_limits (fn)
6aa77e6c 171 tree fn;
69dcadff 172{
6aa77e6c
AH
173 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
174 return 1;
175
69dcadff
AO
176 return 0;
177}
178
179/* lang_hooks.tree_inlining.add_pending_fn_decls is called before
180 starting to inline a function, to push any language-specific
181 functions that should not be inlined into the current function,
182 into VAFNP. PFN is the top of varray, and should be returned if no
183 functions are pushed into VAFNP. The top of the varray should be
184 returned. */
185
186tree
d23c55c2 187lhd_tree_inlining_add_pending_fn_decls (vafnp, pfn)
69dcadff
AO
188 void *vafnp ATTRIBUTE_UNUSED;
189 tree pfn;
190{
191 return pfn;
192}
193
194/* lang_hooks.tree_inlining.tree_chain_matters_p indicates whether the
195 TREE_CHAIN of a language-specific tree node is relevant, i.e.,
196 whether it should be walked, copied and preserved across copies. */
197
198int
d23c55c2 199lhd_tree_inlining_tree_chain_matters_p (t)
69dcadff
AO
200 tree t ATTRIBUTE_UNUSED;
201{
202 return 0;
203}
204
205/* lang_hooks.tree_inlining.auto_var_in_fn_p is called to determine
206 whether VT is an automatic variable defined in function FT. */
207
208int
d23c55c2 209lhd_tree_inlining_auto_var_in_fn_p (var, fn)
69dcadff
AO
210 tree var, fn;
211{
212 return (DECL_P (var) && DECL_CONTEXT (var) == fn
213 && (((TREE_CODE (var) == VAR_DECL || TREE_CODE (var) == PARM_DECL)
214 && ! TREE_STATIC (var))
215 || TREE_CODE (var) == LABEL_DECL
216 || TREE_CODE (var) == RESULT_DECL));
217}
218
219/* lang_hooks.tree_inlining.copy_res_decl_for_inlining should return a
220 declaration for the result RES of function FN to be inlined into
221 CALLER. NDP points to an integer that should be set in case a new
222 declaration wasn't created (presumably because RES was of aggregate
223 type, such that a TARGET_EXPR is used for the result). TEXPS is a
224 pointer to a varray with the stack of TARGET_EXPRs seen while
225 inlining functions into caller; the top of TEXPS is supposed to
226 match RES. */
227
228tree
d23c55c2
NB
229lhd_tree_inlining_copy_res_decl_for_inlining (res, fn, caller,
230 dm, ndp, texps)
69dcadff
AO
231 tree res, fn, caller;
232 void *dm ATTRIBUTE_UNUSED;
233 int *ndp ATTRIBUTE_UNUSED;
234 void *texps ATTRIBUTE_UNUSED;
235{
236 return copy_decl_for_inlining (res, fn, caller);
237}
238
239/* lang_hooks.tree_inlining.anon_aggr_type_p determines whether T is a
240 type node representing an anonymous aggregate (union, struct, etc),
241 i.e., one whose members are in the same scope as the union itself. */
242
243int
d23c55c2 244lhd_tree_inlining_anon_aggr_type_p (t)
69dcadff
AO
245 tree t ATTRIBUTE_UNUSED;
246{
247 return 0;
248}
249
742a37d5
JM
250/* lang_hooks.tree_inlining.start_inlining and end_inlining perform any
251 language-specific bookkeeping necessary for processing
252 FN. start_inlining returns non-zero if inlining should proceed, zero if
253 not.
254
255 For instance, the C++ version keeps track of template instantiations to
256 avoid infinite recursion. */
257
258int
259lhd_tree_inlining_start_inlining (fn)
260 tree fn ATTRIBUTE_UNUSED;
261{
262 return 1;
263}
264
265void
266lhd_tree_inlining_end_inlining (fn)
267 tree fn ATTRIBUTE_UNUSED;
268{
269}
270
89d684bb
BM
271/* lang_hooks.tree_dump.dump_tree: Dump language-specific parts of tree
272 nodes. Returns non-zero if it does not want the usual dumping of the
273 second argument. */
274
275int
276lhd_tree_dump_dump_tree (di, t)
277 void *di ATTRIBUTE_UNUSED;
278 tree t ATTRIBUTE_UNUSED;
279{
280 return 0;
281}
282
283/* lang_hooks.tree_dump.type_qual: Determine type qualifiers in a
284 language-specific way. */
285
286int
287lhd_tree_dump_type_quals (t)
288 tree t;
289{
290 return TYPE_QUALS (t);
291}
292
This page took 0.208176 seconds and 5 git commands to generate.