OSDN Git Service

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