OSDN Git Service

* splay-tree.c (splay_tree_predecessor): Fix typo in comment.
[pf3gnuchains/gcc-fork.git] / gcc / c-lang.c
1 /* Language-specific hook definitions for C front end.
2    Copyright (C) 1991, 1995, 1997, 1998,
3    1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
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.
11
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.
16
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.  */
21
22
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
38 static int c_tree_printer PARAMS ((output_buffer *));
39
40 #if USE_CPPLIB
41 #include "cpplib.h"
42 extern cpp_reader  parse_in;
43 #endif
44
45 /* Each of the functions defined here
46    is an alternative to a function in objc-actions.c.  */
47    
48 int
49 lang_decode_option (argc, argv)
50      int argc;
51      char **argv;
52 {
53   return c_decode_option (argc, argv);
54 }
55
56 void
57 lang_init_options ()
58 {
59 #if USE_CPPLIB
60   cpp_init ();
61   cpp_reader_init (&parse_in);
62 #endif
63   /* Mark as "unspecified".  */
64   flag_bounds_check = -1;
65 }
66
67 void
68 lang_init ()
69 {
70   /* If still "unspecified", make it match -fbounded-pointers.  */
71   if (flag_bounds_check < 0)
72     flag_bounds_check = flag_bounded_pointers;
73
74   /* If still unspecified, make it match pedantic && -std=c99.  */
75   if (mesg_implicit_function_declaration < 0)
76     {
77       if (pedantic && flag_isoc99)
78         mesg_implicit_function_declaration = flag_pedantic_errors ? 2 : 1;
79       else
80         mesg_implicit_function_declaration = 0;
81     }
82
83   /* the beginning of the file is a new line; check for # */
84   /* With luck, we discover the real source file's name from that
85      and put it in input_filename.  */
86 #if !USE_CPPLIB
87   ungetc (check_newline (), finput);
88 #endif
89
90   save_lang_status = &push_c_function_context;
91   restore_lang_status = &pop_c_function_context;
92   mark_lang_status = &mark_c_function_context;
93   lang_expand_expr = &c_expand_expr;
94   lang_safe_from_p = &c_safe_from_p;
95   lang_printer = &c_tree_printer;
96   lang_expand_decl_stmt = &c_expand_decl_stmt;
97
98   c_parse_init ();
99 }
100
101 void
102 lang_finish ()
103 {
104 }
105
106 const char *
107 lang_identify ()
108 {
109   return "c";
110 }
111
112 void
113 print_lang_statistics ()
114 {
115 }
116
117 /* used by print-tree.c */
118
119 void
120 lang_print_xnode (file, node, indent)
121      FILE *file ATTRIBUTE_UNUSED;
122      tree node ATTRIBUTE_UNUSED;
123      int indent ATTRIBUTE_UNUSED;
124 {
125 }
126
127 /* Used by c-lex.c, but only for objc.  */
128
129 tree
130 lookup_interface (arg)
131      tree arg ATTRIBUTE_UNUSED;
132 {
133   return 0;
134 }
135
136 tree
137 is_class_name (arg)
138     tree arg ATTRIBUTE_UNUSED;
139 {
140   return 0;
141 }
142
143 void
144 maybe_objc_check_decl (decl)
145      tree decl ATTRIBUTE_UNUSED;
146 {
147 }
148
149 int
150 maybe_objc_comptypes (lhs, rhs, reflexive)
151      tree lhs ATTRIBUTE_UNUSED;
152      tree rhs ATTRIBUTE_UNUSED;
153      int reflexive ATTRIBUTE_UNUSED;
154 {
155   return -1;
156 }
157
158 tree
159 maybe_objc_method_name (decl)
160     tree decl ATTRIBUTE_UNUSED;
161 {
162   return 0;
163 }
164
165 tree
166 maybe_building_objc_message_expr ()
167 {
168   return 0;
169 }
170
171 int
172 recognize_objc_keyword ()
173 {
174   return 0;
175 }
176
177 /* Used by c-typeck.c (build_external_ref), but only for objc.  */
178
179 tree
180 lookup_objc_ivar (id)
181      tree id ATTRIBUTE_UNUSED;
182 {
183   return 0;
184 }
185
186 /* Called at end of parsing, but before end-of-file processing.  */
187
188 void
189 finish_file ()
190 {
191 #ifndef ASM_OUTPUT_CONSTRUCTOR
192   extern tree static_ctors;
193 #endif
194 #ifndef ASM_OUTPUT_DESTRUCTOR
195   extern tree static_dtors;
196 #endif
197   extern tree build_function_call                 PARAMS ((tree, tree));
198 #if !defined(ASM_OUTPUT_CONSTRUCTOR) || !defined(ASM_OUTPUT_DESTRUCTOR)
199   tree void_list_node_1 = build_tree_list (NULL_TREE, void_type_node);
200 #endif
201 #ifndef ASM_OUTPUT_CONSTRUCTOR
202   if (static_ctors)
203     {
204       tree fnname = get_file_function_name ('I');
205       start_function (void_list_node_1,
206                       build_parse_node (CALL_EXPR, fnname, 
207                                         tree_cons (NULL_TREE, NULL_TREE, 
208                                                    void_list_node_1),
209                                         NULL_TREE),
210                       NULL_TREE, NULL_TREE);
211       fnname = DECL_ASSEMBLER_NAME (current_function_decl);
212       store_parm_decls ();
213
214       for (; static_ctors; static_ctors = TREE_CHAIN (static_ctors))
215         expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors),
216                                                NULL_TREE));
217
218       finish_function (0);
219
220       assemble_constructor (IDENTIFIER_POINTER (fnname));
221     }
222 #endif
223 #ifndef ASM_OUTPUT_DESTRUCTOR
224   if (static_dtors)
225     {
226       tree fnname = get_file_function_name ('D');
227       start_function (void_list_node_1,
228                       build_parse_node (CALL_EXPR, fnname, 
229                                         tree_cons (NULL_TREE, NULL_TREE,
230                                                    void_list_node_1),
231                                         NULL_TREE),
232                       NULL_TREE, NULL_TREE);
233       fnname = DECL_ASSEMBLER_NAME (current_function_decl);
234       store_parm_decls ();
235
236       for (; static_dtors; static_dtors = TREE_CHAIN (static_dtors))
237         expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors),
238                                                NULL_TREE));
239
240       finish_function (0);
241
242       assemble_destructor (IDENTIFIER_POINTER (fnname));
243     }
244 #endif
245 }
246
247 /* Called during diagnostic message formatting process to print a
248    source-level entity onto BUFFER.  The meaning of the format specifiers
249    is as follows:
250    %D: a general decl,
251    %F: a function declaration,
252    %T: a type.
253
254    These format specifiers form a subset of the format specifiers set used
255    by the C++ front-end.
256    Please notice when called, the `%' part was already skipped by the
257    diagnostic machinery.  */
258 static int
259 c_tree_printer (buffer)
260      output_buffer *buffer;
261 {
262   tree t = va_arg (output_buffer_format_args (buffer), tree);
263
264   switch (*output_buffer_text_cursor (buffer))
265     {
266     case 'D':
267     case 'F':
268     case 'T':
269       {
270         const char *n = DECL_NAME (t)
271           ? (*decl_printable_name) (t, 2)
272           : "({anonymous})";
273         output_add_string (buffer, n);
274       }
275       return 1;
276
277     default:
278       return 0;
279     }
280 }