* gcc.target/powerpc/altivec-volatile.c: Adjust expected warning.
[official-gcc.git] / gcc / gengtype-lex.l
blob8159ef860f2940c68f299cb16f4db81257740b50
1 /* -*- indented-text -*- */
2 /* Process source files and output type information.
3    Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009
4    Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
22 %option noinput
25 #include "bconfig.h"
26 #include "system.h"
28 #define malloc xmalloc
29 #define realloc xrealloc
31 #include "gengtype.h"
33 #define YY_DECL int yylex (const char **yylval)
34 #define yyterminate() return EOF_TOKEN
36 struct fileloc lexer_line;
37 int lexer_toplevel_done;
39 static void 
40 update_lineno (const char *l, size_t len)
42   while (len-- > 0)
43     if (*l++ == '\n')
44       lexer_line.line++;
49 ID      [[:alpha:]_][[:alnum:]_]*
50 WS      [[:space:]]+
51 HWS     [ \t\r\v\f]*
52 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|HARD_REG_SET
53 ITYPE   {IWORD}({WS}{IWORD})*
54 EOID    [^[:alnum:]_]
56 %x in_struct in_struct_comment in_comment
57 %option warn noyywrap nounput nodefault perf-report
58 %option 8bit never-interactive
60   /* Do this on entry to yylex():  */
61   *yylval = 0;
62   if (lexer_toplevel_done)
63     {
64       BEGIN(INITIAL);
65       lexer_toplevel_done = 0;
66     }
68   /* Things we look for in skipping mode: */
69 <INITIAL>{
70 ^{HWS}typedef/{EOID} {
71   BEGIN(in_struct);
72   return TYPEDEF;
74 ^{HWS}struct/{EOID} {
75   BEGIN(in_struct);
76   return STRUCT;
78 ^{HWS}union/{EOID} {
79   BEGIN(in_struct);
80   return UNION;
82 ^{HWS}extern/{EOID} {
83   BEGIN(in_struct);
84   return EXTERN;
86 ^{HWS}static/{EOID} {
87   BEGIN(in_struct);
88   return STATIC;
91 ^{HWS}DEF_VEC_[OP]/{EOID} {
92   BEGIN(in_struct);
93   return DEFVEC_OP;
95 ^{HWS}DEF_VEC_I/{EOID} {
96   BEGIN(in_struct);
97   return DEFVEC_I;
99 ^{HWS}DEF_VEC_ALLOC_[IOP]/{EOID} {
100   BEGIN(in_struct);
101   return DEFVEC_ALLOC;
105 <in_struct>{
107 "/*"                            { BEGIN(in_struct_comment); }
109 {WS}                            { update_lineno (yytext, yyleng); }
110 \\\n                            { lexer_line.line++; }
112 "const"/{EOID}                  /* don't care */
113 "GTY"/{EOID}                    { return GTY_TOKEN; }
114 "VEC"/{EOID}                    { return VEC_TOKEN; }
115 "union"/{EOID}                  { return UNION; }
116 "struct"/{EOID}                 { return STRUCT; }
117 "enum"/{EOID}                   { return ENUM; }
118 "ptr_alias"/{EOID}              { return PTR_ALIAS; }
119 "nested_ptr"/{EOID}             { return NESTED_PTR; }
120 [0-9]+                          { return NUM; }
121 "param"[0-9]*"_is"/{EOID}               {
122   *yylval = XDUPVAR (const char, yytext, yyleng, yyleng+1);
123   return PARAM_IS;
126 {IWORD}({WS}{IWORD})*/{EOID}            |
127 "ENUM_BITFIELD"{WS}?"("{WS}?{ID}{WS}?")"        {
128   size_t len;
130   for (len = yyleng; ISSPACE (yytext[len-1]); len--)
131     ;
133   *yylval = XDUPVAR (const char, yytext, len, len+1);
134   update_lineno (yytext, yyleng);
135   return SCALAR;
139 {ID}/{EOID}                     {
140   *yylval = XDUPVAR (const char, yytext, yyleng, yyleng+1);
141   return ID;
144 \"([^"\\]|\\.)*\"               {
145   *yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng-1);
146   return STRING;
148   /* This "terminal" avoids having to parse integer constant expressions.  */
149 "["[^\[\]]*"]"                  {
150   *yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng-1);
151   return ARRAY;
153 "'"("\\".|[^\\])"'"             {
154   *yylval = XDUPVAR (const char, yytext+1, yyleng-2, yyleng);
155   return CHAR;
158 "..."                           { return ELLIPSIS; }
159 [(){},*:<>;=%|-]                { return yytext[0]; }
161    /* ignore pp-directives */
162 ^{HWS}"#"{HWS}[a-z_]+[^\n]*\n   {lexer_line.line++;}
164 .                               {
165   error_at_line (&lexer_line, "unexpected character `%s'", yytext);
169 "/*"                    { BEGIN(in_comment); }
170 \n                      { lexer_line.line++; }
171 {ID}                    |
172 "'"("\\".|[^\\])"'"     |
173 [^"/\n]                 /* do nothing */
174 \"([^"\\]|\\.|\\\n)*\"  { update_lineno (yytext, yyleng); }
175 "/"/[^*]                /* do nothing */
177 <in_comment,in_struct_comment>{
178 \n              { lexer_line.line++; }
179 [^*\n]{16}      |
180 [^*\n]          /* do nothing */
181 "*"/[^/]        /* do nothing */
183 <in_comment>"*/"        { BEGIN(INITIAL); } 
184 <in_struct_comment>"*/" { BEGIN(in_struct); }
186 ["/]                    |
187 <in_struct_comment,in_comment>"*"       {
188   error_at_line (&lexer_line, 
189                  "unterminated comment or string; unexpected EOF");
192 ^{HWS}"#"{HWS}"define"{WS}"GTY(" /* do nothing */
196 void
197 yybegin (const char *fname)
199   yyin = fopen (fname, "r");
200   if (yyin == NULL)
201     {
202       perror (fname);
203       exit (1);
204     }
205   lexer_line.file = fname;
206   lexer_line.line = 1;
209 void
210 yyend (void)
212   fclose (yyin);