Commit | Line | Data |
---|---|---|
cfdf38f2 BE |
1 | %option noinput nounput |
2 | ||
252b5132 | 3 | %{ |
691bf19c | 4 | /* Copyright 2001, 2003, 2005, 2007, 2011, 2012 Free Software Foundation, Inc. |
8c2bc687 | 5 | |
32866df7 | 6 | This file is part of GNU Binutils. |
8c2bc687 | 7 | |
32866df7 NC |
8 | This program is free software; you can redistribute it and/or modify |
9 | it under the terms of the GNU General Public License as published by | |
10 | the Free Software Foundation; either version 3, or (at your option) | |
11 | any later version. | |
8c2bc687 | 12 | |
32866df7 NC |
13 | This program is distributed in the hope that it will be useful, |
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | GNU General Public License for more details. | |
8c2bc687 | 17 | |
32866df7 NC |
18 | You should have received a copy of the GNU General Public License |
19 | along with GLD; see the file COPYING. If not, write to the Free | |
20 | Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA | |
21 | 02110-1301, USA. */ | |
8c2bc687 | 22 | |
691bf19c NC |
23 | /* Note: config.h is #included via syslex_wrap.c. */ |
24 | ||
dc3c06c2 AM |
25 | #ifdef HAVE_STRING_H |
26 | #include <string.h> | |
27 | #else | |
28 | #ifdef HAVE_STRINGS_H | |
29 | #include <strings.h> | |
30 | #endif | |
31 | #endif | |
691bf19c | 32 | |
252b5132 | 33 | #include "sysinfo.h" |
252b5132 | 34 | |
894e93a8 | 35 | #ifndef YY_NO_UNPUT |
dc3c06c2 | 36 | #define YY_NO_UNPUT |
894e93a8 | 37 | #endif |
dc3c06c2 | 38 | |
252b5132 | 39 | #ifndef yywrap |
2da42df6 | 40 | static int yywrap (void) { return 1; } |
252b5132 | 41 | #endif |
dc3c06c2 AM |
42 | |
43 | extern int yylex (void); | |
252b5132 RH |
44 | %} |
45 | %% | |
46 | "(" { return '(';} | |
47 | ")" { return ')';} | |
48 | "[" { return '[';} | |
49 | "]" { return ']';} | |
50 | " " { ; } | |
51 | ";".* { ; } | |
52 | "\t" { ; } | |
53 | "\n" { ; } | |
54 | "\""[^\"]*"\"" { | |
dc3c06c2 AM |
55 | yylval.s = malloc (yyleng - 1); |
56 | memcpy (yylval.s, yytext + 1, yyleng - 2); | |
57 | yylval.s[yyleng - 2] = '\0'; | |
252b5132 RH |
58 | return NAME; |
59 | } | |
60 | ||
61 | 0x[0-9a-f]+ { | |
62 | yylval.i = strtol(yytext,0,16); | |
63 | return NUMBER; | |
64 | } | |
65 | ||
66 | [0-9]+ { | |
67 | yylval.i = atoi(yytext); | |
68 | return NUMBER; | |
69 | } | |
70 | ||
71 | ||
72 | "bits" { yylval.i =1 ;return UNIT;} | |
73 | "bit" { yylval.i = 1; return UNIT;} | |
74 | "bytes" { yylval.i= 8; return UNIT;} | |
75 | "byte" { yylval.i = 8; return UNIT;} | |
76 | ||
77 | "int" { yylval.s = "INT"; return TYPE;} | |
78 | "barray" { yylval.s = "BARRAY"; return TYPE;} | |
79 | "chars" { yylval.s = "CHARS"; return TYPE;} | |
80 | "variable" { yylval.i = 0; return NUMBER;} | |
81 | "counted" { yylval.i = -4; return NUMBER;} | |
82 | "addrsize" { yylval.i = -2; return NUMBER; } | |
83 | "segsize" { yylval.i = -1; return NUMBER; } | |
84 | "cond" { return COND;} | |
85 | "repeat" { return REPEAT;} |