/* Separate lexical analyzer for GNU C++. Copyright (C) 1987 Free Software Foundation, Inc. Hacked by Michael Tiemann (tiemann@mcc.com) This file is part of GNU CC. GNU CC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* This file is the lexical analyzer for GNU C++. */ #include #include #include "config.h" #include "input.h" #include "tree.h" #ifdef atarist #include "c+-parse.h" #else #include "cplus-parse.tab.h" #endif #include "cplus-parse.h" #include "cplus-tree.h" #include "flags.h" #include "obstack.h" #include "assert.h" extern int errno; /* needed for VAX. */ #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free extern int xmalloc (); extern void free (); extern double atof (); /* This obstack is needed to hold text. It is not safe to use TOKEN_BUFFER because `check_newline' calls `yylex'. */ static struct obstack inline_text_obstack; static char *inline_text_firstobj; /* Holds translations from TREE_CODEs to operator name strings, i.e., opname_tab[PLUS_EXPR] == "+". */ char *opname_tab[NUM_TREE_CODES]; char *assignop_tab[NUM_TREE_CODES]; #define YYEMPTY -2 int yychar; /* the lookahead symbol */ YYSTYPE yylval; /* the semantic value of the */ /* lookahead symbol */ #if 0 YYLTYPE yylloc; /* location data for the lookahead */ /* symbol */ #endif int end_of_file; /* the declaration found for the last IDENTIFIER token read in. yylex must look this up to detect typedefs, which get token type TYPENAME, so it is left around in case the identifier is not a typedef but is used in a context which makes it a reference to a variable. */ tree lastiddecl; /* C++ extensions */ tree ridpointers[]; /* need this up here */ /* We may keep statistics about how long which files took to compile. */ static int header_time, body_time; static tree get_time_identifier (); static tree filename_times; static tree this_filename_time; /* Return something to represent absolute declarators containing a *. TARGET is the absolute declarator that the * contains. TYPE_QUALS is a list of modifiers such as const or volatile to apply to the pointer type, represented as identifiers. We return an INDIRECT_REF whose "contents" are TARGET and whose type is the modifier list. */ tree make_pointer_declarator (type_quals, target) tree type_quals, target; { return build (INDIRECT_REF, type_quals, target); } /* Return something to represent absolute declarators containing a &. TARGET is the absolute declarator that the & contains. TYPE_QUALS is a list of modifiers such as const or volatile to apply to the reference type, represented as identifiers. We return an ADDR_EXPR whose "contents" are TARGET and whose type is the modifier list. */ tree make_reference_declarator (type_quals, target) tree type_quals, target; { if (target && TREE_CODE (target) == ADDR_EXPR) { error ("cannot declare references to references"); return target; } if (target && TREE_CODE (target) == INDIRECT_REF) { error ("cannot declare pointers to references"); return target; } return build (ADDR_EXPR, type_quals, target); } /* Given a chain of STRING_CST nodes, concatenate them into one STRING_CST and give it a suitable array-of-chars data type. */ tree combine_strings (strings) tree strings; { register tree value, t; register int length = 1; int wide_length = 0; int wide_flag = 0; if (TREE_CHAIN (strings)) { /* More than one in the chain, so concatenate. */ register char *p, *q; /* Don't include the \0 at the end of each substring, except for the last one. Count wide strings and ordinary strings separately. */ for (t = strings; t; t = TREE_CHAIN (t)) { if (TREE_TYPE (t) == int_array_type_node) { wide_length += (TREE_STRING_LENGTH (t) - 1); wide_flag = 1; } else length += (TREE_STRING_LENGTH (t) - 1); } /* If anything is wide, the non-wides will be converted, which makes them take more space. */ if (wide_flag) length = length * UNITS_PER_WORD + wide_length; p = (char *) oballoc (length); /* Copy the individual strings into the new combined string. If the combined string is wide, convert the chars to ints for any individual strings that are not wide. */ q = p; for (t = strings; t; t = TREE_CHAIN (t)) { int len = TREE_STRING_LENGTH (t) - 1; if ((TREE_TYPE (t) == int_array_type_node) == wide_flag) { bcopy (TREE_STRING_POINTER (t), q, len); q += len; } else { int i; for (i = 0; i < len; i++) ((int *) q)[i] = TREE_STRING_POINTER (t)[i]; q += len * UNITS_PER_WORD; } } *q = 0; value = make_node (STRING_CST); TREE_STRING_POINTER (value) = p; TREE_STRING_LENGTH (value) = length; TREE_LITERAL (value) = 1; } else { value = strings; length = TREE_STRING_LENGTH (value); if (TREE_TYPE (value) == int_array_type_node) wide_flag = 1; } /* Create the array type for the string constant. -Wwrite-strings says make the string constant an array of const char so that copying it to a non-const pointer will get a warning. */ if (warn_write_strings) { tree elements = build_type_variant (wide_flag ? integer_type_node : char_type_node, 1, 0); TREE_TYPE (value) = build_array_type (elements, build_index_type (build_int_2 (length - 1, 0))); } else TREE_TYPE (value) = build_array_type (wide_flag ? integer_type_node : char_type_node, build_index_type (build_int_2 (length - 1, 0))); TREE_LITERAL (value) = 1; TREE_STATIC (value) = 1; return value; } /* Given a TOKEN and its estimated tree code CODE, produce a name which can be recognized by lookup_name. Based on the number of PARMS, build an appropriate operator fnname. This function is needed because until we know how many parameters we have, we cannot reliably tell what function indeed we are trying to declare. NPARMS is the number of additional parameters that this operator will ultimately have. If NPARMS == -1, then we are just building a name, and should not complain. This would be a good candidate for memoizing. */ tree build_operator_fnname (decl, parms, nparms) tree decl; tree parms; int nparms; { extern char *tree_code_name[]; /* print-tree.c */ char **opname_table, *opname; int assignop_p = 0; tree rval; enum tree_code code; char buf[1024]; int saw_class = nparms; while (parms) { tree type; if (TREE_VALUE (parms) == void_type_node) break; if (! saw_class) { type = TREE_VALUE (parms); if (TREE_CODE (type) == REFERENCE_TYPE) type = TREE_TYPE (type); if (TREE_CODE (type) == POINTER_TYPE) type = TREE_TYPE (type); if (IS_AGGR_TYPE (type)) saw_class = 1; } nparms++; parms = TREE_CHAIN (parms); } if (TREE_CODE (decl) == TYPE_EXPR) { /* @@ may need to perform type instantiation here. */ if (nparms > 1) error ("wrong number of arguments to type conversion operator"); /* The grammar will swallow an "()" if one was given. We attempt to correct for this lossage here. */ if (TREE_OPERAND (decl, 0) && TREE_CODE (TREE_OPERAND (decl, 0)) == CALL_EXPR) { extern FILE *finput; rval = build_typename_overload (groktypename (build_tree_list (TREE_TYPE (decl), NULL_TREE))); yychar = '('; ungetc (')', finput); } else { rval = build_typename_overload (groktypename (build_tree_list (TREE_TYPE (decl), TREE_OPERAND (decl, 0)))); } return rval; } if (TREE_PURPOSE (decl)) if (TREE_CODE (TREE_PURPOSE (decl)) == MODIFY_EXPR) { opname_table = assignop_tab; assignop_p = 1; } else abort (); else opname_table = opname_tab; code = TREE_CODE (TREE_VALUE (decl)); opname = opname_table[(int) code]; if (assignop_p) { if (nparms == 1 || nparms > 2) error ("wrong number of parameters op `operator %s'", opname); } else switch (code) { /* AC/DC */ case PLUS_EXPR: if (nparms == 1) code = CONVERT_EXPR; else if (nparms != 2) error ("wrong number of parameters to `operator %s'", opname); break; case ADDR_EXPR: case BIT_AND_EXPR: if (nparms == 1) TREE_CODE (TREE_VALUE (decl)) = code = ADDR_EXPR; else if (nparms == 2) code = BIT_AND_EXPR; else { code = BIT_AND_EXPR; error ("wrong number of parameters to `operator %s'", opname); } break; case MULT_EXPR: case INDIRECT_REF: if (nparms == 1) TREE_CODE (TREE_VALUE (decl)) = code = INDIRECT_REF; else if (nparms == 2) code = MULT_EXPR; else { code = MULT_EXPR; error ("wrong number of parameters to `operator %s'", opname); } break; case MINUS_EXPR: case NEGATE_EXPR: if (nparms == 1) TREE_CODE (TREE_VALUE (decl)) = code = NEGATE_EXPR; else if (nparms == 2) code = MINUS_EXPR; else { code = MINUS_EXPR; error ("wrong number of parameters to `operator %s'", opname); } break; case POINTSAT: if (nparms == 1 || nparms < 0) { TREE_CODE (TREE_VALUE (decl)) = code = COMPONENT_REF; } else { error ("wrong number of parameters to `operator ->()'"); } break; case METHOD_CALL_EXPR: switch (nparms) { case 0: case 1: error ("too few arguments to `operator ->()(...)'"); break; /* 4 happens when we pass in the canonical number of arguments. */ case 4: nparms = 3; case -1: case 2: case 3: break; default: error ("too many arguments to `operator ->()(...)'"); break; } break; /* The two following entrys are for two different ways of encoding `operator ='. */ case NOP_EXPR: if (nparms != 2 && nparms >= 0) error ("wrong number of parameters to `operator %s'", opname); break; case MODIFY_EXPR: if (nparms != 2 && nparms >= 0) error ("wrong number of parameters to `operator %s'", opname); break; /* Whatever it was, we know its arity. Just check that it has the right number of parameters defined. */ default: /* These are the only operators which do not need to have a class-type associated with them. */ if (code == NEW_EXPR && saw_class == 0) { rval = get_identifier ("__builtin_new"); return rval; } else if (code == DELETE_EXPR && saw_class == 0) { rval = get_identifier ("__builtin_delete"); return rval; } if (code == PREDECREMENT_EXPR || code == POSTINCREMENT_EXPR || code == COMPONENT_REF) { if (nparms > 1) error ("wrong number of parameters to `operator %s'", opname); } else if (nparms < 0 || code == CALL_EXPR || code == METHOD_CALL_EXPR) ; else if (nparms != tree_code_length [(int) code]) error ("wrong number of parameters to `operator %s'", opname); break; } if (! saw_class) { error ("`operator %s' must have at least one class type", opname); } if (assignop_p) sprintf (buf, OPERATOR_ASSIGN_FORMAT, tree_code_name [(int) code]); else sprintf (buf, OPERATOR_FORMAT, tree_code_name [(int) code]); rval = get_identifier (buf); TREE_OVERLOADED (rval) = 1; return rval; } char * operator_name_string (name) tree name; { extern char *tree_code_name[]; /* print-tree.c */ char *opname = IDENTIFIER_POINTER (name) + sizeof (OPERATOR_FORMAT) - sizeof ("%s"); int i, assign; /* Works for builtin and user defined types. */ if (IDENTIFIER_GLOBAL_VALUE (name) && TREE_CODE (IDENTIFIER_GLOBAL_VALUE (name)) == TYPE_DECL) return IDENTIFIER_POINTER (name); if (! strncmp (opname, "assign", 6)) { opname += 7; assign = 1; } else assign = 0; for (i = 0; i < NUM_TREE_CODES; i++) { if (! strncmp (opname, tree_code_name[i], strlen (tree_code_name[i]))) break; } assert (i != NUM_TREE_CODES); if (assign) return assignop_tab[i]; else return opname_tab[i]; } int lineno; /* current line number in file being read */ FILE *finput; /* input file. Normally a pipe from the preprocessor. */ static FILE *finput1; /* Real input files: 1 is main input file */ static FILE *finput2; /* 2 is input file for inline functions */ /* lexical analyzer */ static int maxtoken; /* Current nominal length of token buffer */ char *token_buffer; /* Pointer to token buffer. Actual allocated length is maxtoken + 2. */ static int max_wide; /* Current nominal length of wide_buffer. */ static int *wide_buffer; /* Pointer to wide-string buffer. Actual allocated length is max_wide + 1. */ #define NORID RID_UNUSED /* Compiled by Doug Schmidt's `gperf' program, version 1.5, written in GNU C++. The options used were: gperf -o -g -t -k1,2,$ -j3 -N is_reserved_word gplus.input */ struct resword { char *name; short token; enum rid rid;}; #define MIN_WORD_LENGTH 2 #define MAX_WORD_LENGTH 10 #define MIN_HASH_VALUE 4 #define MAX_HASH_VALUE 92 #ifdef __GNUC__ inline #endif static int hash (str, len) register char *str; register int len; { static int htable[] = { 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 92, 0, 92, 21, 6, 36, 6, 0, 24, 15, 30, 42, 92, 0, 0, 14, 3, 3, 33, 92, 9, 0, 0, 0, 39, 30, 15, 33, 92, 92, 92, 92, 92, 92, }; return htable[str[1]] + htable[str[0]] + htable[str[len - 1]] + len; } #ifdef __GNUC__ inline #endif struct resword * is_reserved_word (str, len) register char *str; register int len; { static struct resword wordlist[] = { { "",},{ "",},{ "",},{ "",}, { "else", ELSE, NORID, }, { "",}, { "struct", AGGR, RID_RECORD, }, { "__const", TYPE_QUAL, RID_CONST }, { "__inline", SCSPEC, RID_INLINE }, { "",}, { "__volatile", TYPE_QUAL, RID_VOLATILE }, { "union", AGGR, RID_UNION, }, { "delete", DELETE, NORID, }, { "default", DEFAULT, NORID, }, { "do", DO, NORID, }, { "double", TYPESPEC, RID_DOUBLE, }, { "",}, { "unsigned", TYPESPEC, RID_UNSIGNED, }, { "return", RETURN, NORID, }, { "__asm", ASM, NORID }, { "break", BREAK, NORID, }, { "enum", ENUM, NORID, }, { "long", TYPESPEC, RID_LONG, }, { "",}, { "extern", SCSPEC, RID_EXTERN, }, { "goto", GOTO, NORID, }, { "register", SCSPEC, RID_REGISTER, }, { "",}, { "auto", SCSPEC, RID_AUTO, }, { "float", TYPESPEC, RID_FLOAT, }, { "",},{ "",}, { "__typeof", TYPEOF, NORID }, { "__alignof", ALIGNOF, NORID }, { "this", THIS, NORID, }, { "short", TYPESPEC, RID_SHORT, }, { "new", NEW, NORID, }, { "",}, { "asm", ASM, NORID, }, { "for", FOR, NORID, }, { "",}, { "class", AGGR, RID_CLASS, }, { "static", SCSPEC, RID_STATIC, }, { "",}, { "const", TYPE_QUAL, RID_CONST, }, { "friend", TYPE_QUAL, RID_FRIEND, }, { "",}, { "continue", CONTINUE, NORID, }, { "int", TYPESPEC, RID_INT, }, { "private", PRIVATE, NORID, }, { "volatile", TYPE_QUAL, RID_VOLATILE, }, { "inline", SCSPEC, RID_INLINE, }, { "void", TYPESPEC, RID_VOID, }, { "operator", OPERATOR, NORID, }, { "signed", TYPESPEC, RID_SIGNED, }, { "",}, { "overload", OVERLOAD, NORID, }, { "protected", PROTECTED, NORID, }, { "",},{ "",},{ "",}, { "case", CASE, NORID, }, { "",}, { "typeof", TYPEOF, NORID, }, { "typedef", SCSPEC, RID_TYPEDEF, }, { "while", WHILE, NORID, }, { "switch", SWITCH, NORID, }, { "",},{ "",},{ "",},{ "",},{ "",}, { "sizeof", SIZEOF, NORID, }, { "",},{ "",}, { "public", PUBLIC, NORID, }, { "",},{ "",},{ "",}, { "char", TYPESPEC, RID_CHAR, }, { "",},{ "",}, { "dynamic", DYNAMIC, NORID, }, { "",},{ "",},{ "",},{ "",},{ "",}, { "virtual", SCSPEC, RID_VIRTUAL, }, { "",},{ "",},{ "",}, { "if", IF, NORID, }, }; if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) { register int key = hash (str, len); if (key <= MAX_HASH_VALUE) { register char *s = wordlist[key].name; if (*s == *str && !strcmp (str + 1, s + 1)) return &wordlist[key]; } } return 0; } /* The elements of `ridpointers' are identifier nodes for the reserved type names and storage classes. It is indexed by a RID_... value. */ tree ridpointers[(int) RID_MAX]; int check_newline (); static int skip_white_space (); static tree get_time_identifier (name) char *name; { tree time_identifier; int len = strlen (name); char *buf = alloca (len + 6); strcpy (buf, "file "); bcopy (name, buf+5, len); buf[len+5] = '\0'; time_identifier = get_identifier (buf); if (IDENTIFIER_LOCAL_VALUE (time_identifier) == NULL_TREE) { int temp = allocation_temporary_p (); if (temp) end_temporary_allocation (); IDENTIFIER_LOCAL_VALUE (time_identifier) = build_int_2 (0, 0); IDENTIFIER_GLOBAL_VALUE (time_identifier) = filename_times; filename_times = time_identifier; if (temp) resume_temporary_allocation (); } return time_identifier; } #ifdef __GNUC__ inline #endif static int my_gettime () { int old_quiet_flag = quiet_flag; int this_time; quiet_flag = 0; this_time = gettime (); quiet_flag = old_quiet_flag; return this_time; } void init_lex () { extern char *malloc (); init_method (); obstack_init (&inline_text_obstack); inline_text_firstobj = (char *) obstack_alloc (&inline_text_obstack, 0); /* Start it at 0, because check_newline is called at the very beginning and will increment it to 1. */ finput1 = finput; finput2 = fopen ("/dev/null", "r"); lineno = 0; current_function_decl = NULL; maxtoken = 40; token_buffer = (char *) xmalloc (maxtoken + 2); max_wide = 40; wide_buffer = (int *) xmalloc (max_wide + 1); ridpointers[(int) RID_INT] = get_identifier ("int"); ridpointers[(int) RID_CHAR] = get_identifier ("char"); ridpointers[(int) RID_VOID] = get_identifier ("void"); ridpointers[(int) RID_FLOAT] = get_identifier ("float"); ridpointers[(int) RID_DOUBLE] = get_identifier ("double"); ridpointers[(int) RID_SHORT] = get_identifier ("short"); ridpointers[(int) RID_LONG] = get_identifier ("long"); ridpointers[(int) RID_UNSIGNED] = get_identifier ("unsigned"); ridpointers[(int) RID_SIGNED] = get_identifier ("signed"); ridpointers[(int) RID_INLINE] = get_identifier ("inline"); ridpointers[(int) RID_CONST] = get_identifier ("const"); ridpointers[(int) RID_VOLATILE] = get_identifier ("volatile"); ridpointers[(int) RID_AUTO] = get_identifier ("auto"); ridpointers[(int) RID_STATIC] = get_identifier ("static"); ridpointers[(int) RID_EXTERN] = get_identifier ("extern"); ridpointers[(int) RID_TYPEDEF] = get_identifier ("typedef"); ridpointers[(int) RID_REGISTER] = get_identifier ("register"); /* C++ extensions. These are probably not correctly named. */ class_type_node = build_int_2 (class_type, 0); TREE_TYPE (class_type_node) = class_type_node; ridpointers[(int) RID_CLASS] = class_type_node; record_type_node = build_int_2 (record_type, 0); TREE_TYPE (record_type_node) = record_type_node; ridpointers[(int) RID_RECORD] = record_type_node; union_type_node = build_int_2 (union_type, 0); TREE_TYPE (union_type_node) = union_type_node; ridpointers[(int) RID_UNION] = union_type_node; enum_type_node = build_int_2 (enum_type, 0); TREE_TYPE (enum_type_node) = enum_type_node; ridpointers[(int) RID_ENUM] = enum_type_node; ridpointers[(int) RID_VIRTUAL] = get_identifier ("virtual"); ridpointers[(int) RID_FRIEND] = get_identifier ("friend"); opname_tab[(int) COMPONENT_REF] = "->"; opname_tab[(int) METHOD_CALL_EXPR] = "->()"; opname_tab[(int) INDIRECT_REF] = "(unary *)"; opname_tab[(int) ARRAY_REF] = "[]"; opname_tab[(int) MODIFY_EXPR] = "="; opname_tab[(int) NEW_EXPR] = "new"; opname_tab[(int) DELETE_EXPR] = "delete"; opname_tab[(int) COND_EXPR] = "... ? ... : ..."; opname_tab[(int) CALL_EXPR] = "()"; opname_tab[(int) PLUS_EXPR] = "+"; opname_tab[(int) MINUS_EXPR] = "-"; opname_tab[(int) MULT_EXPR] = "*"; opname_tab[(int) TRUNC_DIV_EXPR] = "/"; opname_tab[(int) CEIL_DIV_EXPR] = "(ceiling /)"; opname_tab[(int) FLOOR_DIV_EXPR] = "(floor /)"; opname_tab[(int) ROUND_DIV_EXPR] = "(round /)"; opname_tab[(int) TRUNC_MOD_EXPR] = "%"; opname_tab[(int) CEIL_MOD_EXPR] = "(ceiling %)"; opname_tab[(int) FLOOR_MOD_EXPR] = "(floor %)"; opname_tab[(int) ROUND_MOD_EXPR] = "(round %)"; opname_tab[(int) NEGATE_EXPR] = "-"; opname_tab[(int) MIN_EXPR] = "?"; opname_tab[(int) ABS_EXPR] = "abs"; opname_tab[(int) FFS_EXPR] = "ffs"; opname_tab[(int) LSHIFT_EXPR] = "<<"; opname_tab[(int) RSHIFT_EXPR] = ">>"; opname_tab[(int) BIT_IOR_EXPR] = "|"; opname_tab[(int) BIT_XOR_EXPR] = "^"; opname_tab[(int) BIT_AND_EXPR] = "&"; opname_tab[(int) BIT_ANDTC_EXPR] = "&~"; opname_tab[(int) BIT_NOT_EXPR] = "~"; opname_tab[(int) TRUTH_ANDIF_EXPR] = "&&"; opname_tab[(int) TRUTH_ORIF_EXPR] = "||"; opname_tab[(int) TRUTH_AND_EXPR] = "strict &&"; opname_tab[(int) TRUTH_OR_EXPR] = "strict ||"; opname_tab[(int) TRUTH_NOT_EXPR] = "!"; opname_tab[(int) LT_EXPR] = "<"; opname_tab[(int) LE_EXPR] = "<="; opname_tab[(int) GT_EXPR] = ">"; opname_tab[(int) GE_EXPR] = ">="; opname_tab[(int) EQ_EXPR] = "=="; opname_tab[(int) NE_EXPR] = "!="; opname_tab[(int) IN_EXPR] = "in"; opname_tab[(int) SET_LE_EXPR] = "subset"; opname_tab[(int) CARD_EXPR] = "#"; opname_tab[(int) RANGE_EXPR] = ".."; opname_tab[(int) CONVERT_EXPR] = "(unary +)"; opname_tab[(int) ADDR_EXPR] = "(unary &)"; opname_tab[(int) PREDECREMENT_EXPR] = "--"; opname_tab[(int) PREINCREMENT_EXPR] = "++"; opname_tab[(int) POSTDECREMENT_EXPR] = "--"; opname_tab[(int) POSTINCREMENT_EXPR] = "++"; assignop_tab[(int) NOP_EXPR] = "="; assignop_tab[(int) PLUS_EXPR] = "+="; assignop_tab[(int) MINUS_EXPR] = "-="; assignop_tab[(int) MULT_EXPR] = "*="; assignop_tab[(int) TRUNC_DIV_EXPR] = "/="; assignop_tab[(int) CEIL_DIV_EXPR] = "(ceiling /=)"; assignop_tab[(int) FLOOR_DIV_EXPR] = "(floor /=)"; assignop_tab[(int) ROUND_DIV_EXPR] = "(round /=)"; assignop_tab[(int) TRUNC_MOD_EXPR] = "%="; assignop_tab[(int) CEIL_MOD_EXPR] = "(ceiling %=)"; assignop_tab[(int) FLOOR_MOD_EXPR] = "(floor %=)"; assignop_tab[(int) ROUND_MOD_EXPR] = "(round %=)"; assignop_tab[(int) LSHIFT_EXPR] = "<<="; assignop_tab[(int) RSHIFT_EXPR] = ">>="; assignop_tab[(int) BIT_IOR_EXPR] = "|="; assignop_tab[(int) BIT_XOR_EXPR] = "^="; assignop_tab[(int) BIT_AND_EXPR] = "&="; if (flag_detailed_statistics) { this_filename_time = get_time_identifier (""); header_time = 0; body_time = my_gettime (); TREE_INT_CST_LOW (IDENTIFIER_LOCAL_VALUE (this_filename_time)) = body_time; } } void reinit_parse_for_function () { current_base_init_list = NULL_TREE; current_member_init_list = NULL_TREE; } /* Called from the top level: if there are any pending inlines to do, then do them now. */ void do_pending_inlines () { if (finput == finput1) { struct pending_inline *t = (struct pending_inline *) obstack_alloc (&inline_text_obstack, sizeof (struct pending_inline)); struct pending_inline *tail = pending_inlines; t->next = NULL; t->lineno = lineno; t->filename = input_filename; t->fndecl = NULL_TREE; t->token = yychar; t->token_value = yylval.itype; while (tail->next) tail = tail->next; tail->next = t; t = pending_inlines; pending_inlines = pending_inlines->next; finput = finput2; #ifdef atarist /* how unmodular can you get?!? at least we can hide the grossity in something system-dependent.... */ set_file_buffer_kludge(finput2, t->buf, t->len); #else #if defined(i386) && !defined(sequent) finput2->_ptr = finput2->_base = t->buf; _bufend(finput2) = t->buf + t->len; finput2->_flag = _IOLBF | _IOREAD; finput2->_flag = _IOFBF | _IOREAD; finput2->_cnt = t->len - 1; #else #ifndef hp9000s300 #ifdef USG setvbuf(finput2,t->buf,_IOFBF,t->len); finput2->_cnt = t->len-1; #else setbuffer (finput2, t->buf, t->len); finput2->_cnt = finput2->_bufsiz - 1; #endif /* USG */ #else setvbuf(finput2,t->buf,_IOFBF,t->len); finput2->_cnt = t->len-1; #endif #endif #endif /* atari */ lineno = t->lineno; input_filename = t->filename; #ifdef DO_INLINES_THE_OLD_WAY yychar = yylex (); #else yychar = PRE_PARSED_FUNCTION_DECL; yylval.ttype = t->fndecl; #endif } } /* Since inline methods can refer to text which has not yet been seen, we store the text of the method in a structure which is placed in the DECL_PENDING_INLINE_INFO field of the FUNCTION_DECL. After parsing the body of the class definition, the FUNCTION_DECL's are scanned to see which ones have this field set. Those are then digested one at a time. This function's FUNCTION_DECL will have a bit set in its common so that we know to watch out for it. */ void consume_string (this_obstack) register struct obstack *this_obstack; { register char c; do { c = getc (finput); if (c == '\\') { obstack_1grow (this_obstack, c); c = getc (finput); obstack_1grow (this_obstack, c); continue; } if (c == '\n') { if (pedantic) warning ("ANSI C forbids newline in string constant"); lineno++; } obstack_1grow (this_obstack, c); } while (c != '\"'); } static int yynextch (); void reinit_parse_for_method (yychar, decl) int yychar; tree decl; { register char c = 0; int blev = 1; tree fndecl = decl; int starting_lineno; char *inline_text_currentobj = (char *)obstack_alloc (&inline_text_obstack, 0); int len; starting_lineno = lineno; if (yychar != '{') { if (yychar != ':' && yychar != RETURN) yychar = '{'; obstack_1grow (&inline_text_obstack, yychar); while (c >= 0) { int this_lineno = lineno; c = yynextch (); /* Don't lose our cool if there are lots of comments. */ if (lineno - this_lineno) if (lineno - this_lineno == 1) obstack_1grow (&inline_text_obstack, '\n'); else { char buf[12]; sprintf (buf, "\n# %d \"", lineno); len = strlen (buf); obstack_grow (&inline_text_obstack, buf, len); len = strlen (input_filename); obstack_grow (&inline_text_obstack, input_filename, len); obstack_1grow (&inline_text_obstack, '\"'); obstack_1grow (&inline_text_obstack, '\n'); } /* strings must be read differently than text. */ if (c == '\"') { obstack_1grow (&inline_text_obstack, c); consume_string (&inline_text_obstack); c = yynextch (); } while (c > ' ') /* ASCII dependent! */ { obstack_1grow (&inline_text_obstack, c); if (c == '{') goto main_loop; if (c == '\"') consume_string (&inline_text_obstack); c = getc (finput); } if (c == '\n') lineno++; obstack_1grow (&inline_text_obstack, c); } } else obstack_1grow (&inline_text_obstack, '{'); main_loop: while (c >= 0) { int this_lineno = lineno; c = skip_white_space (getc (finput)); /* Don't lose our cool if there are lots of comments. */ if (lineno - this_lineno) if (lineno - this_lineno == 1) obstack_1grow (&inline_text_obstack, '\n'); else { char buf[12]; sprintf (buf, "\n# %d \"", lineno); len = strlen (buf); obstack_grow (&inline_text_obstack, buf, len); len = strlen (input_filename); obstack_grow (&inline_text_obstack, input_filename, len); obstack_1grow (&inline_text_obstack, '\"'); obstack_1grow (&inline_text_obstack, '\n'); } while (c > ' ') { obstack_1grow (&inline_text_obstack, c); if (c == '{') blev++; else if (c == '}') { blev--; if (blev == 0) goto done; } else if (c == '\"') consume_string (&inline_text_obstack); c = getc (finput); } if (c == '\n') lineno++; obstack_1grow (&inline_text_obstack, c); } done: obstack_1grow (&inline_text_obstack, '\0'); current_base_init_list = NULL_TREE; current_member_init_list = NULL_TREE; len = obstack_object_size (&inline_text_obstack); { struct pending_inline *t; /* `inline_text_currentobj' may no longer point to the real base of the stuff we are growing. */ char *buf = obstack_base (&inline_text_obstack); obstack_finish (&inline_text_obstack); t = (struct pending_inline *) obstack_alloc (&inline_text_obstack, sizeof (struct pending_inline)); t->buf = buf; t->len = len; t->lineno = starting_lineno; t->filename = input_filename; t->token = YYEMPTY; DECL_PENDING_INLINE_INFO (fndecl) = t; /* We make this declaration private (static in the C sense). */ TREE_PUBLIC (fndecl) = 0; } } tree cons_up_dtor_for_type (type) tree type; { extern tree void_list_node; int len; tree name = DECL_NAME (TYPE_NAME (type)); tree dtor = start_method (NULL_TREE, build_nt (CALL_EXPR, build_nt (BIT_NOT_EXPR, name), void_list_node)); obstack_1grow (&inline_text_obstack, '{'); obstack_1grow (&inline_text_obstack, '}'); obstack_1grow (&inline_text_obstack, '\0'); current_base_init_list = NULL_TREE; current_member_init_list = NULL_TREE; len = obstack_object_size (&inline_text_obstack); { struct pending_inline *t; /* `inline_text_currentobj' may no longer point to the real base of the stuff we are growing. */ char *buf = obstack_base (&inline_text_obstack); obstack_finish (&inline_text_obstack); t = (struct pending_inline *) obstack_alloc (&inline_text_obstack, sizeof (struct pending_inline)); t->buf = buf; t->len = len; t->lineno = lineno; t->filename = input_filename; t->token = YYEMPTY; DECL_PENDING_INLINE_INFO (dtor) = t; /* We make this declaration private (static in the C sense). */ TREE_PUBLIC (dtor) = 0; } finish_method (dtor); return dtor; } /* Heuristic to tell whether the user is missing a semicolon after a struct or enum declaration. Emit an error message if we know the user has blown it. */ void check_for_missing_semicolon (type) tree type; { if (yychar < 0) yychar = yylex (); if (yychar > 255 && yychar != IDENTIFIER && yychar != TYPENAME) { if (ANON_AGGRNAME_P (DECL_NAME (TYPE_NAME (type)))) error ("semicolon missing after %s declaration", TREE_CODE (type) == ENUMERAL_TYPE ? "enum" : "struct"); else error ("semicolon missing after declaration of `%s'", TYPE_NAME_STRING (type)); shadow_tag (build_tree_list (0, type)); } /* Could probably also hack cases where class { ... } f (); appears. */ } /* If C is not whitespace, return C. Otherwise skip whitespace and return first nonwhite char read. */ static int skip_white_space (c) register int c; { #if 0 register int inside; #endif for (;;) { switch (c) { /* Don't recognize comments in cc1: all comments are removed by cpp, and cpp output can include / and * consecutively as operators. */ #if 0 case '/': c = getc (finput); if (c != '*' && c != '/') { ungetc (c, finput); return '/'; } if (c == '/') { while (c != EOF) { c = getc (finput); if (c == '\n') { ungetc (c, finput); break; } } if (c == EOF) { error ("unterminated comment"); return EOF; } c = getc (finput); break; } c = getc (finput); inside = 1; while (inside) { if (c == '*') { while (c == '*') c = getc (finput); if (c == '/') { inside = 0; c = getc (finput); } } else if (c == '\n') { lineno++; c = getc (finput); } else if (c == EOF) { error ("unterminated comment"); break; } else c = getc (finput); } break; #endif case '\n': c = check_newline (); break; case ' ': case '\t': case '\f': case '\r': case '\b': c = getc (finput); break; case '\\': c = getc (finput); if (c == '\n') lineno++; else error ("stray '\\' in program"); c = getc (finput); break; default: return (c); } } } /* Make the token buffer longer, preserving the data in it. P should point to just beyond the last valid character in the old buffer. The value we return is a pointer to the new buffer at a place corresponding to P. */ static char * extend_token_buffer (p) char *p; { int offset = p - token_buffer; maxtoken = maxtoken * 2 + 10; token_buffer = (char *) xrealloc (token_buffer, maxtoken + 2); return token_buffer + offset; } /* At the beginning of a line, increment the line number and process any #-directive on this line. If the line is a #-directive, read the entire line and return a newline. Otherwise, return the line's first non-whitespace character. */ int check_newline () { register int c; register int token; lineno++; /* Read first nonwhite char on the line. */ c = getc (finput); while (c == ' ' || c == '\t') c = getc (finput); if (c != '#') { /* If not #, return it so caller will use it. */ return c; } /* Read first nonwhite char after the `#'. */ c = getc (finput); while (c == ' ' || c == '\t') c = getc (finput); /* If a letter follows, then if the word here is `line', skip it and ignore it; otherwise, ignore the line, with an error if the word isn't `pragma'. */ if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) { if (c == 'p') { if (getc (finput) == 'r' && getc (finput) == 'a' && getc (finput) == 'g' && getc (finput) == 'm' && getc (finput) == 'a' && ((c = getc (finput)) == ' ' || c == '\t' || c == '\n')) goto skipline; } else if (c == 'l') { if (getc (finput) == 'i' && getc (finput) == 'n' && getc (finput) == 'e' && ((c = getc (finput)) == ' ' || c == '\t')) goto linenum; } else if (c == 'i') { if (getc (finput) == 'd' && getc (finput) == 'e' && getc (finput) == 'n' && getc (finput) == 't' && ((c = getc (finput)) == ' ' || c == '\t')) { extern FILE *asm_out_file; if (pedantic) error ("ANSI C does not allow #ident"); /* Here we have just seen `#ident '. A string constant should follow. */ while (c == ' ' || c == '\t') c = getc (finput); /* If no argument, ignore the line. */ if (c == '\n') return c; ungetc (c, finput); token = yylex (); if (token != STRING || TREE_CODE (yylval.ttype) != STRING_CST) { error ("invalid #ident"); goto skipline; } #ifdef ASM_OUTPUT_IDENT ASM_OUTPUT_IDENT (asm_out_file, TREE_STRING_POINTER (yylval.ttype)); #endif /* Skip the rest of this line. */ goto skipline; } } error ("undefined or invalid # directive"); goto skipline; } linenum: /* Here we have either `#line' or `# '. In either case, it should be a line number; a digit should follow. */ while (c == ' ' || c == '\t') c = getc (finput); /* If the # is the only nonwhite char on the line, just ignore it. Check the new newline. */ if (c == '\n') return c; /* Something follows the #; read a token. */ ungetc (c, finput); token = yylex (); if (token == CONSTANT && TREE_CODE (yylval.ttype) == INTEGER_CST) { int old_lineno = lineno; /* subtract one, because it is the following line that gets the specified number */ int l = TREE_INT_CST_LOW (yylval.ttype) - 1; /* Is this the last nonwhite stuff on the line? */ c = getc (finput); while (c == ' ' || c == '\t') c = getc (finput); if (c == '\n') { /* No more: store the line number and check following line. */ lineno = l; return c; } ungetc (c, finput); /* More follows: it must be a string constant (filename). */ token = yylex (); if (token != STRING || TREE_CODE (yylval.ttype) != STRING_CST) { error ("invalid #line"); goto skipline; } /* Changing files again. This means currently collected time is charged against header time, and body time starts back at 0. */ if (flag_detailed_statistics) { int this_time = my_gettime (); tree time_identifier = get_time_identifier (TREE_STRING_POINTER (yylval.ttype)); header_time += this_time - body_time; TREE_INT_CST_LOW (IDENTIFIER_LOCAL_VALUE (this_filename_time)) += this_time - body_time; this_filename_time = time_identifier; body_time = this_time; } input_filename = (char *) permalloc (TREE_STRING_LENGTH (yylval.ttype) + 1); strcpy (input_filename, TREE_STRING_POINTER (yylval.ttype)); lineno = l; if (main_input_filename == 0) main_input_filename = input_filename; /* Is this the last nonwhite stuff on the line? */ c = getc (finput); while (c == ' ' || c == '\t') c = getc (finput); if (c == '\n') return c; ungetc (c, finput); token = yylex (); /* `1' after file name means entering new file. `2' after file name means just left a file. */ if (token == CONSTANT && TREE_CODE (yylval.ttype) == INTEGER_CST) { if (TREE_INT_CST_LOW (yylval.ttype) == 1) { struct file_stack *p = (struct file_stack *) xmalloc (sizeof (struct file_stack)); input_file_stack->line = old_lineno; p->next = input_file_stack; p->name = input_filename; input_file_stack = p; input_file_stack_tick++; } else if (input_file_stack->next) { struct file_stack *p = input_file_stack; input_file_stack = p->next; free (p); input_file_stack_tick++; } else error ("#-lines for entering and leaving files don't match"); } } else error ("invalid #-line"); /* skip the rest of this line. */ skipline: if (c == '\n') return c; while ((c = getc (finput)) && c != '\n'); return c; } #define isalnum(char) (char >= 'a' ? char <= 'z' : char >= '0' ? char <= '9' || (char >= 'A' && char <= 'Z') : 0) #define isdigit(char) (char >= '0' && char <= '9') #define ENDFILE -1 /* token that represents end-of-file */ static int readescape () { register int c = getc (finput); register int count, code; int firstdig; switch (c) { case 'x': code = 0; count = 0; while (1) { c = getc (finput); if (!(c >= 'a' && c <= 'f') && !(c >= 'A' && c <= 'F') && !(c >= '0' && c <= '9')) { ungetc (c, finput); break; } code *= 16; if (c >= 'a' && c <= 'f') code += c - 'a' + 10; if (c >= 'A' && c <= 'F') code += c - 'A' + 10; if (c >= '0' && c <= '9') code += c - '0'; if (count == 0) firstdig = code; count++; } if (count == 0) error ("\\x used with no following hex digits"); if ((count - 1) * 4 >= TYPE_PRECISION (integer_type_node) || ((1 << (TYPE_PRECISION (integer_type_node) - (count - 1) * 4)) <= firstdig)) warning ("hex escape out of range"); return code; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': code = 0; count = 0; while ((c <= '7') && (c >= '0') && (count++ < 3)) { code = (code * 8) + (c - '0'); c = getc (finput); } ungetc (c, finput); return code; case '\\': case '\'': case '"': return c; case '\n': lineno++; return -1; case 'n': return TARGET_NEWLINE; case 't': return TARGET_TAB; case 'r': return TARGET_CR; case 'f': return TARGET_FF; case 'b': return TARGET_BS; case 'a': return TARGET_BELL; case 'v': return TARGET_VT; case 'E': return 033; case '?': /* `\(', etc, are used at beginning of line to avoid confusing Emacs. */ case '(': case '{': case '[': return c; } if (c >= 040 && c <= 0177) warning ("unknown escape sequence `\\%c'", c); else warning ("unknown escape sequence: `\\' followed by char code 0x%x", c); return c; } static int nextchar = -1; static int nextyychar = -1; static YYSTYPE nextyylval; static tree nextlastiddecl; /* Return next non-whitespace input character, which may come from `finput', or from `nextchar'. */ static int yynextch () { int c; if (nextchar >= 0) { c = nextchar; nextchar = -1; } else c = getc (finput); return skip_white_space (c); } /* Value is 1 if we should try to make the next identifier look like a typename (when it may be a local variable or a class variable). Value is 0 if we treat this name in a default fashion. Value is -1 if we must not see a type name. */ int looking_for_typename = 0; void dont_see_typename () { looking_for_typename = -1; if (yychar == TYPENAME) { yychar = IDENTIFIER; lastiddecl = 0; } } void see_typename () { looking_for_typename = 0; if (yychar == IDENTIFIER) { lastiddecl = lookup_name (yylval.ttype); if (lastiddecl == 0 && flag_labels_ok) lastiddecl = IDENTIFIER_LABEL_VALUE (yylval.ttype); else if (lastiddecl != 0 && TREE_CODE (lastiddecl) == TYPE_DECL) yychar = TYPENAME; } } int yylex () { tree tmp; register int c; register int value; int wide_flag = 0; int dollar_seen = 0; relex: if (nextyychar >= 0) { value = nextyychar; yylval = nextyylval; lastiddecl = nextlastiddecl; nextyychar = -1; if (value == IDENTIFIER) { tmp = yylval.ttype; goto resume_identifier_processing; } goto done; } if (nextchar >= 0) c = nextchar, nextchar = -1; else c = getc (finput); /* Effectively do c = skip_white_space (c) but do it faster in the usual cases. */ while (1) switch (c) { case ' ': case '\t': case '\f': case '\r': case '\b': c = getc (finput); break; case '\n': case '/': case '\\': c = skip_white_space (c); default: goto found_nonwhite; } found_nonwhite: token_buffer[0] = c; token_buffer[1] = 0; /* yylloc.first_line = lineno; */ switch (c) { case EOF: token_buffer[0] = '\0'; if (pending_inlines) { struct pending_inline *t; int bufpos = 0; t = pending_inlines; #ifdef DO_METHODS_THE_OLD_WAY yylval.itype = t->token_value; value = t->token; #else if (t->fndecl == 0) { yylval.itype = t->token_value; value = t->token; } else { yylval.ttype = t->fndecl; value = PRE_PARSED_FUNCTION_DECL; } #endif lineno = t->lineno; /* yylloc.first_line = lineno; */ input_filename = t->filename; if (t->next) { /* The buffer we used will be freed at the end of this function. */ pending_inlines = pending_inlines->next; #ifdef atarist /* how unmodular can you get?!? at least we can hide the grossity in something system-dependent.... */ set_file_buffer_kludge(finput2, t->buf, t->len); #else #if defined(i386) && !defined(sequent) finput2->_ptr = finput2->_base = t->buf; _bufend(finput2) = t->buf + t->len; finput2->_flag = _IOFBF | _IOREAD; finput2->_cnt = t->len - 1; #else #ifndef hp9000s300 #ifdef USG setvbuf(finput2,t->buf,_IOFBF,t->len); finput2->_cnt = t->len-1; #else setbuffer (finput2, t->buf, t->len); finput2->_cnt = finput2->_bufsiz - 1; #endif /* USG */ #else setvbuf(finput2,t->buf,_IOFBF,t->len); finput2->_cnt = t->len-1; #endif #endif #endif /* atari */ } else { pending_inlines = NULL; finput = finput1; obstack_free (&inline_text_obstack, inline_text_firstobj); } /* The space used by T will be freed after all inline functions have been processed. */ if (value <= 0) goto relex; else goto done; } end_of_file = 1; value = ENDFILE; break; case '$': if (dollars_in_ident) { dollar_seen = 1; goto letter; } return '$'; case 'L': /* Capital L may start a wide-string or wide-character constant. */ { register int c = getc (finput); if (c == '\'') { wide_flag = 1; goto char_constant; } if (c == '"') { wide_flag = 1; goto string_constant; } ungetc (c, finput); } case 'A': case 'B': case 'C': case 'D': case 'E': case 'F': case 'G': case 'H': case 'I': case 'J': case 'K': case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R': case 'S': case 'T': case 'U': case 'V': case 'W': case 'X': case 'Y': case 'Z': case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g': case 'h': case 'i': case 'j': case 'k': case 'l': case 'm': case 'n': case 'o': case 'p': case 'q': case 'r': case 's': case 't': case 'u': case 'v': case 'w': case 'x': case 'y': case 'z': case '_': letter: { register char *p; p = token_buffer; while (isalnum(c) || (c == '_') || c == '$') { if (p >= token_buffer + maxtoken) p = extend_token_buffer (p); if (c == '$' && ! dollars_in_ident) break; *p++ = c; c = getc (finput); } *p = 0; nextchar = c; value = IDENTIFIER; yylval.itype = 0; /* Try to recognize a keyword. Uses minimum-perfect hash function */ { register struct resword *ptr; if (ptr = is_reserved_word (token_buffer, p - token_buffer)) { if (current_lang_name != lang_name_cplusplus) { if (ptr->rid == RID_CLASS || ptr->rid == RID_FRIEND || ptr->rid == RID_VIRTUAL) { ptr = 0; goto not_reserved_word_after_all; } } if (ptr->rid) { yylval.ttype = ridpointers[(int) ptr->rid]; /* If this provides a type for us, then revert lexical state to standard state. */ if (TREE_CODE (yylval.ttype) == IDENTIFIER_NODE && IDENTIFIER_GLOBAL_VALUE (yylval.ttype) != 0 && TREE_CODE (IDENTIFIER_GLOBAL_VALUE (yylval.ttype)) == TYPE_DECL) looking_for_typename = 0; /* Check if this is a language-type declaration. Just glimpse the next non-white character. */ nextchar = skip_white_space (nextchar); if (nextchar == '"') { /* We are looking at a string. Complain if the token before the string is no `extern'. Could cheat some memory by placing this string on the temporary_, instead of the saveable_ obstack. */ tree lang_name; if (ptr->rid != RID_EXTERN) error ("invalid modifier `%s' for language string", ptr->name); yylex (); value = EXTERN_LANG_STRING; yylval.ttype = get_identifier (TREE_STRING_POINTER (yylval.ttype)); break; } } if ((! flag_no_asm /* -fno-asm means don't recognize the non-ANSI keywords. */ || ((int) ptr->token != ASM && (int) ptr->token != TYPEOF && (ptr->rid != RID_INLINE || current_lang_name == lang_name_cplusplus)) /* Recognize __asm and __inline despite -fno-asm. */ || token_buffer[0] == '_') /* -ftraditional means don't recognize nontraditional keywords typeof, const, volatile, signed or inline. */ && (! flag_traditional || ((int) ptr->token != TYPE_QUAL && (int) ptr->token != TYPEOF && ptr->rid != RID_SIGNED && (ptr->rid != RID_INLINE || current_lang_name == lang_name_cplusplus)) /* Recognize __inline, etc. despite -ftraditional. */ || token_buffer[0] == '_')) value = (int) ptr->token; } not_reserved_word_after_all: ; } /* If we did not find a keyword, look for an identifier (or a typename). */ if (value == IDENTIFIER) { tmp = get_identifier (token_buffer); /* Make sure that user does not collide with our internal naming scheme. */ if (dollar_seen && (THIS_NAME_P (tmp) || VPTR_NAME_P (tmp) || DESTRUCTOR_NAME_P (tmp) || WRAPPER_OR_ANTI_WRAPPER_NAME_P (tmp) || OPERATOR_NAME_P (tmp) || VTABLE_NAME_P (tmp) || OPERATOR_TYPENAME_P (tmp) || TEMP_NAME_P (tmp) || ANON_AGGRNAME_P (tmp) || ANON_PARMNAME_P (tmp))) fatal ("identifier name `%s' conflicts with GNU C++ internal naming strategy", token_buffer); /* Come into here if we must reprocess an identifier. */ resume_identifier_processing: if (looking_for_typename == 1 && TREE_TYPE (tmp) != 0) lastiddecl = TREE_TYPE (tmp); else lastiddecl = lookup_name (tmp); if (lastiddecl && TREE_CODE (lastiddecl) == TYPE_DECL && looking_for_typename >= 0) { /* This call could blow away yylval. */ c = skip_white_space (nextchar); if (c == ':') { c = getc (finput); if (c == ':') { nextchar = -1; value = TYPENAME_SCOPE; } else { nextchar = c; value = TYPENAME_COLON; } } else if (c == '.' && current_function_decl == NULL_TREE && current_class_type == NULL_TREE) { c = getc (finput); if (c == '.') { nextchar = -1; c = getc (finput); if (c != '.') error ("missing '.' in `...'"); value = TYPENAME_ELLIPSIS; tmp = build_tree_list (NULL_TREE, build_tree_list (TREE_TYPE (lastiddecl), NULL_TREE)); } else { nextchar = c; warning ("use of obsolete scope operator `.'; use `::' instead"); value = TYPENAME_SCOPE; } looking_for_typename = 0; } else { nextchar = c; value = TYPENAME; if (looking_for_typename == 1) { looking_for_typename = 0; #if 0 yylval.ttype = TREE_TYPE (lastiddecl); break; #endif } } } else if (lastiddecl == 0 && flag_labels_ok) lastiddecl = IDENTIFIER_LABEL_VALUE (tmp); yylval.ttype = tmp; } if (value == NEW && ! global_bindings_p ()) { looking_for_typename = 1; return NEW; } } break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': case '.': { register char *p; int base = 10; int count = 0; int largest_digit = 0; int numdigits = 0; /* for multi-precision arithmetic, we store only 8 live bits in each short, giving us 64 bits of reliable precision */ short shorts[8]; enum anon1 { NOT_FLOAT, AFTER_POINT, TOO_MANY_POINTS} floatflag = NOT_FLOAT; for (count = 0; count < 8; count++) shorts[count] = 0; p = token_buffer; *p++ = c; if (c == '0') { *p++ = (c = getc (finput)); if ((c == 'x') || (c == 'X')) { base = 16; *p++ = (c = getc (finput)); } else { base = 8; numdigits++; } } /* Read all the digits-and-decimal-points. */ while (c == '.' || (isalnum (c) && (c != 'l') && (c != 'L') && (c != 'u') && (c != 'U') && (floatflag == NOT_FLOAT || ((c != 'f') && (c != 'F'))))) { if (c == '.') { if (base == 16) error ("floating constant may not be in radix 16"); if (floatflag == AFTER_POINT) { error ("malformed floating constant"); floatflag = TOO_MANY_POINTS; } else floatflag = AFTER_POINT; base = 10; *p++ = c = getc (finput); /* Accept '.' as the start of a floating-point number only when it is followed by a digit. Otherwise, unread the following non-digit and use the '.' as a structural token. */ if (p == token_buffer + 2 && !isdigit (c)) { if (c == '.') { c = getc (finput); if (c == '.') { *p++ = '.'; *p = '\0'; value = ELLIPSIS; goto done; } nextchar = c; token_buffer[2] = '\0'; value = RANGE; goto done; } nextchar = c; token_buffer[1] = '\0'; value = '.'; goto done; } } else { /* It is not a decimal point. It should be a digit (perhaps a hex digit). */ if (isdigit (c)) { c = c - '0'; } else if (base <= 10) { if ((c&~040) == 'E') { base = 10; floatflag = AFTER_POINT; break; /* start of exponent */ } error ("nondigits in number and not hexadecimal"); c = 0; } else if (c >= 'a') { c = c - 'a' + 10; } else { c = c - 'A' + 10; } if (c >= largest_digit) largest_digit = c; numdigits++; for (count = 0; count < 8; count++) { (shorts[count] *= base); if (count) { shorts[count] += (shorts[count-1] >> 8); shorts[count-1] &= (1<<8)-1; } else shorts[0] += c; } if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = (c = getc (finput)); } } if (numdigits == 0) error ("numeric constant with no digits"); if (largest_digit >= base) error ("numeric constant contains digits beyond the radix"); /* Remove terminating char from the token buffer and delimit the string */ *--p = 0; if (floatflag != NOT_FLOAT) { tree type = double_type_node; char f_seen = 0; char l_seen = 0; double value; /* Read explicit exponent if any, and put it in tokenbuf. */ if ((c == 'e') || (c == 'E')) { if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); if ((c == '+') || (c == '-')) { *p++ = c; c = getc (finput); } if (! isdigit (c)) error ("floating constant exponent has no digits"); while (isdigit (c)) { if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); } } *p = 0; errno = 0; value = atof (token_buffer); #ifdef ERANGE if (errno == ERANGE && !flag_traditional) { char *p1 = token_buffer; /* Check for "0.0" and variants; Sunos 4 spuriously returns ERANGE for them. */ while (*p1 == '0') p1++; if (*p1 == '.') p1++; while (*p1 == '0') p1++; if (*p1 != 0) warning ("floating point number exceeds range of `double'"); } #endif /* Read the suffixes to choose a data type. */ while (1) { if (c == 'f' || c == 'F') { if (f_seen) error ("two `f's in floating constant"); f_seen = 1; type = float_type_node; } else if (c == 'l' || c == 'L') { if (l_seen) error ("two `l's in floating constant"); l_seen = 1; type = long_double_type_node; } else { if (isalnum (c)) { error ("garbage at end of number"); while (isalnum (c)) { if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); } } break; } if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); } /* Create a node with determined type and value. */ yylval.ttype = build_real (type, value); ungetc (c, finput); *p = 0; } else { tree type; int spec_unsigned = 0; int spec_long = 0; while (1) { if (c == 'u' || c == 'U') { if (spec_unsigned) error ("two `u's in integer constant"); spec_unsigned = 1; } else if (c == 'l' || c == 'L') { if (spec_long) error ("two `l's in integer constant"); spec_long = 1; } else { if (isalnum (c)) { error ("garbage at end of number"); while (isalnum (c)) { if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); } } break; } if (p >= token_buffer + maxtoken - 3) p = extend_token_buffer (p); *p++ = c; c = getc (finput); } ungetc (c, finput); if (shorts[7] | shorts[6] | shorts[5] | shorts[4]) warning ("integer constant out of range"); /* This is simplified by the fact that our constant is always positive. */ yylval.ttype = build_int_2 ((shorts[3]<<24) + (shorts[2]<<16) + (shorts[1]<<8) + shorts[0], 0); if (!spec_long && !spec_unsigned && int_fits_type_p (yylval.ttype, integer_type_node)) type = integer_type_node; else if (!spec_long && base != 10 && int_fits_type_p (yylval.ttype, unsigned_type_node)) type = unsigned_type_node; else if (!spec_unsigned && int_fits_type_p (yylval.ttype, long_integer_type_node)) type = long_integer_type_node; else { type = long_unsigned_type_node; if (! int_fits_type_p (yylval.ttype, long_unsigned_type_node)) warning ("integer constant out of range"); } TREE_TYPE (yylval.ttype) = type; } value = CONSTANT; break; } case '\'': char_constant: c = getc (finput); { register int code = 0; tryagain: if (c == '\\') { c = readescape (); if (c < 0) goto tryagain; if (!wide_flag && c >= (1 << BITS_PER_UNIT)) warning ("escape sequence out of range for character"); } else if (c == '\n') { if (pedantic) warning ("ANSI C forbids newline in character constant"); lineno++; } code = c; token_buffer[1] = c; token_buffer[2] = '\''; token_buffer[3] = 0; c = getc (finput); if (c != '\'') error ("malformatted character constant"); /* If char type is signed, sign-extend the constant. */ if (! wide_flag) { if (TREE_UNSIGNED (char_type_node) || ((code >> (BITS_PER_UNIT - 1)) & 1) == 0) yylval.ttype = build_int_2 (code & ((1 << BITS_PER_UNIT) - 1), 0); else yylval.ttype = build_int_2 (code | ((-1) << BITS_PER_UNIT), -1); } else yylval.ttype = build_int_2 (code, 0); if (flag_char_charconst) TREE_TYPE (yylval.ttype) = char_type_node; else TREE_TYPE (yylval.ttype) = integer_type_node; value = CONSTANT; break; } case '"': string_constant: { int *widep; register char *p; c = getc (finput); p = token_buffer + 1; if (wide_flag) widep = wide_buffer; while (c != '"' && c >= 0) { if (c == '\\') { c = readescape (); if (c < 0) goto skipnewline; if (!wide_flag && c >= (1 << BITS_PER_UNIT)) warning ("escape sequence out of range for character"); } else if (c == '\n') { if (pedantic) warning ("ANSI C forbids newline in string constant"); lineno++; } /* Store the char in C into the appropriate buffer. */ if (wide_flag) { if (widep == wide_buffer + max_wide) { int n = widep - wide_buffer; max_wide *= 2; wide_buffer = (int *) xrealloc (wide_buffer, max_wide + 1); widep = wide_buffer + n; } *widep++ = c; } else { if (p == token_buffer + maxtoken) p = extend_token_buffer (p); *p++ = c; } skipnewline: c = getc (finput); if (c == EOF) { error("Unterminated string"); break; } } /* We have read the entire constant. Construct a STRING_CST for the result. */ if (wide_flag) { /* If this is a L"..." wide-string, make a vector of the ints in wide_buffer. */ *widep = 0; /* We have not implemented the case where `int' on the target and on the execution machine differ in size. */ if (TYPE_PRECISION (integer_type_node) != sizeof (int) * BITS_PER_UNIT) abort (); yylval.ttype = build_string ((widep - wide_buffer) * sizeof (int), (char *)wide_buffer); TREE_TYPE (yylval.ttype) = int_array_type_node; } else { *p = 0; yylval.ttype = build_string (p - token_buffer, token_buffer + 1); TREE_TYPE (yylval.ttype) = char_array_type_node; } *p++ = '"'; *p = 0; value = STRING; break; } case '+': case '-': case '&': case '|': case '<': case '>': case '*': case '/': case '%': case '^': case '!': case '=': { register int c1; combine: switch (c) { case '+': yylval.code = PLUS_EXPR; break; case '-': yylval.code = MINUS_EXPR; break; case '&': yylval.code = BIT_AND_EXPR; break; case '|': yylval.code = BIT_IOR_EXPR; break; case '*': yylval.code = MULT_EXPR; break; case '/': yylval.code = TRUNC_DIV_EXPR; break; case '%': yylval.code = TRUNC_MOD_EXPR; break; case '^': yylval.code = BIT_XOR_EXPR; break; case LSHIFT: yylval.code = LSHIFT_EXPR; break; case RSHIFT: yylval.code = RSHIFT_EXPR; break; case '<': yylval.code = LT_EXPR; break; case '>': yylval.code = GT_EXPR; break; } token_buffer[1] = c1 = getc (finput); token_buffer[2] = 0; if (c1 == '=') { switch (c) { case '<': value = ARITHCOMPARE; yylval.code = LE_EXPR; goto done; case '>': value = ARITHCOMPARE; yylval.code = GE_EXPR; goto done; case '!': value = EQCOMPARE; yylval.code = NE_EXPR; goto done; case '=': value = EQCOMPARE; yylval.code = EQ_EXPR; goto done; } value = ASSIGN; goto done; } else if (c == c1) switch (c) { case '+': value = PLUSPLUS; goto done; case '-': value = MINUSMINUS; goto done; case '&': value = ANDAND; goto done; case '|': value = OROR; goto done; case '<': c = LSHIFT; goto combine; case '>': c = RSHIFT; goto combine; } else if ((c == '-') && (c1 == '>')) { nextchar = skip_white_space (getc (finput)); if (nextchar == '(') { int next_c = skip_white_space (getc (finput)); if (next_c == ')') { nextchar = -1; value = POINTSAT_LEFT_RIGHT; goto done; } ungetc (next_c, finput); } value = POINTSAT; goto done; } else if (c1 == '?') if (c == '<') { value = MIN_MAX; yylval.code = MIN_EXPR; goto done; } else if (c == '>') { value = MIN_MAX; yylval.code = MAX_EXPR; goto done; } nextchar = c1; token_buffer[1] = 0; if ((c == '<') || (c == '>')) value = ARITHCOMPARE; else value = c; goto done; } case ':': c = getc (finput); if (c == ':') { token_buffer[1] = ':'; token_buffer[2] = '\0'; value = SCOPE; yylval.itype = 1; } else { nextchar = c; value = ':'; } break; case 0: /* Don't make yyparse think this is eof. */ value = 1; break; case '(': /* try, weakly, to handle casts to pointers to functions. */ nextchar = skip_white_space (getc (finput)); if (nextchar == '*') { int next_c = skip_white_space (getc (finput)); if (next_c == ')') { nextchar = -1; yylval.ttype = build (INDIRECT_REF, 0, 0); value = PAREN_STAR_PAREN; } else { ungetc (next_c, finput); value = c; } } /* Go down for a (X::*) or (X::&). */ else if (nextchar >= 'a' && nextchar <= 'z' || nextchar >= 'A' && nextchar <= 'Z' || nextchar == '_' || nextchar == '$') { YYSTYPE this_yylval = yylval; tree this_lastiddecl = lastiddecl; nextyychar = yylex (); if (nextyychar == TYPENAME_SCOPE) { if (nextchar < 0) nextchar = skip_white_space (getc (finput)); if (nextchar == '*' || nextchar == '&') { int next_c = skip_white_space (getc (finput)); if (next_c == ')') { nextyychar = -1; if (nextchar == '*') { value = PAREN_X_SCOPE_STAR_PAREN; yylval.ttype = build_nt (SCOPE_REF, yylval.ttype, build (INDIRECT_REF, 0, 0)); } else { value = PAREN_X_SCOPE_REF_PAREN; yylval.ttype = build_nt (SCOPE_REF, yylval.ttype, build (ADDR_EXPR, 0, 0)); } nextchar = -1; } else { ungetc (next_c, finput); nextyylval = yylval; nextlastiddecl = lastiddecl; yylval = this_yylval; lastiddecl = this_lastiddecl; value = c; } } else { nextyylval = yylval; nextlastiddecl = lastiddecl; yylval = this_yylval; lastiddecl = this_lastiddecl; value = c; } } else { nextyylval = yylval; nextlastiddecl = lastiddecl; yylval = this_yylval; lastiddecl = this_lastiddecl; value = c; } } else value = c; break; default: value = c; } done: /* yylloc.last_line = lineno; */ return value; } int rid_index (name) tree name; { register struct resword *ptr; ptr = is_reserved_word (IDENTIFIER_POINTER (name), IDENTIFIER_LENGTH (name)); if (ptr == 0) abort (); return (int)ptr->rid; } typedef enum { d_kind, t_kind, s_kind, r_kind, e_kind, c_kind, x_kind, lang_decl, lang_type, all_kinds } tree_node_kind; extern int tree_node_kinds[]; extern char *tree_node_kind_names[]; tree build_lang_decl (code, name, type) enum tree_code code; tree name; tree type; { extern struct obstack *current_obstack, *saveable_obstack; register tree t = build_decl (code, name, type); struct obstack *obstack = current_obstack; register int i = sizeof (struct lang_decl) / sizeof (int); register int *pi; if (! TREE_PERMANENT (t)) obstack = saveable_obstack; pi = (int *) obstack_alloc (obstack, sizeof (struct lang_decl)); while (i > 0) pi[--i] = 0; DECL_LANG_SPECIFIC (t) = (struct lang_decl *) pi; DECL_MAIN_VARIANT (t) = t; DECL_ORIGINAL_NAME (t) = name; if (current_lang_name == lang_name_cplusplus) { DECL_LANGUAGE (t) = lang_cplusplus; #ifndef NO_AUTO_OVERLOAD if (code == FUNCTION_DECL && ! (IDENTIFIER_LENGTH (name) == 4 && IDENTIFIER_POINTER (name)[0] == 'm' && strcmp (IDENTIFIER_POINTER (name), "main") == 0) && ! (IDENTIFIER_LENGTH (name) > 10 && IDENTIFIER_POINTER (name)[0] == '_' && IDENTIFIER_POINTER (name)[1] == '_' && strncmp (IDENTIFIER_POINTER (name)+2, "builtin_", 8) == 0)) { TREE_OVERLOADED (name) = 1; } #endif } else if (current_lang_name == lang_name_c) DECL_LANGUAGE (t) = lang_c; else abort (); tree_node_kinds[(int)lang_decl] += 1; return t; } tree make_lang_type (code) enum tree_code code; { extern struct obstack *current_obstack, *saveable_obstack; register tree t = make_node (code); struct obstack *obstack = current_obstack; register int i = sizeof (struct lang_type) / sizeof (int); register int *pi; if (! TREE_PERMANENT (t)) obstack = saveable_obstack; pi = (int *) obstack_alloc (obstack, sizeof (struct lang_type)); while (i > 0) pi[--i] = 0; TYPE_LANG_SPECIFIC (t) = (struct lang_type *) pi; CLASSTYPE_MAIN_VARIANT (t) = t; CLASSTYPE_THIS_VARIANT (t) = t; /* Make sure this is laid out, for ease of use later. In the presence of parse errors, the normal was of assuring this might not ever get executed, so we lay it out *immediately*. */ build_pointer_type (t); CLASSTYPE_AS_LIST (t) = build_tree_list (NULL_TREE, t); tree_node_kinds[(int)lang_type] += 1; return t; } void copy_decl_lang_specific (decl) tree decl; { extern struct obstack *current_obstack, *saveable_obstack; register int *old = (int *)DECL_LANG_SPECIFIC (decl); struct obstack *obstack = current_obstack; register int i = sizeof (struct lang_decl) / sizeof (int); register int *pi; if (! TREE_PERMANENT (decl)) obstack = saveable_obstack; pi = (int *) obstack_alloc (obstack, sizeof (struct lang_decl)); while (i-- > 0) pi[i] = old[i]; DECL_LANG_SPECIFIC (decl) = (struct lang_decl *) pi; tree_node_kinds[(int)lang_decl] += 1; } void copy_type_lang_specific (type) tree type; { extern struct obstack *current_obstack, *saveable_obstack; register int *old = (int *)TYPE_LANG_SPECIFIC (type); struct obstack *obstack = current_obstack; register int i = sizeof (struct lang_type) / sizeof (int); register int *pi; if (! TREE_PERMANENT (type)) obstack = saveable_obstack; pi = (int *) obstack_alloc (obstack, sizeof (struct lang_type)); while (i-- > 0) pi[i] = old[i]; TYPE_LANG_SPECIFIC (type) = (struct lang_type *) pi; tree_node_kinds[(int)lang_type] += 1; } tree build_with_cleanup (exp, type, rtl) tree exp; tree type; struct rtx_def *rtl; { if (type != NULL_TREE || TYPE_NEEDS_DESTRUCTOR (TREE_TYPE (exp))) { tree rval = make_node (WITH_CLEANUP_EXPR); if (type == NULL_TREE) type = TREE_TYPE (exp); TREE_OPERAND (rval, 0) = exp; TREE_OPERAND (rval, 1) = make_node (RTL_EXPR); TREE_OPERAND (rval, 2) = build_delete (TYPE_POINTER_TO (type), build (ADDR_EXPR, TYPE_POINTER_TO (type), TREE_OPERAND (rval, 1)), integer_zero_node, 1); if (rtl != 0) RTL_EXPR_RTL (TREE_OPERAND (rval, 1)) = rtl; if (TREE_CODE (exp) == CALL_EXPR && TREE_VALUE (TREE_OPERAND (exp, 1)) == NULL_TREE) TREE_VALUE (TREE_OPERAND (exp, 1)) = TREE_OPERAND (rval, 1); TREE_TYPE (rval) = type; return rval; } return NULL_TREE; } void dump_time_statistics () { register tree prev = 0, decl, next; int this_time = my_gettime (); TREE_INT_CST_LOW (IDENTIFIER_LOCAL_VALUE (this_filename_time)) += this_time - body_time; fprintf (stderr, "\n******\n"); print_time ("header files (total)", header_time); print_time ("main file (total)", this_time - body_time); fprintf (stderr, "ratio = %g : 1\n", (double)header_time / (double)(this_time - body_time)); fprintf (stderr, "\n******\n"); for (decl = filename_times; decl; decl = next) { next = IDENTIFIER_GLOBAL_VALUE (decl); IDENTIFIER_GLOBAL_VALUE (decl) = prev; prev = decl; } for (decl = prev; decl; decl = IDENTIFIER_GLOBAL_VALUE (decl)) print_time (IDENTIFIER_POINTER (decl), TREE_INT_CST_LOW (IDENTIFIER_LOCAL_VALUE (decl))); }