OSDN Git Service

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