* c-common.c (check_function_format): Don't suggest adding format
[official-gcc.git] / gcc / c-lang.c
blobfb4dbee611639f6b0e0eeb949fc3a0070788d17a
1 /* Language-specific hook definitions for C front end.
2 Copyright (C) 1991, 1995, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
25 #include "tree.h"
26 #include "function.h"
27 #include "input.h"
28 #include "toplev.h"
29 #include "diagnostic.h"
30 #include "output.h"
31 #include "flags.h"
32 #include "ggc.h"
33 #include "rtl.h"
34 #include "expr.h"
35 #include "c-tree.h"
36 #include "c-lex.h"
37 #include "cpplib.h"
39 static int c_tree_printer PARAMS ((output_buffer *));
41 /* Each of the functions defined here
42 is an alternative to a function in objc-actions.c. */
44 int
45 lang_decode_option (argc, argv)
46 int argc;
47 char **argv;
49 return c_decode_option (argc, argv);
52 void
53 lang_init_options ()
55 parse_in = cpp_create_reader (CLK_GNUC89);
57 /* Mark as "unspecified". */
58 flag_bounds_check = -1;
61 void
62 lang_init ()
64 /* If still "unspecified", make it match -fbounded-pointers. */
65 if (flag_bounds_check < 0)
66 flag_bounds_check = flag_bounded_pointers;
68 /* If still unspecified, make it match pedantic && -std=c99. */
69 if (mesg_implicit_function_declaration < 0)
71 if (pedantic && flag_isoc99)
72 mesg_implicit_function_declaration = flag_pedantic_errors ? 2 : 1;
73 else
74 mesg_implicit_function_declaration = 0;
77 save_lang_status = &push_c_function_context;
78 restore_lang_status = &pop_c_function_context;
79 mark_lang_status = &mark_c_function_context;
80 lang_expand_expr = &c_expand_expr;
81 lang_safe_from_p = &c_safe_from_p;
82 lang_printer = &c_tree_printer;
83 lang_expand_decl_stmt = &c_expand_decl_stmt;
85 c_parse_init ();
88 void
89 lang_finish ()
93 const char *
94 lang_identify ()
96 return "c";
99 void
100 print_lang_statistics ()
104 /* used by print-tree.c */
106 void
107 lang_print_xnode (file, node, indent)
108 FILE *file ATTRIBUTE_UNUSED;
109 tree node ATTRIBUTE_UNUSED;
110 int indent ATTRIBUTE_UNUSED;
114 /* Used by c-lex.c, but only for objc. */
116 tree
117 lookup_interface (arg)
118 tree arg ATTRIBUTE_UNUSED;
120 return 0;
123 tree
124 is_class_name (arg)
125 tree arg ATTRIBUTE_UNUSED;
127 return 0;
130 void
131 maybe_objc_check_decl (decl)
132 tree decl ATTRIBUTE_UNUSED;
137 maybe_objc_comptypes (lhs, rhs, reflexive)
138 tree lhs ATTRIBUTE_UNUSED;
139 tree rhs ATTRIBUTE_UNUSED;
140 int reflexive ATTRIBUTE_UNUSED;
142 return -1;
145 tree
146 maybe_objc_method_name (decl)
147 tree decl ATTRIBUTE_UNUSED;
149 return 0;
152 tree
153 maybe_building_objc_message_expr ()
155 return 0;
159 recognize_objc_keyword ()
161 return 0;
164 /* Used by c-typeck.c (build_external_ref), but only for objc. */
166 tree
167 lookup_objc_ivar (id)
168 tree id ATTRIBUTE_UNUSED;
170 return 0;
173 #if !defined(ASM_OUTPUT_CONSTRUCTOR) || !defined(ASM_OUTPUT_DESTRUCTOR)
174 extern tree static_ctors;
175 extern tree static_dtors;
177 static tree start_cdtor PARAMS ((int));
178 static void finish_cdtor PARAMS ((tree));
180 static tree
181 start_cdtor (method_type)
182 int method_type;
184 tree fnname = get_file_function_name (method_type);
185 tree void_list_node_1 = build_tree_list (NULL_TREE, void_type_node);
186 tree body;
188 start_function (void_list_node_1,
189 build_parse_node (CALL_EXPR, fnname,
190 tree_cons (NULL_TREE, NULL_TREE,
191 void_list_node_1),
192 NULL_TREE),
193 NULL_TREE, NULL_TREE);
194 store_parm_decls ();
196 current_function_cannot_inline
197 = "static constructors and destructors cannot be inlined";
199 body = c_begin_compound_stmt ();
201 pushlevel (0);
202 clear_last_expr ();
203 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
205 return body;
208 static void
209 finish_cdtor (body)
210 tree body;
212 tree scope;
213 tree block;
215 scope = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
216 block = poplevel (0, 0, 0);
217 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope)) = block;
218 SCOPE_STMT_BLOCK (TREE_VALUE (scope)) = block;
220 RECHAIN_STMTS (body, COMPOUND_BODY (body));
222 finish_function (0);
224 #endif
226 /* Called at end of parsing, but before end-of-file processing. */
228 void
229 finish_file ()
231 #ifndef ASM_OUTPUT_CONSTRUCTOR
232 if (static_ctors)
234 tree body = start_cdtor ('I');
236 for (; static_ctors; static_ctors = TREE_CHAIN (static_ctors))
237 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors),
238 NULL_TREE));
240 finish_cdtor (body);
242 #endif
243 #ifndef ASM_OUTPUT_DESTRUCTOR
244 if (static_dtors)
246 tree body = start_cdtor ('D');
248 for (; static_dtors; static_dtors = TREE_CHAIN (static_dtors))
249 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors),
250 NULL_TREE));
252 finish_cdtor (body);
254 #endif
256 if (back_end_hook)
257 (*back_end_hook) (getdecls ());
259 if (flag_dump_translation_unit)
260 dump_node_to_file (getdecls (), flag_dump_translation_unit);
263 /* Called during diagnostic message formatting process to print a
264 source-level entity onto BUFFER. The meaning of the format specifiers
265 is as follows:
266 %D: a general decl,
267 %F: a function declaration,
268 %T: a type.
270 These format specifiers form a subset of the format specifiers set used
271 by the C++ front-end.
272 Please notice when called, the `%' part was already skipped by the
273 diagnostic machinery. */
274 static int
275 c_tree_printer (buffer)
276 output_buffer *buffer;
278 tree t = va_arg (output_buffer_format_args (buffer), tree);
280 switch (*output_buffer_text_cursor (buffer))
282 case 'D':
283 case 'F':
284 case 'T':
286 const char *n = DECL_NAME (t)
287 ? (*decl_printable_name) (t, 2)
288 : "({anonymous})";
289 output_add_string (buffer, n);
291 return 1;
293 default:
294 return 0;