7cbb2a85e7
* cse.c (approx_reg_cost_1, cse_insn): Fix -Wc++-compat and/or -Wcast-qual warnings. * gcc.c (process_command): Likewise. * genattrtab.c (oballoc): Use XOBNEW. (oballocvec): Define. (attr_hash_add_rtx, attr_hash_add_string, attr_string, get_attr_value, fill_attr, make_length_attrs, gen_attr, gen_insn, gen_delay, find_attr, gen_insn_reserv, gen_bypass_1): Fix -Wc++-compat and/or -Wcast-qual warnings. * genautomata.c (XCREATENODE, XCREATENODEVEC, XCREATENODEVAR, XCOPYNODE, XCOPYNODEVEC, XCOPYNODEVAR): New. (gen_cpu_unit, gen_query_cpu_unit, gen_bypass, gen_excl_set, gen_presence_absence_set, gen_automaton, gen_regexp_el, gen_regexp_repeat, gen_regexp_allof, gen_regexp_oneof, gen_regexp_sequence, gen_reserv, gen_insn_reserv, process_excls, add_excls, process_presence_absence_names, process_presence_absence_patterns, add_presence_absence, process_regexp, add_advance_cycle_insn_decl, get_free_alt_state, get_free_state, add_arc, get_free_automata_list_el, form_reserv_sets_list, copy_insn_regexp, transform_1, transform_2, transform_3, cache_presence, create_ainsns, create_automata, create_state_ainsn_table, dfa_insn_code_enlarge, output_trans_func, output_min_issue_delay_func, output_dead_lock_func, output_reset_func, output_get_cpu_unit_code_func, output_dfa_start_func, expand_automata): Likewise. * genextract.c (gen_insn): Likewise. * gengtype-lex.l: Likewise. * gengtype.c (read_input_list, adjust_field_type, process_gc_options): Likewise. * genoutput.c (note_constraint): Likewise. * genpreds.c (mangle, add_constraint): Likewise. * genrecog.c (process_define_predicate, new_decision, add_to_sequence): Likewise. * gensupport.c (record_insn_name): Likewise. From-SVN: r137135
214 lines
4.6 KiB
Plaintext
214 lines
4.6 KiB
Plaintext
/* -*- indented-text -*- */
|
|
/* Process source files and output type information.
|
|
Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC 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 3, or (at your option) any later
|
|
version.
|
|
|
|
GCC 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 GCC; see the file COPYING3. If not see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
%{
|
|
#include "bconfig.h"
|
|
#include "system.h"
|
|
|
|
#define malloc xmalloc
|
|
#define realloc xrealloc
|
|
|
|
#include "gengtype.h"
|
|
|
|
#define YY_DECL int yylex (const char **yylval)
|
|
#define yyterminate() return EOF_TOKEN
|
|
|
|
struct fileloc lexer_line;
|
|
int lexer_toplevel_done;
|
|
|
|
static void
|
|
update_lineno (const char *l, size_t len)
|
|
{
|
|
while (len-- > 0)
|
|
if (*l++ == '\n')
|
|
lexer_line.line++;
|
|
}
|
|
|
|
%}
|
|
|
|
ID [[:alpha:]_][[:alnum:]_]*
|
|
WS [[:space:]]+
|
|
HWS [ \t\r\v\f]*
|
|
IWORD short|long|(un)?signed|char|int|HOST_WIDE_INT|HOST_WIDEST_INT|bool|size_t|BOOL_BITFIELD|CPPCHAR_SIGNED_T|ino_t|dev_t
|
|
ITYPE {IWORD}({WS}{IWORD})*
|
|
EOID [^[:alnum:]_]
|
|
|
|
%x in_struct in_struct_comment in_comment
|
|
%option warn noyywrap nounput nodefault perf-report
|
|
%option 8bit never-interactive
|
|
%%
|
|
/* Do this on entry to yylex(): */
|
|
*yylval = 0;
|
|
if (lexer_toplevel_done)
|
|
{
|
|
BEGIN(INITIAL);
|
|
lexer_toplevel_done = 0;
|
|
}
|
|
|
|
/* Things we look for in skipping mode: */
|
|
<INITIAL>{
|
|
^{HWS}typedef/{EOID} {
|
|
BEGIN(in_struct);
|
|
return TYPEDEF;
|
|
}
|
|
^{HWS}struct/{EOID} {
|
|
BEGIN(in_struct);
|
|
return STRUCT;
|
|
}
|
|
^{HWS}union/{EOID} {
|
|
BEGIN(in_struct);
|
|
return UNION;
|
|
}
|
|
^{HWS}extern/{EOID} {
|
|
BEGIN(in_struct);
|
|
return EXTERN;
|
|
}
|
|
^{HWS}static/{EOID} {
|
|
BEGIN(in_struct);
|
|
return STATIC;
|
|
}
|
|
|
|
^{HWS}DEF_VEC_[OP]/{EOID} {
|
|
BEGIN(in_struct);
|
|
return DEFVEC_OP;
|
|
}
|
|
^{HWS}DEF_VEC_I/{EOID} {
|
|
BEGIN(in_struct);
|
|
return DEFVEC_I;
|
|
}
|
|
^{HWS}DEF_VEC_ALLOC_[IOP]/{EOID} {
|
|
BEGIN(in_struct);
|
|
return DEFVEC_ALLOC;
|
|
}
|
|
}
|
|
|
|
<in_struct>{
|
|
|
|
"/*" { BEGIN(in_struct_comment); }
|
|
|
|
{WS} { update_lineno (yytext, yyleng); }
|
|
\\\n { lexer_line.line++; }
|
|
|
|
"const"/{EOID} /* don't care */
|
|
"GTY"/{EOID} { return GTY_TOKEN; }
|
|
"VEC"/{EOID} { return VEC_TOKEN; }
|
|
"union"/{EOID} { return UNION; }
|
|
"struct"/{EOID} { return STRUCT; }
|
|
"enum"/{EOID} { return ENUM; }
|
|
"ptr_alias"/{EOID} { return PTR_ALIAS; }
|
|
"nested_ptr"/{EOID} { return NESTED_PTR; }
|
|
[0-9]+ { return NUM; }
|
|
"param"[0-9]*"_is"/{EOID} {
|
|
*yylval = XDUPVAR (const char, yytext, yyleng, yyleng+1);
|
|
return PARAM_IS;
|
|
}
|
|
|
|
{IWORD}({WS}{IWORD})*/{EOID} |
|
|
"ENUM_BITFIELD"{WS}?"("{WS}?{ID}{WS}?")" {
|
|
size_t len;
|
|
|
|
for (len = yyleng; ISSPACE (yytext[len-1]); len--)
|
|
;
|
|
|
|
*yylval = XDUPVAR (const char, yytext, len, len+1);
|
|
update_lineno (yytext, yyleng);
|
|
return SCALAR;
|
|
}
|
|
|
|
|
|
{ID}/{EOID} {
|
|
*yylval = XDUPVAR (const char, yytext, yyleng, yyleng+1);
|
|
return ID;
|
|
}
|
|
|
|
\"([^"\\]|\\.)*\" {
|
|
*yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng-1);
|
|
return STRING;
|
|
}
|
|
/* This "terminal" avoids having to parse integer constant expressions. */
|
|
"["[^\[\]]*"]" {
|
|
*yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng-1);
|
|
return ARRAY;
|
|
}
|
|
"'"("\\".|[^\\])"'" {
|
|
*yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng);
|
|
return CHAR;
|
|
}
|
|
|
|
"..." { return ELLIPSIS; }
|
|
[(){},*:<>;=%|-] { return yytext[0]; }
|
|
|
|
/* ignore pp-directives */
|
|
^{HWS}"#"{HWS}[a-z_]+[^\n]*\n {lexer_line.line++;}
|
|
|
|
. {
|
|
error_at_line (&lexer_line, "unexpected character `%s'", yytext);
|
|
}
|
|
}
|
|
|
|
"/*" { BEGIN(in_comment); }
|
|
\n { lexer_line.line++; }
|
|
{ID} |
|
|
"'"("\\".|[^\\])"'" |
|
|
[^"/\n] /* do nothing */
|
|
\"([^"\\]|\\.|\\\n)*\" { update_lineno (yytext, yyleng); }
|
|
"/"/[^*] /* do nothing */
|
|
|
|
<in_comment,in_struct_comment>{
|
|
\n { lexer_line.line++; }
|
|
[^*\n]{16} |
|
|
[^*\n] /* do nothing */
|
|
"*"/[^/] /* do nothing */
|
|
}
|
|
<in_comment>"*/" { BEGIN(INITIAL); }
|
|
<in_struct_comment>"*/" { BEGIN(in_struct); }
|
|
|
|
["/] |
|
|
<in_struct_comment,in_comment>"*" {
|
|
error_at_line (&lexer_line,
|
|
"unterminated comment or string; unexpected EOF");
|
|
}
|
|
|
|
^{HWS}"#"{HWS}"define"{WS}"GTY(" /* do nothing */
|
|
{WS}"GTY"{WS}?"(" {
|
|
error_at_line (&lexer_line, "stray GTY marker");
|
|
}
|
|
|
|
%%
|
|
|
|
void
|
|
yybegin (const char *fname)
|
|
{
|
|
yyin = fopen (fname, "r");
|
|
if (yyin == NULL)
|
|
{
|
|
perror (fname);
|
|
exit (1);
|
|
}
|
|
lexer_line.file = fname;
|
|
lexer_line.line = 1;
|
|
}
|
|
|
|
void
|
|
yyend (void)
|
|
{
|
|
fclose (yyin);
|
|
}
|