c-common.c (lang_gimplify_stmt): Remove next_p argument.
[gcc.git] / gcc / c-lang.c
1 /* Language-specific hook definitions for C front end.
2 Copyright (C) 1991, 1995, 1997, 1998,
3 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
21
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "tree.h"
28 #include "c-tree.h"
29 #include "c-common.h"
30 #include "ggc.h"
31 #include "langhooks.h"
32 #include "langhooks-def.h"
33 #include "tree-inline.h"
34 #include "diagnostic.h"
35 #include "c-pretty-print.h"
36
37 static void c_initialize_diagnostics (diagnostic_context *);
38
39 enum c_language_kind c_language = clk_c;
40
41 /* ### When changing hooks, consider if ObjC needs changing too!! ### */
42
43 #undef LANG_HOOKS_NAME
44 #define LANG_HOOKS_NAME "GNU C"
45 #undef LANG_HOOKS_IDENTIFIER_SIZE
46 #define LANG_HOOKS_IDENTIFIER_SIZE C_SIZEOF_STRUCT_LANG_IDENTIFIER
47 #undef LANG_HOOKS_INIT
48 #define LANG_HOOKS_INIT c_objc_common_init
49 #undef LANG_HOOKS_FINISH
50 #define LANG_HOOKS_FINISH c_common_finish
51 #undef LANG_HOOKS_INIT_OPTIONS
52 #define LANG_HOOKS_INIT_OPTIONS c_common_init_options
53 #undef LANG_HOOKS_INITIALIZE_DIAGNOSTICS
54 #define LANG_HOOKS_INITIALIZE_DIAGNOSTICS c_initialize_diagnostics
55 #undef LANG_HOOKS_HANDLE_OPTION
56 #define LANG_HOOKS_HANDLE_OPTION c_common_handle_option
57 #undef LANG_HOOKS_MISSING_ARGUMENT
58 #define LANG_HOOKS_MISSING_ARGUMENT c_common_missing_argument
59 #undef LANG_HOOKS_POST_OPTIONS
60 #define LANG_HOOKS_POST_OPTIONS c_common_post_options
61 #undef LANG_HOOKS_GET_ALIAS_SET
62 #define LANG_HOOKS_GET_ALIAS_SET c_common_get_alias_set
63 #undef LANG_HOOKS_SAFE_FROM_P
64 #define LANG_HOOKS_SAFE_FROM_P c_safe_from_p
65 #undef LANG_HOOKS_EXPAND_EXPR
66 #define LANG_HOOKS_EXPAND_EXPR c_expand_expr
67 #undef LANG_HOOKS_EXPAND_DECL
68 #define LANG_HOOKS_EXPAND_DECL c_expand_decl
69 #undef LANG_HOOKS_MARK_ADDRESSABLE
70 #define LANG_HOOKS_MARK_ADDRESSABLE c_mark_addressable
71 #undef LANG_HOOKS_PARSE_FILE
72 #define LANG_HOOKS_PARSE_FILE c_common_parse_file
73 #undef LANG_HOOKS_CLEAR_BINDING_STACK
74 #define LANG_HOOKS_CLEAR_BINDING_STACK lhd_do_nothing
75 #undef LANG_HOOKS_TRUTHVALUE_CONVERSION
76 #define LANG_HOOKS_TRUTHVALUE_CONVERSION c_objc_common_truthvalue_conversion
77 #undef LANG_HOOKS_FINISH_INCOMPLETE_DECL
78 #define LANG_HOOKS_FINISH_INCOMPLETE_DECL c_finish_incomplete_decl
79 #undef LANG_HOOKS_UNSAFE_FOR_REEVAL
80 #define LANG_HOOKS_UNSAFE_FOR_REEVAL c_common_unsafe_for_reeval
81 #undef LANG_HOOKS_STATICP
82 #define LANG_HOOKS_STATICP c_staticp
83 #undef LANG_HOOKS_SET_DECL_ASSEMBLER_NAME
84 #define LANG_HOOKS_SET_DECL_ASSEMBLER_NAME c_static_assembler_name
85 #undef LANG_HOOKS_NO_BODY_BLOCKS
86 #define LANG_HOOKS_NO_BODY_BLOCKS true
87 #undef LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL
88 #define LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL c_warn_unused_global_decl
89 #undef LANG_HOOKS_PRINT_IDENTIFIER
90 #define LANG_HOOKS_PRINT_IDENTIFIER c_print_identifier
91 #undef LANG_HOOKS_FUNCTION_ENTER_NESTED
92 #define LANG_HOOKS_FUNCTION_ENTER_NESTED c_push_function_context
93 #undef LANG_HOOKS_FUNCTION_LEAVE_NESTED
94 #define LANG_HOOKS_FUNCTION_LEAVE_NESTED c_pop_function_context
95 #undef LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P
96 #define LANG_HOOKS_FUNCTION_MISSING_NORETURN_OK_P c_missing_noreturn_ok_p
97 #undef LANG_HOOKS_DUP_LANG_SPECIFIC_DECL
98 #define LANG_HOOKS_DUP_LANG_SPECIFIC_DECL c_dup_lang_specific_decl
99
100 /* Attribute hooks. */
101 #undef LANG_HOOKS_COMMON_ATTRIBUTE_TABLE
102 #define LANG_HOOKS_COMMON_ATTRIBUTE_TABLE c_common_attribute_table
103 #undef LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE
104 #define LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE c_common_format_attribute_table
105
106 #undef LANG_HOOKS_TREE_INLINING_WALK_SUBTREES
107 #define LANG_HOOKS_TREE_INLINING_WALK_SUBTREES \
108 c_walk_subtrees
109 #undef LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN
110 #define LANG_HOOKS_TREE_INLINING_CANNOT_INLINE_TREE_FN \
111 c_cannot_inline_tree_fn
112 #undef LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS
113 #define LANG_HOOKS_TREE_INLINING_DISREGARD_INLINE_LIMITS \
114 c_disregard_inline_limits
115 #undef LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P
116 #define LANG_HOOKS_TREE_INLINING_ANON_AGGR_TYPE_P \
117 anon_aggr_type_p
118 #undef LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING
119 #define LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING \
120 c_convert_parm_for_inlining
121 #undef LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN
122 #define LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN c_dump_tree
123
124 #undef LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION
125 #define LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION c_expand_body
126
127 #undef LANG_HOOKS_TYPE_FOR_MODE
128 #define LANG_HOOKS_TYPE_FOR_MODE c_common_type_for_mode
129 #undef LANG_HOOKS_TYPE_FOR_SIZE
130 #define LANG_HOOKS_TYPE_FOR_SIZE c_common_type_for_size
131 #undef LANG_HOOKS_SIGNED_TYPE
132 #define LANG_HOOKS_SIGNED_TYPE c_common_signed_type
133 #undef LANG_HOOKS_UNSIGNED_TYPE
134 #define LANG_HOOKS_UNSIGNED_TYPE c_common_unsigned_type
135 #undef LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE
136 #define LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE c_common_signed_or_unsigned_type
137 #undef LANG_HOOKS_INCOMPLETE_TYPE_ERROR
138 #define LANG_HOOKS_INCOMPLETE_TYPE_ERROR c_incomplete_type_error
139 #undef LANG_HOOKS_TYPE_PROMOTES_TO
140 #define LANG_HOOKS_TYPE_PROMOTES_TO c_type_promotes_to
141 #undef LANG_HOOKS_REGISTER_BUILTIN_TYPE
142 #define LANG_HOOKS_REGISTER_BUILTIN_TYPE c_register_builtin_type
143
144 /* The C front end's scoping structure is very different from
145 that expected by the language-independent code; it is best
146 to disable all of pushlevel, poplevel, set_block, and getdecls.
147 This means it must also provide its own write_globals. */
148
149 #undef LANG_HOOKS_PUSHLEVEL
150 #define LANG_HOOKS_PUSHLEVEL lhd_do_nothing_i
151 #undef LANG_HOOKS_POPLEVEL
152 #define LANG_HOOKS_POPLEVEL lhd_do_nothing_iii_return_null_tree
153 #undef LANG_HOOKS_SET_BLOCK
154 #define LANG_HOOKS_SET_BLOCK lhd_do_nothing_t
155 #undef LANG_HOOKS_GETDECLS
156 #define LANG_HOOKS_GETDECLS lhd_return_null_tree_v
157 #undef LANG_HOOKS_WRITE_GLOBALS
158 #define LANG_HOOKS_WRITE_GLOBALS c_write_global_declarations
159
160 /* Hooks for tree gimplification. */
161 #undef LANG_HOOKS_GIMPLIFY_EXPR
162 #define LANG_HOOKS_GIMPLIFY_EXPR c_gimplify_expr
163
164 #undef LANG_HOOKS_TYPES_COMPATIBLE_P
165 #define LANG_HOOKS_TYPES_COMPATIBLE_P c_types_compatible_p
166
167 /* ### When changing hooks, consider if ObjC needs changing too!! ### */
168
169 /* Each front end provides its own. */
170 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
171
172 /* Tree code classes. */
173
174 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE,
175
176 const char tree_code_type[] = {
177 #include "tree.def"
178 'x',
179 #include "c-common.def"
180 };
181 #undef DEFTREECODE
182
183 /* Table indexed by tree code giving number of expression
184 operands beyond the fixed part of the node structure.
185 Not used for types or decls. */
186
187 #define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH,
188
189 const unsigned char tree_code_length[] = {
190 #include "tree.def"
191 0,
192 #include "c-common.def"
193 };
194 #undef DEFTREECODE
195
196 /* Names of tree components.
197 Used for printing out the tree and error messages. */
198 #define DEFTREECODE(SYM, NAME, TYPE, LEN) NAME,
199
200 const char *const tree_code_name[] = {
201 #include "tree.def"
202 "@@dummy",
203 #include "c-common.def"
204 };
205 #undef DEFTREECODE
206
207 void
208 finish_file (void)
209 {
210 c_objc_common_finish_file ();
211 }
212
213 int
214 c_types_compatible_p (tree x, tree y)
215 {
216 return comptypes (TYPE_MAIN_VARIANT (x), TYPE_MAIN_VARIANT (y));
217 }
218 static void
219 c_initialize_diagnostics (diagnostic_context *context)
220 {
221 pretty_printer *base = context->printer;
222 c_pretty_printer *pp = xmalloc (sizeof (c_pretty_printer));
223 memcpy (pp_base (pp), base, sizeof (pretty_printer));
224 pp_c_pretty_printer_init (pp);
225 context->printer = (pretty_printer *) pp;
226
227 /* It is safe to free this object because it was previously malloc()'d. */
228 free (base);
229 }
230
231 #include "gtype-c.h"