(ASM_SPEC): Change {% to %{.
[official-gcc.git] / gcc / c-lex.c
blob966d5efa23f9c7b1f0d1384efbb4c0511528eab9
1 /* Lexical analyzer for C and Objective C.
2 Copyright (C) 1987, 88, 89, 92, 94, 95, 1996 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include <stdio.h>
23 #include <errno.h>
24 #include <setjmp.h>
26 #include "config.h"
27 #include "rtl.h"
28 #include "tree.h"
29 #include "input.h"
30 #include "c-lex.h"
31 #include "c-tree.h"
32 #include "flags.h"
33 #include "c-parse.h"
34 #include "c-pragma.h"
36 #include <ctype.h>
38 #ifdef MULTIBYTE_CHARS
39 #include <stdlib.h>
40 #include <locale.h>
41 #endif
43 #ifndef errno
44 extern int errno;
45 #endif
47 /* The elements of `ridpointers' are identifier nodes
48 for the reserved type names and storage classes.
49 It is indexed by a RID_... value. */
50 tree ridpointers[(int) RID_MAX];
52 /* Cause the `yydebug' variable to be defined. */
53 #define YYDEBUG 1
55 /* the declaration found for the last IDENTIFIER token read in.
56 yylex must look this up to detect typedefs, which get token type TYPENAME,
57 so it is left around in case the identifier is not a typedef but is
58 used in a context which makes it a reference to a variable. */
59 tree lastiddecl;
61 /* Nonzero enables objc features. */
63 int doing_objc_thang;
65 extern tree is_class_name ();
67 extern int yydebug;
69 /* File used for outputting assembler code. */
70 extern FILE *asm_out_file;
72 #ifndef WCHAR_TYPE_SIZE
73 #ifdef INT_TYPE_SIZE
74 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
75 #else
76 #define WCHAR_TYPE_SIZE BITS_PER_WORD
77 #endif
78 #endif
80 /* Number of bytes in a wide character. */
81 #define WCHAR_BYTES (WCHAR_TYPE_SIZE / BITS_PER_UNIT)
83 static int maxtoken; /* Current nominal length of token buffer. */
84 char *token_buffer; /* Pointer to token buffer.
85 Actual allocated length is maxtoken + 2.
86 This is not static because objc-parse.y uses it. */
88 /* Nonzero if end-of-file has been seen on input. */
89 static int end_of_file;
91 /* Buffered-back input character; faster than using ungetc. */
92 static int nextchar = -1;
94 int check_newline ();
96 /* Do not insert generated code into the source, instead, include it.
97 This allows us to build gcc automatically even for targets that
98 need to add or modify the reserved keyword lists. */
99 #include "c-gperf.h"
101 /* Return something to represent absolute declarators containing a *.
102 TARGET is the absolute declarator that the * contains.
103 TYPE_QUALS is a list of modifiers such as const or volatile
104 to apply to the pointer type, represented as identifiers.
106 We return an INDIRECT_REF whose "contents" are TARGET
107 and whose type is the modifier list. */
109 tree
110 make_pointer_declarator (type_quals, target)
111 tree type_quals, target;
113 return build1 (INDIRECT_REF, type_quals, target);
116 void
117 forget_protocol_qualifiers ()
119 int i, n = sizeof wordlist / sizeof (struct resword);
121 for (i = 0; i < n; i++)
122 if ((int) wordlist[i].rid >= (int) RID_IN
123 && (int) wordlist[i].rid <= (int) RID_ONEWAY)
124 wordlist[i].name = "";
127 void
128 remember_protocol_qualifiers ()
130 int i, n = sizeof wordlist / sizeof (struct resword);
132 for (i = 0; i < n; i++)
133 if (wordlist[i].rid == RID_IN)
134 wordlist[i].name = "in";
135 else if (wordlist[i].rid == RID_OUT)
136 wordlist[i].name = "out";
137 else if (wordlist[i].rid == RID_INOUT)
138 wordlist[i].name = "inout";
139 else if (wordlist[i].rid == RID_BYCOPY)
140 wordlist[i].name = "bycopy";
141 else if (wordlist[i].rid == RID_ONEWAY)
142 wordlist[i].name = "oneway";
145 void
146 init_lex ()
148 /* Make identifier nodes long enough for the language-specific slots. */
149 set_identifier_size (sizeof (struct lang_identifier));
151 /* Start it at 0, because check_newline is called at the very beginning
152 and will increment it to 1. */
153 lineno = 0;
155 #ifdef MULTIBYTE_CHARS
156 /* Change to the native locale for multibyte conversions. */
157 setlocale (LC_CTYPE, "");
158 #endif
160 maxtoken = 40;
161 token_buffer = (char *) xmalloc (maxtoken + 2);
163 ridpointers[(int) RID_INT] = get_identifier ("int");
164 ridpointers[(int) RID_CHAR] = get_identifier ("char");
165 ridpointers[(int) RID_VOID] = get_identifier ("void");
166 ridpointers[(int) RID_FLOAT] = get_identifier ("float");
167 ridpointers[(int) RID_DOUBLE] = get_identifier ("double");
168 ridpointers[(int) RID_SHORT] = get_identifier ("short");
169 ridpointers[(int) RID_LONG] = get_identifier ("long");
170 ridpointers[(int) RID_UNSIGNED] = get_identifier ("unsigned");
171 ridpointers[(int) RID_SIGNED] = get_identifier ("signed");
172 ridpointers[(int) RID_INLINE] = get_identifier ("inline");
173 ridpointers[(int) RID_CONST] = get_identifier ("const");
174 ridpointers[(int) RID_VOLATILE] = get_identifier ("volatile");
175 ridpointers[(int) RID_AUTO] = get_identifier ("auto");
176 ridpointers[(int) RID_STATIC] = get_identifier ("static");
177 ridpointers[(int) RID_EXTERN] = get_identifier ("extern");
178 ridpointers[(int) RID_TYPEDEF] = get_identifier ("typedef");
179 ridpointers[(int) RID_REGISTER] = get_identifier ("register");
180 ridpointers[(int) RID_ITERATOR] = get_identifier ("iterator");
181 ridpointers[(int) RID_COMPLEX] = get_identifier ("complex");
182 ridpointers[(int) RID_ID] = get_identifier ("id");
183 ridpointers[(int) RID_IN] = get_identifier ("in");
184 ridpointers[(int) RID_OUT] = get_identifier ("out");
185 ridpointers[(int) RID_INOUT] = get_identifier ("inout");
186 ridpointers[(int) RID_BYCOPY] = get_identifier ("bycopy");
187 ridpointers[(int) RID_ONEWAY] = get_identifier ("oneway");
188 forget_protocol_qualifiers();
190 /* Some options inhibit certain reserved words.
191 Clear those words out of the hash table so they won't be recognized. */
192 #define UNSET_RESERVED_WORD(STRING) \
193 do { struct resword *s = is_reserved_word (STRING, sizeof (STRING) - 1); \
194 if (s) s->name = ""; } while (0)
196 if (! doing_objc_thang)
197 UNSET_RESERVED_WORD ("id");
199 if (flag_traditional)
201 UNSET_RESERVED_WORD ("const");
202 UNSET_RESERVED_WORD ("volatile");
203 UNSET_RESERVED_WORD ("typeof");
204 UNSET_RESERVED_WORD ("signed");
205 UNSET_RESERVED_WORD ("inline");
206 UNSET_RESERVED_WORD ("iterator");
207 UNSET_RESERVED_WORD ("complex");
209 if (flag_no_asm)
211 UNSET_RESERVED_WORD ("asm");
212 UNSET_RESERVED_WORD ("typeof");
213 UNSET_RESERVED_WORD ("inline");
214 UNSET_RESERVED_WORD ("iterator");
215 UNSET_RESERVED_WORD ("complex");
219 void
220 reinit_parse_for_function ()
224 /* Function used when yydebug is set, to print a token in more detail. */
226 void
227 yyprint (file, yychar, yylval)
228 FILE *file;
229 int yychar;
230 YYSTYPE yylval;
232 tree t;
233 switch (yychar)
235 case IDENTIFIER:
236 case TYPENAME:
237 case OBJECTNAME:
238 t = yylval.ttype;
239 if (IDENTIFIER_POINTER (t))
240 fprintf (file, " `%s'", IDENTIFIER_POINTER (t));
241 break;
243 case CONSTANT:
244 t = yylval.ttype;
245 if (TREE_CODE (t) == INTEGER_CST)
246 fprintf (file,
247 #if HOST_BITS_PER_WIDE_INT == 64
248 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
249 " 0x%lx%016lx",
250 #else
251 " 0x%x%016x",
252 #endif
253 #else
254 #if HOST_BITS_PER_WIDE_INT != HOST_BITS_PER_INT
255 " 0x%lx%08lx",
256 #else
257 " 0x%x%08x",
258 #endif
259 #endif
260 TREE_INT_CST_HIGH (t), TREE_INT_CST_LOW (t));
261 break;
266 /* If C is not whitespace, return C.
267 Otherwise skip whitespace and return first nonwhite char read. */
269 static int
270 skip_white_space (c)
271 register int c;
273 static int newline_warning = 0;
275 for (;;)
277 switch (c)
279 /* We don't recognize comments here, because
280 cpp output can include / and * consecutively as operators.
281 Also, there's no need, since cpp removes all comments. */
283 case '\n':
284 c = check_newline ();
285 break;
287 case ' ':
288 case '\t':
289 case '\f':
290 case '\v':
291 case '\b':
292 c = getc (finput);
293 break;
295 case '\r':
296 /* ANSI C says the effects of a carriage return in a source file
297 are undefined. */
298 if (pedantic && !newline_warning)
300 warning ("carriage return in source file");
301 warning ("(we only warn about the first carriage return)");
302 newline_warning = 1;
304 c = getc (finput);
305 break;
307 case '\\':
308 c = getc (finput);
309 if (c == '\n')
310 lineno++;
311 else
312 error ("stray '\\' in program");
313 c = getc (finput);
314 break;
316 default:
317 return (c);
322 /* Skips all of the white space at the current location in the input file.
323 Must use and reset nextchar if it has the next character. */
325 void
326 position_after_white_space ()
328 register int c;
330 if (nextchar != -1)
331 c = nextchar, nextchar = -1;
332 else
333 c = getc (finput);
335 ungetc (skip_white_space (c), finput);
338 /* Make the token buffer longer, preserving the data in it.
339 P should point to just beyond the last valid character in the old buffer.
340 The value we return is a pointer to the new buffer
341 at a place corresponding to P. */
343 static char *
344 extend_token_buffer (p)
345 char *p;
347 int offset = p - token_buffer;
349 maxtoken = maxtoken * 2 + 10;
350 token_buffer = (char *) xrealloc (token_buffer, maxtoken + 2);
352 return token_buffer + offset;
355 /* At the beginning of a line, increment the line number
356 and process any #-directive on this line.
357 If the line is a #-directive, read the entire line and return a newline.
358 Otherwise, return the line's first non-whitespace character. */
361 check_newline ()
363 register int c;
364 register int token;
366 lineno++;
368 /* Read first nonwhite char on the line. */
370 c = getc (finput);
371 while (c == ' ' || c == '\t')
372 c = getc (finput);
374 if (c != '#')
376 /* If not #, return it so caller will use it. */
377 return c;
380 /* Read first nonwhite char after the `#'. */
382 c = getc (finput);
383 while (c == ' ' || c == '\t')
384 c = getc (finput);
386 /* If a letter follows, then if the word here is `line', skip
387 it and ignore it; otherwise, ignore the line, with an error
388 if the word isn't `pragma', `ident', `define', or `undef'. */
390 if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
392 if (c == 'p')
394 if (getc (finput) == 'r'
395 && getc (finput) == 'a'
396 && getc (finput) == 'g'
397 && getc (finput) == 'm'
398 && getc (finput) == 'a'
399 && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))
401 while (c == ' ' || c == '\t')
402 c = getc (finput);
403 if (c == '\n')
404 return c;
405 #ifdef HANDLE_SYSV_PRAGMA
406 ungetc (c, finput);
407 token = yylex ();
408 if (token != IDENTIFIER)
409 goto skipline;
410 return handle_sysv_pragma (finput, token);
411 #else /* !HANDLE_SYSV_PRAGMA */
412 #ifdef HANDLE_PRAGMA
413 ungetc (c, finput);
414 token = yylex ();
415 if (token != IDENTIFIER)
416 goto skipline;
417 if (HANDLE_PRAGMA (finput, yylval.ttype))
419 c = getc (finput);
420 return c;
422 #endif /* HANDLE_PRAGMA */
423 #endif /* !HANDLE_SYSV_PRAGMA */
424 goto skipline;
428 else if (c == 'd')
430 if (getc (finput) == 'e'
431 && getc (finput) == 'f'
432 && getc (finput) == 'i'
433 && getc (finput) == 'n'
434 && getc (finput) == 'e'
435 && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))
437 #ifdef DWARF_DEBUGGING_INFO
438 if (c != '\n'
439 && (debug_info_level == DINFO_LEVEL_VERBOSE)
440 && (write_symbols == DWARF_DEBUG))
441 dwarfout_define (lineno, get_directive_line (finput));
442 #endif /* DWARF_DEBUGGING_INFO */
443 goto skipline;
446 else if (c == 'u')
448 if (getc (finput) == 'n'
449 && getc (finput) == 'd'
450 && getc (finput) == 'e'
451 && getc (finput) == 'f'
452 && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n'))
454 #ifdef DWARF_DEBUGGING_INFO
455 if (c != '\n'
456 && (debug_info_level == DINFO_LEVEL_VERBOSE)
457 && (write_symbols == DWARF_DEBUG))
458 dwarfout_undef (lineno, get_directive_line (finput));
459 #endif /* DWARF_DEBUGGING_INFO */
460 goto skipline;
463 else if (c == 'l')
465 if (getc (finput) == 'i'
466 && getc (finput) == 'n'
467 && getc (finput) == 'e'
468 && ((c = getc (finput)) == ' ' || c == '\t'))
469 goto linenum;
471 else if (c == 'i')
473 if (getc (finput) == 'd'
474 && getc (finput) == 'e'
475 && getc (finput) == 'n'
476 && getc (finput) == 't'
477 && ((c = getc (finput)) == ' ' || c == '\t'))
479 /* #ident. The pedantic warning is now in cccp.c. */
481 /* Here we have just seen `#ident '.
482 A string constant should follow. */
484 while (c == ' ' || c == '\t')
485 c = getc (finput);
487 /* If no argument, ignore the line. */
488 if (c == '\n')
489 return c;
491 ungetc (c, finput);
492 token = yylex ();
493 if (token != STRING
494 || TREE_CODE (yylval.ttype) != STRING_CST)
496 error ("invalid #ident");
497 goto skipline;
500 if (!flag_no_ident)
502 #ifdef ASM_OUTPUT_IDENT
503 ASM_OUTPUT_IDENT (asm_out_file, TREE_STRING_POINTER (yylval.ttype));
504 #endif
507 /* Skip the rest of this line. */
508 goto skipline;
512 error ("undefined or invalid # directive");
513 goto skipline;
516 linenum:
517 /* Here we have either `#line' or `# <nonletter>'.
518 In either case, it should be a line number; a digit should follow. */
520 while (c == ' ' || c == '\t')
521 c = getc (finput);
523 /* If the # is the only nonwhite char on the line,
524 just ignore it. Check the new newline. */
525 if (c == '\n')
526 return c;
528 /* Something follows the #; read a token. */
530 ungetc (c, finput);
531 token = yylex ();
533 if (token == CONSTANT
534 && TREE_CODE (yylval.ttype) == INTEGER_CST)
536 int old_lineno = lineno;
537 int used_up = 0;
538 /* subtract one, because it is the following line that
539 gets the specified number */
541 int l = TREE_INT_CST_LOW (yylval.ttype) - 1;
543 /* Is this the last nonwhite stuff on the line? */
544 c = getc (finput);
545 while (c == ' ' || c == '\t')
546 c = getc (finput);
547 if (c == '\n')
549 /* No more: store the line number and check following line. */
550 lineno = l;
551 return c;
553 ungetc (c, finput);
555 /* More follows: it must be a string constant (filename). */
557 /* Read the string constant. */
558 token = yylex ();
560 if (token != STRING || TREE_CODE (yylval.ttype) != STRING_CST)
562 error ("invalid #line");
563 goto skipline;
566 input_filename
567 = (char *) permalloc (TREE_STRING_LENGTH (yylval.ttype) + 1);
568 strcpy (input_filename, TREE_STRING_POINTER (yylval.ttype));
569 lineno = l;
571 /* Each change of file name
572 reinitializes whether we are now in a system header. */
573 in_system_header = 0;
575 if (main_input_filename == 0)
576 main_input_filename = input_filename;
578 /* Is this the last nonwhite stuff on the line? */
579 c = getc (finput);
580 while (c == ' ' || c == '\t')
581 c = getc (finput);
582 if (c == '\n')
584 /* Update the name in the top element of input_file_stack. */
585 if (input_file_stack)
586 input_file_stack->name = input_filename;
588 return c;
590 ungetc (c, finput);
592 token = yylex ();
593 used_up = 0;
595 /* `1' after file name means entering new file.
596 `2' after file name means just left a file. */
598 if (token == CONSTANT
599 && TREE_CODE (yylval.ttype) == INTEGER_CST)
601 if (TREE_INT_CST_LOW (yylval.ttype) == 1)
603 /* Pushing to a new file. */
604 struct file_stack *p
605 = (struct file_stack *) xmalloc (sizeof (struct file_stack));
606 input_file_stack->line = old_lineno;
607 p->next = input_file_stack;
608 p->name = input_filename;
609 input_file_stack = p;
610 input_file_stack_tick++;
611 #ifdef DBX_DEBUGGING_INFO
612 if (write_symbols == DBX_DEBUG)
613 dbxout_start_new_source_file (input_filename);
614 #endif
615 #ifdef DWARF_DEBUGGING_INFO
616 if (debug_info_level == DINFO_LEVEL_VERBOSE
617 && write_symbols == DWARF_DEBUG)
618 dwarfout_start_new_source_file (input_filename);
619 #endif /* DWARF_DEBUGGING_INFO */
621 used_up = 1;
623 else if (TREE_INT_CST_LOW (yylval.ttype) == 2)
625 /* Popping out of a file. */
626 if (input_file_stack->next)
628 struct file_stack *p = input_file_stack;
629 input_file_stack = p->next;
630 free (p);
631 input_file_stack_tick++;
632 #ifdef DBX_DEBUGGING_INFO
633 if (write_symbols == DBX_DEBUG)
634 dbxout_resume_previous_source_file ();
635 #endif
636 #ifdef DWARF_DEBUGGING_INFO
637 if (debug_info_level == DINFO_LEVEL_VERBOSE
638 && write_symbols == DWARF_DEBUG)
639 dwarfout_resume_previous_source_file (input_file_stack->line);
640 #endif /* DWARF_DEBUGGING_INFO */
642 else
643 error ("#-lines for entering and leaving files don't match");
645 used_up = 1;
649 /* Now that we've pushed or popped the input stack,
650 update the name in the top element. */
651 if (input_file_stack)
652 input_file_stack->name = input_filename;
654 /* If we have handled a `1' or a `2',
655 see if there is another number to read. */
656 if (used_up)
658 /* Is this the last nonwhite stuff on the line? */
659 c = getc (finput);
660 while (c == ' ' || c == '\t')
661 c = getc (finput);
662 if (c == '\n')
663 return c;
664 ungetc (c, finput);
666 token = yylex ();
667 used_up = 0;
670 /* `3' after file name means this is a system header file. */
672 if (token == CONSTANT
673 && TREE_CODE (yylval.ttype) == INTEGER_CST
674 && TREE_INT_CST_LOW (yylval.ttype) == 3)
675 in_system_header = 1, used_up = 1;
677 if (used_up)
679 /* Is this the last nonwhite stuff on the line? */
680 c = getc (finput);
681 while (c == ' ' || c == '\t')
682 c = getc (finput);
683 if (c == '\n')
684 return c;
685 ungetc (c, finput);
688 warning ("unrecognized text at end of #line");
690 else
691 error ("invalid #-line");
693 /* skip the rest of this line. */
694 skipline:
695 while (c != '\n' && c != EOF)
696 c = getc (finput);
697 return c;
700 #ifdef HANDLE_SYSV_PRAGMA
702 /* Handle a #pragma directive. INPUT is the current input stream,
703 and TOKEN is the token we read after `#pragma'. Processes the entire input
704 line and returns a character for the caller to reread: either \n or EOF. */
706 /* This function has to be in this file, in order to get at
707 the token types. */
710 handle_sysv_pragma (input, token)
711 FILE *input;
712 register int token;
714 register int c;
716 for (;;)
718 switch (token)
720 case IDENTIFIER:
721 case TYPENAME:
722 case STRING:
723 case CONSTANT:
724 handle_pragma_token (token_buffer, yylval.ttype);
725 break;
726 default:
727 handle_pragma_token (token_buffer, 0);
730 if (nextchar >= 0)
731 c = nextchar, nextchar = -1;
732 else
733 c = getc (input);
735 while (c == ' ' || c == '\t')
736 c = getc (input);
737 if (c == '\n' || c == EOF)
739 handle_pragma_token (0, 0);
740 return c;
742 ungetc (c, input);
743 token = yylex ();
747 #endif /* HANDLE_SYSV_PRAGMA */
749 #define ENDFILE -1 /* token that represents end-of-file */
751 /* Read an escape sequence, returning its equivalent as a character,
752 or store 1 in *ignore_ptr if it is backslash-newline. */
754 static int
755 readescape (ignore_ptr)
756 int *ignore_ptr;
758 register int c = getc (finput);
759 register int code;
760 register unsigned count;
761 unsigned firstdig = 0;
762 int nonnull;
764 switch (c)
766 case 'x':
767 if (warn_traditional)
768 warning ("the meaning of `\\x' varies with -traditional");
770 if (flag_traditional)
771 return c;
773 code = 0;
774 count = 0;
775 nonnull = 0;
776 while (1)
778 c = getc (finput);
779 if (!(c >= 'a' && c <= 'f')
780 && !(c >= 'A' && c <= 'F')
781 && !(c >= '0' && c <= '9'))
783 ungetc (c, finput);
784 break;
786 code *= 16;
787 if (c >= 'a' && c <= 'f')
788 code += c - 'a' + 10;
789 if (c >= 'A' && c <= 'F')
790 code += c - 'A' + 10;
791 if (c >= '0' && c <= '9')
792 code += c - '0';
793 if (code != 0 || count != 0)
795 if (count == 0)
796 firstdig = code;
797 count++;
799 nonnull = 1;
801 if (! nonnull)
802 error ("\\x used with no following hex digits");
803 else if (count == 0)
804 /* Digits are all 0's. Ok. */
806 else if ((count - 1) * 4 >= TYPE_PRECISION (integer_type_node)
807 || (count > 1
808 && ((1 << (TYPE_PRECISION (integer_type_node) - (count - 1) * 4))
809 <= firstdig)))
810 pedwarn ("hex escape out of range");
811 return code;
813 case '0': case '1': case '2': case '3': case '4':
814 case '5': case '6': case '7':
815 code = 0;
816 count = 0;
817 while ((c <= '7') && (c >= '0') && (count++ < 3))
819 code = (code * 8) + (c - '0');
820 c = getc (finput);
822 ungetc (c, finput);
823 return code;
825 case '\\': case '\'': case '"':
826 return c;
828 case '\n':
829 lineno++;
830 *ignore_ptr = 1;
831 return 0;
833 case 'n':
834 return TARGET_NEWLINE;
836 case 't':
837 return TARGET_TAB;
839 case 'r':
840 return TARGET_CR;
842 case 'f':
843 return TARGET_FF;
845 case 'b':
846 return TARGET_BS;
848 case 'a':
849 if (warn_traditional)
850 warning ("the meaning of `\\a' varies with -traditional");
852 if (flag_traditional)
853 return c;
854 return TARGET_BELL;
856 case 'v':
857 #if 0 /* Vertical tab is present in common usage compilers. */
858 if (flag_traditional)
859 return c;
860 #endif
861 return TARGET_VT;
863 case 'e':
864 case 'E':
865 if (pedantic)
866 pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c);
867 return 033;
869 case '?':
870 return c;
872 /* `\(', etc, are used at beginning of line to avoid confusing Emacs. */
873 case '(':
874 case '{':
875 case '[':
876 /* `\%' is used to prevent SCCS from getting confused. */
877 case '%':
878 if (pedantic)
879 pedwarn ("non-ANSI escape sequence `\\%c'", c);
880 return c;
882 if (c >= 040 && c < 0177)
883 pedwarn ("unknown escape sequence `\\%c'", c);
884 else
885 pedwarn ("unknown escape sequence: `\\' followed by char code 0x%x", c);
886 return c;
889 void
890 yyerror (string)
891 char *string;
893 char buf[200];
895 strcpy (buf, string);
897 /* We can't print string and character constants well
898 because the token_buffer contains the result of processing escapes. */
899 if (end_of_file)
900 strcat (buf, " at end of input");
901 else if (token_buffer[0] == 0)
902 strcat (buf, " at null character");
903 else if (token_buffer[0] == '"')
904 strcat (buf, " before string constant");
905 else if (token_buffer[0] == '\'')
906 strcat (buf, " before character constant");
907 else if (token_buffer[0] < 040 || (unsigned char) token_buffer[0] >= 0177)
908 sprintf (buf + strlen (buf), " before character 0%o",
909 (unsigned char) token_buffer[0]);
910 else
911 strcat (buf, " before `%s'");
913 error (buf, token_buffer);
916 #if 0
918 struct try_type
920 tree *node_var;
921 char unsigned_flag;
922 char long_flag;
923 char long_long_flag;
926 struct try_type type_sequence[] =
928 { &integer_type_node, 0, 0, 0},
929 { &unsigned_type_node, 1, 0, 0},
930 { &long_integer_type_node, 0, 1, 0},
931 { &long_unsigned_type_node, 1, 1, 0},
932 { &long_long_integer_type_node, 0, 1, 1},
933 { &long_long_unsigned_type_node, 1, 1, 1}
935 #endif /* 0 */
938 yylex ()
940 register int c;
941 register char *p;
942 register int value;
943 int wide_flag = 0;
944 int objc_flag = 0;
946 if (nextchar >= 0)
947 c = nextchar, nextchar = -1;
948 else
949 c = getc (finput);
951 /* Effectively do c = skip_white_space (c)
952 but do it faster in the usual cases. */
953 while (1)
954 switch (c)
956 case ' ':
957 case '\t':
958 case '\f':
959 case '\v':
960 case '\b':
961 c = getc (finput);
962 break;
964 case '\r':
965 /* Call skip_white_space so we can warn if appropriate. */
967 case '\n':
968 case '/':
969 case '\\':
970 c = skip_white_space (c);
971 default:
972 goto found_nonwhite;
974 found_nonwhite:
976 token_buffer[0] = c;
977 token_buffer[1] = 0;
979 /* yylloc.first_line = lineno; */
981 switch (c)
983 case EOF:
984 end_of_file = 1;
985 token_buffer[0] = 0;
986 value = ENDFILE;
987 break;
989 case '$':
990 if (dollars_in_ident)
991 goto letter;
992 return '$';
994 case 'L':
995 /* Capital L may start a wide-string or wide-character constant. */
997 register int c = getc (finput);
998 if (c == '\'')
1000 wide_flag = 1;
1001 goto char_constant;
1003 if (c == '"')
1005 wide_flag = 1;
1006 goto string_constant;
1008 ungetc (c, finput);
1010 goto letter;
1012 case '@':
1013 if (!doing_objc_thang)
1015 value = c;
1016 break;
1018 else
1020 /* '@' may start a constant string object. */
1021 register int c = getc(finput);
1022 if (c == '"')
1024 objc_flag = 1;
1025 goto string_constant;
1027 ungetc(c, finput);
1028 /* Fall through to treat '@' as the start of an identifier. */
1031 case 'A': case 'B': case 'C': case 'D': case 'E':
1032 case 'F': case 'G': case 'H': case 'I': case 'J':
1033 case 'K': case 'M': case 'N': case 'O':
1034 case 'P': case 'Q': case 'R': case 'S': case 'T':
1035 case 'U': case 'V': case 'W': case 'X': case 'Y':
1036 case 'Z':
1037 case 'a': case 'b': case 'c': case 'd': case 'e':
1038 case 'f': case 'g': case 'h': case 'i': case 'j':
1039 case 'k': case 'l': case 'm': case 'n': case 'o':
1040 case 'p': case 'q': case 'r': case 's': case 't':
1041 case 'u': case 'v': case 'w': case 'x': case 'y':
1042 case 'z':
1043 case '_':
1044 letter:
1045 p = token_buffer;
1046 while (isalnum (c) || c == '_' || c == '$' || c == '@')
1048 /* Make sure this char really belongs in an identifier. */
1049 if (c == '@' && ! doing_objc_thang)
1050 break;
1051 if (c == '$' && ! dollars_in_ident)
1052 break;
1054 if (p >= token_buffer + maxtoken)
1055 p = extend_token_buffer (p);
1057 *p++ = c;
1058 c = getc (finput);
1061 *p = 0;
1062 nextchar = c;
1064 value = IDENTIFIER;
1065 yylval.itype = 0;
1067 /* Try to recognize a keyword. Uses minimum-perfect hash function */
1070 register struct resword *ptr;
1072 if (ptr = is_reserved_word (token_buffer, p - token_buffer))
1074 if (ptr->rid)
1075 yylval.ttype = ridpointers[(int) ptr->rid];
1076 value = (int) ptr->token;
1078 /* Only return OBJECTNAME if it is a typedef. */
1079 if (doing_objc_thang && value == OBJECTNAME)
1081 lastiddecl = lookup_name(yylval.ttype);
1083 if (lastiddecl == NULL_TREE
1084 || TREE_CODE (lastiddecl) != TYPE_DECL)
1085 value = IDENTIFIER;
1088 /* Even if we decided to recognize asm, still perhaps warn. */
1089 if (pedantic
1090 && (value == ASM_KEYWORD || value == TYPEOF
1091 || ptr->rid == RID_INLINE)
1092 && token_buffer[0] != '_')
1093 pedwarn ("ANSI does not permit the keyword `%s'",
1094 token_buffer);
1098 /* If we did not find a keyword, look for an identifier
1099 (or a typename). */
1101 if (value == IDENTIFIER)
1103 if (token_buffer[0] == '@')
1104 error("invalid identifier `%s'", token_buffer);
1106 yylval.ttype = get_identifier (token_buffer);
1107 lastiddecl = lookup_name (yylval.ttype);
1109 if (lastiddecl != 0 && TREE_CODE (lastiddecl) == TYPE_DECL)
1110 value = TYPENAME;
1111 /* A user-invisible read-only initialized variable
1112 should be replaced by its value.
1113 We handle only strings since that's the only case used in C. */
1114 else if (lastiddecl != 0 && TREE_CODE (lastiddecl) == VAR_DECL
1115 && DECL_IGNORED_P (lastiddecl)
1116 && TREE_READONLY (lastiddecl)
1117 && DECL_INITIAL (lastiddecl) != 0
1118 && TREE_CODE (DECL_INITIAL (lastiddecl)) == STRING_CST)
1120 tree stringval = DECL_INITIAL (lastiddecl);
1122 /* Copy the string value so that we won't clobber anything
1123 if we put something in the TREE_CHAIN of this one. */
1124 yylval.ttype = build_string (TREE_STRING_LENGTH (stringval),
1125 TREE_STRING_POINTER (stringval));
1126 value = STRING;
1128 else if (doing_objc_thang)
1130 tree objc_interface_decl = is_class_name (yylval.ttype);
1132 if (objc_interface_decl)
1134 value = CLASSNAME;
1135 yylval.ttype = objc_interface_decl;
1140 break;
1142 case '0': case '1':
1144 int next_c;
1145 /* Check first for common special case: single-digit 0 or 1. */
1147 next_c = getc (finput);
1148 ungetc (next_c, finput); /* Always undo this lookahead. */
1149 if (!isalnum (next_c) && next_c != '.')
1151 token_buffer[0] = (char)c, token_buffer[1] = '\0';
1152 yylval.ttype = (c == '0') ? integer_zero_node : integer_one_node;
1153 value = CONSTANT;
1154 break;
1156 /*FALLTHRU*/
1158 case '2': case '3': case '4':
1159 case '5': case '6': case '7': case '8': case '9':
1160 case '.':
1162 int base = 10;
1163 int count = 0;
1164 int largest_digit = 0;
1165 int numdigits = 0;
1166 /* for multi-precision arithmetic,
1167 we actually store only HOST_BITS_PER_CHAR bits in each part.
1168 The number of parts is chosen so as to be sufficient to hold
1169 the enough bits to fit into the two HOST_WIDE_INTs that contain
1170 the integer value (this is always at least as many bits as are
1171 in a target `long long' value, but may be wider). */
1172 #define TOTAL_PARTS ((HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR) * 2 + 2)
1173 int parts[TOTAL_PARTS];
1174 int overflow = 0;
1176 enum anon1 { NOT_FLOAT, AFTER_POINT, TOO_MANY_POINTS} floatflag
1177 = NOT_FLOAT;
1179 for (count = 0; count < TOTAL_PARTS; count++)
1180 parts[count] = 0;
1182 p = token_buffer;
1183 *p++ = c;
1185 if (c == '0')
1187 *p++ = (c = getc (finput));
1188 if ((c == 'x') || (c == 'X'))
1190 base = 16;
1191 *p++ = (c = getc (finput));
1193 /* Leading 0 forces octal unless the 0 is the only digit. */
1194 else if (c >= '0' && c <= '9')
1196 base = 8;
1197 numdigits++;
1199 else
1200 numdigits++;
1203 /* Read all the digits-and-decimal-points. */
1205 while (c == '.'
1206 || (isalnum (c) && c != 'l' && c != 'L'
1207 && c != 'u' && c != 'U'
1208 && c != 'i' && c != 'I' && c != 'j' && c != 'J'
1209 && (floatflag == NOT_FLOAT || ((c != 'f') && (c != 'F')))))
1211 if (c == '.')
1213 if (base == 16)
1214 error ("floating constant may not be in radix 16");
1215 if (floatflag == TOO_MANY_POINTS)
1216 /* We have already emitted an error. Don't need another. */
1218 else if (floatflag == AFTER_POINT)
1220 error ("malformed floating constant");
1221 floatflag = TOO_MANY_POINTS;
1222 /* Avoid another error from atof by forcing all characters
1223 from here on to be ignored. */
1224 p[-1] = '\0';
1226 else
1227 floatflag = AFTER_POINT;
1229 base = 10;
1230 *p++ = c = getc (finput);
1231 /* Accept '.' as the start of a floating-point number
1232 only when it is followed by a digit.
1233 Otherwise, unread the following non-digit
1234 and use the '.' as a structural token. */
1235 if (p == token_buffer + 2 && !isdigit (c))
1237 if (c == '.')
1239 c = getc (finput);
1240 if (c == '.')
1242 *p++ = c;
1243 *p = 0;
1244 return ELLIPSIS;
1246 error ("parse error at `..'");
1248 ungetc (c, finput);
1249 token_buffer[1] = 0;
1250 value = '.';
1251 goto done;
1254 else
1256 /* It is not a decimal point.
1257 It should be a digit (perhaps a hex digit). */
1259 if (isdigit (c))
1261 c = c - '0';
1263 else if (base <= 10)
1265 if (c == 'e' || c == 'E')
1267 base = 10;
1268 floatflag = AFTER_POINT;
1269 break; /* start of exponent */
1271 error ("nondigits in number and not hexadecimal");
1272 c = 0;
1274 else if (c >= 'a')
1276 c = c - 'a' + 10;
1278 else
1280 c = c - 'A' + 10;
1282 if (c >= largest_digit)
1283 largest_digit = c;
1284 numdigits++;
1286 for (count = 0; count < TOTAL_PARTS; count++)
1288 parts[count] *= base;
1289 if (count)
1291 parts[count]
1292 += (parts[count-1] >> HOST_BITS_PER_CHAR);
1293 parts[count-1]
1294 &= (1 << HOST_BITS_PER_CHAR) - 1;
1296 else
1297 parts[0] += c;
1300 /* If the extra highest-order part ever gets anything in it,
1301 the number is certainly too big. */
1302 if (parts[TOTAL_PARTS - 1] != 0)
1303 overflow = 1;
1305 if (p >= token_buffer + maxtoken - 3)
1306 p = extend_token_buffer (p);
1307 *p++ = (c = getc (finput));
1311 if (numdigits == 0)
1312 error ("numeric constant with no digits");
1314 if (largest_digit >= base)
1315 error ("numeric constant contains digits beyond the radix");
1317 /* Remove terminating char from the token buffer and delimit the string */
1318 *--p = 0;
1320 if (floatflag != NOT_FLOAT)
1322 tree type = double_type_node;
1323 int exceeds_double = 0;
1324 int imag = 0;
1325 REAL_VALUE_TYPE value;
1326 jmp_buf handler;
1328 /* Read explicit exponent if any, and put it in tokenbuf. */
1330 if ((c == 'e') || (c == 'E'))
1332 if (p >= token_buffer + maxtoken - 3)
1333 p = extend_token_buffer (p);
1334 *p++ = c;
1335 c = getc (finput);
1336 if ((c == '+') || (c == '-'))
1338 *p++ = c;
1339 c = getc (finput);
1341 if (! isdigit (c))
1342 error ("floating constant exponent has no digits");
1343 while (isdigit (c))
1345 if (p >= token_buffer + maxtoken - 3)
1346 p = extend_token_buffer (p);
1347 *p++ = c;
1348 c = getc (finput);
1352 *p = 0;
1353 errno = 0;
1355 /* Convert string to a double, checking for overflow. */
1356 if (setjmp (handler))
1358 error ("floating constant out of range");
1359 value = dconst0;
1361 else
1363 int fflag = 0, lflag = 0;
1364 /* Copy token_buffer now, while it has just the number
1365 and not the suffixes; once we add `f' or `i',
1366 REAL_VALUE_ATOF may not work any more. */
1367 char *copy = (char *) alloca (p - token_buffer + 1);
1368 bcopy (token_buffer, copy, p - token_buffer + 1);
1370 set_float_handler (handler);
1372 while (1)
1374 int lose = 0;
1376 /* Read the suffixes to choose a data type. */
1377 switch (c)
1379 case 'f': case 'F':
1380 if (fflag)
1381 error ("more than one `f' in numeric constant");
1382 fflag = 1;
1383 break;
1385 case 'l': case 'L':
1386 if (lflag)
1387 error ("more than one `l' in numeric constant");
1388 lflag = 1;
1389 break;
1391 case 'i': case 'I':
1392 if (imag)
1393 error ("more than one `i' or `j' in numeric constant");
1394 else if (pedantic)
1395 pedwarn ("ANSI C forbids imaginary numeric constants");
1396 imag = 1;
1397 break;
1399 default:
1400 lose = 1;
1403 if (lose)
1404 break;
1406 if (p >= token_buffer + maxtoken - 3)
1407 p = extend_token_buffer (p);
1408 *p++ = c;
1409 *p = 0;
1410 c = getc (finput);
1413 /* The second argument, machine_mode, of REAL_VALUE_ATOF
1414 tells the desired precision of the binary result
1415 of decimal-to-binary conversion. */
1417 if (fflag)
1419 if (lflag)
1420 error ("both `f' and `l' in floating constant");
1422 type = float_type_node;
1423 value = REAL_VALUE_ATOF (copy, TYPE_MODE (type));
1424 /* A diagnostic is required here by some ANSI C testsuites.
1425 This is not pedwarn, become some people don't want
1426 an error for this. */
1427 if (REAL_VALUE_ISINF (value) && pedantic)
1428 warning ("floating point number exceeds range of `float'");
1430 else if (lflag)
1432 type = long_double_type_node;
1433 value = REAL_VALUE_ATOF (copy, TYPE_MODE (type));
1434 if (REAL_VALUE_ISINF (value) && pedantic)
1435 warning ("floating point number exceeds range of `long double'");
1437 else
1439 value = REAL_VALUE_ATOF (copy, TYPE_MODE (type));
1440 if (REAL_VALUE_ISINF (value) && pedantic)
1441 warning ("floating point number exceeds range of `double'");
1444 set_float_handler (NULL_PTR);
1446 #ifdef ERANGE
1447 if (errno == ERANGE && !flag_traditional && pedantic)
1449 /* ERANGE is also reported for underflow,
1450 so test the value to distinguish overflow from that. */
1451 if (REAL_VALUES_LESS (dconst1, value)
1452 || REAL_VALUES_LESS (value, dconstm1))
1454 warning ("floating point number exceeds range of `double'");
1455 exceeds_double = 1;
1458 #endif
1460 /* If the result is not a number, assume it must have been
1461 due to some error message above, so silently convert
1462 it to a zero. */
1463 if (REAL_VALUE_ISNAN (value))
1464 value = dconst0;
1466 /* Create a node with determined type and value. */
1467 if (imag)
1468 yylval.ttype = build_complex (convert (type, integer_zero_node),
1469 build_real (type, value));
1470 else
1471 yylval.ttype = build_real (type, value);
1473 else
1475 tree traditional_type, ansi_type, type;
1476 HOST_WIDE_INT high, low;
1477 int spec_unsigned = 0;
1478 int spec_long = 0;
1479 int spec_long_long = 0;
1480 int spec_imag = 0;
1481 int bytes, warn, i;
1483 while (1)
1485 if (c == 'u' || c == 'U')
1487 if (spec_unsigned)
1488 error ("two `u's in integer constant");
1489 spec_unsigned = 1;
1491 else if (c == 'l' || c == 'L')
1493 if (spec_long)
1495 if (spec_long_long)
1496 error ("three `l's in integer constant");
1497 else if (pedantic)
1498 pedwarn ("ANSI C forbids long long integer constants");
1499 spec_long_long = 1;
1501 spec_long = 1;
1503 else if (c == 'i' || c == 'j' || c == 'I' || c == 'J')
1505 if (spec_imag)
1506 error ("more than one `i' or `j' in numeric constant");
1507 else if (pedantic)
1508 pedwarn ("ANSI C forbids imaginary numeric constants");
1509 spec_imag = 1;
1511 else
1512 break;
1513 if (p >= token_buffer + maxtoken - 3)
1514 p = extend_token_buffer (p);
1515 *p++ = c;
1516 c = getc (finput);
1519 /* If the constant is not long long and it won't fit in an
1520 unsigned long, or if the constant is long long and won't fit
1521 in an unsigned long long, then warn that the constant is out
1522 of range. */
1524 /* ??? This assumes that long long and long integer types are
1525 a multiple of 8 bits. This better than the original code
1526 though which assumed that long was exactly 32 bits and long
1527 long was exactly 64 bits. */
1529 if (spec_long_long)
1530 bytes = TYPE_PRECISION (long_long_integer_type_node) / 8;
1531 else
1532 bytes = TYPE_PRECISION (long_integer_type_node) / 8;
1534 warn = overflow;
1535 for (i = bytes; i < TOTAL_PARTS; i++)
1536 if (parts[i])
1537 warn = 1;
1538 if (warn)
1539 pedwarn ("integer constant out of range");
1541 /* This is simplified by the fact that our constant
1542 is always positive. */
1544 high = low = 0;
1546 for (i = 0; i < HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR; i++)
1548 high |= ((HOST_WIDE_INT) parts[i + (HOST_BITS_PER_WIDE_INT
1549 / HOST_BITS_PER_CHAR)]
1550 << (i * HOST_BITS_PER_CHAR));
1551 low |= (HOST_WIDE_INT) parts[i] << (i * HOST_BITS_PER_CHAR);
1554 yylval.ttype = build_int_2 (low, high);
1555 TREE_TYPE (yylval.ttype) = long_long_unsigned_type_node;
1557 /* If warn_traditional, calculate both the ANSI type and the
1558 traditional type, then see if they disagree.
1559 Otherwise, calculate only the type for the dialect in use. */
1560 if (warn_traditional || flag_traditional)
1562 /* Calculate the traditional type. */
1563 /* Traditionally, any constant is signed;
1564 but if unsigned is specified explicitly, obey that.
1565 Use the smallest size with the right number of bits,
1566 except for one special case with decimal constants. */
1567 if (! spec_long && base != 10
1568 && int_fits_type_p (yylval.ttype, unsigned_type_node))
1569 traditional_type = (spec_unsigned ? unsigned_type_node
1570 : integer_type_node);
1571 /* A decimal constant must be long
1572 if it does not fit in type int.
1573 I think this is independent of whether
1574 the constant is signed. */
1575 else if (! spec_long && base == 10
1576 && int_fits_type_p (yylval.ttype, integer_type_node))
1577 traditional_type = (spec_unsigned ? unsigned_type_node
1578 : integer_type_node);
1579 else if (! spec_long_long)
1580 traditional_type = (spec_unsigned ? long_unsigned_type_node
1581 : long_integer_type_node);
1582 else
1583 traditional_type = (spec_unsigned
1584 ? long_long_unsigned_type_node
1585 : long_long_integer_type_node);
1587 if (warn_traditional || ! flag_traditional)
1589 /* Calculate the ANSI type. */
1590 if (! spec_long && ! spec_unsigned
1591 && int_fits_type_p (yylval.ttype, integer_type_node))
1592 ansi_type = integer_type_node;
1593 else if (! spec_long && (base != 10 || spec_unsigned)
1594 && int_fits_type_p (yylval.ttype, unsigned_type_node))
1595 ansi_type = unsigned_type_node;
1596 else if (! spec_unsigned && !spec_long_long
1597 && int_fits_type_p (yylval.ttype, long_integer_type_node))
1598 ansi_type = long_integer_type_node;
1599 else if (! spec_long_long)
1600 ansi_type = long_unsigned_type_node;
1601 else if (! spec_unsigned
1602 /* Verify value does not overflow into sign bit. */
1603 && TREE_INT_CST_HIGH (yylval.ttype) >= 0
1604 && int_fits_type_p (yylval.ttype,
1605 long_long_integer_type_node))
1606 ansi_type = long_long_integer_type_node;
1607 else
1608 ansi_type = long_long_unsigned_type_node;
1611 type = flag_traditional ? traditional_type : ansi_type;
1613 if (warn_traditional && traditional_type != ansi_type)
1615 if (TYPE_PRECISION (traditional_type)
1616 != TYPE_PRECISION (ansi_type))
1617 warning ("width of integer constant changes with -traditional");
1618 else if (TREE_UNSIGNED (traditional_type)
1619 != TREE_UNSIGNED (ansi_type))
1620 warning ("integer constant is unsigned in ANSI C, signed with -traditional");
1621 else
1622 warning ("width of integer constant may change on other systems with -traditional");
1625 if (!flag_traditional && !int_fits_type_p (yylval.ttype, type)
1626 && !warn)
1627 pedwarn ("integer constant out of range");
1629 if (base == 10 && ! spec_unsigned && TREE_UNSIGNED (type))
1630 warning ("decimal constant is so large that it is unsigned");
1632 if (spec_imag)
1634 if (TYPE_PRECISION (type)
1635 <= TYPE_PRECISION (integer_type_node))
1636 yylval.ttype
1637 = build_complex (integer_zero_node,
1638 convert (integer_type_node, yylval.ttype));
1639 else
1640 error ("complex integer constant is too wide for `complex int'");
1642 else if (flag_traditional && !int_fits_type_p (yylval.ttype, type))
1643 /* The traditional constant 0x80000000 is signed
1644 but doesn't fit in the range of int.
1645 This will change it to -0x80000000, which does fit. */
1647 TREE_TYPE (yylval.ttype) = unsigned_type (type);
1648 yylval.ttype = convert (type, yylval.ttype);
1649 TREE_OVERFLOW (yylval.ttype)
1650 = TREE_CONSTANT_OVERFLOW (yylval.ttype) = 0;
1652 else
1653 TREE_TYPE (yylval.ttype) = type;
1656 ungetc (c, finput);
1657 *p = 0;
1659 if (isalnum (c) || c == '.' || c == '_'
1660 || (!flag_traditional && (c == '-' || c == '+')
1661 && (p[-1] == 'e' || p[-1] == 'E')))
1662 error ("missing white space after number `%s'", token_buffer);
1664 value = CONSTANT; break;
1667 case '\'':
1668 char_constant:
1670 register int result = 0;
1671 register int num_chars = 0;
1672 unsigned width = TYPE_PRECISION (char_type_node);
1673 int max_chars;
1675 if (wide_flag)
1677 width = WCHAR_TYPE_SIZE;
1678 #ifdef MULTIBYTE_CHARS
1679 max_chars = MB_CUR_MAX;
1680 #else
1681 max_chars = 1;
1682 #endif
1684 else
1685 max_chars = TYPE_PRECISION (integer_type_node) / width;
1687 while (1)
1689 tryagain:
1691 c = getc (finput);
1693 if (c == '\'' || c == EOF)
1694 break;
1696 if (c == '\\')
1698 int ignore = 0;
1699 c = readescape (&ignore);
1700 if (ignore)
1701 goto tryagain;
1702 if (width < HOST_BITS_PER_INT
1703 && (unsigned) c >= (1 << width))
1704 pedwarn ("escape sequence out of range for character");
1705 #ifdef MAP_CHARACTER
1706 if (isprint (c))
1707 c = MAP_CHARACTER (c);
1708 #endif
1710 else if (c == '\n')
1712 if (pedantic)
1713 pedwarn ("ANSI C forbids newline in character constant");
1714 lineno++;
1716 #ifdef MAP_CHARACTER
1717 else
1718 c = MAP_CHARACTER (c);
1719 #endif
1721 num_chars++;
1722 if (num_chars > maxtoken - 4)
1723 extend_token_buffer (token_buffer);
1725 token_buffer[num_chars] = c;
1727 /* Merge character into result; ignore excess chars. */
1728 if (num_chars < max_chars + 1)
1730 if (width < HOST_BITS_PER_INT)
1731 result = (result << width) | (c & ((1 << width) - 1));
1732 else
1733 result = c;
1737 token_buffer[num_chars + 1] = '\'';
1738 token_buffer[num_chars + 2] = 0;
1740 if (c != '\'')
1741 error ("malformatted character constant");
1742 else if (num_chars == 0)
1743 error ("empty character constant");
1744 else if (num_chars > max_chars)
1746 num_chars = max_chars;
1747 error ("character constant too long");
1749 else if (num_chars != 1 && ! flag_traditional)
1750 warning ("multi-character character constant");
1752 /* If char type is signed, sign-extend the constant. */
1753 if (! wide_flag)
1755 int num_bits = num_chars * width;
1756 if (num_bits == 0)
1757 /* We already got an error; avoid invalid shift. */
1758 yylval.ttype = build_int_2 (0, 0);
1759 else if (TREE_UNSIGNED (char_type_node)
1760 || ((result >> (num_bits - 1)) & 1) == 0)
1761 yylval.ttype
1762 = build_int_2 (result & ((unsigned HOST_WIDE_INT) ~0
1763 >> (HOST_BITS_PER_WIDE_INT - num_bits)),
1765 else
1766 yylval.ttype
1767 = build_int_2 (result | ~((unsigned HOST_WIDE_INT) ~0
1768 >> (HOST_BITS_PER_WIDE_INT - num_bits)),
1769 -1);
1770 TREE_TYPE (yylval.ttype) = integer_type_node;
1772 else
1774 #ifdef MULTIBYTE_CHARS
1775 /* Set the initial shift state and convert the next sequence. */
1776 result = 0;
1777 /* In all locales L'\0' is zero and mbtowc will return zero,
1778 so don't use it. */
1779 if (num_chars > 1
1780 || (num_chars == 1 && token_buffer[1] != '\0'))
1782 wchar_t wc;
1783 (void) mbtowc (NULL_PTR, NULL_PTR, 0);
1784 if (mbtowc (& wc, token_buffer + 1, num_chars) == num_chars)
1785 result = wc;
1786 else
1787 warning ("Ignoring invalid multibyte character");
1789 #endif
1790 yylval.ttype = build_int_2 (result, 0);
1791 TREE_TYPE (yylval.ttype) = wchar_type_node;
1794 value = CONSTANT;
1795 break;
1798 case '"':
1799 string_constant:
1801 c = getc (finput);
1802 p = token_buffer + 1;
1804 while (c != '"' && c >= 0)
1806 if (c == '\\')
1808 int ignore = 0;
1809 c = readescape (&ignore);
1810 if (ignore)
1811 goto skipnewline;
1812 if (!wide_flag
1813 && TYPE_PRECISION (char_type_node) < HOST_BITS_PER_INT
1814 && c >= (1 << TYPE_PRECISION (char_type_node)))
1815 pedwarn ("escape sequence out of range for character");
1817 else if (c == '\n')
1819 if (pedantic)
1820 pedwarn ("ANSI C forbids newline in string constant");
1821 lineno++;
1824 if (p == token_buffer + maxtoken)
1825 p = extend_token_buffer (p);
1826 *p++ = c;
1828 skipnewline:
1829 c = getc (finput);
1831 *p = 0;
1833 if (c < 0)
1834 error ("Unterminated string constant");
1836 /* We have read the entire constant.
1837 Construct a STRING_CST for the result. */
1839 if (wide_flag)
1841 /* If this is a L"..." wide-string, convert the multibyte string
1842 to a wide character string. */
1843 char *widep = (char *) alloca ((p - token_buffer) * WCHAR_BYTES);
1844 int len;
1846 #ifdef MULTIBYTE_CHARS
1847 len = mbstowcs ((wchar_t *) widep, token_buffer + 1, p - token_buffer);
1848 if (len < 0 || len >= (p - token_buffer))
1850 warning ("Ignoring invalid multibyte string");
1851 len = 0;
1853 bzero (widep + (len * WCHAR_BYTES), WCHAR_BYTES);
1854 #else
1856 union { long l; char c[sizeof (long)]; } u;
1857 int big_endian;
1858 char *wp, *cp;
1860 /* Determine whether host is little or big endian. */
1861 u.l = 1;
1862 big_endian = u.c[sizeof (long) - 1];
1863 wp = widep + (big_endian ? WCHAR_BYTES - 1 : 0);
1865 bzero (widep, (p - token_buffer) * WCHAR_BYTES);
1866 for (cp = token_buffer + 1; cp < p; cp++)
1867 *wp = *cp, wp += WCHAR_BYTES;
1868 len = p - token_buffer - 1;
1870 #endif
1871 yylval.ttype = build_string ((len + 1) * WCHAR_BYTES, widep);
1872 TREE_TYPE (yylval.ttype) = wchar_array_type_node;
1873 value = STRING;
1875 else if (objc_flag)
1877 extern tree build_objc_string();
1878 /* Return an Objective-C @"..." constant string object. */
1879 yylval.ttype = build_objc_string (p - token_buffer,
1880 token_buffer + 1);
1881 TREE_TYPE (yylval.ttype) = char_array_type_node;
1882 value = OBJC_STRING;
1884 else
1886 yylval.ttype = build_string (p - token_buffer, token_buffer + 1);
1887 TREE_TYPE (yylval.ttype) = char_array_type_node;
1888 value = STRING;
1891 *p++ = '"';
1892 *p = 0;
1894 break;
1897 case '+':
1898 case '-':
1899 case '&':
1900 case '|':
1901 case ':':
1902 case '<':
1903 case '>':
1904 case '*':
1905 case '/':
1906 case '%':
1907 case '^':
1908 case '!':
1909 case '=':
1911 register int c1;
1913 combine:
1915 switch (c)
1917 case '+':
1918 yylval.code = PLUS_EXPR; break;
1919 case '-':
1920 yylval.code = MINUS_EXPR; break;
1921 case '&':
1922 yylval.code = BIT_AND_EXPR; break;
1923 case '|':
1924 yylval.code = BIT_IOR_EXPR; break;
1925 case '*':
1926 yylval.code = MULT_EXPR; break;
1927 case '/':
1928 yylval.code = TRUNC_DIV_EXPR; break;
1929 case '%':
1930 yylval.code = TRUNC_MOD_EXPR; break;
1931 case '^':
1932 yylval.code = BIT_XOR_EXPR; break;
1933 case LSHIFT:
1934 yylval.code = LSHIFT_EXPR; break;
1935 case RSHIFT:
1936 yylval.code = RSHIFT_EXPR; break;
1937 case '<':
1938 yylval.code = LT_EXPR; break;
1939 case '>':
1940 yylval.code = GT_EXPR; break;
1943 token_buffer[1] = c1 = getc (finput);
1944 token_buffer[2] = 0;
1946 if (c1 == '=')
1948 switch (c)
1950 case '<':
1951 value = ARITHCOMPARE; yylval.code = LE_EXPR; goto done;
1952 case '>':
1953 value = ARITHCOMPARE; yylval.code = GE_EXPR; goto done;
1954 case '!':
1955 value = EQCOMPARE; yylval.code = NE_EXPR; goto done;
1956 case '=':
1957 value = EQCOMPARE; yylval.code = EQ_EXPR; goto done;
1959 value = ASSIGN; goto done;
1961 else if (c == c1)
1962 switch (c)
1964 case '+':
1965 value = PLUSPLUS; goto done;
1966 case '-':
1967 value = MINUSMINUS; goto done;
1968 case '&':
1969 value = ANDAND; goto done;
1970 case '|':
1971 value = OROR; goto done;
1972 case '<':
1973 c = LSHIFT;
1974 goto combine;
1975 case '>':
1976 c = RSHIFT;
1977 goto combine;
1979 else
1980 switch (c)
1982 case '-':
1983 if (c1 == '>')
1984 { value = POINTSAT; goto done; }
1985 break;
1986 case ':':
1987 if (c1 == '>')
1988 { value = ']'; goto done; }
1989 break;
1990 case '<':
1991 if (c1 == '%')
1992 { value = '{'; goto done; }
1993 if (c1 == ':')
1994 { value = '['; goto done; }
1995 break;
1996 case '%':
1997 if (c1 == '>')
1998 { value = '}'; goto done; }
1999 break;
2001 ungetc (c1, finput);
2002 token_buffer[1] = 0;
2004 if ((c == '<') || (c == '>'))
2005 value = ARITHCOMPARE;
2006 else value = c;
2007 goto done;
2010 case 0:
2011 /* Don't make yyparse think this is eof. */
2012 value = 1;
2013 break;
2015 default:
2016 value = c;
2019 done:
2020 /* yylloc.last_line = lineno; */
2022 return value;
2025 /* Sets the value of the 'yydebug' variable to VALUE.
2026 This is a function so we don't have to have YYDEBUG defined
2027 in order to build the compiler. */
2029 void
2030 set_yydebug (value)
2031 int value;
2033 #if YYDEBUG != 0
2034 yydebug = value;
2035 #else
2036 warning ("YYDEBUG not defined.");
2037 #endif