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