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