source: trunk/src/gcc/gcc/c-lex.c@ 2

Last change on this file since 2 was 2, checked in by bird, 23 years ago

Initial revision

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