OSDN Git Service

* Makefile.in (c-common.o): Don't depend on c-tree.h or c-lex.h.
[pf3gnuchains/gcc-fork.git] / gcc / c-lex.c
1 /* Lexical analyzer for C and Objective C.
2    Copyright (C) 1987, 1988, 1989, 1992, 1994, 1995, 1996, 1997
3    1998, 1999, 2000 Free Software Foundation, Inc.
4
5 This file is part of 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 "tree.h"
27 #include "input.h"
28 #include "output.h"
29 #include "c-lex.h"
30 #include "c-tree.h"
31 #include "flags.h"
32 #include "c-parse.h"
33 #include "c-pragma.h"
34 #include "toplev.h"
35 #include "intl.h"
36 #include "ggc.h"
37 #include "tm_p.h"
38
39 /* MULTIBYTE_CHARS support only works for native compilers.
40    ??? Ideally what we want is to model widechar support after
41    the current floating point support.  */
42 #ifdef CROSS_COMPILE
43 #undef MULTIBYTE_CHARS
44 #endif
45
46 #ifdef MULTIBYTE_CHARS
47 #include "mbchar.h"
48 #include <locale.h>
49 #endif /* MULTIBYTE_CHARS */
50 #ifndef GET_ENVIRONMENT
51 #define GET_ENVIRONMENT(ENV_VALUE,ENV_NAME) ((ENV_VALUE) = getenv (ENV_NAME))
52 #endif
53
54 #if USE_CPPLIB
55 #include "cpplib.h"
56 extern cpp_reader  parse_in;
57 extern cpp_options parse_options;
58 #else
59 /* Stream for reading from the input file.  */
60 FILE *finput;
61 #endif
62
63 extern void yyprint                     PARAMS ((FILE *, int, YYSTYPE));
64
65 /* Cause the `yydebug' variable to be defined.  */
66 #define YYDEBUG 1
67
68 #if USE_CPPLIB
69 extern unsigned char *yy_cur, *yy_lim;
70 extern enum cpp_token cpp_token;
71
72 extern int yy_get_token ();
73
74 #define GETC() (yy_cur < yy_lim ? *yy_cur++ : yy_get_token ())
75 #define UNGETC(c) ((c) == EOF ? 0 : yy_cur--)
76
77 #else /* ! USE_CPPLIB */
78
79 #define GETC() getch ()
80 #define UNGETC(c) put_back (c)
81
82 struct putback_buffer {
83   unsigned char *buffer;
84   int   buffer_size;
85   int   index;
86 };
87
88 static struct putback_buffer putback = {NULL, 0, -1};
89
90 static inline int getch PARAMS ((void));
91
92 static inline int
93 getch ()
94 {
95   if (putback.index != -1)
96     {
97       int ch = putback.buffer[putback.index];
98       --putback.index;
99       return ch;
100     }
101   return getc (finput);
102 }
103
104 static inline void put_back PARAMS ((int));
105
106 static inline void
107 put_back (ch)
108      int ch;
109 {
110   if (ch != EOF)
111     {
112       if (putback.index == putback.buffer_size - 1)
113         {
114           putback.buffer_size += 16;
115           putback.buffer = xrealloc (putback.buffer, putback.buffer_size);
116         }
117       putback.buffer[++putback.index] = ch;
118     }
119 }
120 #endif /* ! USE_CPPLIB */
121
122 int linemode;
123
124 extern int yydebug;
125
126 /* File used for outputting assembler code.  */
127 extern FILE *asm_out_file;
128
129 #undef WCHAR_TYPE_SIZE
130 #define WCHAR_TYPE_SIZE TYPE_PRECISION (wchar_type_node)
131
132 /* Number of bytes in a wide character.  */
133 #define WCHAR_BYTES (WCHAR_TYPE_SIZE / BITS_PER_UNIT)
134
135 static int maxtoken;            /* Current nominal length of token buffer.  */
136 char *token_buffer;     /* Pointer to token buffer.
137                            Actual allocated length is maxtoken + 2.
138                            This is not static because objc-parse.y uses it.  */
139
140 static int indent_level;        /* Number of { minus number of }. */
141
142 /* Nonzero tells yylex to ignore \ in string constants.  */
143 static int ignore_escape_flag;
144
145 /* Nonzero if end-of-file has been seen on input.  */
146 static int end_of_file;
147
148 #ifdef HANDLE_GENERIC_PRAGMAS
149 static int handle_generic_pragma        PARAMS ((int));
150 #endif /* HANDLE_GENERIC_PRAGMAS */
151 static int whitespace_cr                PARAMS ((int));
152 static int skip_white_space             PARAMS ((int));
153 static char *extend_token_buffer        PARAMS ((const char *));
154 static int readescape                   PARAMS ((int *));
155 static void parse_float                 PARAMS ((PTR));
156 static void extend_token_buffer_to      PARAMS ((int));
157 static int read_line_number             PARAMS ((int *));
158 \f
159 /* Do not insert generated code into the source, instead, include it.
160    This allows us to build gcc automatically even for targets that
161    need to add or modify the reserved keyword lists.  */
162 #include "c-gperf.h"
163 \f
164 /* Return something to represent absolute declarators containing a *.
165    TARGET is the absolute declarator that the * contains.
166    TYPE_QUALS is a list of modifiers such as const or volatile
167    to apply to the pointer type, represented as identifiers.
168
169    We return an INDIRECT_REF whose "contents" are TARGET
170    and whose type is the modifier list.  */
171
172 tree
173 make_pointer_declarator (type_quals, target)
174      tree type_quals, target;
175 {
176   return build1 (INDIRECT_REF, type_quals, target);
177 }
178 \f
179 void
180 forget_protocol_qualifiers ()
181 {
182   int i, n = sizeof wordlist / sizeof (struct resword);
183
184   for (i = 0; i < n; i++)
185     if ((int) wordlist[i].rid >= (int) RID_IN
186         && (int) wordlist[i].rid <= (int) RID_ONEWAY)
187       wordlist[i].name = "";
188 }
189
190 void
191 remember_protocol_qualifiers ()
192 {
193   int i, n = sizeof wordlist / sizeof (struct resword);
194
195   for (i = 0; i < n; i++)
196     if (wordlist[i].rid == RID_IN)
197       wordlist[i].name = "in";
198     else if (wordlist[i].rid == RID_OUT)
199       wordlist[i].name = "out";
200     else if (wordlist[i].rid == RID_INOUT)
201       wordlist[i].name = "inout";
202     else if (wordlist[i].rid == RID_BYCOPY)
203       wordlist[i].name = "bycopy";
204     else if (wordlist[i].rid == RID_BYREF)
205       wordlist[i].name = "byref";
206     else if (wordlist[i].rid == RID_ONEWAY)
207       wordlist[i].name = "oneway";
208 }
209 \f
210 const char *
211 init_parse (filename)
212      const char *filename;
213 {
214 #if !USE_CPPLIB
215   /* Open input file.  */
216   if (filename == 0 || !strcmp (filename, "-"))
217     {
218       finput = stdin;
219       filename = "stdin";
220     }
221   else
222     finput = fopen (filename, "r");
223   if (finput == 0)
224     pfatal_with_name (filename);
225
226 #ifdef IO_BUFFER_SIZE
227   setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
228 #endif
229 #else /* !USE_CPPLIB */
230   parse_in.show_column = 1;
231   if (! cpp_start_read (&parse_in, filename))
232     abort ();
233
234   if (filename == 0 || !strcmp (filename, "-"))
235     filename = "stdin";
236
237   /* cpp_start_read always puts at least one line directive into the
238      token buffer.  We must arrange to read it out here. */
239   yy_cur = parse_in.token_buffer;
240   yy_lim = CPP_PWRITTEN (&parse_in);
241   cpp_token = CPP_DIRECTIVE;
242 #endif
243
244   add_c_tree_codes ();
245   
246   init_lex ();
247   init_pragma ();
248
249   return filename;
250 }
251
252 void
253 finish_parse ()
254 {
255 #if USE_CPPLIB
256   cpp_finish (&parse_in);
257   errorcount += parse_in.errors;
258 #else
259   fclose (finput);
260 #endif
261 }
262
263 void
264 init_lex ()
265 {
266   /* Make identifier nodes long enough for the language-specific slots.  */
267   set_identifier_size (sizeof (struct lang_identifier));
268
269   /* Start it at 0, because check_newline is called at the very beginning
270      and will increment it to 1.  */
271   lineno = 0;
272
273 #ifdef MULTIBYTE_CHARS
274   /* Change to the native locale for multibyte conversions.  */
275   setlocale (LC_CTYPE, "");
276   GET_ENVIRONMENT (literal_codeset, "LANG");
277 #endif
278
279   maxtoken = 40;
280   token_buffer = (char *) xmalloc (maxtoken + 2);
281
282   ridpointers = (tree *) xcalloc ((int) RID_MAX, sizeof (tree));
283   ridpointers[(int) RID_INT] = get_identifier ("int");
284   ridpointers[(int) RID_CHAR] = get_identifier ("char");
285   ridpointers[(int) RID_VOID] = get_identifier ("void");
286   ridpointers[(int) RID_FLOAT] = get_identifier ("float");
287   ridpointers[(int) RID_DOUBLE] = get_identifier ("double");
288   ridpointers[(int) RID_SHORT] = get_identifier ("short");
289   ridpointers[(int) RID_LONG] = get_identifier ("long");
290   ridpointers[(int) RID_UNSIGNED] = get_identifier ("unsigned");
291   ridpointers[(int) RID_SIGNED] = get_identifier ("signed");
292   ridpointers[(int) RID_INLINE] = get_identifier ("inline");
293   ridpointers[(int) RID_CONST] = get_identifier ("const");
294   ridpointers[(int) RID_RESTRICT] = get_identifier ("restrict");
295   ridpointers[(int) RID_VOLATILE] = get_identifier ("volatile");
296   ridpointers[(int) RID_BOUNDED] = get_identifier ("__bounded");
297   ridpointers[(int) RID_UNBOUNDED] = get_identifier ("__unbounded");
298   ridpointers[(int) RID_AUTO] = get_identifier ("auto");
299   ridpointers[(int) RID_STATIC] = get_identifier ("static");
300   ridpointers[(int) RID_EXTERN] = get_identifier ("extern");
301   ridpointers[(int) RID_TYPEDEF] = get_identifier ("typedef");
302   ridpointers[(int) RID_REGISTER] = get_identifier ("register");
303   ridpointers[(int) RID_ITERATOR] = get_identifier ("iterator");
304   ridpointers[(int) RID_COMPLEX] = get_identifier ("complex");
305   ridpointers[(int) RID_ID] = get_identifier ("id");
306   ridpointers[(int) RID_IN] = get_identifier ("in");
307   ridpointers[(int) RID_OUT] = get_identifier ("out");
308   ridpointers[(int) RID_INOUT] = get_identifier ("inout");
309   ridpointers[(int) RID_BYCOPY] = get_identifier ("bycopy");
310   ridpointers[(int) RID_BYREF] = get_identifier ("byref");
311   ridpointers[(int) RID_ONEWAY] = get_identifier ("oneway");
312   forget_protocol_qualifiers();
313
314   /* Some options inhibit certain reserved words.
315      Clear those words out of the hash table so they won't be recognized.  */
316 #define UNSET_RESERVED_WORD(STRING) \
317   do { struct resword *s = is_reserved_word (STRING, sizeof (STRING) - 1); \
318        if (s) s->name = ""; } while (0)
319
320   if (! doing_objc_thang)
321     UNSET_RESERVED_WORD ("id");
322
323   if (flag_traditional)
324     {
325       UNSET_RESERVED_WORD ("const");
326       UNSET_RESERVED_WORD ("restrict");
327       UNSET_RESERVED_WORD ("volatile");
328       UNSET_RESERVED_WORD ("typeof");
329       UNSET_RESERVED_WORD ("signed");
330       UNSET_RESERVED_WORD ("inline");
331       UNSET_RESERVED_WORD ("iterator");
332       UNSET_RESERVED_WORD ("complex");
333     }
334   else if (!flag_isoc99)
335     UNSET_RESERVED_WORD ("restrict");
336
337   if (flag_no_asm)
338     {
339       UNSET_RESERVED_WORD ("asm");
340       UNSET_RESERVED_WORD ("typeof");
341       UNSET_RESERVED_WORD ("inline");
342       UNSET_RESERVED_WORD ("iterator");
343       UNSET_RESERVED_WORD ("complex");
344     }
345 }
346
347 void
348 reinit_parse_for_function ()
349 {
350 }
351 \f
352 /* Function used when yydebug is set, to print a token in more detail.  */
353
354 void
355 yyprint (file, yychar, yylval)
356      FILE *file;
357      int yychar;
358      YYSTYPE yylval;
359 {
360   tree t;
361   switch (yychar)
362     {
363     case IDENTIFIER:
364     case TYPENAME:
365     case OBJECTNAME:
366       t = yylval.ttype;
367       if (IDENTIFIER_POINTER (t))
368         fprintf (file, " `%s'", IDENTIFIER_POINTER (t));
369       break;
370
371     case CONSTANT:
372       t = yylval.ttype;
373       if (TREE_CODE (t) == INTEGER_CST)
374         fprintf (file,
375 #if HOST_BITS_PER_WIDE_INT == 64
376 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
377                  " 0x%x%016x",
378 #else
379 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
380                  " 0x%lx%016lx",
381 #else
382                  " 0x%llx%016llx",
383 #endif
384 #endif
385 #else
386 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
387                  " 0x%lx%08lx",
388 #else
389                  " 0x%x%08x",
390 #endif
391 #endif
392                  TREE_INT_CST_HIGH (t), TREE_INT_CST_LOW (t));
393       break;
394     }
395 }
396 \f
397 /* Iff C is a carriage return, warn about it - if appropriate -
398    and return nonzero.  */
399
400 static int
401 whitespace_cr (c)
402      int c;
403 {
404   static int newline_warning = 0;
405
406   if (c == '\r')
407     {
408       /* ANSI C says the effects of a carriage return in a source file
409          are undefined.  */
410       if (pedantic && !newline_warning)
411         {
412           warning ("carriage return in source file");
413           warning ("(we only warn about the first carriage return)");
414           newline_warning = 1;
415         }
416       return 1;
417     }
418   return 0;
419 }
420
421 /* If C is not whitespace, return C.
422    Otherwise skip whitespace and return first nonwhite char read.  */
423
424 static int
425 skip_white_space (c)
426      register int c;
427 {
428   for (;;)
429     {
430       switch (c)
431         {
432           /* We don't recognize comments here, because
433              cpp output can include / and * consecutively as operators.
434              Also, there's no need, since cpp removes all comments.  */
435
436         case '\n':
437           if (linemode)
438             {
439               UNGETC (c);
440               return EOF;
441             }
442           c = check_newline ();
443           break;
444
445         case ' ':
446         case '\t':
447         case '\f':
448         case '\v':
449         case '\b':
450 #if USE_CPPLIB
451           /* While processing a # directive we don't get CPP_HSPACE
452              tokens, so we also need to handle whitespace the normal way.  */
453           if (cpp_token == CPP_HSPACE)
454             c = yy_get_token ();
455           else
456 #endif
457             c = GETC();
458           break;
459
460         case '\r':
461           whitespace_cr (c);
462           c = GETC();
463           break;
464
465         case '\\':
466           c = GETC();
467           if (c == '\n')
468             lineno++;
469           else
470             error ("stray '\\' in program");
471           c = GETC();
472           break;
473
474         default:
475           return (c);
476         }
477     }
478 }
479
480 /* Skips all of the white space at the current location in the input file.  */
481
482 void
483 position_after_white_space ()
484 {
485   register int c;
486
487   c = GETC();
488
489   UNGETC (skip_white_space (c));
490 }
491
492 /* Make the token buffer longer, preserving the data in it.
493    P should point to just beyond the last valid character in the old buffer.
494    The value we return is a pointer to the new buffer
495    at a place corresponding to P.  */
496
497 static void
498 extend_token_buffer_to (size)
499      int size;
500 {
501   do
502     maxtoken = maxtoken * 2 + 10;
503   while (maxtoken < size);
504   token_buffer = (char *) xrealloc (token_buffer, maxtoken + 2);
505 }
506
507 static char *
508 extend_token_buffer (p)
509      const char *p;
510 {
511   int offset = p - token_buffer;
512   extend_token_buffer_to (offset);
513   return token_buffer + offset;
514 }
515 \f
516 #if defined HANDLE_PRAGMA
517 /* Local versions of these macros, that can be passed as function pointers.  */
518 static int
519 pragma_getc ()
520 {
521   return GETC ();
522 }
523
524 static void
525 pragma_ungetc (arg)
526      int arg;
527 {
528   UNGETC (arg);
529 }
530 #endif
531
532 static int
533 read_line_number (num)
534      int *num;
535 {
536   register int token = yylex ();
537
538   if (token == CONSTANT
539       && TREE_CODE (yylval.ttype) == INTEGER_CST)
540     {
541       *num = TREE_INT_CST_LOW (yylval.ttype);
542       return 1;
543     }
544   else
545     {
546       if (token != END_OF_LINE)
547         error ("invalid #-line");
548       return 0;
549     }
550 }
551   
552 /* At the beginning of a line, increment the line number
553    and process any #-directive on this line.
554    If the line is a #-directive, read the entire line and return a newline.
555    Otherwise, return the line's first non-whitespace character.
556
557    Note that in the case of USE_CPPLIB, we get the whole line as one
558    CPP_DIRECTIVE token.  */
559
560 int
561 check_newline ()
562 {
563   register int c;
564   register int token;
565   int saw_line;
566   enum { act_none, act_push, act_pop } action;
567   int old_lineno, action_number, l;
568
569  restart:
570   /* Read first nonwhite char on the line.  */
571
572 #ifdef USE_CPPLIB
573   c = GETC ();
574   /* In some cases where we're leaving an include file, we can get multiple
575      CPP_HSPACE tokens in a row, so we need to loop.  */
576   while (cpp_token == CPP_HSPACE)
577     c = yy_get_token ();
578 #else
579   do
580     c = GETC ();
581   while (c == ' ' || c == '\t');
582 #endif
583
584   lineno++;
585
586   if (c != '#')
587     {
588       /* Sequences of multiple newlines are very common; optimize them.  */
589       if (c == '\n')
590         goto restart;
591
592       /* If not #, return it so caller will use it.  */
593       return c;
594     }
595
596   /* Don't read beyond this line.  */
597   saw_line = 0;
598   linemode = 1;
599   
600 #if USE_CPPLIB
601   if (cpp_token == CPP_VSPACE)
602     {
603       /* Format is "<space> <line number> <filename> <newline>".
604          Only the line number is interesting, and even that
605          we can get more efficiently than scanning the line.  */
606       yy_cur = yy_lim - 1;
607       lineno = parse_in.lineno - 1;
608       goto skipline;
609     }
610 #endif
611
612   token = yylex ();
613
614   if (token == IDENTIFIER)
615     {
616       /* If a letter follows, then if the word here is `line', skip
617          it and ignore it; otherwise, ignore the line, with an error
618          if the word isn't `pragma'.  */
619
620       const char *name = IDENTIFIER_POINTER (yylval.ttype);
621
622       if (!strcmp (name, "pragma"))
623         {
624           token = yylex ();
625           if (token != IDENTIFIER
626               || TREE_CODE (yylval.ttype) != IDENTIFIER_NODE)
627             goto skipline;
628
629 #ifdef HANDLE_PRAGMA
630           /* We invoke HANDLE_PRAGMA before HANDLE_GENERIC_PRAGMAS
631              (if both are defined), in order to give the back
632              end a chance to override the interpretation of
633              SYSV style pragmas.  */
634           if (HANDLE_PRAGMA (pragma_getc, pragma_ungetc,
635                              IDENTIFIER_POINTER (yylval.ttype)))
636             goto skipline;
637 #endif /* HANDLE_PRAGMA */
638               
639 #ifdef HANDLE_GENERIC_PRAGMAS
640           if (handle_generic_pragma (token))
641             goto skipline;
642 #endif /* HANDLE_GENERIC_PRAGMAS */
643
644           /* Issue a warning message if we have been asked to do so.
645              Ignoring unknown pragmas in system header file unless
646              an explcit -Wunknown-pragmas has been given. */
647           if (warn_unknown_pragmas > 1
648               || (warn_unknown_pragmas && ! in_system_header))
649             warning ("ignoring pragma: %s", token_buffer);
650
651           goto skipline;
652         }
653       else if (!strcmp (name, "define"))
654         {
655           debug_define (lineno, GET_DIRECTIVE_LINE ());
656           goto skipline;
657         }
658       else if (!strcmp (name, "undef"))
659         {
660           debug_undef (lineno, GET_DIRECTIVE_LINE ());
661           goto skipline;
662         }
663       else if (!strcmp (name, "line"))
664         {
665           saw_line = 1;
666           token = yylex ();
667           goto linenum;
668         }
669       else if (!strcmp (name, "ident"))
670         {
671           /* #ident.  The pedantic warning is now in cpp.  */
672
673           /* Here we have just seen `#ident '.
674              A string constant should follow.  */
675
676           token = yylex ();
677           if (token == END_OF_LINE)
678             goto skipline;
679           if (token != STRING
680               || TREE_CODE (yylval.ttype) != STRING_CST)
681             {
682               error ("invalid #ident");
683               goto skipline;
684             }
685
686           if (! flag_no_ident)
687             {
688 #ifdef ASM_OUTPUT_IDENT
689               ASM_OUTPUT_IDENT (asm_out_file,
690                                 TREE_STRING_POINTER (yylval.ttype));
691 #endif
692             }
693
694           /* Skip the rest of this line.  */
695           goto skipline;
696         }
697
698       error ("undefined or invalid # directive `%s'", name);
699       goto skipline;
700     }
701
702   /* If the # is the only nonwhite char on the line,
703      just ignore it.  Check the new newline.  */
704   if (token == END_OF_LINE)
705     goto skipline;
706
707 linenum:
708   /* Here we have either `#line' or `# <nonletter>'.
709      In either case, it should be a line number; a digit should follow.  */
710
711   if (token != CONSTANT
712       || TREE_CODE (yylval.ttype) != INTEGER_CST)
713     {
714       error ("invalid #-line");
715       goto skipline;
716     }
717
718   /* subtract one, because it is the following line that
719      gets the specified number */
720
721   l = TREE_INT_CST_LOW (yylval.ttype) - 1;
722
723   /* More follows: it must be a string constant (filename).
724      It would be neat to use cpplib to quickly process the string, but
725      (1) we don't have a handy tokenization of the string, and
726      (2) I don't know how well that would work in the presense
727      of filenames that contain wide characters.  */
728
729   if (saw_line)
730     {
731       /* Don't treat \ as special if we are processing #line 1 "...".
732          If you want it to be treated specially, use # 1 "...".  */
733       ignore_escape_flag = 1;
734     }
735
736   /* Read the string constant.  */
737   token = yylex ();
738
739   ignore_escape_flag = 0;
740
741   if (token == END_OF_LINE)
742     {
743       /* No more: store the line number and check following line.  */
744       lineno = l;
745       goto skipline;
746     }
747
748   if (token != STRING || TREE_CODE (yylval.ttype) != STRING_CST)
749     {
750       error ("invalid #line");
751       goto skipline;
752     }
753
754   input_filename = TREE_STRING_POINTER (yylval.ttype);
755
756   if (main_input_filename == 0)
757     main_input_filename = input_filename;
758
759   old_lineno = lineno;
760   action = act_none;
761   action_number = 0;
762   lineno = l;
763
764   /* Each change of file name
765      reinitializes whether we are now in a system header.  */
766   in_system_header = 0;
767
768   if (!read_line_number (&action_number))
769     {
770       /* Update the name in the top element of input_file_stack.  */
771       if (input_file_stack)
772         input_file_stack->name = input_filename;
773     }
774
775   /* `1' after file name means entering new file.
776      `2' after file name means just left a file.  */
777
778   if (action_number == 1)
779     {
780       action = act_push;
781       read_line_number (&action_number);
782     }
783   else if (action_number == 2)
784     {
785       action = act_pop;
786       read_line_number (&action_number);
787     }
788   if (action_number == 3)
789     {
790       /* `3' after file name means this is a system header file.  */
791       in_system_header = 1;
792       read_line_number (&action_number);
793     }
794
795   /* Do the actions implied by the preceding numbers.  */
796
797   if (action == act_push)
798     {
799       /* Pushing to a new file.  */
800       struct file_stack *p
801         = (struct file_stack *) xmalloc (sizeof (struct file_stack));
802       input_file_stack->line = old_lineno;
803       p->next = input_file_stack;
804       p->name = input_filename;
805       p->indent_level = indent_level;
806       input_file_stack = p;
807       input_file_stack_tick++;
808       debug_start_source_file (input_filename);
809     }
810   else if (action == act_pop)
811     {
812       /* Popping out of a file.  */
813       if (input_file_stack->next)
814         {
815           struct file_stack *p = input_file_stack;
816           if (indent_level != p->indent_level)
817             {
818               warning_with_file_and_line
819                 (p->name, old_lineno,
820                  "This file contains more `%c's than `%c's.",
821                  indent_level > p->indent_level ? '{' : '}',
822                  indent_level > p->indent_level ? '}' : '{');
823             }
824           input_file_stack = p->next;
825           free (p);
826           input_file_stack_tick++;
827           debug_end_source_file (input_file_stack->line);
828         }
829       else
830         error ("#-lines for entering and leaving files don't match");
831     }
832
833   /* Now that we've pushed or popped the input stack,
834      update the name in the top element.  */
835   if (input_file_stack)
836     input_file_stack->name = input_filename;
837
838   /* skip the rest of this line.  */
839  skipline:
840   linemode = 0;
841   end_of_file = 0;
842
843   do
844     c = GETC();
845   while (c != '\n' && c != EOF);
846   return c;
847 }
848 \f
849 #ifdef HANDLE_GENERIC_PRAGMAS
850
851 /* Handle a #pragma directive.
852    TOKEN is the token we read after `#pragma'.  Processes the entire input
853    line and return non-zero iff the pragma has been successfully parsed.  */
854
855 /* This function has to be in this file, in order to get at
856    the token types.  */
857
858 static int
859 handle_generic_pragma (token)
860      register int token;
861 {
862   for (;;)
863     {
864       switch (token)
865         {
866         case IDENTIFIER:
867         case TYPENAME:
868         case STRING:
869         case CONSTANT:
870           handle_pragma_token (token_buffer, yylval.ttype);
871           break;
872
873         case END_OF_LINE:
874           return handle_pragma_token (NULL_PTR, NULL_TREE);
875
876         default:
877           handle_pragma_token (token_buffer, NULL);
878         }
879
880       token = yylex ();
881     }
882 }
883
884 #endif /* HANDLE_GENERIC_PRAGMAS */
885 \f
886 #define ENDFILE -1  /* token that represents end-of-file */
887
888 /* Read an escape sequence, returning its equivalent as a character,
889    or store 1 in *ignore_ptr if it is backslash-newline.  */
890
891 static int
892 readescape (ignore_ptr)
893      int *ignore_ptr;
894 {
895   register int c = GETC();
896   register int code;
897   register unsigned count;
898   unsigned firstdig = 0;
899   int nonnull;
900
901   switch (c)
902     {
903     case 'x':
904       if (warn_traditional)
905         warning ("the meaning of `\\x' varies with -traditional");
906
907       if (flag_traditional)
908         return c;
909
910       code = 0;
911       count = 0;
912       nonnull = 0;
913       while (1)
914         {
915           c = GETC();
916           if (! ISXDIGIT (c))
917             {
918               UNGETC (c);
919               break;
920             }
921           code *= 16;
922           if (c >= 'a' && c <= 'f')
923             code += c - 'a' + 10;
924           if (c >= 'A' && c <= 'F')
925             code += c - 'A' + 10;
926           if (c >= '0' && c <= '9')
927             code += c - '0';
928           if (code != 0 || count != 0)
929             {
930               if (count == 0)
931                 firstdig = code;
932               count++;
933             }
934           nonnull = 1;
935         }
936       if (! nonnull)
937         {
938           warning ("\\x used with no following hex digits");
939           return 'x';
940         }
941       else if (count == 0)
942         /* Digits are all 0's.  Ok.  */
943         ;
944       else if ((count - 1) * 4 >= TYPE_PRECISION (integer_type_node)
945                || (count > 1
946                    && (((unsigned)1
947                         << (TYPE_PRECISION (integer_type_node)
948                             - (count - 1) * 4))
949                        <= firstdig)))
950         pedwarn ("hex escape out of range");
951       return code;
952
953     case '0':  case '1':  case '2':  case '3':  case '4':
954     case '5':  case '6':  case '7':
955       code = 0;
956       count = 0;
957       while ((c <= '7') && (c >= '0') && (count++ < 3))
958         {
959           code = (code * 8) + (c - '0');
960           c = GETC();
961         }
962       UNGETC (c);
963       return code;
964
965     case '\\': case '\'': case '"':
966       return c;
967
968     case '\n':
969       lineno++;
970       *ignore_ptr = 1;
971       return 0;
972
973     case 'n':
974       return TARGET_NEWLINE;
975
976     case 't':
977       return TARGET_TAB;
978
979     case 'r':
980       return TARGET_CR;
981
982     case 'f':
983       return TARGET_FF;
984
985     case 'b':
986       return TARGET_BS;
987
988     case 'a':
989       if (warn_traditional)
990         warning ("the meaning of `\\a' varies with -traditional");
991
992       if (flag_traditional)
993         return c;
994       return TARGET_BELL;
995
996     case 'v':
997 #if 0 /* Vertical tab is present in common usage compilers.  */
998       if (flag_traditional)
999         return c;
1000 #endif
1001       return TARGET_VT;
1002
1003     case 'e':
1004     case 'E':
1005       if (pedantic)
1006         pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c);
1007       return TARGET_ESC;
1008
1009     case '?':
1010       return c;
1011
1012       /* `\(', etc, are used at beginning of line to avoid confusing Emacs.  */
1013     case '(':
1014     case '{':
1015     case '[':
1016       /* `\%' is used to prevent SCCS from getting confused.  */
1017     case '%':
1018       if (pedantic)
1019         pedwarn ("unknown escape sequence `\\%c'", c);
1020       return c;
1021     }
1022   if (ISGRAPH (c))
1023     pedwarn ("unknown escape sequence `\\%c'", c);
1024   else
1025     pedwarn ("unknown escape sequence: `\\' followed by char code 0x%x", c);
1026   return c;
1027 }
1028 \f
1029 void
1030 yyerror (msgid)
1031      const char *msgid;
1032 {
1033   const char *string = _(msgid);
1034
1035   /* We can't print string and character constants well
1036      because the token_buffer contains the result of processing escapes.  */
1037   if (end_of_file)
1038     error ("%s at end of input", string);
1039   else if (token_buffer[0] == 0)
1040     error ("%s at null character", string);
1041   else if (token_buffer[0] == '"')
1042     error ("%s before string constant", string);
1043   else if (token_buffer[0] == '\'')
1044     error ("%s before character constant", string);
1045   else if (!ISGRAPH(token_buffer[0]))
1046     error ("%s before character 0%o", string, (unsigned char) token_buffer[0]);
1047   else
1048     error ("%s before `%s'", string, token_buffer);
1049 }
1050
1051 #if 0
1052
1053 struct try_type
1054 {
1055   tree *node_var;
1056   char unsigned_flag;
1057   char long_flag;
1058   char long_long_flag;
1059 };
1060
1061 struct try_type type_sequence[] =
1062 {
1063   { &integer_type_node, 0, 0, 0},
1064   { &unsigned_type_node, 1, 0, 0},
1065   { &long_integer_type_node, 0, 1, 0},
1066   { &long_unsigned_type_node, 1, 1, 0},
1067   { &long_long_integer_type_node, 0, 1, 1},
1068   { &long_long_unsigned_type_node, 1, 1, 1}
1069 };
1070 #endif /* 0 */
1071 \f
1072 struct pf_args
1073 {
1074   /* Input */
1075   int base;
1076   char * p;
1077   /* I/O */
1078   int c;
1079   /* Output */
1080   int imag;
1081   tree type;
1082   int conversion_errno;
1083   REAL_VALUE_TYPE value;
1084 };
1085  
1086 static void
1087 parse_float (data)
1088   PTR data;
1089 {
1090   struct pf_args * args = (struct pf_args *) data;
1091   int fflag = 0, lflag = 0;
1092   /* Copy token_buffer now, while it has just the number
1093      and not the suffixes; once we add `f' or `i',
1094      REAL_VALUE_ATOF may not work any more.  */
1095   char *copy = (char *) alloca (args->p - token_buffer + 1);
1096   bcopy (token_buffer, copy, args->p - token_buffer + 1);
1097   args->imag = 0;
1098   args->conversion_errno = 0;
1099   args->type = double_type_node;
1100
1101   while (1)
1102     {
1103       int lose = 0;
1104
1105       /* Read the suffixes to choose a data type.  */
1106       switch (args->c)
1107         {
1108         case 'f': case 'F':
1109           if (fflag)
1110             error ("more than one `f' in numeric constant");
1111           fflag = 1;
1112           break;
1113
1114         case 'l': case 'L':
1115           if (lflag)
1116             error ("more than one `l' in numeric constant");
1117           lflag = 1;
1118           break;
1119
1120         case 'i': case 'I':
1121           if (args->imag)
1122             error ("more than one `i' or `j' in numeric constant");
1123           else if (pedantic)
1124             pedwarn ("ANSI C forbids imaginary numeric constants");
1125           args->imag = 1;
1126           break;
1127
1128         default:
1129           lose = 1;
1130         }
1131
1132       if (lose)
1133         break;
1134
1135       if (args->p >= token_buffer + maxtoken - 3)
1136         args->p = extend_token_buffer (args->p);
1137       *(args->p++) = args->c;
1138       *(args->p) = 0;
1139       args->c = GETC();
1140     }
1141
1142   /* The second argument, machine_mode, of REAL_VALUE_ATOF
1143      tells the desired precision of the binary result
1144      of decimal-to-binary conversion.  */
1145
1146   if (fflag)
1147     {
1148       if (lflag)
1149         error ("both `f' and `l' in floating constant");
1150
1151       args->type = float_type_node;
1152       errno = 0;
1153       if (args->base == 16)
1154         args->value = REAL_VALUE_HTOF (copy, TYPE_MODE (args->type));
1155       else
1156         args->value = REAL_VALUE_ATOF (copy, TYPE_MODE (args->type));
1157       args->conversion_errno = errno;
1158       /* A diagnostic is required here by some ANSI C testsuites.
1159          This is not pedwarn, because some people don't want
1160          an error for this.  */
1161       if (REAL_VALUE_ISINF (args->value) && pedantic)
1162         warning ("floating point number exceeds range of `float'");
1163     }
1164   else if (lflag)
1165     {
1166       args->type = long_double_type_node;
1167       errno = 0;
1168       if (args->base == 16)
1169         args->value = REAL_VALUE_HTOF (copy, TYPE_MODE (args->type));
1170       else
1171         args->value = REAL_VALUE_ATOF (copy, TYPE_MODE (args->type));
1172       args->conversion_errno = errno;
1173       if (REAL_VALUE_ISINF (args->value) && pedantic)
1174         warning ("floating point number exceeds range of `long double'");
1175     }
1176   else
1177     {
1178       errno = 0;
1179       if (args->base == 16)
1180         args->value = REAL_VALUE_HTOF (copy, TYPE_MODE (args->type));
1181       else
1182         args->value = REAL_VALUE_ATOF (copy, TYPE_MODE (args->type));
1183       args->conversion_errno = errno;
1184       if (REAL_VALUE_ISINF (args->value) && pedantic)
1185         warning ("floating point number exceeds range of `double'");
1186     }
1187 }
1188  
1189 /* Get the next character, staying within the current token if possible.
1190    If we're lexing a token, we don't want to look beyond the end of the
1191    token cpplib has prepared for us; otherwise, we end up reading in the
1192    next token, which screws up feed_input.  So just return a null
1193    character.  */
1194
1195 static inline int token_getch PARAMS ((void));
1196
1197 static inline int
1198 token_getch ()
1199 {
1200 #if USE_CPPLIB
1201   if (yy_cur == yy_lim)
1202     return '\0';
1203 #endif
1204   return GETC ();
1205 }
1206
1207 static inline void token_put_back PARAMS ((int));
1208
1209 static inline void
1210 token_put_back (ch)
1211      int ch;
1212 {
1213 #if USE_CPPLIB
1214   if (ch == '\0')
1215     return;
1216 #endif
1217   UNGETC (ch);
1218 }
1219
1220 /* Read a single token from the input stream, and assign it lexical
1221    semantics.  */
1222
1223 int
1224 yylex ()
1225 {
1226   register int c;
1227   register char *p;
1228   register int value;
1229   int wide_flag = 0;
1230   int objc_flag = 0;
1231
1232   c = GETC();
1233
1234   /* Effectively do c = skip_white_space (c)
1235      but do it faster in the usual cases.  */
1236   while (1)
1237     switch (c)
1238       {
1239       case ' ':
1240       case '\t':
1241       case '\f':
1242       case '\v':
1243       case '\b':
1244 #if USE_CPPLIB
1245         if (cpp_token == CPP_HSPACE)
1246           c = yy_get_token ();
1247         else
1248 #endif
1249           c = GETC();
1250         break;
1251
1252       case '\r':
1253         /* Call skip_white_space so we can warn if appropriate.  */
1254
1255       case '\n':
1256       case '/':
1257       case '\\':
1258         c = skip_white_space (c);
1259       default:
1260         goto found_nonwhite;
1261       }
1262  found_nonwhite:
1263
1264   token_buffer[0] = c;
1265   token_buffer[1] = 0;
1266
1267 /*  yylloc.first_line = lineno; */
1268
1269   switch (c)
1270     {
1271     case EOF:
1272       end_of_file = 1;
1273       token_buffer[0] = 0;
1274       if (linemode)
1275         value = END_OF_LINE;
1276       else
1277         value = ENDFILE;
1278       break;
1279
1280     case 'L':
1281 #if USE_CPPLIB
1282       if (cpp_token == CPP_NAME)
1283         goto letter;
1284 #endif
1285       /* Capital L may start a wide-string or wide-character constant.  */
1286       {
1287         register int c = token_getch();
1288         if (c == '\'')
1289           {
1290             wide_flag = 1;
1291             goto char_constant;
1292           }
1293         if (c == '"')
1294           {
1295             wide_flag = 1;
1296             goto string_constant;
1297           }
1298         token_put_back (c);
1299       }
1300       goto letter;
1301
1302     case '@':
1303       if (!doing_objc_thang)
1304         {
1305           value = c;
1306           break;
1307         }
1308       else
1309         {
1310           /* '@' may start a constant string object.  */
1311           register int c = token_getch ();
1312           if (c == '"')
1313             {
1314               objc_flag = 1;
1315               goto string_constant;
1316             }
1317           token_put_back (c);
1318           /* Fall through to treat '@' as the start of an identifier.  */
1319         }
1320
1321     case 'A':  case 'B':  case 'C':  case 'D':  case 'E':
1322     case 'F':  case 'G':  case 'H':  case 'I':  case 'J':
1323     case 'K':             case 'M':  case 'N':  case 'O':
1324     case 'P':  case 'Q':  case 'R':  case 'S':  case 'T':
1325     case 'U':  case 'V':  case 'W':  case 'X':  case 'Y':
1326     case 'Z':
1327     case 'a':  case 'b':  case 'c':  case 'd':  case 'e':
1328     case 'f':  case 'g':  case 'h':  case 'i':  case 'j':
1329     case 'k':  case 'l':  case 'm':  case 'n':  case 'o':
1330     case 'p':  case 'q':  case 'r':  case 's':  case 't':
1331     case 'u':  case 'v':  case 'w':  case 'x':  case 'y':
1332     case 'z':
1333     case '_':
1334     case '$':
1335     letter:
1336 #if USE_CPPLIB
1337       if (cpp_token == CPP_NAME)
1338         {
1339           /* Note that one character has already been read from
1340              yy_cur into token_buffer.  Also, cpplib complains about
1341              $ in identifiers, so we don't have to.  */
1342
1343           int len = yy_lim - yy_cur + 1;
1344           if (len >= maxtoken)
1345             extend_token_buffer_to (len + 1);
1346           memcpy (token_buffer + 1, yy_cur, len);
1347           p = token_buffer + len;
1348           yy_cur = yy_lim;
1349         }
1350       else
1351 #endif
1352         {
1353           p = token_buffer;
1354           while (ISALNUM (c) || c == '_' || c == '$' || c == '@')
1355             {
1356               /* Make sure this char really belongs in an identifier.  */
1357               if (c == '$')
1358                 {
1359                   if (! dollars_in_ident)
1360                     error ("`$' in identifier");
1361                   else if (pedantic)
1362                     pedwarn ("`$' in identifier");
1363                 }
1364
1365               if (p >= token_buffer + maxtoken)
1366                 p = extend_token_buffer (p);
1367
1368               *p++ = c;
1369               c = token_getch();
1370             }
1371
1372           *p = 0;
1373           token_put_back (c);
1374         }
1375
1376       value = IDENTIFIER;
1377       yylval.itype = 0;
1378
1379       /* Try to recognize a keyword.  Uses minimum-perfect hash function */
1380
1381       {
1382         register struct resword *ptr;
1383
1384         if ((ptr = is_reserved_word (token_buffer, p - token_buffer)))
1385           {
1386             if (ptr->rid)
1387               yylval.ttype = ridpointers[(int) ptr->rid];
1388             value = (int) ptr->token;
1389
1390             /* Only return OBJECTNAME if it is a typedef.  */
1391             if (doing_objc_thang && value == OBJECTNAME)
1392               {
1393                 tree decl = lookup_name(yylval.ttype);
1394
1395                 if (decl == NULL_TREE
1396                     || TREE_CODE (decl) != TYPE_DECL)
1397                   value = IDENTIFIER;
1398               }
1399
1400             /* Even if we decided to recognize asm, still perhaps warn.  */
1401             if (pedantic
1402                 && (value == ASM_KEYWORD || value == TYPEOF
1403                     || ptr->rid == RID_INLINE)
1404                 && token_buffer[0] != '_')
1405               pedwarn ("ANSI does not permit the keyword `%s'",
1406                        token_buffer);
1407           }
1408       }
1409
1410       /* If we did not find a keyword, look for an identifier
1411          (or a typename).  */
1412
1413       if (value == IDENTIFIER)
1414         {
1415           tree decl;
1416
1417           if (token_buffer[0] == '@')
1418             error("invalid identifier `%s'", token_buffer);
1419
1420           yylval.ttype = get_identifier (token_buffer);
1421           decl = lookup_name (yylval.ttype);
1422
1423           if (decl != 0 && TREE_CODE (decl) == TYPE_DECL)
1424             value = TYPENAME;
1425           /* A user-invisible read-only initialized variable
1426              should be replaced by its value.
1427              We handle only strings since that's the only case used in C.  */
1428           else if (decl != 0 && TREE_CODE (decl) == VAR_DECL
1429                    && DECL_IGNORED_P (decl)
1430                    && TREE_READONLY (decl)
1431                    && DECL_INITIAL (decl) != 0
1432                    && TREE_CODE (DECL_INITIAL (decl)) == STRING_CST)
1433             {
1434               tree stringval = DECL_INITIAL (decl);
1435
1436               /* Copy the string value so that we won't clobber anything
1437                  if we put something in the TREE_CHAIN of this one.  */
1438               yylval.ttype = build_string (TREE_STRING_LENGTH (stringval),
1439                                            TREE_STRING_POINTER (stringval));
1440               value = STRING;
1441             }
1442           else if (doing_objc_thang)
1443             {
1444               tree objc_interface_decl = is_class_name (yylval.ttype);
1445
1446               if (objc_interface_decl)
1447                 {
1448                   value = CLASSNAME;
1449                   yylval.ttype = objc_interface_decl;
1450                 }
1451             }
1452         }
1453
1454       break;
1455
1456     case '.':
1457 #if USE_CPPLIB
1458       if (yy_cur < yy_lim)
1459 #endif
1460         {
1461           /* It's hard to preserve tokenization on '.' because
1462              it could be a symbol by itself, or it could be the
1463              start of a floating point number and cpp won't tell us.  */
1464           register int c1 = token_getch ();
1465           token_buffer[1] = c1;
1466           if (c1 == '.')
1467             {
1468               c1 = token_getch ();
1469               if (c1 == '.')
1470                 {
1471                   token_buffer[2] = c1;
1472                   token_buffer[3] = 0;
1473                   value = ELLIPSIS;
1474                   goto done;
1475                 }
1476               error ("parse error at `..'");
1477             }
1478           if (ISDIGIT (c1))
1479             {
1480               token_put_back (c1);
1481               goto number;
1482             }
1483           token_put_back (c1);
1484         }
1485       value = '.';
1486       token_buffer[1] = 0;
1487       break;
1488
1489     case '0':  case '1':
1490       /* Optimize for most frequent case.  */
1491       {
1492         register int cond;
1493
1494 #if USE_CPPLIB
1495         cond = (yy_cur == yy_lim);
1496 #else
1497         register int c1 = token_getch ();
1498         token_put_back (c1);
1499         cond = (! ISALNUM (c1) && c1 != '.');
1500 #endif
1501         if (cond)
1502           {
1503             yylval.ttype = (c == '0') ? integer_zero_node : integer_one_node;
1504             value = CONSTANT;
1505             break;
1506           }
1507         /*FALLTHRU*/
1508       }
1509     case '2':  case '3':  case '4':
1510     case '5':  case '6':  case '7':  case '8':  case '9':
1511     number:
1512       {
1513         int base = 10;
1514         int count = 0;
1515         int largest_digit = 0;
1516         int numdigits = 0;
1517         int overflow = 0;
1518
1519         /* We actually store only HOST_BITS_PER_CHAR bits in each part.
1520            The code below which fills the parts array assumes that a host
1521            int is at least twice as wide as a host char, and that 
1522            HOST_BITS_PER_WIDE_INT is an even multiple of HOST_BITS_PER_CHAR.
1523            Two HOST_WIDE_INTs is the largest int literal we can store.
1524            In order to detect overflow below, the number of parts (TOTAL_PARTS)
1525            must be exactly the number of parts needed to hold the bits
1526            of two HOST_WIDE_INTs. */
1527 #define TOTAL_PARTS ((HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR) * 2)
1528         unsigned int parts[TOTAL_PARTS];
1529
1530         enum anon1 { NOT_FLOAT, AFTER_POINT, TOO_MANY_POINTS, AFTER_EXPON}
1531           floatflag = NOT_FLOAT;
1532
1533         for (count = 0; count < TOTAL_PARTS; count++)
1534           parts[count] = 0;
1535
1536         p = token_buffer;
1537         *p++ = c;
1538
1539         if (c == '0')
1540           {
1541             *p++ = (c = token_getch());
1542             if ((c == 'x') || (c == 'X'))
1543               {
1544                 base = 16;
1545                 *p++ = (c = token_getch());
1546               }
1547             /* Leading 0 forces octal unless the 0 is the only digit.  */
1548             else if (c >= '0' && c <= '9')
1549               {
1550                 base = 8;
1551                 numdigits++;
1552               }
1553             else
1554               numdigits++;
1555           }
1556
1557         /* Read all the digits-and-decimal-points.  */
1558
1559         while (c == '.'
1560                || (ISALNUM (c) && c != 'l' && c != 'L'
1561                    && c != 'u' && c != 'U'
1562                    && c != 'i' && c != 'I' && c != 'j' && c != 'J'
1563                    && (floatflag == NOT_FLOAT
1564                        || ((base != 16) && (c != 'f') && (c != 'F'))
1565                        || base == 16)))   
1566           {
1567             if (c == '.')
1568               {
1569                 if (base == 16 && pedantic)
1570                   pedwarn ("floating constant may not be in radix 16");
1571                 if (floatflag == TOO_MANY_POINTS)
1572                   /* We have already emitted an error.  Don't need another.  */
1573                   ;
1574                 else if (floatflag == AFTER_POINT || floatflag == AFTER_EXPON)
1575                   {
1576                     error ("malformed floating constant");
1577                     floatflag = TOO_MANY_POINTS;
1578                     /* Avoid another error from atof by forcing all characters
1579                        from here on to be ignored.  */
1580                     p[-1] = '\0';
1581                   }
1582                 else
1583                   floatflag = AFTER_POINT;
1584
1585                 if (base == 8)
1586                   base = 10;
1587                 *p++ = c = token_getch();
1588                 /* Accept '.' as the start of a floating-point number
1589                    only when it is followed by a digit.  */
1590                 if (p == token_buffer + 2 && !ISDIGIT (c))
1591                   abort ();
1592               }
1593             else
1594               {
1595                 /* It is not a decimal point.
1596                    It should be a digit (perhaps a hex digit).  */
1597
1598                 if (ISDIGIT (c))
1599                   {
1600                     c = c - '0';
1601                   }
1602                 else if (base <= 10)
1603                   {
1604                     if (c == 'e' || c == 'E')
1605                       {
1606                         base = 10;
1607                         floatflag = AFTER_EXPON;
1608                         break;   /* start of exponent */
1609                       }
1610                     error ("nondigits in number and not hexadecimal");
1611                     c = 0;
1612                   }
1613                 else if (base == 16 && (c == 'p' || c == 'P'))
1614                   {
1615                     floatflag = AFTER_EXPON;
1616                     break;   /* start of exponent */
1617                   }
1618                 else if (c >= 'a' && c <= 'f')
1619                   {
1620                     c = c - 'a' + 10;
1621                   }
1622                 else
1623                   {
1624                     c = c - 'A' + 10;
1625                   }
1626                 if (c >= largest_digit)
1627                   largest_digit = c;
1628                 numdigits++;
1629
1630                 for (count = 0; count < TOTAL_PARTS; count++)
1631                   {
1632                     parts[count] *= base;
1633                     if (count)
1634                       {
1635                         parts[count]
1636                           += (parts[count-1] >> HOST_BITS_PER_CHAR);
1637                         parts[count-1]
1638                           &= (1 << HOST_BITS_PER_CHAR) - 1;
1639                       }
1640                     else
1641                       parts[0] += c;
1642                   }
1643
1644                 /* If the highest-order part overflows (gets larger than
1645                    a host char will hold) then the whole number has 
1646                    overflowed.  Record this and truncate the highest-order
1647                    part. */
1648                 if (parts[TOTAL_PARTS - 1] >> HOST_BITS_PER_CHAR)
1649                   {
1650                     overflow = 1;
1651                     parts[TOTAL_PARTS - 1] &= (1 << HOST_BITS_PER_CHAR) - 1;
1652                   }
1653
1654                 if (p >= token_buffer + maxtoken - 3)
1655                   p = extend_token_buffer (p);
1656                 *p++ = (c = token_getch());
1657               }
1658           }
1659
1660         /* This can happen on input like `int i = 0x;' */
1661         if (numdigits == 0)
1662           error ("numeric constant with no digits");
1663
1664         if (largest_digit >= base)
1665           error ("numeric constant contains digits beyond the radix");
1666
1667         /* Remove terminating char from the token buffer and delimit the
1668            string.  */
1669         *--p = 0;
1670
1671         if (floatflag != NOT_FLOAT)
1672           {
1673             tree type;
1674             int imag, conversion_errno;
1675             REAL_VALUE_TYPE value;
1676             struct pf_args args;
1677
1678             /* Read explicit exponent if any, and put it in tokenbuf.  */
1679
1680             if ((base == 10 && ((c == 'e') || (c == 'E')))
1681                 || (base == 16 && (c == 'p' || c == 'P')))
1682               {
1683                 if (p >= token_buffer + maxtoken - 3)
1684                   p = extend_token_buffer (p);
1685                 *p++ = c;
1686                 c = token_getch();
1687                 if ((c == '+') || (c == '-'))
1688                   {
1689                     *p++ = c;
1690                     c = token_getch();
1691                   }
1692                 /* Exponent is decimal, even if string is a hex float.  */
1693                 if (! ISDIGIT (c))
1694                   error ("floating constant exponent has no digits");
1695                 while (ISDIGIT (c))
1696                   {
1697                     if (p >= token_buffer + maxtoken - 3)
1698                       p = extend_token_buffer (p);
1699                     *p++ = c;
1700                     c = token_getch ();
1701                   }
1702               }
1703             if (base == 16 && floatflag != AFTER_EXPON)
1704               error ("hexadecimal floating constant has no exponent");
1705
1706             *p = 0;
1707
1708             /* Setup input for parse_float() */
1709             args.base = base;
1710             args.p = p;
1711             args.c = c;
1712
1713             /* Convert string to a double, checking for overflow.  */
1714             if (do_float_handler (parse_float, (PTR) &args))
1715               {
1716                 /* Receive output from parse_float() */
1717                 value = args.value;
1718               }
1719             else
1720               {
1721                 /* We got an exception from parse_float() */
1722                 error ("floating constant out of range");
1723                 value = dconst0;
1724               }
1725
1726             /* Receive output from parse_float() */
1727             c = args.c;
1728             imag = args.imag;
1729             type = args.type;
1730             conversion_errno = args.conversion_errno;
1731             
1732 #ifdef ERANGE
1733             /* ERANGE is also reported for underflow,
1734                so test the value to distinguish overflow from that.  */
1735             if (conversion_errno == ERANGE && !flag_traditional && pedantic
1736                 && (REAL_VALUES_LESS (dconst1, value)
1737                     || REAL_VALUES_LESS (value, dconstm1)))
1738               warning ("floating point number exceeds range of `double'");
1739 #endif
1740
1741             /* If the result is not a number, assume it must have been
1742                due to some error message above, so silently convert
1743                it to a zero.  */
1744             if (REAL_VALUE_ISNAN (value))
1745               value = dconst0;
1746
1747             /* Create a node with determined type and value.  */
1748             if (imag)
1749               yylval.ttype = build_complex (NULL_TREE,
1750                                             convert (type, integer_zero_node),
1751                                             build_real (type, value));
1752             else
1753               yylval.ttype = build_real (type, value);
1754           }
1755         else
1756           {
1757             tree traditional_type, ansi_type, type;
1758             HOST_WIDE_INT high, low;
1759             int spec_unsigned = 0;
1760             int spec_long = 0;
1761             int spec_long_long = 0;
1762             int spec_imag = 0;
1763             int warn = 0, i;
1764
1765             traditional_type = ansi_type = type = NULL_TREE;
1766             while (1)
1767               {
1768                 if (c == 'u' || c == 'U')
1769                   {
1770                     if (spec_unsigned)
1771                       error ("two `u's in integer constant");
1772                     spec_unsigned = 1;
1773                   }
1774                 else if (c == 'l' || c == 'L')
1775                   {
1776                     if (spec_long)
1777                       {
1778                         if (spec_long_long)
1779                           error ("three `l's in integer constant");
1780                         else if (pedantic && ! flag_isoc99
1781                                  && ! in_system_header && warn_long_long)
1782                           pedwarn ("ANSI C forbids long long integer constants");
1783                         spec_long_long = 1;
1784                       }
1785                     spec_long = 1;
1786                   }
1787                 else if (c == 'i' || c == 'j' || c == 'I' || c == 'J')
1788                   {
1789                     if (spec_imag)
1790                       error ("more than one `i' or `j' in numeric constant");
1791                     else if (pedantic)
1792                       pedwarn ("ANSI C forbids imaginary numeric constants");
1793                     spec_imag = 1;
1794                   }
1795                 else
1796                   break;
1797                 if (p >= token_buffer + maxtoken - 3)
1798                   p = extend_token_buffer (p);
1799                 *p++ = c;
1800                 c = token_getch();
1801               }
1802
1803             /* If the literal overflowed, pedwarn about it now. */
1804             if (overflow)
1805               {
1806                 warn = 1;
1807                 pedwarn ("integer constant is too large for this configuration of the compiler - truncated to %d bits", HOST_BITS_PER_WIDE_INT * 2);
1808               }
1809
1810             /* This is simplified by the fact that our constant
1811                is always positive.  */
1812
1813             high = low = 0;
1814
1815             for (i = 0; i < HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR; i++)
1816               {
1817                 high |= ((HOST_WIDE_INT) parts[i + (HOST_BITS_PER_WIDE_INT
1818                                                     / HOST_BITS_PER_CHAR)]
1819                          << (i * HOST_BITS_PER_CHAR));
1820                 low |= (HOST_WIDE_INT) parts[i] << (i * HOST_BITS_PER_CHAR);
1821               }
1822
1823             yylval.ttype = build_int_2 (low, high);
1824             TREE_TYPE (yylval.ttype) = long_long_unsigned_type_node;
1825
1826             /* If warn_traditional, calculate both the ANSI type and the
1827                traditional type, then see if they disagree.
1828                Otherwise, calculate only the type for the dialect in use.  */
1829             if (warn_traditional || flag_traditional)
1830               {
1831                 /* Calculate the traditional type.  */
1832                 /* Traditionally, any constant is signed;
1833                    but if unsigned is specified explicitly, obey that.
1834                    Use the smallest size with the right number of bits,
1835                    except for one special case with decimal constants.  */
1836                 if (! spec_long && base != 10
1837                     && int_fits_type_p (yylval.ttype, unsigned_type_node))
1838                   traditional_type = (spec_unsigned ? unsigned_type_node
1839                                       : integer_type_node);
1840                 /* A decimal constant must be long
1841                    if it does not fit in type int.
1842                    I think this is independent of whether
1843                    the constant is signed.  */
1844                 else if (! spec_long && base == 10
1845                          && int_fits_type_p (yylval.ttype, integer_type_node))
1846                   traditional_type = (spec_unsigned ? unsigned_type_node
1847                                       : integer_type_node);
1848                 else if (! spec_long_long)
1849                   traditional_type = (spec_unsigned ? long_unsigned_type_node
1850                                       : long_integer_type_node);
1851                 else if (int_fits_type_p (yylval.ttype,
1852                                           spec_unsigned 
1853                                           ? long_long_unsigned_type_node
1854                                           : long_long_integer_type_node)) 
1855                   traditional_type = (spec_unsigned
1856                                       ? long_long_unsigned_type_node
1857                                       : long_long_integer_type_node);
1858                 else
1859                   traditional_type = (spec_unsigned
1860                                       ? widest_unsigned_literal_type_node
1861                                       : widest_integer_literal_type_node);
1862               }
1863             if (warn_traditional || ! flag_traditional)
1864               {
1865                 /* Calculate the ANSI type.  */
1866                 if (! spec_long && ! spec_unsigned
1867                     && int_fits_type_p (yylval.ttype, integer_type_node))
1868                   ansi_type = integer_type_node;
1869                 else if (! spec_long && (base != 10 || spec_unsigned)
1870                          && int_fits_type_p (yylval.ttype, unsigned_type_node))
1871                   ansi_type = unsigned_type_node;
1872                 else if (! spec_unsigned && !spec_long_long
1873                          && int_fits_type_p (yylval.ttype, long_integer_type_node))
1874                   ansi_type = long_integer_type_node;
1875                 else if (! spec_long_long
1876                          && int_fits_type_p (yylval.ttype,
1877                                              long_unsigned_type_node))
1878                   ansi_type = long_unsigned_type_node;
1879                 else if (! spec_unsigned
1880                          && int_fits_type_p (yylval.ttype,
1881                                              long_long_integer_type_node))
1882                   ansi_type = long_long_integer_type_node;
1883                 else if (int_fits_type_p (yylval.ttype,
1884                                           long_long_unsigned_type_node))
1885                   ansi_type = long_long_unsigned_type_node;
1886                 else if (! spec_unsigned
1887                          && int_fits_type_p (yylval.ttype,
1888                                              widest_integer_literal_type_node))
1889                   ansi_type = widest_integer_literal_type_node;
1890                 else
1891                   ansi_type = widest_unsigned_literal_type_node;
1892               }
1893
1894             type = flag_traditional ? traditional_type : ansi_type;
1895
1896             /* We assume that constants specified in a non-decimal
1897                base are bit patterns, and that the programmer really
1898                meant what they wrote.  */
1899             if (warn_traditional && base == 10
1900                 && traditional_type != ansi_type)
1901               {
1902                 if (TYPE_PRECISION (traditional_type)
1903                     != TYPE_PRECISION (ansi_type))
1904                   warning ("width of integer constant changes with -traditional");
1905                 else if (TREE_UNSIGNED (traditional_type)
1906                          != TREE_UNSIGNED (ansi_type))
1907                   warning ("integer constant is unsigned in ANSI C, signed with -traditional");
1908                 else
1909                   warning ("width of integer constant may change on other systems with -traditional");
1910               }
1911
1912             if (pedantic && !flag_traditional && !spec_long_long && !warn
1913                 && (TYPE_PRECISION (long_integer_type_node)
1914                     < TYPE_PRECISION (type)))
1915               {
1916                 warn = 1;
1917                 pedwarn ("integer constant larger than the maximum value of an unsigned long int");
1918               }
1919
1920             if (base == 10 && ! spec_unsigned && TREE_UNSIGNED (type))
1921               warning ("decimal constant is so large that it is unsigned");
1922
1923             if (spec_imag)
1924               {
1925                 if (TYPE_PRECISION (type)
1926                     <= TYPE_PRECISION (integer_type_node))
1927                   yylval.ttype
1928                     = build_complex (NULL_TREE, integer_zero_node,
1929                                      convert (integer_type_node,
1930                                               yylval.ttype));
1931                 else
1932                   error ("complex integer constant is too wide for `complex int'");
1933               }
1934             else if (flag_traditional && !int_fits_type_p (yylval.ttype, type))
1935               /* The traditional constant 0x80000000 is signed
1936                  but doesn't fit in the range of int.
1937                  This will change it to -0x80000000, which does fit.  */
1938               {
1939                 TREE_TYPE (yylval.ttype) = unsigned_type (type);
1940                 yylval.ttype = convert (type, yylval.ttype);
1941                 TREE_OVERFLOW (yylval.ttype)
1942                   = TREE_CONSTANT_OVERFLOW (yylval.ttype) = 0;
1943               }
1944             else
1945               TREE_TYPE (yylval.ttype) = type;
1946
1947
1948             /* If it's still an integer (not a complex), and it doesn't
1949                fit in the type we choose for it, then pedwarn. */
1950
1951             if (! warn
1952                 && TREE_CODE (TREE_TYPE (yylval.ttype)) == INTEGER_TYPE
1953                 && ! int_fits_type_p (yylval.ttype, TREE_TYPE (yylval.ttype)))
1954               pedwarn ("integer constant is larger than the maximum value for its type");
1955           }
1956
1957         token_put_back (c);
1958         *p = 0;
1959
1960         if (ISALNUM (c) || c == '.' || c == '_' || c == '$'
1961             || (!flag_traditional && (c == '-' || c == '+')
1962                 && (p[-1] == 'e' || p[-1] == 'E')))
1963           error ("missing white space after number `%s'", token_buffer);
1964
1965         value = CONSTANT; break;
1966       }
1967
1968     case '\'':
1969     char_constant:
1970       {
1971         register int result = 0;
1972         register int num_chars = 0;
1973         int chars_seen = 0;
1974         unsigned width = TYPE_PRECISION (char_type_node);
1975         int max_chars;
1976 #ifdef MULTIBYTE_CHARS
1977         int longest_char = local_mb_cur_max ();
1978         (void) local_mbtowc (NULL_PTR, NULL_PTR, 0);
1979 #endif
1980
1981         max_chars = TYPE_PRECISION (integer_type_node) / width;
1982         if (wide_flag)
1983           width = WCHAR_TYPE_SIZE;
1984
1985         while (1)
1986           {
1987           tryagain:
1988             c = token_getch();
1989
1990             if (c == '\'' || c == EOF)
1991               break;
1992
1993             ++chars_seen;
1994             if (c == '\\')
1995               {
1996                 int ignore = 0;
1997                 c = readescape (&ignore);
1998                 if (ignore)
1999                   goto tryagain;
2000                 if (width < HOST_BITS_PER_INT
2001                     && (unsigned) c >= ((unsigned)1 << width))
2002                   pedwarn ("escape sequence out of range for character");
2003 #ifdef MAP_CHARACTER
2004                 if (ISPRINT (c))
2005                   c = MAP_CHARACTER (c);
2006 #endif
2007               }
2008             else if (c == '\n')
2009               {
2010                 if (pedantic)
2011                   pedwarn ("ANSI C forbids newline in character constant");
2012                 lineno++;
2013               }
2014             else
2015               {
2016 #ifdef MULTIBYTE_CHARS
2017                 wchar_t wc;
2018                 int i;
2019                 int char_len = -1;
2020                 for (i = 1; i <= longest_char; ++i)
2021                   {
2022                     if (i > maxtoken - 4)
2023                       extend_token_buffer (token_buffer);
2024
2025                     token_buffer[i] = c;
2026                     char_len = local_mbtowc (& wc,
2027                                              token_buffer + 1,
2028                                              i);
2029                     if (char_len != -1)
2030                       break;
2031                     c = token_getch ();
2032                   }
2033                 if (char_len > 1)
2034                   {
2035                     /* mbtowc sometimes needs an extra char before accepting */
2036                     if (char_len < i)
2037                       token_put_back (c);
2038                     if (! wide_flag)
2039                       {
2040                         /* Merge character into result; ignore excess chars.  */
2041                         for (i = 1; i <= char_len; ++i)
2042                           {
2043                             if (i > max_chars)
2044                               break;
2045                             if (width < HOST_BITS_PER_INT)
2046                               result = (result << width)
2047                                 | (token_buffer[i]
2048                                    & ((1 << width) - 1));
2049                             else
2050                               result = token_buffer[i];
2051                           }
2052                         num_chars += char_len;
2053                         goto tryagain;
2054                       }
2055                     c = wc;
2056                   }
2057                 else
2058                   {
2059                     if (char_len == -1)
2060                       {
2061                         warning ("Ignoring invalid multibyte character");
2062                         /* Replace all but the first byte.  */
2063                         for (--i; i > 1; --i)
2064                           token_put_back (token_buffer[i]);
2065                         wc = token_buffer[1];
2066                       }
2067 #ifdef MAP_CHARACTER
2068                       c = MAP_CHARACTER (wc);
2069 #else
2070                       c = wc;
2071 #endif
2072                   }
2073 #else /* ! MULTIBYTE_CHARS */
2074 #ifdef MAP_CHARACTER
2075                 c = MAP_CHARACTER (c);
2076 #endif
2077 #endif /* ! MULTIBYTE_CHARS */
2078               }
2079
2080             if (wide_flag)
2081               {
2082                 if (chars_seen == 1) /* only keep the first one */
2083                   result = c;
2084                 goto tryagain;
2085               }
2086
2087             /* Merge character into result; ignore excess chars.  */
2088             num_chars += (width / TYPE_PRECISION (char_type_node));
2089             if (num_chars < max_chars + 1)
2090               {
2091                 if (width < HOST_BITS_PER_INT)
2092                   result = (result << width) | (c & ((1 << width) - 1));
2093                 else
2094                   result = c;
2095               }
2096           }
2097
2098         if (c != '\'')
2099           error ("malformed character constant");
2100         else if (chars_seen == 0)
2101           error ("empty character constant");
2102         else if (num_chars > max_chars)
2103           {
2104             num_chars = max_chars;
2105             error ("character constant too long");
2106           }
2107         else if (chars_seen != 1 && ! flag_traditional && warn_multichar)
2108           warning ("multi-character character constant");
2109
2110         /* If char type is signed, sign-extend the constant.  */
2111         if (! wide_flag)
2112           {
2113             int num_bits = num_chars * width;
2114             if (num_bits == 0)
2115               /* We already got an error; avoid invalid shift.  */
2116               yylval.ttype = build_int_2 (0, 0);
2117             else if (TREE_UNSIGNED (char_type_node)
2118                      || ((result >> (num_bits - 1)) & 1) == 0)
2119               yylval.ttype
2120                 = build_int_2 (result & (~(unsigned HOST_WIDE_INT) 0
2121                                          >> (HOST_BITS_PER_WIDE_INT - num_bits)),
2122                                0);
2123             else
2124               yylval.ttype
2125                 = build_int_2 (result | ~(~(unsigned HOST_WIDE_INT) 0
2126                                           >> (HOST_BITS_PER_WIDE_INT - num_bits)),
2127                                -1);
2128             TREE_TYPE (yylval.ttype) = integer_type_node;
2129           }
2130         else
2131           {
2132             yylval.ttype = build_int_2 (result, 0);
2133             TREE_TYPE (yylval.ttype) = wchar_type_node;
2134           }
2135
2136         value = CONSTANT;
2137         break;
2138       }
2139
2140     case '"':
2141     string_constant:
2142       {
2143         unsigned width = wide_flag ? WCHAR_TYPE_SIZE
2144                                    : TYPE_PRECISION (char_type_node);
2145 #ifdef MULTIBYTE_CHARS
2146         int longest_char = local_mb_cur_max ();
2147         (void) local_mbtowc (NULL_PTR, NULL_PTR, 0);
2148 #endif
2149         c = token_getch ();
2150         p = token_buffer + 1;
2151
2152         while (c != '"' && c != EOF)
2153           {
2154             /* ignore_escape_flag is set for reading the filename in #line.  */
2155             if (!ignore_escape_flag && c == '\\')
2156               {
2157                 int ignore = 0;
2158                 c = readescape (&ignore);
2159                 if (ignore)
2160                   goto skipnewline;
2161                 if (width < HOST_BITS_PER_INT
2162                     && (unsigned) c >= ((unsigned)1 << width))
2163                   pedwarn ("escape sequence out of range for character");
2164               }
2165             else if (c == '\n')
2166               {
2167                 if (pedantic)
2168                   pedwarn ("ANSI C forbids newline in string constant");
2169                 lineno++;
2170               }
2171             else
2172               {
2173 #ifdef MULTIBYTE_CHARS
2174                 wchar_t wc;
2175                 int i;
2176                 int char_len = -1;
2177                 for (i = 0; i < longest_char; ++i)
2178                   {
2179                     if (p + i >= token_buffer + maxtoken)
2180                       p = extend_token_buffer (p);
2181                     p[i] = c;
2182
2183                     char_len = local_mbtowc (& wc, p, i + 1);
2184                     if (char_len != -1)
2185                       break;
2186                     c = token_getch ();
2187                   }
2188                 if (char_len == -1)
2189                   {
2190                     warning ("Ignoring invalid multibyte character");
2191                     /* Replace all except the first byte.  */
2192                     token_put_back (c);
2193                     for (--i; i > 0; --i)
2194                       token_put_back (p[i]);
2195                     char_len = 1;
2196                   }
2197                 /* mbtowc sometimes needs an extra char before accepting */
2198                 if (char_len <= i)
2199                   token_put_back (c);
2200                 if (! wide_flag)
2201                   {
2202                     p += (i + 1);
2203                     c = token_getch ();
2204                     continue;
2205                   }
2206                 c = wc;
2207 #endif /* MULTIBYTE_CHARS */
2208               }
2209
2210             /* Add this single character into the buffer either as a wchar_t
2211                or as a single byte.  */
2212             if (wide_flag)
2213               {
2214                 unsigned width = TYPE_PRECISION (char_type_node);
2215                 unsigned bytemask = (1 << width) - 1;
2216                 int byte;
2217
2218                 if (p + WCHAR_BYTES > token_buffer + maxtoken)
2219                   p = extend_token_buffer (p);
2220
2221                 for (byte = 0; byte < WCHAR_BYTES; ++byte)
2222                   {
2223                     int value;
2224                     if (byte >= (int) sizeof (c))
2225                       value = 0;
2226                     else
2227                       value = (c >> (byte * width)) & bytemask;
2228                     if (BYTES_BIG_ENDIAN)
2229                       p[WCHAR_BYTES - byte - 1] = value;
2230                     else
2231                       p[byte] = value;
2232                   }
2233                 p += WCHAR_BYTES;
2234               }
2235             else
2236               {
2237                 if (p >= token_buffer + maxtoken)
2238                   p = extend_token_buffer (p);
2239                 *p++ = c;
2240               }
2241
2242           skipnewline:
2243             c = token_getch ();
2244           }
2245
2246         /* Terminate the string value, either with a single byte zero
2247            or with a wide zero.  */
2248         if (wide_flag)
2249           {
2250             if (p + WCHAR_BYTES > token_buffer + maxtoken)
2251               p = extend_token_buffer (p);
2252             bzero (p, WCHAR_BYTES);
2253             p += WCHAR_BYTES;
2254           }
2255         else
2256           {
2257             if (p >= token_buffer + maxtoken)
2258               p = extend_token_buffer (p);
2259             *p++ = 0;
2260           }
2261
2262         if (c == EOF)
2263           error ("Unterminated string constant");
2264
2265         /* We have read the entire constant.
2266            Construct a STRING_CST for the result.  */
2267
2268         if (wide_flag)
2269           {
2270             yylval.ttype = build_string (p - (token_buffer + 1),
2271                                          token_buffer + 1);
2272             TREE_TYPE (yylval.ttype) = wchar_array_type_node;
2273             value = STRING;
2274           }
2275         else if (objc_flag)
2276           {
2277             /* Return an Objective-C @"..." constant string object.  */
2278             yylval.ttype = build_objc_string (p - (token_buffer + 1),
2279                                               token_buffer + 1);
2280             TREE_TYPE (yylval.ttype) = char_array_type_node;
2281             value = OBJC_STRING;
2282           }
2283         else
2284           {
2285             yylval.ttype = build_string (p - (token_buffer + 1),
2286                                          token_buffer + 1);
2287             TREE_TYPE (yylval.ttype) = char_array_type_node;
2288             value = STRING;
2289           }
2290
2291         break;
2292       }
2293
2294     case '+':
2295     case '-':
2296     case '&':
2297     case '|':
2298     case ':':
2299     case '<':
2300     case '>':
2301     case '*':
2302     case '/':
2303     case '%':
2304     case '^':
2305     case '!':
2306     case '=':
2307       {
2308         register int c1;
2309
2310       combine:
2311
2312         switch (c)
2313           {
2314           case '+':
2315             yylval.code = PLUS_EXPR; break;
2316           case '-':
2317             yylval.code = MINUS_EXPR; break;
2318           case '&':
2319             yylval.code = BIT_AND_EXPR; break;
2320           case '|':
2321             yylval.code = BIT_IOR_EXPR; break;
2322           case '*':
2323             yylval.code = MULT_EXPR; break;
2324           case '/':
2325             yylval.code = TRUNC_DIV_EXPR; break;
2326           case '%':
2327             yylval.code = TRUNC_MOD_EXPR; break;
2328           case '^':
2329             yylval.code = BIT_XOR_EXPR; break;
2330           case LSHIFT:
2331             yylval.code = LSHIFT_EXPR; break;
2332           case RSHIFT:
2333             yylval.code = RSHIFT_EXPR; break;
2334           case '<':
2335             yylval.code = LT_EXPR; break;
2336           case '>':
2337             yylval.code = GT_EXPR; break;
2338           }
2339
2340         token_buffer[1] = c1 = token_getch();
2341         token_buffer[2] = 0;
2342
2343         if (c1 == '=')
2344           {
2345             switch (c)
2346               {
2347               case '<':
2348                 value = ARITHCOMPARE; yylval.code = LE_EXPR; goto done;
2349               case '>':
2350                 value = ARITHCOMPARE; yylval.code = GE_EXPR; goto done;
2351               case '!':
2352                 value = EQCOMPARE; yylval.code = NE_EXPR; goto done;
2353               case '=':
2354                 value = EQCOMPARE; yylval.code = EQ_EXPR; goto done;
2355               }
2356             value = ASSIGN; goto done;
2357           }
2358         else if (c == c1)
2359           switch (c)
2360             {
2361             case '+':
2362               value = PLUSPLUS; goto done;
2363             case '-':
2364               value = MINUSMINUS; goto done;
2365             case '&':
2366               value = ANDAND; goto done;
2367             case '|':
2368               value = OROR; goto done;
2369             case '<':
2370               c = LSHIFT;
2371               goto combine;
2372             case '>':
2373               c = RSHIFT;
2374               goto combine;
2375             }
2376         else
2377           switch (c)
2378             {
2379             case '-':
2380               if (c1 == '>')
2381                 { value = POINTSAT; goto done; }
2382               break;
2383
2384               /* digraphs */
2385             case ':':
2386               if (c1 == '>')
2387                 { value = ']'; goto done; }
2388               break;
2389             case '<':
2390               if (c1 == '%')
2391                 { value = '{'; indent_level++; goto done; }
2392               if (c1 == ':')
2393                 { value = '['; goto done; }
2394               break;
2395             case '%':
2396               if (c1 == '>')
2397                 { value = '}'; indent_level--; goto done; }
2398               break;
2399             }
2400
2401         token_put_back (c1);
2402         token_buffer[1] = 0;
2403
2404         if ((c == '<') || (c == '>'))
2405           value = ARITHCOMPARE;
2406         else value = c;
2407         break;
2408       }
2409
2410     case 0:
2411       /* Don't make yyparse think this is eof.  */
2412       value = 1;
2413       break;
2414
2415     case '{':
2416       indent_level++;
2417       value = c;
2418       break;
2419
2420     case '}':
2421       indent_level--;
2422       value = c;
2423       break;
2424
2425     default:
2426       value = c;
2427     }
2428
2429 done:
2430 /*  yylloc.last_line = lineno; */
2431
2432   return value;
2433 }
2434
2435 /* Sets the value of the 'yydebug' variable to VALUE.
2436    This is a function so we don't have to have YYDEBUG defined
2437    in order to build the compiler.  */
2438
2439 void
2440 set_yydebug (value)
2441      int value;
2442 {
2443 #if YYDEBUG != 0
2444   yydebug = value;
2445 #else
2446   warning ("YYDEBUG not defined.");
2447 #endif
2448 }