OSDN Git Service

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