1 /* -*- indented-text -*- */
2 /* Process source files and output type information.
3 Copyright (C) 2002, 2003 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 #include "coretypes.h"
27 #define malloc xmalloc
28 #define realloc xrealloc
31 #include "gengtype-yacc.h"
34 #define YY_DECL int yylex ()
36 static void update_lineno (const char *l, size_t len);
38 struct fileloc lexer_line;
39 int lexer_toplevel_done;
42 update_lineno (const char *l, size_t len)
51 ID [[:alpha:]_][[:alnum:]_]*
53 IWORD short|long|(un)?signed|char|int|HOST_WIDE_INT|bool|size_t|CHAR_BITFIELD
54 ITYPE {IWORD}({WS}{IWORD})*
56 %x in_struct in_struct_comment in_comment in_yacc_escape
57 %option warn noyywrap nounput nodefault perf-report
58 %option 8bit never-interactive
61 [^[:alnum:]_]typedef{WS}(struct|union){WS}{ID}{WS}?[*[:space:]]{WS}?{ID}{WS}?";" {
70 tagstart = yytext + strlen (" typedef ");
71 while (ISSPACE (*tagstart))
73 union_p = tagstart[0] == 'u';
74 tagstart += strlen ("union ");
75 while (ISSPACE (*tagstart))
77 for (taglen = 1; ISIDNUM (tagstart[taglen]); taglen++)
79 for (namestart = tagstart + taglen;
80 ! ISIDNUM (*namestart);
82 if (*namestart == '*')
84 for (namelen = 1; ISIDNUM (namestart[namelen]); namelen++)
86 t = find_structure (xmemdup (tagstart, taglen, taglen+1), union_p);
88 t = create_pointer (t);
89 do_typedef (xmemdup (namestart, namelen, namelen+1), t, &lexer_line);
90 update_lineno (yytext, yyleng);
93 [^[:alnum:]_]typedef{WS}{ITYPE}{WS}{ID}{WS}?";" {
101 for (namestart = yytext + yyleng - 2; ISSPACE (*namestart); namestart--)
103 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
105 namestart -= namelen - 1;
106 for (typestart = yytext + strlen (" typedef ");
110 for (typelen = namestart - typestart;
111 ISSPACE(typestart[typelen-1]);
115 t = create_scalar_type (typestart, typelen);
116 do_typedef (xmemdup (namestart, namelen, namelen+1), t, &lexer_line);
117 update_lineno (yytext, yyleng);
120 [^[:alnum:]_]typedef{WS}{ID}{WS}{ID}{WS}PARAMS {
125 for (namestart = yytext + yyleng - 7; ISSPACE (*namestart); namestart--)
127 for (namelen = 1; !ISSPACE (namestart[-namelen]); namelen++)
129 namestart -= namelen - 1;
131 t = create_scalar_type ("function type", sizeof ("function type")-1);
132 do_typedef (xmemdup (namestart, namelen, namelen+1), t, &lexer_line);
133 update_lineno (yytext, yyleng);
135 [^[:alnum:]_]typedef{WS}{ID}{WS}?"("{WS}?"*"{WS}?{ID}{WS}?")"{WS}?PARAMS {
140 for (namestart = yytext + yyleng - 7; !ISIDNUM (*namestart); namestart--)
142 for (namelen = 1; ISIDNUM (namestart[-namelen]); namelen++)
144 namestart -= namelen - 1;
146 t = create_scalar_type ("function type", sizeof ("function type")-1);
147 do_typedef (xmemdup (namestart, namelen, namelen+1), t, &lexer_line);
148 update_lineno (yytext, yyleng);
151 [^[:alnum:]_](typedef{WS})?(struct|union){WS}{ID}{WS}/"GTY" {
157 typedef_p = yytext[1] == 't';
159 for (tagstart = yytext + strlen (" typedef ");
164 tagstart = yytext + 1;
166 union_p = tagstart[0] == 'u';
167 tagstart += strlen ("union ");
168 while (ISSPACE (*tagstart))
170 for (taglen = 1; ISIDNUM (tagstart[taglen]); taglen++)
173 yylval.t = find_structure (xmemdup (tagstart, taglen, taglen + 1), union_p);
175 update_lineno (yytext, yyleng);
176 return typedef_p ? ENT_TYPEDEF_STRUCT : ENT_STRUCT;
179 [^[:alnum:]_](extern|static){WS}/"GTY" {
181 update_lineno (yytext, yyleng);
182 return ENT_EXTERNSTATIC;
185 ^"%union"{WS}"{"{WS}/"GTY" {
187 update_lineno (yytext, yyleng);
188 return ENT_YACCUNION;
193 "/*" { BEGIN(in_struct_comment); }
195 ^"%{" { BEGIN(in_yacc_escape); }
197 {WS} { update_lineno (yytext, yyleng); }
199 "const"/[^[:alnum:]_] /* don't care */
201 "GTY"/[^[:alnum:]_] { return GTY_TOKEN; }
202 "union"/[^[:alnum:]_] { return UNION; }
203 "struct"/[^[:alnum:]_] { return STRUCT; }
204 "enum"/[^[:alnum:]_] { return ENUM; }
205 "ptr_alias"/[^[:alnum:]_] { return ALIAS; }
206 [0-9]+ { return NUM; }
207 "param"[0-9]*"_is"/[^[:alnum:]_] {
208 yylval.s = xmemdup (yytext, yyleng, yyleng+1);
212 {IWORD}({WS}{IWORD})*/[^[:alnum:]_] |
213 "ENUM_BITFIELD"{WS}?"("{WS}?{ID}{WS}?")" {
216 for (len = yyleng; ISSPACE (yytext[len-1]); len--)
219 yylval.t = create_scalar_type (yytext, len);
220 update_lineno (yytext, yyleng);
225 yylval.s = xmemdup (yytext, yyleng, yyleng+1);
230 yylval.s = xmemdup (yytext+1, yyleng-2, yyleng-1);
234 yylval.s = xmemdup (yytext+1, yyleng-2, yyleng-1);
238 yylval.s = xmemdup (yytext+1, yyleng-1, yyleng);
241 "'"("\\".|[^\\])"'" {
242 yylval.s = xmemdup (yytext+1, yyleng-2, yyleng);
246 [(){},*:<>] { return yytext[0]; }
249 if (lexer_toplevel_done)
252 lexer_toplevel_done = 0;
259 return PERCENTPERCENT;
263 error_at_line (&lexer_line, "unexpected character `%s'", yytext);
267 "/*" { BEGIN(in_comment); }
268 \n { lexer_line.line++; }
270 "'"("\\".|[^\\])"'" |
271 [^"/\n] /* do nothing */
272 \"([^"\\]|\\.|\\\n)*\" { update_lineno (yytext, yyleng); }
273 "/"/[^*] /* do nothing */
275 <in_comment,in_struct_comment>{
276 \n { lexer_line.line++; }
278 [^*\n] /* do nothing */
279 "*"/[^/] /* do nothing */
281 <in_comment>"*/" { BEGIN(INITIAL); }
282 <in_struct_comment>"*/" { BEGIN(in_struct); }
285 \n { lexer_line.line++; }
287 [^%] /* do nothing */
288 "%"/[^}] /* do nothing */
289 "%}" { BEGIN(in_struct); }
291 error_at_line (&lexer_line,
292 "unterminated %%{; unexpected EOF");
298 <in_struct_comment,in_comment>"*" {
299 error_at_line (&lexer_line,
300 "unterminated comment or string; unexpected EOF");
306 yyerror (const char *s)
308 error_at_line (&lexer_line, s);
312 parse_file (const char *fname)
314 yyin = fopen (fname, "r");
315 lexer_line.file = fname;