OSDN Git Service

* configure.in: Add *-*-freebsd* configurations.
[pf3gnuchains/gcc-fork.git] / gcc / c-lex.c
1 /* Lexical analyzer for C and Objective C.
2    Copyright (C) 1987, 1988, 1989, 1992, 1994, 1995, 1996, 1997
3    1998, 1999, 2000 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 #include "config.h"
23 #include "system.h"
24
25 #include "rtl.h"
26 #include "tree.h"
27 #include "expr.h"
28 #include "input.h"
29 #include "output.h"
30 #include "c-lex.h"
31 #include "c-tree.h"
32 #include "c-common.h"
33 #include "flags.h"
34 #include "timevar.h"
35 #include "cpplib.h"
36 #include "c-pragma.h"
37 #include "toplev.h"
38 #include "intl.h"
39 #include "tm_p.h"
40 #include "splay-tree.h"
41 #include "debug.h"
42
43 /* MULTIBYTE_CHARS support only works for native compilers.
44    ??? Ideally what we want is to model widechar support after
45    the current floating point support.  */
46 #ifdef CROSS_COMPILE
47 #undef MULTIBYTE_CHARS
48 #endif
49
50 #ifdef MULTIBYTE_CHARS
51 #include "mbchar.h"
52 #include <locale.h>
53 #endif /* MULTIBYTE_CHARS */
54 #ifndef GET_ENVIRONMENT
55 #define GET_ENVIRONMENT(ENV_VALUE,ENV_NAME) ((ENV_VALUE) = getenv (ENV_NAME))
56 #endif
57
58 /* The current line map.  */
59 static const struct line_map *map;
60
61 /* The line used to refresh the lineno global variable after each token.  */
62 static unsigned int src_lineno;
63
64 /* We may keep statistics about how long which files took to compile.  */
65 static int header_time, body_time;
66 static splay_tree file_info_tree;
67
68 /* Cause the `yydebug' variable to be defined.  */
69 #define YYDEBUG 1
70
71 /* File used for outputting assembler code.  */
72 extern FILE *asm_out_file;
73
74 #undef WCHAR_TYPE_SIZE
75 #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
76
77 /* Number of bytes in a wide character.  */
78 #define WCHAR_BYTES (WCHAR_TYPE_SIZE / BITS_PER_UNIT)
79
80 int indent_level;        /* Number of { minus number of }.  */
81 int pending_lang_change; /* If we need to switch languages - C++ only */
82 int c_header_level;      /* depth in C headers - C++ only */
83
84 /* Nonzero tells yylex to ignore \ in string constants.  */
85 static int ignore_escape_flag;
86
87 static tree lex_number          PARAMS ((const char *, unsigned int));
88 static tree lex_string          PARAMS ((const unsigned char *, unsigned int,
89                                          int));
90 static tree lex_charconst       PARAMS ((const cpp_token *));
91 static void update_header_times PARAMS ((const char *));
92 static int dump_one_header      PARAMS ((splay_tree_node, void *));
93 static void cb_line_change     PARAMS ((cpp_reader *, const cpp_token *, int));
94 static void cb_ident            PARAMS ((cpp_reader *, unsigned int,
95                                          const cpp_string *));
96 static void cb_file_change    PARAMS ((cpp_reader *, const struct line_map *));
97 static void cb_def_pragma       PARAMS ((cpp_reader *, unsigned int));
98 static void cb_define           PARAMS ((cpp_reader *, unsigned int,
99                                          cpp_hashnode *));
100 static void cb_undef            PARAMS ((cpp_reader *, unsigned int,
101                                          cpp_hashnode *));
102 \f
103 const char *
104 init_c_lex (filename)
105      const char *filename;
106 {
107   struct cpp_callbacks *cb;
108   struct c_fileinfo *toplevel;
109
110   /* Set up filename timing.  Must happen before cpp_read_main_file.  */
111   file_info_tree = splay_tree_new ((splay_tree_compare_fn)strcmp,
112                                    0,
113                                    (splay_tree_delete_value_fn)free);
114   toplevel = get_fileinfo ("<top level>");
115   if (flag_detailed_statistics)
116     {
117       header_time = 0;
118       body_time = get_run_time ();
119       toplevel->time = body_time;
120     }
121   
122 #ifdef MULTIBYTE_CHARS
123   /* Change to the native locale for multibyte conversions.  */
124   setlocale (LC_CTYPE, "");
125   GET_ENVIRONMENT (literal_codeset, "LANG");
126 #endif
127
128   cb = cpp_get_callbacks (parse_in);
129
130   cb->line_change = cb_line_change;
131   cb->ident = cb_ident;
132   cb->file_change = cb_file_change;
133   cb->def_pragma = cb_def_pragma;
134
135   /* Set the debug callbacks if we can use them.  */
136   if (debug_info_level == DINFO_LEVEL_VERBOSE
137       && (write_symbols == DWARF_DEBUG || write_symbols == DWARF2_DEBUG
138           || write_symbols == VMS_AND_DWARF2_DEBUG))
139     {
140       cb->define = cb_define;
141       cb->undef = cb_undef;
142     }
143
144   /* Start it at 0.  */
145   lineno = 0;
146
147   if (filename == NULL || !strcmp (filename, "-"))
148     filename = "";
149
150   return cpp_read_main_file (parse_in, filename, ident_hash);
151 }
152
153 /* A thin wrapper around the real parser that initializes the 
154    integrated preprocessor after debug output has been initialized.
155    Also, make sure the start_source_file debug hook gets called for
156    the primary source file.  */
157
158 void
159 c_common_parse_file ()
160 {
161   (*debug_hooks->start_source_file) (lineno, input_filename);
162   cpp_finish_options (parse_in);
163
164   yyparse ();
165 }
166
167 struct c_fileinfo *
168 get_fileinfo (name)
169      const char *name;
170 {
171   splay_tree_node n;
172   struct c_fileinfo *fi;
173
174   n = splay_tree_lookup (file_info_tree, (splay_tree_key) name);
175   if (n)
176     return (struct c_fileinfo *) n->value;
177
178   fi = (struct c_fileinfo *) xmalloc (sizeof (struct c_fileinfo));
179   fi->time = 0;
180   fi->interface_only = 0;
181   fi->interface_unknown = 1;
182   splay_tree_insert (file_info_tree, (splay_tree_key) name,
183                      (splay_tree_value) fi);
184   return fi;
185 }
186
187 static void
188 update_header_times (name)
189      const char *name;
190 {
191   /* Changing files again.  This means currently collected time
192      is charged against header time, and body time starts back at 0.  */
193   if (flag_detailed_statistics)
194     {
195       int this_time = get_run_time ();
196       struct c_fileinfo *file = get_fileinfo (name);
197       header_time += this_time - body_time;
198       file->time += this_time - body_time;
199       body_time = this_time;
200     }
201 }
202
203 static int
204 dump_one_header (n, dummy)
205      splay_tree_node n;
206      void *dummy ATTRIBUTE_UNUSED;
207 {
208   print_time ((const char *) n->key,
209               ((struct c_fileinfo *) n->value)->time);
210   return 0;
211 }
212
213 void
214 dump_time_statistics ()
215 {
216   struct c_fileinfo *file = get_fileinfo (input_filename);
217   int this_time = get_run_time ();
218   file->time += this_time - body_time;
219
220   fprintf (stderr, "\n******\n");
221   print_time ("header files (total)", header_time);
222   print_time ("main file (total)", this_time - body_time);
223   fprintf (stderr, "ratio = %g : 1\n",
224            (double)header_time / (double)(this_time - body_time));
225   fprintf (stderr, "\n******\n");
226
227   splay_tree_foreach (file_info_tree, dump_one_header, 0);
228 }
229
230 /* Not yet handled: #pragma, #define, #undef.
231    No need to deal with linemarkers under normal conditions.  */
232
233 static void
234 cb_ident (pfile, line, str)
235      cpp_reader *pfile ATTRIBUTE_UNUSED;
236      unsigned int line ATTRIBUTE_UNUSED;
237      const cpp_string *str ATTRIBUTE_UNUSED;
238 {
239 #ifdef ASM_OUTPUT_IDENT
240   if (! flag_no_ident)
241     {
242       /* Convert escapes in the string.  */
243       tree value = lex_string (str->text, str->len, 0);
244       ASM_OUTPUT_IDENT (asm_out_file, TREE_STRING_POINTER (value));
245     }
246 #endif
247 }
248
249 /* Called at the start of every non-empty line.  TOKEN is the first
250    lexed token on the line.  Used for diagnostic line numbers.  */
251 static void
252 cb_line_change (pfile, token, parsing_args)
253      cpp_reader *pfile ATTRIBUTE_UNUSED;
254      const cpp_token *token;
255      int parsing_args ATTRIBUTE_UNUSED;
256 {
257   src_lineno = SOURCE_LINE (map, token->line);
258 }
259
260 static void
261 cb_file_change (pfile, new_map)
262      cpp_reader *pfile ATTRIBUTE_UNUSED;
263      const struct line_map *new_map;
264 {
265   unsigned int to_line = SOURCE_LINE (new_map, new_map->to_line);
266
267   if (new_map->reason == LC_ENTER)
268     {
269       /* Don't stack the main buffer on the input stack;
270          we already did in compile_file.  */
271       if (map == NULL)
272         main_input_filename = new_map->to_file;
273       else
274         {
275           int included_at = SOURCE_LINE (new_map - 1, new_map->from_line - 1);
276
277           lineno = included_at;
278           push_srcloc (new_map->to_file, 1);
279           input_file_stack->indent_level = indent_level;
280           (*debug_hooks->start_source_file) (included_at, new_map->to_file);
281 #ifndef NO_IMPLICIT_EXTERN_C
282           if (c_header_level)
283             ++c_header_level;
284           else if (new_map->sysp == 2)
285             {
286               c_header_level = 1;
287               ++pending_lang_change;
288             }
289 #endif
290         }
291     }
292   else if (new_map->reason == LC_LEAVE)
293     {
294 #ifndef NO_IMPLICIT_EXTERN_C
295       if (c_header_level && --c_header_level == 0)
296         {
297           if (new_map->sysp == 2)
298             warning ("badly nested C headers from preprocessor");
299           --pending_lang_change;
300         }
301 #endif
302 #if 0
303       if (indent_level != input_file_stack->indent_level)
304         {
305           warning_with_file_and_line
306             (input_filename, lineno,
307              "this file contains more '%c's than '%c's",
308              indent_level > input_file_stack->indent_level ? '{' : '}',
309              indent_level > input_file_stack->indent_level ? '}' : '{');
310         }
311 #endif
312       pop_srcloc ();
313       
314       (*debug_hooks->end_source_file) (to_line);
315     }
316
317   update_header_times (new_map->to_file);
318   in_system_header = new_map->sysp != 0;
319   input_filename = new_map->to_file;
320   lineno = to_line;
321   map = new_map;
322
323   /* Hook for C++.  */
324   extract_interface_info ();
325 }
326
327 static void
328 cb_def_pragma (pfile, line)
329      cpp_reader *pfile;
330      unsigned int line;
331 {
332   /* Issue a warning message if we have been asked to do so.  Ignore
333      unknown pragmas in system headers unless an explicit
334      -Wunknown-pragmas has been given.  */
335   if (warn_unknown_pragmas > in_system_header)
336     {
337       const unsigned char *space, *name = 0;
338       const cpp_token *s;
339
340       s = cpp_get_token (pfile);
341       space = cpp_token_as_text (pfile, s);
342       s = cpp_get_token (pfile);
343       if (s->type == CPP_NAME)
344         name = cpp_token_as_text (pfile, s);
345
346       lineno = SOURCE_LINE (map, line);
347       if (name)
348         warning ("ignoring #pragma %s %s", space, name);
349       else
350         warning ("ignoring #pragma %s", space);
351     }
352 }
353
354 /* #define callback for DWARF and DWARF2 debug info.  */
355 static void
356 cb_define (pfile, line, node)
357      cpp_reader *pfile;
358      unsigned int line;
359      cpp_hashnode *node;
360 {
361   (*debug_hooks->define) (SOURCE_LINE (map, line),
362                           (const char *) cpp_macro_definition (pfile, node));
363 }
364
365 /* #undef callback for DWARF and DWARF2 debug info.  */
366 static void
367 cb_undef (pfile, line, node)
368      cpp_reader *pfile ATTRIBUTE_UNUSED;
369      unsigned int line;
370      cpp_hashnode *node;
371 {
372   (*debug_hooks->undef) (SOURCE_LINE (map, line),
373                          (const char *) NODE_NAME (node));
374 }
375
376 #if 0 /* not yet */
377 /* Returns nonzero if C is a universal-character-name.  Give an error if it
378    is not one which may appear in an identifier, as per [extendid].
379
380    Note that extended character support in identifiers has not yet been
381    implemented.  It is my personal opinion that this is not a desirable
382    feature.  Portable code cannot count on support for more than the basic
383    identifier character set.  */
384
385 static inline int
386 is_extended_char (c)
387      int c;
388 {
389 #ifdef TARGET_EBCDIC
390   return 0;
391 #else
392   /* ASCII.  */
393   if (c < 0x7f)
394     return 0;
395
396   /* None of the valid chars are outside the Basic Multilingual Plane (the
397      low 16 bits).  */
398   if (c > 0xffff)
399     {
400       error ("universal-character-name '\\U%08x' not valid in identifier", c);
401       return 1;
402     }
403   
404   /* Latin */
405   if ((c >= 0x00c0 && c <= 0x00d6)
406       || (c >= 0x00d8 && c <= 0x00f6)
407       || (c >= 0x00f8 && c <= 0x01f5)
408       || (c >= 0x01fa && c <= 0x0217)
409       || (c >= 0x0250 && c <= 0x02a8)
410       || (c >= 0x1e00 && c <= 0x1e9a)
411       || (c >= 0x1ea0 && c <= 0x1ef9))
412     return 1;
413
414   /* Greek */
415   if ((c == 0x0384)
416       || (c >= 0x0388 && c <= 0x038a)
417       || (c == 0x038c)
418       || (c >= 0x038e && c <= 0x03a1)
419       || (c >= 0x03a3 && c <= 0x03ce)
420       || (c >= 0x03d0 && c <= 0x03d6)
421       || (c == 0x03da)
422       || (c == 0x03dc)
423       || (c == 0x03de)
424       || (c == 0x03e0)
425       || (c >= 0x03e2 && c <= 0x03f3)
426       || (c >= 0x1f00 && c <= 0x1f15)
427       || (c >= 0x1f18 && c <= 0x1f1d)
428       || (c >= 0x1f20 && c <= 0x1f45)
429       || (c >= 0x1f48 && c <= 0x1f4d)
430       || (c >= 0x1f50 && c <= 0x1f57)
431       || (c == 0x1f59)
432       || (c == 0x1f5b)
433       || (c == 0x1f5d)
434       || (c >= 0x1f5f && c <= 0x1f7d)
435       || (c >= 0x1f80 && c <= 0x1fb4)
436       || (c >= 0x1fb6 && c <= 0x1fbc)
437       || (c >= 0x1fc2 && c <= 0x1fc4)
438       || (c >= 0x1fc6 && c <= 0x1fcc)
439       || (c >= 0x1fd0 && c <= 0x1fd3)
440       || (c >= 0x1fd6 && c <= 0x1fdb)
441       || (c >= 0x1fe0 && c <= 0x1fec)
442       || (c >= 0x1ff2 && c <= 0x1ff4)
443       || (c >= 0x1ff6 && c <= 0x1ffc))
444     return 1;
445
446   /* Cyrillic */
447   if ((c >= 0x0401 && c <= 0x040d)
448       || (c >= 0x040f && c <= 0x044f)
449       || (c >= 0x0451 && c <= 0x045c)
450       || (c >= 0x045e && c <= 0x0481)
451       || (c >= 0x0490 && c <= 0x04c4)
452       || (c >= 0x04c7 && c <= 0x04c8)
453       || (c >= 0x04cb && c <= 0x04cc)
454       || (c >= 0x04d0 && c <= 0x04eb)
455       || (c >= 0x04ee && c <= 0x04f5)
456       || (c >= 0x04f8 && c <= 0x04f9))
457     return 1;
458
459   /* Armenian */
460   if ((c >= 0x0531 && c <= 0x0556)
461       || (c >= 0x0561 && c <= 0x0587))
462     return 1;
463
464   /* Hebrew */
465   if ((c >= 0x05d0 && c <= 0x05ea)
466       || (c >= 0x05f0 && c <= 0x05f4))
467     return 1;
468
469   /* Arabic */
470   if ((c >= 0x0621 && c <= 0x063a)
471       || (c >= 0x0640 && c <= 0x0652)
472       || (c >= 0x0670 && c <= 0x06b7)
473       || (c >= 0x06ba && c <= 0x06be)
474       || (c >= 0x06c0 && c <= 0x06ce)
475       || (c >= 0x06e5 && c <= 0x06e7))
476     return 1;
477
478   /* Devanagari */
479   if ((c >= 0x0905 && c <= 0x0939)
480       || (c >= 0x0958 && c <= 0x0962))
481     return 1;
482
483   /* Bengali */
484   if ((c >= 0x0985 && c <= 0x098c)
485       || (c >= 0x098f && c <= 0x0990)
486       || (c >= 0x0993 && c <= 0x09a8)
487       || (c >= 0x09aa && c <= 0x09b0)
488       || (c == 0x09b2)
489       || (c >= 0x09b6 && c <= 0x09b9)
490       || (c >= 0x09dc && c <= 0x09dd)
491       || (c >= 0x09df && c <= 0x09e1)
492       || (c >= 0x09f0 && c <= 0x09f1))
493     return 1;
494
495   /* Gurmukhi */
496   if ((c >= 0x0a05 && c <= 0x0a0a)
497       || (c >= 0x0a0f && c <= 0x0a10)
498       || (c >= 0x0a13 && c <= 0x0a28)
499       || (c >= 0x0a2a && c <= 0x0a30)
500       || (c >= 0x0a32 && c <= 0x0a33)
501       || (c >= 0x0a35 && c <= 0x0a36)
502       || (c >= 0x0a38 && c <= 0x0a39)
503       || (c >= 0x0a59 && c <= 0x0a5c)
504       || (c == 0x0a5e))
505     return 1;
506
507   /* Gujarati */
508   if ((c >= 0x0a85 && c <= 0x0a8b)
509       || (c == 0x0a8d)
510       || (c >= 0x0a8f && c <= 0x0a91)
511       || (c >= 0x0a93 && c <= 0x0aa8)
512       || (c >= 0x0aaa && c <= 0x0ab0)
513       || (c >= 0x0ab2 && c <= 0x0ab3)
514       || (c >= 0x0ab5 && c <= 0x0ab9)
515       || (c == 0x0ae0))
516     return 1;
517
518   /* Oriya */
519   if ((c >= 0x0b05 && c <= 0x0b0c)
520       || (c >= 0x0b0f && c <= 0x0b10)
521       || (c >= 0x0b13 && c <= 0x0b28)
522       || (c >= 0x0b2a && c <= 0x0b30)
523       || (c >= 0x0b32 && c <= 0x0b33)
524       || (c >= 0x0b36 && c <= 0x0b39)
525       || (c >= 0x0b5c && c <= 0x0b5d)
526       || (c >= 0x0b5f && c <= 0x0b61))
527     return 1;
528
529   /* Tamil */
530   if ((c >= 0x0b85 && c <= 0x0b8a)
531       || (c >= 0x0b8e && c <= 0x0b90)
532       || (c >= 0x0b92 && c <= 0x0b95)
533       || (c >= 0x0b99 && c <= 0x0b9a)
534       || (c == 0x0b9c)
535       || (c >= 0x0b9e && c <= 0x0b9f)
536       || (c >= 0x0ba3 && c <= 0x0ba4)
537       || (c >= 0x0ba8 && c <= 0x0baa)
538       || (c >= 0x0bae && c <= 0x0bb5)
539       || (c >= 0x0bb7 && c <= 0x0bb9))
540     return 1;
541
542   /* Telugu */
543   if ((c >= 0x0c05 && c <= 0x0c0c)
544       || (c >= 0x0c0e && c <= 0x0c10)
545       || (c >= 0x0c12 && c <= 0x0c28)
546       || (c >= 0x0c2a && c <= 0x0c33)
547       || (c >= 0x0c35 && c <= 0x0c39)
548       || (c >= 0x0c60 && c <= 0x0c61))
549     return 1;
550
551   /* Kannada */
552   if ((c >= 0x0c85 && c <= 0x0c8c)
553       || (c >= 0x0c8e && c <= 0x0c90)
554       || (c >= 0x0c92 && c <= 0x0ca8)
555       || (c >= 0x0caa && c <= 0x0cb3)
556       || (c >= 0x0cb5 && c <= 0x0cb9)
557       || (c >= 0x0ce0 && c <= 0x0ce1))
558     return 1;
559
560   /* Malayalam */
561   if ((c >= 0x0d05 && c <= 0x0d0c)
562       || (c >= 0x0d0e && c <= 0x0d10)
563       || (c >= 0x0d12 && c <= 0x0d28)
564       || (c >= 0x0d2a && c <= 0x0d39)
565       || (c >= 0x0d60 && c <= 0x0d61))
566     return 1;
567
568   /* Thai */
569   if ((c >= 0x0e01 && c <= 0x0e30)
570       || (c >= 0x0e32 && c <= 0x0e33)
571       || (c >= 0x0e40 && c <= 0x0e46)
572       || (c >= 0x0e4f && c <= 0x0e5b))
573     return 1;
574
575   /* Lao */
576   if ((c >= 0x0e81 && c <= 0x0e82)
577       || (c == 0x0e84)
578       || (c == 0x0e87)
579       || (c == 0x0e88)
580       || (c == 0x0e8a)
581       || (c == 0x0e0d)
582       || (c >= 0x0e94 && c <= 0x0e97)
583       || (c >= 0x0e99 && c <= 0x0e9f)
584       || (c >= 0x0ea1 && c <= 0x0ea3)
585       || (c == 0x0ea5)
586       || (c == 0x0ea7)
587       || (c == 0x0eaa)
588       || (c == 0x0eab)
589       || (c >= 0x0ead && c <= 0x0eb0)
590       || (c == 0x0eb2)
591       || (c == 0x0eb3)
592       || (c == 0x0ebd)
593       || (c >= 0x0ec0 && c <= 0x0ec4)
594       || (c == 0x0ec6))
595     return 1;
596
597   /* Georgian */
598   if ((c >= 0x10a0 && c <= 0x10c5)
599       || (c >= 0x10d0 && c <= 0x10f6))
600     return 1;
601
602   /* Hiragana */
603   if ((c >= 0x3041 && c <= 0x3094)
604       || (c >= 0x309b && c <= 0x309e))
605     return 1;
606
607   /* Katakana */
608   if ((c >= 0x30a1 && c <= 0x30fe))
609     return 1;
610
611   /* Bopmofo */
612   if ((c >= 0x3105 && c <= 0x312c))
613     return 1;
614
615   /* Hangul */
616   if ((c >= 0x1100 && c <= 0x1159)
617       || (c >= 0x1161 && c <= 0x11a2)
618       || (c >= 0x11a8 && c <= 0x11f9))
619     return 1;
620
621   /* CJK Unified Ideographs */
622   if ((c >= 0xf900 && c <= 0xfa2d)
623       || (c >= 0xfb1f && c <= 0xfb36)
624       || (c >= 0xfb38 && c <= 0xfb3c)
625       || (c == 0xfb3e)
626       || (c >= 0xfb40 && c <= 0xfb41)
627       || (c >= 0xfb42 && c <= 0xfb44)
628       || (c >= 0xfb46 && c <= 0xfbb1)
629       || (c >= 0xfbd3 && c <= 0xfd3f)
630       || (c >= 0xfd50 && c <= 0xfd8f)
631       || (c >= 0xfd92 && c <= 0xfdc7)
632       || (c >= 0xfdf0 && c <= 0xfdfb)
633       || (c >= 0xfe70 && c <= 0xfe72)
634       || (c == 0xfe74)
635       || (c >= 0xfe76 && c <= 0xfefc)
636       || (c >= 0xff21 && c <= 0xff3a)
637       || (c >= 0xff41 && c <= 0xff5a)
638       || (c >= 0xff66 && c <= 0xffbe)
639       || (c >= 0xffc2 && c <= 0xffc7)
640       || (c >= 0xffca && c <= 0xffcf)
641       || (c >= 0xffd2 && c <= 0xffd7)
642       || (c >= 0xffda && c <= 0xffdc)
643       || (c >= 0x4e00 && c <= 0x9fa5))
644     return 1;
645
646   error ("universal-character-name '\\u%04x' not valid in identifier", c);
647   return 1;
648 #endif
649 }
650
651 /* Add the UTF-8 representation of C to the token_buffer.  */
652
653 static void
654 utf8_extend_token (c)
655      int c;
656 {
657   int shift, mask;
658
659   if      (c <= 0x0000007f)
660     {
661       extend_token (c);
662       return;
663     }
664   else if (c <= 0x000007ff)
665     shift = 6, mask = 0xc0;
666   else if (c <= 0x0000ffff)
667     shift = 12, mask = 0xe0;
668   else if (c <= 0x001fffff)
669     shift = 18, mask = 0xf0;
670   else if (c <= 0x03ffffff)
671     shift = 24, mask = 0xf8;
672   else
673     shift = 30, mask = 0xfc;
674
675   extend_token (mask | (c >> shift));
676   do
677     {
678       shift -= 6;
679       extend_token ((unsigned char) (0x80 | (c >> shift)));
680     }
681   while (shift);
682 }
683 #endif
684
685 #if 0
686 struct try_type
687 {
688   tree *const node_var;
689   const char unsigned_flag;
690   const char long_flag;
691   const char long_long_flag;
692 };
693
694 struct try_type type_sequence[] =
695 {
696   { &integer_type_node, 0, 0, 0},
697   { &unsigned_type_node, 1, 0, 0},
698   { &long_integer_type_node, 0, 1, 0},
699   { &long_unsigned_type_node, 1, 1, 0},
700   { &long_long_integer_type_node, 0, 1, 1},
701   { &long_long_unsigned_type_node, 1, 1, 1}
702 };
703 #endif /* 0 */
704 \f
705 int
706 c_lex (value)
707      tree *value;
708 {
709   const cpp_token *tok;
710
711   retry:
712   timevar_push (TV_CPP);
713   do
714     tok = cpp_get_token (parse_in);
715   while (tok->type == CPP_PADDING);
716   timevar_pop (TV_CPP);
717
718   /* The C++ front end does horrible things with the current line
719      number.  To ensure an accurate line number, we must reset it
720      every time we return a token.  */
721   lineno = src_lineno;
722
723   *value = NULL_TREE;
724   switch (tok->type)
725     {
726     case CPP_OPEN_BRACE:  indent_level++;  break;
727     case CPP_CLOSE_BRACE: indent_level--;  break;
728
729     /* Issue this error here, where we can get at tok->val.c.  */
730     case CPP_OTHER:
731       if (ISGRAPH (tok->val.c))
732         error ("stray '%c' in program", tok->val.c);
733       else
734         error ("stray '\\%o' in program", tok->val.c);
735       goto retry;
736       
737     case CPP_NAME:
738       *value = HT_IDENT_TO_GCC_IDENT (HT_NODE (tok->val.node));
739       break;
740
741     case CPP_NUMBER:
742       *value = lex_number ((const char *)tok->val.str.text, tok->val.str.len);
743       break;
744
745     case CPP_CHAR:
746     case CPP_WCHAR:
747       *value = lex_charconst (tok);
748       break;
749
750     case CPP_STRING:
751     case CPP_WSTRING:
752       *value = lex_string (tok->val.str.text, tok->val.str.len,
753                            tok->type == CPP_WSTRING);
754       break;
755
756       /* These tokens should not be visible outside cpplib.  */
757     case CPP_HEADER_NAME:
758     case CPP_COMMENT:
759     case CPP_MACRO_ARG:
760       abort ();
761
762     default: break;
763     }
764
765   return tok->type;
766 }
767
768 #define ERROR(msgid) do { error(msgid); goto syntax_error; } while(0)
769
770 static tree
771 lex_number (str, len)
772      const char *str;
773      unsigned int len;
774 {
775   int base = 10;
776   int count = 0;
777   int largest_digit = 0;
778   int numdigits = 0;
779   int overflow = 0;
780   int c;
781   tree value;
782   const char *p;
783   enum anon1 { NOT_FLOAT = 0, AFTER_POINT, AFTER_EXPON } floatflag = NOT_FLOAT;
784   
785   /* We actually store only HOST_BITS_PER_CHAR bits in each part.
786      The code below which fills the parts array assumes that a host
787      int is at least twice as wide as a host char, and that 
788      HOST_BITS_PER_WIDE_INT is an even multiple of HOST_BITS_PER_CHAR.
789      Two HOST_WIDE_INTs is the largest int literal we can store.
790      In order to detect overflow below, the number of parts (TOTAL_PARTS)
791      must be exactly the number of parts needed to hold the bits
792      of two HOST_WIDE_INTs.  */
793 #define TOTAL_PARTS ((HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR) * 2)
794   unsigned int parts[TOTAL_PARTS];
795   
796   /* Optimize for most frequent case.  */
797   if (len == 1)
798     {
799       if (*str == '0')
800         return integer_zero_node;
801       else if (*str == '1')
802         return integer_one_node;
803       else
804         return build_int_2 (*str - '0', 0);
805     }
806
807   for (count = 0; count < TOTAL_PARTS; count++)
808     parts[count] = 0;
809
810   /* len is known to be >1 at this point.  */
811   p = str;
812
813   if (len > 2 && str[0] == '0' && (str[1] == 'x' || str[1] == 'X'))
814     {
815       base = 16;
816       p = str + 2;
817     }
818   /* The ISDIGIT check is so we are not confused by a suffix on 0.  */
819   else if (str[0] == '0' && ISDIGIT (str[1]))
820     {
821       base = 8;
822       p = str + 1;
823     }
824
825   do
826     {
827       c = *p++;
828
829       if (c == '.')
830         {
831           if (floatflag == AFTER_POINT)
832             ERROR ("too many decimal points in floating constant");
833           else if (floatflag == AFTER_EXPON)
834             ERROR ("decimal point in exponent - impossible!");
835           else
836             floatflag = AFTER_POINT;
837
838           if (base == 8)
839             base = 10;
840         }
841       else if (c == '_')
842         /* Possible future extension: silently ignore _ in numbers,
843            permitting cosmetic grouping - e.g. 0x8000_0000 == 0x80000000
844            but somewhat easier to read.  Ada has this?  */
845         ERROR ("underscore in number");
846       else
847         {
848           int n;
849           /* It is not a decimal point.
850              It should be a digit (perhaps a hex digit).  */
851
852           if (ISDIGIT (c)
853               || (base == 16 && ISXDIGIT (c)))
854             {
855               n = hex_value (c);
856             }
857           else if (base <= 10 && (c == 'e' || c == 'E'))
858             {
859               base = 10;
860               floatflag = AFTER_EXPON;
861               break;
862             }
863           else if (base == 16 && (c == 'p' || c == 'P'))
864             {
865               floatflag = AFTER_EXPON;
866               break;   /* start of exponent */
867             }
868           else
869             {
870               p--;
871               break;  /* start of suffix */
872             }
873
874           if (n >= largest_digit)
875             largest_digit = n;
876           numdigits++;
877
878           for (count = 0; count < TOTAL_PARTS; count++)
879             {
880               parts[count] *= base;
881               if (count)
882                 {
883                   parts[count]
884                     += (parts[count-1] >> HOST_BITS_PER_CHAR);
885                   parts[count-1]
886                     &= (1 << HOST_BITS_PER_CHAR) - 1;
887                 }
888               else
889                 parts[0] += n;
890             }
891
892           /* If the highest-order part overflows (gets larger than
893              a host char will hold) then the whole number has 
894              overflowed.  Record this and truncate the highest-order
895              part.  */
896           if (parts[TOTAL_PARTS - 1] >> HOST_BITS_PER_CHAR)
897             {
898               overflow = 1;
899               parts[TOTAL_PARTS - 1] &= (1 << HOST_BITS_PER_CHAR) - 1;
900             }
901         }
902     }
903   while (p < str + len);
904
905   /* This can happen on input like `int i = 0x;' */
906   if (numdigits == 0)
907     ERROR ("numeric constant with no digits");
908
909   if (largest_digit >= base)
910     ERROR ("numeric constant contains digits beyond the radix");
911
912   if (floatflag != NOT_FLOAT)
913     {
914       tree type;
915       const char *typename;
916       int imag, fflag, lflag;
917       REAL_VALUE_TYPE real;
918       char *copy;
919
920       if (base == 16 && floatflag != AFTER_EXPON)
921         ERROR ("hexadecimal floating constant has no exponent");
922
923       /* Read explicit exponent if any, and put it in tokenbuf.  */
924       if ((base == 10 && ((c == 'e') || (c == 'E')))
925           || (base == 16 && (c == 'p' || c == 'P')))
926         {
927           if (p < str + len)
928             c = *p++;
929           if (p < str + len && (c == '+' || c == '-'))
930             c = *p++;
931           /* Exponent is decimal, even if string is a hex float.  */
932           if (! ISDIGIT (c))
933             ERROR ("floating constant exponent has no digits");
934           while (p < str + len && ISDIGIT (c))
935             c = *p++;
936           if (! ISDIGIT (c))
937             p--;
938         }
939
940       /* Copy the float constant now; we don't want any suffixes in the
941          string passed to parse_float.  */
942       copy = alloca (p - str + 1);
943       memcpy (copy, str, p - str);
944       copy[p - str] = '\0';
945
946       /* Now parse suffixes.  */
947       fflag = lflag = imag = 0;
948       while (p < str + len)
949         switch (*p++)
950           {
951           case 'f': case 'F':
952             if (fflag)
953               ERROR ("more than one 'f' suffix on floating constant");
954             else if (warn_traditional && !in_system_header
955                      && ! cpp_sys_macro_p (parse_in))
956               warning ("traditional C rejects the 'f' suffix");
957
958             fflag = 1;
959             break;
960
961           case 'l': case 'L':
962             if (lflag)
963               ERROR ("more than one 'l' suffix on floating constant");
964             else if (warn_traditional && !in_system_header
965                      && ! cpp_sys_macro_p (parse_in))
966               warning ("traditional C rejects the 'l' suffix");
967
968             lflag = 1;
969             break;
970
971           case 'i': case 'I':
972           case 'j': case 'J':
973             if (imag)
974               ERROR ("more than one 'i' or 'j' suffix on floating constant");
975             else if (pedantic)
976               pedwarn ("ISO C forbids imaginary numeric constants");
977             imag = 1;
978             break;
979
980           default:
981             ERROR ("invalid suffix on floating constant");
982           }
983
984       type = double_type_node;
985       typename = "double";
986         
987       if (fflag)
988         {
989           if (lflag)
990             ERROR ("both 'f' and 'l' suffixes on floating constant");
991
992           type = float_type_node;
993           typename = "float";
994         }
995       else if (lflag)
996         {
997           type = long_double_type_node;
998           typename = "long double";
999         }
1000       else if (flag_single_precision_constant)
1001         {
1002           type = float_type_node;
1003           typename = "float";
1004         }
1005
1006       /* Warn about this only after we know we're not issuing an error.  */
1007       if (base == 16 && pedantic && !flag_isoc99)
1008         pedwarn ("hexadecimal floating constants are only valid in C99");
1009
1010       /* The second argument, machine_mode, of REAL_VALUE_ATOF
1011          tells the desired precision of the binary result
1012          of decimal-to-binary conversion.  */
1013       if (base == 16)
1014         real = REAL_VALUE_HTOF (copy, TYPE_MODE (type));
1015       else
1016         real = REAL_VALUE_ATOF (copy, TYPE_MODE (type));
1017
1018       /* A diagnostic is required here by some ISO C testsuites.
1019          This is not pedwarn, because some people don't want
1020          an error for this.  */
1021       if (REAL_VALUE_ISINF (real) && pedantic)
1022         warning ("floating point number exceeds range of 'double'");
1023
1024       /* Create a node with determined type and value.  */
1025       if (imag)
1026         value = build_complex (NULL_TREE, convert (type, integer_zero_node),
1027                                build_real (type, real));
1028       else
1029         value = build_real (type, real);
1030     }
1031   else
1032     {
1033       tree trad_type, type;
1034       HOST_WIDE_INT high, low;
1035       int spec_unsigned = 0;
1036       int spec_long = 0;
1037       int spec_long_long = 0;
1038       int spec_imag = 0;
1039       int suffix_lu = 0;
1040       int warn = 0, i;
1041
1042       trad_type = type = NULL_TREE;
1043       while (p < str + len)
1044         {
1045           c = *p++;
1046           switch (c)
1047             {
1048             case 'u': case 'U':
1049               if (spec_unsigned)
1050                 error ("two 'u' suffixes on integer constant");
1051               else if (warn_traditional && !in_system_header
1052                        && ! cpp_sys_macro_p (parse_in))
1053                 warning ("traditional C rejects the 'u' suffix");
1054
1055               spec_unsigned = 1;
1056               if (spec_long)
1057                 suffix_lu = 1;
1058               break;
1059
1060             case 'l': case 'L':
1061               if (spec_long)
1062                 {
1063                   if (spec_long_long)
1064                     error ("three 'l' suffixes on integer constant");
1065                   else if (suffix_lu)
1066                     error ("'lul' is not a valid integer suffix");
1067                   else if (c != spec_long)
1068                     error ("'Ll' and 'lL' are not valid integer suffixes");
1069                   else if (pedantic && ! flag_isoc99
1070                            && ! in_system_header && warn_long_long)
1071                     pedwarn ("ISO C89 forbids long long integer constants");
1072                   spec_long_long = 1;
1073                 }
1074               spec_long = c;
1075               break;
1076
1077             case 'i': case 'I': case 'j': case 'J':
1078               if (spec_imag)
1079                 error ("more than one 'i' or 'j' suffix on integer constant");
1080               else if (pedantic)
1081                 pedwarn ("ISO C forbids imaginary numeric constants");
1082               spec_imag = 1;
1083               break;
1084
1085             default:
1086               ERROR ("invalid suffix on integer constant");
1087             }
1088         }
1089
1090       /* If the literal overflowed, pedwarn about it now.  */
1091       if (overflow)
1092         {
1093           warn = 1;
1094           pedwarn ("integer constant is too large for this configuration of the compiler - truncated to %d bits", HOST_BITS_PER_WIDE_INT * 2);
1095         }
1096
1097       /* This is simplified by the fact that our constant
1098          is always positive.  */
1099
1100       high = low = 0;
1101
1102       for (i = 0; i < HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR; i++)
1103         {
1104           high |= ((HOST_WIDE_INT) parts[i + (HOST_BITS_PER_WIDE_INT
1105                                               / HOST_BITS_PER_CHAR)]
1106                    << (i * HOST_BITS_PER_CHAR));
1107           low |= (HOST_WIDE_INT) parts[i] << (i * HOST_BITS_PER_CHAR);
1108         }
1109
1110       value = build_int_2 (low, high);
1111       TREE_TYPE (value) = long_long_unsigned_type_node;
1112
1113       /* If warn_traditional, calculate both the ISO type and the
1114          traditional type, then see if they disagree.  */
1115       if (warn_traditional)
1116         {
1117           /* Traditionally, any constant is signed; but if unsigned is
1118              specified explicitly, obey that.  Use the smallest size
1119              with the right number of bits, except for one special
1120              case with decimal constants.  */
1121           if (! spec_long && base != 10
1122               && int_fits_type_p (value, unsigned_type_node))
1123             trad_type = spec_unsigned ? unsigned_type_node : integer_type_node;
1124           /* A decimal constant must be long if it does not fit in
1125              type int.  I think this is independent of whether the
1126              constant is signed.  */
1127           else if (! spec_long && base == 10
1128                    && int_fits_type_p (value, integer_type_node))
1129             trad_type = spec_unsigned ? unsigned_type_node : integer_type_node;
1130           else if (! spec_long_long)
1131             trad_type = (spec_unsigned
1132                          ? long_unsigned_type_node
1133                          : long_integer_type_node);
1134           else if (int_fits_type_p (value,
1135                                     spec_unsigned 
1136                                     ? long_long_unsigned_type_node
1137                                     : long_long_integer_type_node)) 
1138             trad_type = (spec_unsigned
1139                          ? long_long_unsigned_type_node
1140                          : long_long_integer_type_node);
1141           else
1142             trad_type = (spec_unsigned
1143                          ? widest_unsigned_literal_type_node
1144                          : widest_integer_literal_type_node);
1145         }
1146         
1147         /* Calculate the ISO type.  */
1148         if (! spec_long && ! spec_unsigned
1149             && int_fits_type_p (value, integer_type_node))
1150           type = integer_type_node;
1151         else if (! spec_long && (base != 10 || spec_unsigned)
1152                  && int_fits_type_p (value, unsigned_type_node))
1153           type = unsigned_type_node;
1154         else if (! spec_unsigned && !spec_long_long
1155                  && int_fits_type_p (value, long_integer_type_node))
1156           type = long_integer_type_node;
1157         else if (! spec_long_long
1158                  && int_fits_type_p (value, long_unsigned_type_node))
1159           type = long_unsigned_type_node;
1160         else if (! spec_unsigned
1161                  && int_fits_type_p (value, long_long_integer_type_node))
1162           type = long_long_integer_type_node;
1163         else if (int_fits_type_p (value, long_long_unsigned_type_node))
1164           type = long_long_unsigned_type_node;
1165         else if (! spec_unsigned
1166                  && int_fits_type_p (value, widest_integer_literal_type_node))
1167           type = widest_integer_literal_type_node;
1168         else
1169           type = widest_unsigned_literal_type_node;
1170
1171       /* We assume that constants specified in a non-decimal
1172          base are bit patterns, and that the programmer really
1173          meant what they wrote.  */
1174       if (warn_traditional && !in_system_header
1175           && base == 10 && trad_type != type)
1176         {
1177           if (TYPE_PRECISION (trad_type) != TYPE_PRECISION (type))
1178             warning ("width of integer constant is different in traditional C");
1179           else if (TREE_UNSIGNED (trad_type) != TREE_UNSIGNED (type))
1180             warning ("integer constant is unsigned in ISO C, signed in traditional C");
1181           else
1182             warning ("width of integer constant may change on other systems in traditional C");
1183         }
1184
1185       if (pedantic && (flag_isoc99 || !spec_long_long)
1186           && !warn
1187           && ((flag_isoc99
1188                ? TYPE_PRECISION (long_long_integer_type_node)
1189                : TYPE_PRECISION (long_integer_type_node)) < TYPE_PRECISION (type)))
1190         {
1191           warn = 1;
1192           pedwarn ("integer constant larger than the maximum value of %s",
1193                    (flag_isoc99
1194                     ? (TREE_UNSIGNED (type)
1195                        ? _("an unsigned long long int")
1196                        : _("a long long int"))
1197                     : _("an unsigned long int")));
1198         }
1199
1200       if (base == 10 && ! spec_unsigned && TREE_UNSIGNED (type))
1201         warning ("decimal constant is so large that it is unsigned");
1202
1203       if (spec_imag)
1204         {
1205           if (TYPE_PRECISION (type)
1206               <= TYPE_PRECISION (integer_type_node))
1207             value = build_complex (NULL_TREE, integer_zero_node,
1208                                    convert (integer_type_node, value));
1209           else
1210             ERROR ("complex integer constant is too wide for 'complex int'");
1211         }
1212       else
1213         TREE_TYPE (value) = type;
1214
1215       /* If it's still an integer (not a complex), and it doesn't
1216          fit in the type we choose for it, then pedwarn.  */
1217
1218       if (! warn
1219           && TREE_CODE (TREE_TYPE (value)) == INTEGER_TYPE
1220           && ! int_fits_type_p (value, TREE_TYPE (value)))
1221         pedwarn ("integer constant is larger than the maximum value for its type");
1222     }
1223
1224   if (p < str + len)
1225     error ("missing white space after number '%.*s'", (int) (p - str), str);
1226
1227   return value;
1228
1229  syntax_error:
1230   return integer_zero_node;
1231 }
1232
1233 static tree
1234 lex_string (str, len, wide)
1235      const unsigned char *str;
1236      unsigned int len;
1237      int wide;
1238 {
1239   tree value;
1240   char *buf = alloca ((len + 1) * (wide ? WCHAR_BYTES : 1));
1241   char *q = buf;
1242   const unsigned char *p = str, *limit = str + len;
1243   unsigned int c;
1244   unsigned width = wide ? WCHAR_TYPE_SIZE
1245                         : TYPE_PRECISION (char_type_node);
1246
1247 #ifdef MULTIBYTE_CHARS
1248   /* Reset multibyte conversion state.  */
1249   (void) local_mbtowc (NULL, NULL, 0);
1250 #endif
1251
1252   while (p < limit)
1253     {
1254 #ifdef MULTIBYTE_CHARS
1255       wchar_t wc;
1256       int char_len;
1257
1258       char_len = local_mbtowc (&wc, (const char *) p, limit - p);
1259       if (char_len == -1)
1260         {
1261           warning ("ignoring invalid multibyte character");
1262           char_len = 1;
1263           c = *p++;
1264         }
1265       else
1266         {
1267           p += char_len;
1268           c = wc;
1269         }
1270 #else
1271       c = *p++;
1272 #endif
1273
1274       if (c == '\\' && !ignore_escape_flag)
1275         {
1276           unsigned int mask;
1277
1278           if (width < HOST_BITS_PER_INT)
1279             mask = ((unsigned int) 1 << width) - 1;
1280           else
1281             mask = ~0;
1282           c = cpp_parse_escape (parse_in, &p, limit, mask);
1283         }
1284         
1285       /* Add this single character into the buffer either as a wchar_t
1286          or as a single byte.  */
1287       if (wide)
1288         {
1289           unsigned charwidth = TYPE_PRECISION (char_type_node);
1290           unsigned bytemask = (1 << charwidth) - 1;
1291           int byte;
1292
1293           for (byte = 0; byte < WCHAR_BYTES; ++byte)
1294             {
1295               int n;
1296               if (byte >= (int) sizeof (c))
1297                 n = 0;
1298               else
1299                 n = (c >> (byte * charwidth)) & bytemask;
1300               if (BYTES_BIG_ENDIAN)
1301                 q[WCHAR_BYTES - byte - 1] = n;
1302               else
1303                 q[byte] = n;
1304             }
1305           q += WCHAR_BYTES;
1306         }
1307       else
1308         {
1309           *q++ = c;
1310         }
1311     }
1312
1313   /* Terminate the string value, either with a single byte zero
1314      or with a wide zero.  */
1315
1316   if (wide)
1317     {
1318       memset (q, 0, WCHAR_BYTES);
1319       q += WCHAR_BYTES;
1320     }
1321   else
1322     {
1323       *q++ = '\0';
1324     }
1325
1326   value = build_string (q - buf, buf);
1327
1328   if (wide)
1329     TREE_TYPE (value) = wchar_array_type_node;
1330   else
1331     TREE_TYPE (value) = char_array_type_node;
1332   return value;
1333 }
1334
1335 /* Converts a (possibly wide) character constant token into a tree.  */
1336 static tree
1337 lex_charconst (token)
1338      const cpp_token *token;
1339 {
1340   HOST_WIDE_INT result;
1341   tree value;
1342   unsigned int chars_seen;
1343  
1344   result = cpp_interpret_charconst (parse_in, token, warn_multichar,
1345                                     &chars_seen);
1346   if (token->type == CPP_WCHAR)
1347     {
1348       value = build_int_2 (result, 0);
1349       TREE_TYPE (value) = wchar_type_node;
1350     }
1351   else
1352     {
1353       if (result < 0)
1354         value = build_int_2 (result, -1);
1355       else
1356         value = build_int_2 (result, 0);
1357  
1358       /* In C, a character constant has type 'int'.
1359          In C++ 'char', but multi-char charconsts have type 'int'.  */
1360       if (c_language == clk_cplusplus && chars_seen <= 1)
1361         TREE_TYPE (value) = char_type_node;
1362       else
1363         TREE_TYPE (value) = integer_type_node;
1364     }
1365  
1366   return value;
1367 }