blob: c125d06fbd365504055f9d2797542c3683a10b2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Lexical analysis for genksyms.
2 Copyright 1996, 1997 Linux International.
3
4 New implementation contributed by Richard Henderson <rth@tamu.edu>
5 Based on original work by Bjorn Ekwall <bj0rn@blox.se>
6
7 Taken from Linux modutils 2.4.22.
8
9 This program is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by the
11 Free Software Foundation; either version 2 of the License, or (at your
12 option) any later version.
13
14 This program is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software Foundation,
21 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22
23
24%{
25
26#include <limits.h>
27#include <stdlib.h>
28#include <string.h>
29#include <ctype.h>
30
31#include "genksyms.h"
32#include "parse.h"
33
34/* We've got a two-level lexer here. We let flex do basic tokenization
35 and then we categorize those basic tokens in the second stage. */
36#define YY_DECL static int yylex1(void)
37
38%}
39
40IDENT [A-Za-z_\$][A-Za-z0-9_\$]*
41
42O_INT 0[0-7]*
43D_INT [1-9][0-9]*
44X_INT 0[Xx][0-9A-Fa-f]+
45I_SUF [Uu]|[Ll]|[Uu][Ll]|[Ll][Uu]
46INT ({O_INT}|{D_INT}|{X_INT}){I_SUF}?
47
48FRAC ([0-9]*\.[0-9]+)|([0-9]+\.)
49EXP [Ee][+-]?[0-9]+
50F_SUF [FfLl]
51REAL ({FRAC}{EXP}?{F_SUF}?)|([0-9]+{EXP}{F_SUF}?)
52
53STRING L?\"([^\\\"]*\\.)*[^\\\"]*\"
54CHAR L?\'([^\\\']*\\.)*[^\\\']*\'
55
56MC_TOKEN ([~%^&*+=|<>/-]=)|(&&)|("||")|(->)|(<<)|(>>)
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/* We don't do multiple input files. */
59%option noyywrap
60
Adrian Bunk11ddad32008-07-17 02:08:12 +030061%option noinput
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063%%
64
65
66 /* Keep track of our location in the original source files. */
67^#[ \t]+{INT}[ \t]+\"[^\"\n]+\".*\n return FILENAME;
68^#.*\n cur_line++;
69\n cur_line++;
70
71 /* Ignore all other whitespace. */
72[ \t\f\v\r]+ ;
73
74
75{STRING} return STRING;
76{CHAR} return CHAR;
77{IDENT} return IDENT;
78
79 /* The Pedant requires that the other C multi-character tokens be
80 recognized as tokens. We don't actually use them since we don't
81 parse expressions, but we do want whitespace to be arranged
82 around them properly. */
Michal Marek95f1d632011-01-20 16:19:58 +010083{MC_TOKEN} return OTHER;
84{INT} return INT;
85{REAL} return REAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87"..." return DOTS;
88
89 /* All other tokens are single characters. */
90. return yytext[0];
91
92
93%%
94
95/* Bring in the keyword recognizer. */
96
97#include "keywords.c"
98
99
100/* Macros to append to our phrase collection list. */
101
102#define _APP(T,L) do { \
103 cur_node = next_node; \
104 next_node = xmalloc(sizeof(*next_node)); \
105 next_node->next = cur_node; \
106 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
107 cur_node->tag = SYM_NORMAL; \
108 } while (0)
109
110#define APP _APP(yytext, yyleng)
111
112
113/* The second stage lexer. Here we incorporate knowledge of the state
114 of the parser to tailor the tokens that are returned. */
115
116int
117yylex(void)
118{
119 static enum {
120 ST_NOTSTARTED, ST_NORMAL, ST_ATTRIBUTE, ST_ASM, ST_BRACKET, ST_BRACE,
121 ST_EXPRESSION, ST_TABLE_1, ST_TABLE_2, ST_TABLE_3, ST_TABLE_4,
122 ST_TABLE_5, ST_TABLE_6
123 } lexstate = ST_NOTSTARTED;
124
125 static int suppress_type_lookup, dont_want_brace_phrase;
126 static struct string_list *next_node;
127
128 int token, count = 0;
129 struct string_list *cur_node;
130
131 if (lexstate == ST_NOTSTARTED)
132 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 next_node = xmalloc(sizeof(*next_node));
134 next_node->next = NULL;
135 lexstate = ST_NORMAL;
136 }
137
138repeat:
139 token = yylex1();
140
141 if (token == 0)
142 return 0;
143 else if (token == FILENAME)
144 {
145 char *file, *e;
146
147 /* Save the filename and line number for later error messages. */
148
149 if (cur_filename)
150 free(cur_filename);
151
152 file = strchr(yytext, '\"')+1;
153 e = strchr(file, '\"');
154 *e = '\0';
155 cur_filename = memcpy(xmalloc(e-file+1), file, e-file+1);
156 cur_line = atoi(yytext+2);
157
158 goto repeat;
159 }
160
161 switch (lexstate)
162 {
163 case ST_NORMAL:
164 switch (token)
165 {
166 case IDENT:
167 APP;
168 {
169 const struct resword *r = is_reserved_word(yytext, yyleng);
170 if (r)
171 {
172 switch (token = r->token)
173 {
174 case ATTRIBUTE_KEYW:
175 lexstate = ST_ATTRIBUTE;
176 count = 0;
177 goto repeat;
178 case ASM_KEYW:
179 lexstate = ST_ASM;
180 count = 0;
181 goto repeat;
182
183 case STRUCT_KEYW:
184 case UNION_KEYW:
185 dont_want_brace_phrase = 3;
186 case ENUM_KEYW:
187 suppress_type_lookup = 2;
188 goto fini;
189
190 case EXPORT_SYMBOL_KEYW:
191 goto fini;
192 }
193 }
194 if (!suppress_type_lookup)
195 {
Michal Marek01762c42011-02-15 15:11:36 +0100196 if (find_symbol(yytext, SYM_TYPEDEF, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 token = TYPE;
198 }
199 }
200 break;
201
202 case '[':
203 APP;
204 lexstate = ST_BRACKET;
205 count = 1;
206 goto repeat;
207
208 case '{':
209 APP;
210 if (dont_want_brace_phrase)
211 break;
212 lexstate = ST_BRACE;
213 count = 1;
214 goto repeat;
215
216 case '=': case ':':
217 APP;
218 lexstate = ST_EXPRESSION;
219 break;
220
221 case DOTS:
222 default:
223 APP;
224 break;
225 }
226 break;
227
228 case ST_ATTRIBUTE:
229 APP;
230 switch (token)
231 {
232 case '(':
233 ++count;
234 goto repeat;
235 case ')':
236 if (--count == 0)
237 {
238 lexstate = ST_NORMAL;
239 token = ATTRIBUTE_PHRASE;
240 break;
241 }
242 goto repeat;
243 default:
244 goto repeat;
245 }
246 break;
247
248 case ST_ASM:
249 APP;
250 switch (token)
251 {
252 case '(':
253 ++count;
254 goto repeat;
255 case ')':
256 if (--count == 0)
257 {
258 lexstate = ST_NORMAL;
259 token = ASM_PHRASE;
260 break;
261 }
262 goto repeat;
263 default:
264 goto repeat;
265 }
266 break;
267
268 case ST_BRACKET:
269 APP;
270 switch (token)
271 {
272 case '[':
273 ++count;
274 goto repeat;
275 case ']':
276 if (--count == 0)
277 {
278 lexstate = ST_NORMAL;
279 token = BRACKET_PHRASE;
280 break;
281 }
282 goto repeat;
283 default:
284 goto repeat;
285 }
286 break;
287
288 case ST_BRACE:
289 APP;
290 switch (token)
291 {
292 case '{':
293 ++count;
294 goto repeat;
295 case '}':
296 if (--count == 0)
297 {
298 lexstate = ST_NORMAL;
299 token = BRACE_PHRASE;
300 break;
301 }
302 goto repeat;
303 default:
304 goto repeat;
305 }
306 break;
307
308 case ST_EXPRESSION:
309 switch (token)
310 {
311 case '(': case '[': case '{':
312 ++count;
313 APP;
314 goto repeat;
315 case ')': case ']': case '}':
316 --count;
317 APP;
318 goto repeat;
319 case ',': case ';':
320 if (count == 0)
321 {
322 /* Put back the token we just read so's we can find it again
323 after registering the expression. */
324 unput(token);
325
326 lexstate = ST_NORMAL;
327 token = EXPRESSION_PHRASE;
328 break;
329 }
330 APP;
331 goto repeat;
332 default:
333 APP;
334 goto repeat;
335 }
336 break;
337
338 case ST_TABLE_1:
339 goto repeat;
340
341 case ST_TABLE_2:
342 if (token == IDENT && yyleng == 1 && yytext[0] == 'X')
343 {
344 token = EXPORT_SYMBOL_KEYW;
345 lexstate = ST_TABLE_5;
346 APP;
347 break;
348 }
349 lexstate = ST_TABLE_6;
350 /* FALLTHRU */
351
352 case ST_TABLE_6:
353 switch (token)
354 {
355 case '{': case '[': case '(':
356 ++count;
357 break;
358 case '}': case ']': case ')':
359 --count;
360 break;
361 case ',':
362 if (count == 0)
363 lexstate = ST_TABLE_2;
364 break;
365 };
366 goto repeat;
367
368 case ST_TABLE_3:
369 goto repeat;
370
371 case ST_TABLE_4:
372 if (token == ';')
373 lexstate = ST_NORMAL;
374 goto repeat;
375
376 case ST_TABLE_5:
377 switch (token)
378 {
379 case ',':
380 token = ';';
381 lexstate = ST_TABLE_2;
382 APP;
383 break;
384 default:
385 APP;
386 break;
387 }
388 break;
389
390 default:
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200391 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393fini:
394
395 if (suppress_type_lookup > 0)
396 --suppress_type_lookup;
397 if (dont_want_brace_phrase > 0)
398 --dont_want_brace_phrase;
399
400 yylval = &next_node->next;
401
402 return token;
403}