OSDN Git Service

Update FSF address in copyright header.
[pf3gnuchains/gcc-fork.git] / gcc / ch / lang.c
1 /* Language-specific hook definitions for CHILL front end.
2    Copyright (C) 1992, 93, 1994, 1998 Free Software Foundation, Inc.
3
4 This file is part of GNU CC.
5
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING.  If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA.  */
20
21
22 #include "config.h"
23 #include "system.h"
24 #include "tree.h"
25 #include "ch-tree.h"
26 #include "lex.h"
27 #include "input.h"
28 #include "toplev.h"
29
30 /* Type node for boolean types.  */
31
32 tree boolean_type_node;
33
34 /* True if STRING(INDEX) yields a CHARS(1) (or BOOLS(1)) rather than
35    a CHAR (or BOOL).  Also, makes CHARS(1) similar for CHAR,
36    and BOOLS(1) similar to BOOL.  This is for compatibility
37    for the 1984 version of Z.200.*/
38 int flag_old_strings = 0;
39
40 /* This is set non-zero to force user input tokens to lower case.
41    This is non-standard.  See Z.200, page 8. */
42 int ignore_case = 1;
43
44 /* True if reserved and predefined words ('special' words in the Z.200
45    terminology) are in uppercase.  Obviously, this had better not be 
46    true if we're ignoring input case. */
47 int special_UC = 0;
48
49 /* The actual name of the input file, regardless of any #line directives */
50 char* chill_real_input_filename;
51 extern FILE* finput;
52
53 extern int maximum_field_alignment;
54 \f
55 /* return 1 if the expression tree given has all
56    constant nodes as its leaves; return 0 otherwise. */
57 int
58 deep_const_expr (exp)
59      tree exp;
60 {
61   enum chill_tree_code code;
62   int length;
63   int i;
64
65   if (exp == NULL_TREE)
66     return 0;
67
68   code = TREE_CODE (exp);
69   length = tree_code_length[(int) code];
70
71   /* constant leaf?  return TRUE */
72   if (TREE_CODE_CLASS (code) == 'c')
73     return 1;
74
75   /* recursively check next level down */
76   for (i = 0; i < length; i++)
77     if (! deep_const_expr (TREE_OPERAND (exp, i)))
78       return 0;
79   return 1;      
80 }
81
82
83 tree
84 const_expr (exp)
85      tree exp;
86 {
87   if (TREE_CODE (exp) == INTEGER_CST)
88     return exp;
89   if (TREE_CODE (exp) == CONST_DECL)
90     return const_expr (DECL_INITIAL (exp));
91   if (TREE_CODE_CLASS (TREE_CODE (exp)) == 'd'
92       && DECL_INITIAL (exp) != NULL_TREE
93       && TREE_READONLY (exp))
94     return DECL_INITIAL (exp);
95   if (deep_const_expr (exp))
96     return exp;
97   if (TREE_CODE (exp) != ERROR_MARK)
98     error ("non-constant expression");
99   return error_mark_node;
100 }
101
102 /* Each of the functions defined here
103    is an alternative to a function in objc-actions.c.  */
104    
105 /* Used by c-lex.c, but only for objc.  */
106 tree
107 lookup_interface (arg)
108      tree arg ATTRIBUTE_UNUSED;
109 {
110   return 0;
111 }
112
113 int
114 maybe_objc_comptypes (lhs, rhs)
115      tree lhs ATTRIBUTE_UNUSED, rhs ATTRIBUTE_UNUSED;
116 {
117   return -1;
118 }
119
120 tree
121 maybe_building_objc_message_expr ()
122 {
123   return 0;
124 }
125
126 int
127 recognize_objc_keyword ()
128 {
129   return 0;
130 }
131
132 void
133 lang_init_options ()
134 {
135 }
136
137 /* used by print-tree.c */
138
139 void
140 lang_print_xnode (file, node, indent)
141      FILE *file ATTRIBUTE_UNUSED;
142      tree node ATTRIBUTE_UNUSED;
143      int indent ATTRIBUTE_UNUSED;
144 {
145 }
146
147 void
148 GNU_xref_begin ()
149 {
150   fatal ("GCC does not yet support XREF");
151 }
152
153 void
154 GNU_xref_end ()
155 {
156   fatal ("GCC does not yet support XREF");
157 }
158 \f
159 /*
160  * process chill-specific compiler command-line options
161  */
162 int
163 lang_decode_option (argc, argv)
164      int argc;
165      char **argv;
166 {
167   char *p = argv[0];
168   static int explicit_ignore_case = 0;
169   if (!strcmp(p, "-lang-chill"))
170     ; /* do nothing */
171   else if (!strcmp (p, "-fruntime-checking"))
172     {
173       range_checking = 1;
174       empty_checking = 1;
175     }
176   else if (!strcmp (p, "-fno-runtime-checking"))
177     {
178       range_checking = 0;
179       empty_checking = 0;
180       runtime_checking_flag = 0;
181     }
182   else if (!strcmp (p, "-flocal-loop-counter"))
183     flag_local_loop_counter = 1;
184   else if (!strcmp (p, "-fno-local-loop-counter"))
185     flag_local_loop_counter = 0;
186   else if (!strcmp (p, "-fold-strings"))
187     flag_old_strings = 1;
188   else if (!strcmp (p, "-fno-old-strings"))
189     flag_old_strings = 0;
190   else if (!strcmp (p, "-fignore-case"))
191     {
192       explicit_ignore_case = 1;
193       if (special_UC)
194         {
195           error ("Ignoring case upon input and");
196           error ("making special words uppercase wouldn't work.");
197         }
198       else
199         ignore_case = 1;
200     }
201   else if (!strcmp (p, "-fno-ignore-case"))
202     ignore_case = 0;
203   else if (!strcmp (p, "-fspecial_UC"))
204     {
205       if (explicit_ignore_case)
206         {
207           error ("Making special words uppercase and");
208           error (" ignoring case upon input wouldn't work.");
209         }
210       else
211         special_UC = 1, ignore_case = 0;
212     }
213   else if (!strcmp (p, "-fspecial_LC"))
214     special_UC = 0;
215   else if (!strcmp (p, "-fpack"))
216     maximum_field_alignment = BITS_PER_UNIT;
217   else if (!strcmp (p, "-fno-pack"))
218     maximum_field_alignment = 0;
219   else if (!strcmp (p, "-fchill-grant-only"))
220     grant_only_flag = 1;
221   else if (!strcmp (p, "-fgrant-only"))
222     grant_only_flag = 1;
223   /* user has specified a seize-file path */
224   else if (p[0] == '-' && p[1] == 'I')
225     register_seize_path (&p[2]);
226   if (!strcmp(p, "-itu"))        /* Force Z.200 semantics */
227     {
228       pedantic = 1;   /* FIXME: new flag name? */
229       flag_local_loop_counter = 1;      
230     }
231   else
232     return c_decode_option (argc, argv);
233
234   return 1;
235 }
236
237 void
238 chill_print_error_function (file)
239      char *file;
240 {
241   static tree last_error_function = NULL_TREE;
242   static struct module *last_error_module = NULL;
243
244   if (last_error_function == current_function_decl
245       && last_error_module == current_module)
246     return;
247
248   last_error_function = current_function_decl;
249   last_error_module = current_module;
250
251   if (file)
252     fprintf (stderr, "%s: ", file);
253
254   if (current_function_decl == global_function_decl
255       || current_function_decl == NULL_TREE)
256     {
257       if (current_module == NULL)
258         fprintf (stderr, "At top level:\n");
259       else
260         fprintf (stderr, "In module %s:\n",
261                  IDENTIFIER_POINTER (current_module->name));
262     }
263   else
264     {
265       char *kind = "function";
266       char *name = (*decl_printable_name) (current_function_decl, 2);
267       fprintf (stderr, "In %s `%s':\n", kind, name);
268     }
269 }
270
271 /* Print an error message for invalid use of an incomplete type.
272    VALUE is the expression that was used (or 0 if that isn't known)
273    and TYPE is the type that was invalid.  */
274
275 void
276 incomplete_type_error (value, type)
277      tree value ATTRIBUTE_UNUSED;
278      tree type ATTRIBUTE_UNUSED;
279 {
280   error ("internal error - use of undefined type");
281 }
282
283 void
284 lang_init ()
285 {
286   extern void (*print_error_function) PROTO((char*));
287
288   chill_real_input_filename = input_filename;
289
290   /* the beginning of the file is a new line; check for # */
291   /* With luck, we discover the real source file's name from that
292      and put it in input_filename.  */
293
294   ungetc (check_newline (), finput);
295
296   /* set default grant file */
297   set_default_grant_file ();
298
299   print_error_function = chill_print_error_function;
300 }