* configure.in: Check for windows.h, not Windows.h.
[binutils.git] / ld / ldlex.l
blobc77357b732dbc215023b7a3ef70df7147332fd90
1 %option nounput
3 %{
5 /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
6    2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
7    Free Software Foundation, Inc.
8    Written by Steve Chamberlain of Cygnus Support.
10    This file is part of the GNU Binutils.
12    This program is free software; you can redistribute it and/or modify
13    it under the terms of the GNU General Public License as published by
14    the Free Software Foundation; either version 3 of the License, or
15    (at your option) any later version.
17    This program is distributed in the hope that it will be useful,
18    but WITHOUT ANY WARRANTY; without even the implied warranty of
19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20    GNU General Public License for more details.
22    You should have received a copy of the GNU General Public License
23    along with this program; if not, write to the Free Software
24    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
25    MA 02110-1301, USA.  */
27 #include "bfd.h"
28 #include "safe-ctype.h"
29 #include "bfdlink.h"
30 #include "ld.h"
31 #include "ldmisc.h"
32 #include "ldexp.h"
33 #include "ldlang.h"
34 #include <ldgram.h>
35 #include "ldfile.h"
36 #include "ldlex.h"
37 #include "ldmain.h"
38 #include "libiberty.h"
40 /* The type of top-level parser input.
41    yylex and yyparse (indirectly) both check this.  */
42 input_type parser_input;
44 /* Line number in the current input file.
45    (FIXME Actually, it doesn't appear to get reset for each file?)  */
46 unsigned int lineno = 1;
48 /* The string we are currently lexing, or NULL if we are reading a
49    file.  */
50 const char *lex_string = NULL;
52 /* Support for flex reading from more than one input file (stream).
53    `include_stack' is flex's input state for each open file;
54    `file_name_stack' is the file names.  `lineno_stack' is the current
55    line numbers.
57    If `include_stack_ptr' is 0, we haven't started reading anything yet.
58    Otherwise, stack elements 0 through `include_stack_ptr - 1' are valid.  */
60 #undef YY_INPUT
61 #define YY_INPUT(buf,result,max_size) result = yy_input (buf, max_size)
63 #define YY_NO_UNPUT
65 #define MAX_INCLUDE_DEPTH 10
66 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
67 static const char *file_name_stack[MAX_INCLUDE_DEPTH];
68 static unsigned int lineno_stack[MAX_INCLUDE_DEPTH];
69 static unsigned int include_stack_ptr = 0;
70 static int vers_node_nesting = 0;
72 static int yy_input (char *, int);
73 static void comment (void);
74 static void lex_warn_invalid (char *where, char *what);
76 /* STATES
77         EXPRESSION      definitely in an expression
78         SCRIPT          definitely in a script
79         BOTH            either EXPRESSION or SCRIPT
80         DEFSYMEXP       in an argument to -defsym
81         MRI             in an MRI script
82         VERS_START      starting a Sun style mapfile
83         VERS_SCRIPT     a Sun style mapfile
84         VERS_NODE       a node within a Sun style mapfile
86 #define RTOKEN(x)  {  yylval.token = x; return x; }
88 /* Some versions of flex want this.  */
89 #ifndef yywrap
90 int yywrap (void) { return 1; }
91 #endif
94 %a 4000
95 %o 5000
97 CMDFILENAMECHAR   [_a-zA-Z0-9\/\.\\_\+\$\:\[\]\\\,\=\&\!\<\>\-\~]
98 CMDFILENAMECHAR1  [_a-zA-Z0-9\/\.\\_\+\$\:\[\]\\\,\=\&\!\<\>\~]
99 FILENAMECHAR1   [_a-zA-Z\/\.\\\$\_\~]
100 SYMBOLCHARN     [_a-zA-Z\/\.\\\$\_\~0-9]
101 FILENAMECHAR    [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~]
102 WILDCHAR        [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~\?\*\^\!]
103 WHITE           [ \t\n\r]+
105 NOCFILENAMECHAR [_a-zA-Z0-9\/\.\-\_\+\$\:\[\]\\\~]
107 V_TAG [.$_a-zA-Z][._a-zA-Z0-9]*
108 V_IDENTIFIER [*?.$_a-zA-Z\[\]\-\!\^\\]([*?.$_a-zA-Z0-9\[\]\-\!\^\\]|::)*
110 %s SCRIPT
111 %s EXPRESSION
112 %s BOTH
113 %s DEFSYMEXP
114 %s MRI
115 %s VERS_START
116 %s VERS_SCRIPT
117 %s VERS_NODE
120   if (parser_input != input_selected)
121     {
122       /* The first token of the input determines the initial parser state.  */
123       input_type t = parser_input;
124       parser_input = input_selected;
125       switch (t)
126         {
127         case input_script: return INPUT_SCRIPT; break;
128         case input_mri_script: return INPUT_MRI_SCRIPT; break;
129         case input_version_script: return INPUT_VERSION_SCRIPT; break;
130         case input_dynamic_list: return INPUT_DYNAMIC_LIST; break;
131         case input_defsym: return INPUT_DEFSYM; break;
132         default: abort ();
133         }
134     }
136 <BOTH,SCRIPT,EXPRESSION,VERS_START,VERS_NODE,VERS_SCRIPT>"/*"   { comment (); }
139 <DEFSYMEXP>"-"                  { RTOKEN('-');}
140 <DEFSYMEXP>"+"                  { RTOKEN('+');}
141 <DEFSYMEXP>{FILENAMECHAR1}{SYMBOLCHARN}*   { yylval.name = xstrdup (yytext); return NAME; }
142 <DEFSYMEXP>"="                  { RTOKEN('='); }
144 <MRI,EXPRESSION>"$"([0-9A-Fa-f])+ {
145                                 yylval.integer = bfd_scan_vma (yytext + 1, 0, 16);
146                                 yylval.bigint.str = NULL;
147                                 return INT;
148                         }
150 <MRI,EXPRESSION>([0-9A-Fa-f])+(H|h|X|x|B|b|O|o|D|d) {
151                                    int ibase ;
152                                    switch (yytext[yyleng - 1]) {
153                                     case 'X':
154                                     case 'x':
155                                     case 'H':
156                                     case 'h':
157                                      ibase = 16;
158                                      break;
159                                     case 'O':
160                                     case 'o':
161                                      ibase = 8;
162                                      break;
163                                     case 'B':
164                                     case 'b':
165                                      ibase = 2;
166                                      break;
167                                     default:
168                                      ibase = 10;
169                                    }
170                                    yylval.integer = bfd_scan_vma (yytext, 0,
171                                                                   ibase);
172                                    yylval.bigint.str = NULL;
173                                    return INT;
174                                  }
175 <SCRIPT,DEFSYMEXP,MRI,BOTH,EXPRESSION>((("$"|0[xX])([0-9A-Fa-f])+)|(([0-9])+))(M|K|m|k)? {
176                                   char *s = yytext;
177                                   int ibase = 0;
179                                   if (*s == '$')
180                                     {
181                                       ++s;
182                                       ibase = 16;
183                                     }
184                                   yylval.integer = bfd_scan_vma (s, 0, ibase);
185                                   yylval.bigint.str = NULL;
186                                   if (yytext[yyleng - 1] == 'M'
187                                       || yytext[yyleng - 1] == 'm')
188                                     {
189                                       yylval.integer *= 1024 * 1024;
190                                     }
191                                   else if (yytext[yyleng - 1] == 'K'
192                                       || yytext[yyleng - 1]=='k')
193                                     {
194                                       yylval.integer *= 1024;
195                                     }
196                                   else if (yytext[0] == '0'
197                                            && (yytext[1] == 'x'
198                                                || yytext[1] == 'X'))
199                                     {
200                                       yylval.bigint.str = xstrdup (yytext + 2);
201                                     }
202                                   return INT;
203                                 }
204 <BOTH,SCRIPT,EXPRESSION,MRI>"]"         { RTOKEN(']');}
205 <BOTH,SCRIPT,EXPRESSION,MRI>"["         { RTOKEN('[');}
206 <BOTH,SCRIPT,EXPRESSION,MRI>"<<="       { RTOKEN(LSHIFTEQ);}
207 <BOTH,SCRIPT,EXPRESSION,MRI>">>="       { RTOKEN(RSHIFTEQ);}
208 <BOTH,SCRIPT,EXPRESSION,MRI>"||"        { RTOKEN(OROR);}
209 <BOTH,SCRIPT,EXPRESSION,MRI>"=="        { RTOKEN(EQ);}
210 <BOTH,SCRIPT,EXPRESSION,MRI>"!="        { RTOKEN(NE);}
211 <BOTH,SCRIPT,EXPRESSION,MRI>">="        { RTOKEN(GE);}
212 <BOTH,SCRIPT,EXPRESSION,MRI>"<="        { RTOKEN(LE);}
213 <BOTH,SCRIPT,EXPRESSION,MRI>"<<"        { RTOKEN(LSHIFT);}
214 <BOTH,SCRIPT,EXPRESSION,MRI>">>"        { RTOKEN(RSHIFT);}
215 <BOTH,SCRIPT,EXPRESSION,MRI>"+="        { RTOKEN(PLUSEQ);}
216 <BOTH,SCRIPT,EXPRESSION,MRI>"-="        { RTOKEN(MINUSEQ);}
217 <BOTH,SCRIPT,EXPRESSION,MRI>"*="        { RTOKEN(MULTEQ);}
218 <BOTH,SCRIPT,EXPRESSION,MRI>"/="        { RTOKEN(DIVEQ);}
219 <BOTH,SCRIPT,EXPRESSION,MRI>"&="        { RTOKEN(ANDEQ);}
220 <BOTH,SCRIPT,EXPRESSION,MRI>"|="        { RTOKEN(OREQ);}
221 <BOTH,SCRIPT,EXPRESSION,MRI>"&&"        { RTOKEN(ANDAND);}
222 <BOTH,SCRIPT,EXPRESSION,MRI>">"         { RTOKEN('>');}
223 <BOTH,SCRIPT,EXPRESSION,MRI>","         { RTOKEN(',');}
224 <BOTH,SCRIPT,EXPRESSION,MRI>"&"         { RTOKEN('&');}
225 <BOTH,SCRIPT,EXPRESSION,MRI>"|"         { RTOKEN('|');}
226 <BOTH,SCRIPT,EXPRESSION,MRI>"~"         { RTOKEN('~');}
227 <BOTH,SCRIPT,EXPRESSION,MRI>"!"         { RTOKEN('!');}
228 <BOTH,SCRIPT,EXPRESSION,MRI>"?"         { RTOKEN('?');}
229 <BOTH,SCRIPT,EXPRESSION,MRI>"*"         { RTOKEN('*');}
230 <BOTH,SCRIPT,EXPRESSION,MRI>"+"         { RTOKEN('+');}
231 <BOTH,SCRIPT,EXPRESSION,MRI>"-"         { RTOKEN('-');}
232 <BOTH,SCRIPT,EXPRESSION,MRI>"/"         { RTOKEN('/');}
233 <BOTH,SCRIPT,EXPRESSION,MRI>"%"         { RTOKEN('%');}
234 <BOTH,SCRIPT,EXPRESSION,MRI>"<"         { RTOKEN('<');}
235 <BOTH,SCRIPT,EXPRESSION,MRI>"="         { RTOKEN('=');}
236 <BOTH,SCRIPT,EXPRESSION,MRI>"}"         { RTOKEN('}') ; }
237 <BOTH,SCRIPT,EXPRESSION,MRI>"{"         { RTOKEN('{'); }
238 <BOTH,SCRIPT,EXPRESSION,MRI>")"         { RTOKEN(')');}
239 <BOTH,SCRIPT,EXPRESSION,MRI>"("         { RTOKEN('(');}
240 <BOTH,SCRIPT,EXPRESSION,MRI>":"         { RTOKEN(':'); }
241 <BOTH,SCRIPT,EXPRESSION,MRI>";"         { RTOKEN(';');}
242 <BOTH,SCRIPT>"MEMORY"                   { RTOKEN(MEMORY);}
243 <BOTH,SCRIPT>"REGION_ALIAS"             { RTOKEN(REGION_ALIAS);}
244 <BOTH,SCRIPT>"LD_FEATURE"               { RTOKEN(LD_FEATURE);}
245 <BOTH,SCRIPT,EXPRESSION>"ORIGIN"        { RTOKEN(ORIGIN);}
246 <BOTH,SCRIPT>"VERSION"                  { RTOKEN(VERSIONK);}
247 <EXPRESSION,BOTH,SCRIPT>"BLOCK"         { RTOKEN(BLOCK);}
248 <EXPRESSION,BOTH,SCRIPT>"BIND"          { RTOKEN(BIND);}
249 <BOTH,SCRIPT,EXPRESSION>"LENGTH"        { RTOKEN(LENGTH);}
250 <EXPRESSION,BOTH,SCRIPT>"ALIGN"         { RTOKEN(ALIGN_K);}
251 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_ALIGN"    { RTOKEN(DATA_SEGMENT_ALIGN);}
252 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_RELRO_END"        { RTOKEN(DATA_SEGMENT_RELRO_END);}
253 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_END"      { RTOKEN(DATA_SEGMENT_END);}
254 <EXPRESSION,BOTH,SCRIPT>"ADDR"          { RTOKEN(ADDR);}
255 <EXPRESSION,BOTH,SCRIPT>"LOADADDR"      { RTOKEN(LOADADDR);}
256 <EXPRESSION,BOTH,SCRIPT>"ALIGNOF"       { RTOKEN(ALIGNOF); }
257 <EXPRESSION,BOTH>"MAX"                  { RTOKEN(MAX_K); }
258 <EXPRESSION,BOTH>"MIN"                  { RTOKEN(MIN_K); }
259 <EXPRESSION,BOTH,SCRIPT>"ASSERT"        { RTOKEN(ASSERT_K); }
260 <BOTH,SCRIPT>"ENTRY"                    { RTOKEN(ENTRY);}
261 <BOTH,SCRIPT,MRI>"EXTERN"               { RTOKEN(EXTERN);}
262 <EXPRESSION,BOTH,SCRIPT>"NEXT"          { RTOKEN(NEXT);}
263 <EXPRESSION,BOTH,SCRIPT>"sizeof_headers"        { RTOKEN(SIZEOF_HEADERS);}
264 <EXPRESSION,BOTH,SCRIPT>"SIZEOF_HEADERS"        { RTOKEN(SIZEOF_HEADERS);}
265 <EXPRESSION,BOTH,SCRIPT>"SEGMENT_START" { RTOKEN(SEGMENT_START);}
266 <BOTH,SCRIPT>"MAP"                      { RTOKEN(MAP);}
267 <EXPRESSION,BOTH,SCRIPT>"SIZEOF"        { RTOKEN(SIZEOF);}
268 <BOTH,SCRIPT>"TARGET"                   { RTOKEN(TARGET_K);}
269 <BOTH,SCRIPT>"SEARCH_DIR"               { RTOKEN(SEARCH_DIR);}
270 <BOTH,SCRIPT>"OUTPUT"                   { RTOKEN(OUTPUT);}
271 <BOTH,SCRIPT>"INPUT"                    { RTOKEN(INPUT);}
272 <EXPRESSION,BOTH,SCRIPT>"GROUP"         { RTOKEN(GROUP);}
273 <EXPRESSION,BOTH,SCRIPT>"AS_NEEDED"     { RTOKEN(AS_NEEDED);}
274 <EXPRESSION,BOTH,SCRIPT>"DEFINED"       { RTOKEN(DEFINED);}
275 <BOTH,SCRIPT>"CREATE_OBJECT_SYMBOLS"    { RTOKEN(CREATE_OBJECT_SYMBOLS);}
276 <BOTH,SCRIPT>"CONSTRUCTORS"             { RTOKEN( CONSTRUCTORS);}
277 <BOTH,SCRIPT>"FORCE_COMMON_ALLOCATION"  { RTOKEN(FORCE_COMMON_ALLOCATION);}
278 <BOTH,SCRIPT>"INHIBIT_COMMON_ALLOCATION" { RTOKEN(INHIBIT_COMMON_ALLOCATION);}
279 <BOTH,SCRIPT>"SECTIONS"                 { RTOKEN(SECTIONS);}
280 <BOTH,SCRIPT>"INSERT"                   { RTOKEN(INSERT_K);}
281 <BOTH,SCRIPT>"AFTER"                    { RTOKEN(AFTER);}
282 <BOTH,SCRIPT>"BEFORE"                   { RTOKEN(BEFORE);}
283 <BOTH,SCRIPT>"FILL"                     { RTOKEN(FILL);}
284 <BOTH,SCRIPT>"STARTUP"                  { RTOKEN(STARTUP);}
285 <BOTH,SCRIPT>"OUTPUT_FORMAT"            { RTOKEN(OUTPUT_FORMAT);}
286 <BOTH,SCRIPT>"OUTPUT_ARCH"              { RTOKEN( OUTPUT_ARCH);}
287 <BOTH,SCRIPT>"HLL"                      { RTOKEN(HLL);}
288 <BOTH,SCRIPT>"SYSLIB"                   { RTOKEN(SYSLIB);}
289 <BOTH,SCRIPT>"FLOAT"                    { RTOKEN(FLOAT);}
290 <BOTH,SCRIPT>"QUAD"                     { RTOKEN( QUAD);}
291 <BOTH,SCRIPT>"SQUAD"                    { RTOKEN( SQUAD);}
292 <BOTH,SCRIPT>"LONG"                     { RTOKEN( LONG);}
293 <BOTH,SCRIPT>"SHORT"                    { RTOKEN( SHORT);}
294 <BOTH,SCRIPT>"BYTE"                     { RTOKEN( BYTE);}
295 <BOTH,SCRIPT>"NOFLOAT"                  { RTOKEN(NOFLOAT);}
296 <EXPRESSION,BOTH,SCRIPT>"NOCROSSREFS"   { RTOKEN(NOCROSSREFS);}
297 <BOTH,SCRIPT>"OVERLAY"                  { RTOKEN(OVERLAY); }
298 <BOTH,SCRIPT>"SORT_BY_NAME"             { RTOKEN(SORT_BY_NAME); }
299 <BOTH,SCRIPT>"SORT_BY_ALIGNMENT"        { RTOKEN(SORT_BY_ALIGNMENT); }
300 <BOTH,SCRIPT>"SORT"                     { RTOKEN(SORT_BY_NAME); }
301 <BOTH,SCRIPT>"SORT_BY_INIT_PRIORITY"    { RTOKEN(SORT_BY_INIT_PRIORITY); }
302 <EXPRESSION,BOTH,SCRIPT>"NOLOAD"        { RTOKEN(NOLOAD);}
303 <EXPRESSION,BOTH,SCRIPT>"DSECT"         { RTOKEN(DSECT);}
304 <EXPRESSION,BOTH,SCRIPT>"COPY"          { RTOKEN(COPY);}
305 <EXPRESSION,BOTH,SCRIPT>"INFO"          { RTOKEN(INFO);}
306 <EXPRESSION,BOTH,SCRIPT>"OVERLAY"       { RTOKEN(OVERLAY);}
307 <EXPRESSION,BOTH,SCRIPT>"ONLY_IF_RO"    { RTOKEN(ONLY_IF_RO); }
308 <EXPRESSION,BOTH,SCRIPT>"ONLY_IF_RW"    { RTOKEN(ONLY_IF_RW); }
309 <EXPRESSION,BOTH,SCRIPT>"SPECIAL"       { RTOKEN(SPECIAL); }
310 <BOTH,SCRIPT>"o"                        { RTOKEN(ORIGIN);}
311 <BOTH,SCRIPT>"org"                      { RTOKEN(ORIGIN);}
312 <BOTH,SCRIPT>"l"                        { RTOKEN( LENGTH);}
313 <BOTH,SCRIPT>"len"                      { RTOKEN( LENGTH);}
314 <EXPRESSION,BOTH,SCRIPT>"INCLUDE"       { RTOKEN(INCLUDE);}
315 <BOTH,SCRIPT>"PHDRS"                    { RTOKEN (PHDRS); }
316 <EXPRESSION,BOTH,SCRIPT>"AT"            { RTOKEN(AT);}
317 <EXPRESSION,BOTH,SCRIPT>"SUBALIGN"      { RTOKEN(SUBALIGN);}
318 <EXPRESSION,BOTH,SCRIPT>"PROVIDE"       { RTOKEN(PROVIDE); }
319 <EXPRESSION,BOTH,SCRIPT>"PROVIDE_HIDDEN" { RTOKEN(PROVIDE_HIDDEN); }
320 <EXPRESSION,BOTH,SCRIPT>"KEEP"          { RTOKEN(KEEP); }
321 <EXPRESSION,BOTH,SCRIPT>"EXCLUDE_FILE"  { RTOKEN(EXCLUDE_FILE); }
322 <EXPRESSION,BOTH,SCRIPT>"CONSTANT"      { RTOKEN(CONSTANT);}
323 <MRI>"#".*\n?                   { ++ lineno; }
324 <MRI>"\n"                       { ++ lineno;  RTOKEN(NEWLINE); }
325 <MRI>"*".*                      { /* Mri comment line */ }
326 <MRI>";".*                      { /* Mri comment line */ }
327 <MRI>"END"                      { RTOKEN(ENDWORD); }
328 <MRI>"ALIGNMOD"                 { RTOKEN(ALIGNMOD);}
329 <MRI>"ALIGN"                    { RTOKEN(ALIGN_K);}
330 <MRI>"CHIP"                     { RTOKEN(CHIP); }
331 <MRI>"BASE"                     { RTOKEN(BASE); }
332 <MRI>"ALIAS"                    { RTOKEN(ALIAS); }
333 <MRI>"TRUNCATE"                 { RTOKEN(TRUNCATE); }
334 <MRI>"LOAD"                     { RTOKEN(LOAD); }
335 <MRI>"PUBLIC"                   { RTOKEN(PUBLIC); }
336 <MRI>"ORDER"                    { RTOKEN(ORDER); }
337 <MRI>"NAME"                     { RTOKEN(NAMEWORD); }
338 <MRI>"FORMAT"                   { RTOKEN(FORMAT); }
339 <MRI>"CASE"                     { RTOKEN(CASE); }
340 <MRI>"START"                    { RTOKEN(START); }
341 <MRI>"LIST".*                   { RTOKEN(LIST); /* LIST and ignore to end of line */ }
342 <MRI>"SECT"                     { RTOKEN(SECT); }
343 <EXPRESSION,BOTH,SCRIPT,MRI>"ABSOLUTE"                  { RTOKEN(ABSOLUTE); }
344 <MRI>"end"                      { RTOKEN(ENDWORD); }
345 <MRI>"alignmod"                 { RTOKEN(ALIGNMOD);}
346 <MRI>"align"                    { RTOKEN(ALIGN_K);}
347 <MRI>"chip"                     { RTOKEN(CHIP); }
348 <MRI>"base"                     { RTOKEN(BASE); }
349 <MRI>"alias"                    { RTOKEN(ALIAS); }
350 <MRI>"truncate"                 { RTOKEN(TRUNCATE); }
351 <MRI>"load"                     { RTOKEN(LOAD); }
352 <MRI>"public"                   { RTOKEN(PUBLIC); }
353 <MRI>"order"                    { RTOKEN(ORDER); }
354 <MRI>"name"                     { RTOKEN(NAMEWORD); }
355 <MRI>"format"                   { RTOKEN(FORMAT); }
356 <MRI>"case"                     { RTOKEN(CASE); }
357 <MRI>"extern"                   { RTOKEN(EXTERN); }
358 <MRI>"start"                    { RTOKEN(START); }
359 <MRI>"list".*                   { RTOKEN(LIST); /* LIST and ignore to end of line */ }
360 <MRI>"sect"                     { RTOKEN(SECT); }
361 <EXPRESSION,BOTH,SCRIPT,MRI>"absolute"                  { RTOKEN(ABSOLUTE); }
363 <MRI>{FILENAMECHAR1}{NOCFILENAMECHAR}*  {
364 /* Filename without commas, needed to parse mri stuff */
365                                  yylval.name = xstrdup (yytext);
366                                   return NAME;
367                                 }
370 <BOTH>{FILENAMECHAR1}{FILENAMECHAR}*    {
371                                  yylval.name = xstrdup (yytext);
372                                   return NAME;
373                                 }
374 <BOTH>"-l"{FILENAMECHAR}+ {
375                                   yylval.name = xstrdup (yytext + 2);
376                                   return LNAME;
377                                 }
378 <EXPRESSION>{FILENAMECHAR1}{NOCFILENAMECHAR}*   {
379                                  yylval.name = xstrdup (yytext);
380                                   return NAME;
381                                 }
382 <EXPRESSION>"-l"{NOCFILENAMECHAR}+ {
383                                   yylval.name = xstrdup (yytext + 2);
384                                   return LNAME;
385                                 }
386 <SCRIPT>{WILDCHAR}* {
387                 /* Annoyingly, this pattern can match comments, and we have
388                    longest match issues to consider.  So if the first two
389                    characters are a comment opening, put the input back and
390                    try again.  */
391                 if (yytext[0] == '/' && yytext[1] == '*')
392                   {
393                     yyless (2);
394                     comment ();
395                   }
396                 else
397                   {
398                     yylval.name = xstrdup (yytext);
399                     return NAME;
400                   }
401         }
403 <EXPRESSION,BOTH,SCRIPT,VERS_NODE>"\""[^\"]*"\"" {
404                                         /* No matter the state, quotes
405                                            give what's inside */
406                                         yylval.name = xstrdup (yytext + 1);
407                                         yylval.name[yyleng - 2] = 0;
408                                         return NAME;
409                                 }
410 <BOTH,SCRIPT,EXPRESSION>"\n"            { lineno++;}
411 <MRI,BOTH,SCRIPT,EXPRESSION>[ \t\r]+    { }
413 <VERS_NODE,VERS_SCRIPT>[:,;]    { return *yytext; }
415 <VERS_NODE>global               { RTOKEN(GLOBAL); }
417 <VERS_NODE>local                { RTOKEN(LOCAL); }
419 <VERS_NODE>extern               { RTOKEN(EXTERN); }
421 <VERS_NODE>{V_IDENTIFIER}       { yylval.name = xstrdup (yytext);
422                                   return VERS_IDENTIFIER; }
424 <VERS_SCRIPT>{V_TAG}            { yylval.name = xstrdup (yytext);
425                                   return VERS_TAG; }
427 <VERS_START>"{"                 { BEGIN(VERS_SCRIPT); return *yytext; }
429 <VERS_SCRIPT>"{"                { BEGIN(VERS_NODE);
430                                   vers_node_nesting = 0;
431                                   return *yytext;
432                                 }
433 <VERS_SCRIPT>"}"                { return *yytext; }
434 <VERS_NODE>"{"                  { vers_node_nesting++; return *yytext; }
435 <VERS_NODE>"}"                  { if (--vers_node_nesting < 0)
436                                     BEGIN(VERS_SCRIPT);
437                                   return *yytext;
438                                 }
440 <VERS_START,VERS_NODE,VERS_SCRIPT>[\n]          { lineno++; }
442 <VERS_START,VERS_NODE,VERS_SCRIPT>#.*           { /* Eat up comments */ }
444 <VERS_START,VERS_NODE,VERS_SCRIPT>[ \t\r]+      { /* Eat up whitespace */ }
446 <<EOF>> {
447   include_stack_ptr--;
449   if (include_stack_ptr == 0)
450   {
451     yyterminate ();
452   }
453   else
454   {
455     yy_switch_to_buffer (include_stack[include_stack_ptr]);
456   }
458   ldfile_input_filename = file_name_stack[include_stack_ptr - 1];
459   lineno = lineno_stack[include_stack_ptr];
461   return END;
464 <SCRIPT,MRI,VERS_START,VERS_SCRIPT,VERS_NODE>.  lex_warn_invalid (" in script", yytext);
465 <EXPRESSION,DEFSYMEXP,BOTH>.    lex_warn_invalid (" in expression", yytext);
470 /* Switch flex to reading script file NAME, open on FILE,
471    saving the current input info on the include stack.  */
473 void
474 lex_push_file (FILE *file, const char *name)
476   if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
477     {
478       einfo ("%F:includes nested too deeply\n");
479     }
480   file_name_stack[include_stack_ptr] = name;
481   lineno_stack[include_stack_ptr] = lineno;
482   include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
484   include_stack_ptr++;
485   lineno = 1;
486   yyin = file;
487   yy_switch_to_buffer (yy_create_buffer (yyin, YY_BUF_SIZE));
490 /* Return a newly created flex input buffer containing STRING,
491    which is SIZE bytes long.  */
493 static YY_BUFFER_STATE
494 yy_create_string_buffer (const char *string, size_t size)
496   YY_BUFFER_STATE b;
498   /* Calls to m-alloc get turned by sed into xm-alloc.  */
499   b = malloc (sizeof (struct yy_buffer_state));
500   b->yy_input_file = 0;
501   b->yy_buf_size = size;
503   /* yy_ch_buf has to be 2 characters longer than the size given because
504      we need to put in 2 end-of-buffer characters.  */
505   b->yy_ch_buf = malloc ((unsigned) (b->yy_buf_size + 3));
507   b->yy_ch_buf[0] = '\n';
508   strcpy (b->yy_ch_buf+1, string);
509   b->yy_ch_buf[size+1] = YY_END_OF_BUFFER_CHAR;
510   b->yy_ch_buf[size+2] = YY_END_OF_BUFFER_CHAR;
511   b->yy_n_chars = size+1;
512   b->yy_buf_pos = &b->yy_ch_buf[1];
514   b->yy_is_our_buffer = 1;
515   b->yy_is_interactive = 0;
516   b->yy_at_bol = 1;
517   b->yy_fill_buffer = 0;
519   /* flex 2.4.7 changed the interface.  FIXME: We should not be using
520      a flex internal interface in the first place!  */
521 #ifdef YY_BUFFER_NEW
522   b->yy_buffer_status = YY_BUFFER_NEW;
523 #else
524   b->yy_eof_status = EOF_NOT_SEEN;
525 #endif
527   return b;
530 /* Switch flex to reading from STRING, saving the current input info
531    on the include stack.  */
533 void
534 lex_redirect (const char *string)
536   YY_BUFFER_STATE tmp;
538   yy_init = 0;
539   if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
540     {
541       einfo("%F: macros nested too deeply\n");
542     }
543   file_name_stack[include_stack_ptr] = "redirect";
544   lineno_stack[include_stack_ptr] = lineno;
545   include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
546   include_stack_ptr++;
547   lineno = 1;
548   tmp = yy_create_string_buffer (string, strlen (string));
549   yy_switch_to_buffer (tmp);
552 /* Functions to switch to a different flex start condition,
553    saving the current start condition on `state_stack'.  */
555 static int state_stack[MAX_INCLUDE_DEPTH * 2];
556 static int *state_stack_p = state_stack;
558 void
559 ldlex_script (void)
561   *(state_stack_p)++ = yy_start;
562   BEGIN (SCRIPT);
565 void
566 ldlex_mri_script (void)
568   *(state_stack_p)++ = yy_start;
569   BEGIN (MRI);
572 void
573 ldlex_version_script (void)
575   *(state_stack_p)++ = yy_start;
576   BEGIN (VERS_START);
579 void
580 ldlex_version_file (void)
582   *(state_stack_p)++ = yy_start;
583   BEGIN (VERS_SCRIPT);
586 void
587 ldlex_defsym (void)
589   *(state_stack_p)++ = yy_start;
590   BEGIN (DEFSYMEXP);
593 void
594 ldlex_expression (void)
596   *(state_stack_p)++ = yy_start;
597   BEGIN (EXPRESSION);
600 void
601 ldlex_both (void)
603   *(state_stack_p)++ = yy_start;
604   BEGIN (BOTH);
607 void
608 ldlex_popstate (void)
610   yy_start = *(--state_stack_p);
614 /* Place up to MAX_SIZE characters in BUF and return
615    either the number of characters read, or 0 to indicate EOF.  */
617 static int
618 yy_input (char *buf, int max_size)
620   int result = 0;
621   if (YY_CURRENT_BUFFER->yy_input_file)
622     {
623       if (yyin)
624         {
625           result = fread (buf, 1, max_size, yyin);
626           if (result < max_size && ferror (yyin))
627             einfo ("%F%P: read in flex scanner failed\n");
628         }
629     }
630   return result;
633 /* Eat the rest of a C-style comment.  */
635 static void
636 comment (void)
638   int c;
640   while (1)
641   {
642     c = input();
643     while (c != '*' && c != EOF)
644     {
645       if (c == '\n')
646         lineno++;
647       c = input();
648     }
650     if (c == '*')
651     {
652       c = input();
653       while (c == '*')
654        c = input();
655       if (c == '/')
656        break;                   /* found the end */
657     }
659     if (c == '\n')
660       lineno++;
662     if (c == EOF)
663     {
664       einfo( "%F%P: EOF in comment\n");
665       break;
666     }
667   }
670 /* Warn the user about a garbage character WHAT in the input
671    in context WHERE.  */
673 static void
674 lex_warn_invalid (char *where, char *what)
676   char buf[5];
678   /* If we have found an input file whose format we do not recognize,
679      and we are therefore treating it as a linker script, and we find
680      an invalid character, then most likely this is a real object file
681      of some different format.  Treat it as such.  */
682   if (ldfile_assumed_script)
683     {
684       bfd_set_error (bfd_error_file_not_recognized);
685       einfo ("%F%s: file not recognized: %E\n", ldfile_input_filename);
686     }
688   if (! ISPRINT (*what))
689     {
690       sprintf (buf, "\\%03o", (unsigned int) *what);
691       what = buf;
692     }
694   einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where);