3 /* Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 This file is part of GLD, the Gnu Linker.
8 GLD 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 2, or (at your option)
13 GLD 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.
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
24 This was written by steve chamberlain
33 #include "safe-ctype.h"
43 #include "libiberty.h"
45 /* The type of top-level parser input.
46 yylex and yyparse (indirectly) both check this. */
47 input_type parser_input;
49 /* Line number in the current input file.
50 (FIXME Actually, it doesn't appear to get reset for each file?) */
51 unsigned int lineno = 1;
53 /* The string we are currently lexing, or NULL if we are reading a
55 const char *lex_string = NULL;
57 /* Support for flex reading from more than one input file (stream).
58 `include_stack' is flex's input state for each open file;
59 `file_name_stack' is the file names. `lineno_stack' is the current
62 If `include_stack_ptr' is 0, we haven't started reading anything yet.
63 Otherwise, stack elements 0 through `include_stack_ptr - 1' are valid. */
66 #define YY_INPUT(buf,result,max_size) yy_input (buf, &result, max_size)
70 #define MAX_INCLUDE_DEPTH 10
71 static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
72 static const char *file_name_stack[MAX_INCLUDE_DEPTH];
73 static unsigned int lineno_stack[MAX_INCLUDE_DEPTH];
74 static unsigned int include_stack_ptr = 0;
75 static int vers_node_nesting = 0;
77 static void yy_input (char *, int *, int);
78 static void comment (void);
79 static void lex_warn_invalid (char *where, char *what);
82 EXPRESSION definitely in an expression
83 SCRIPT definitely in a script
84 BOTH either EXPRESSION or SCRIPT
85 DEFSYMEXP in an argument to -defsym
87 VERS_START starting a Sun style mapfile
88 VERS_SCRIPT a Sun style mapfile
89 VERS_NODE a node within a Sun style mapfile
91 #define RTOKEN(x) { yylval.token = x; return x; }
93 /* Some versions of flex want this. */
95 int yywrap (void) { return 1; }
102 CMDFILENAMECHAR [_a-zA-Z0-9\/\.\\_\+\$\:\[\]\\\,\=\&\!\<\>\-\~]
103 CMDFILENAMECHAR1 [_a-zA-Z0-9\/\.\\_\+\$\:\[\]\\\,\=\&\!\<\>\~]
104 FILENAMECHAR1 [_a-zA-Z\/\.\\\$\_\~]
105 SYMBOLCHARN [_a-zA-Z\/\.\\\$\_\~0-9]
106 FILENAMECHAR [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~]
107 WILDCHAR [_a-zA-Z0-9\/\.\-\_\+\=\$\:\[\]\\\,\~\?\*]
110 NOCFILENAMECHAR [_a-zA-Z0-9\/\.\-\_\+\$\:\[\]\\\~]
112 V_TAG [.$_a-zA-Z][._a-zA-Z0-9]*
113 V_IDENTIFIER [*?.$_a-zA-Z\[\]\-\!\^\\]([*?.$_a-zA-Z0-9\[\]\-\!\^\\]|::)*
125 if (parser_input != input_selected)
127 /* The first token of the input determines the initial parser state. */
128 input_type t = parser_input;
129 parser_input = input_selected;
132 case input_script: return INPUT_SCRIPT; break;
133 case input_mri_script: return INPUT_MRI_SCRIPT; break;
134 case input_version_script: return INPUT_VERSION_SCRIPT; break;
135 case input_defsym: return INPUT_DEFSYM; break;
140 <BOTH,SCRIPT,EXPRESSION,VERS_START,VERS_NODE,VERS_SCRIPT>"/*" { comment (); }
143 <DEFSYMEXP>"-" { RTOKEN('-');}
144 <DEFSYMEXP>"+" { RTOKEN('+');}
145 <DEFSYMEXP>{FILENAMECHAR1}{SYMBOLCHARN}* { yylval.name = xstrdup (yytext); return NAME; }
146 <DEFSYMEXP>"=" { RTOKEN('='); }
148 <MRI,EXPRESSION>"$"([0-9A-Fa-f])+ {
149 yylval.integer = bfd_scan_vma (yytext + 1, 0, 16);
150 yylval.bigint.str = NULL;
154 <MRI,EXPRESSION>([0-9A-Fa-f])+(H|h|X|x|B|b|O|o|D|d) {
156 switch (yytext[yyleng - 1]) {
174 yylval.integer = bfd_scan_vma (yytext, 0,
176 yylval.bigint.str = NULL;
179 <SCRIPT,DEFSYMEXP,MRI,BOTH,EXPRESSION>((("$"|0[xX])([0-9A-Fa-f])+)|(([0-9])+))(M|K|m|k)? {
188 yylval.integer = bfd_scan_vma (s, 0, ibase);
189 yylval.bigint.str = NULL;
190 if (yytext[yyleng - 1] == 'M'
191 || yytext[yyleng - 1] == 'm')
193 yylval.integer *= 1024 * 1024;
195 else if (yytext[yyleng - 1] == 'K'
196 || yytext[yyleng - 1]=='k')
198 yylval.integer *= 1024;
200 else if (yytext[0] == '0'
202 || yytext[1] == 'X'))
204 yylval.bigint.str = xstrdup (yytext + 2);
208 <BOTH,SCRIPT,EXPRESSION,MRI>"]" { RTOKEN(']');}
209 <BOTH,SCRIPT,EXPRESSION,MRI>"[" { RTOKEN('[');}
210 <BOTH,SCRIPT,EXPRESSION,MRI>"<<=" { RTOKEN(LSHIFTEQ);}
211 <BOTH,SCRIPT,EXPRESSION,MRI>">>=" { RTOKEN(RSHIFTEQ);}
212 <BOTH,SCRIPT,EXPRESSION,MRI>"||" { RTOKEN(OROR);}
213 <BOTH,SCRIPT,EXPRESSION,MRI>"==" { RTOKEN(EQ);}
214 <BOTH,SCRIPT,EXPRESSION,MRI>"!=" { RTOKEN(NE);}
215 <BOTH,SCRIPT,EXPRESSION,MRI>">=" { RTOKEN(GE);}
216 <BOTH,SCRIPT,EXPRESSION,MRI>"<=" { RTOKEN(LE);}
217 <BOTH,SCRIPT,EXPRESSION,MRI>"<<" { RTOKEN(LSHIFT);}
218 <BOTH,SCRIPT,EXPRESSION,MRI>">>" { RTOKEN(RSHIFT);}
219 <BOTH,SCRIPT,EXPRESSION,MRI>"+=" { RTOKEN(PLUSEQ);}
220 <BOTH,SCRIPT,EXPRESSION,MRI>"-=" { RTOKEN(MINUSEQ);}
221 <BOTH,SCRIPT,EXPRESSION,MRI>"*=" { RTOKEN(MULTEQ);}
222 <BOTH,SCRIPT,EXPRESSION,MRI>"/=" { RTOKEN(DIVEQ);}
223 <BOTH,SCRIPT,EXPRESSION,MRI>"&=" { RTOKEN(ANDEQ);}
224 <BOTH,SCRIPT,EXPRESSION,MRI>"|=" { RTOKEN(OREQ);}
225 <BOTH,SCRIPT,EXPRESSION,MRI>"&&" { RTOKEN(ANDAND);}
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,EXPRESSION,MRI>")" { RTOKEN(')');}
243 <BOTH,SCRIPT,EXPRESSION,MRI>"(" { RTOKEN('(');}
244 <BOTH,SCRIPT,EXPRESSION,MRI>":" { RTOKEN(':'); }
245 <BOTH,SCRIPT,EXPRESSION,MRI>";" { RTOKEN(';');}
246 <BOTH,SCRIPT>"MEMORY" { RTOKEN(MEMORY);}
247 <BOTH,SCRIPT,EXPRESSION>"ORIGIN" { RTOKEN(ORIGIN);}
248 <BOTH,SCRIPT>"VERSION" { RTOKEN(VERSIONK);}
249 <EXPRESSION,BOTH,SCRIPT>"BLOCK" { RTOKEN(BLOCK);}
250 <EXPRESSION,BOTH,SCRIPT>"BIND" { RTOKEN(BIND);}
251 <BOTH,SCRIPT,EXPRESSION>"LENGTH" { RTOKEN(LENGTH);}
252 <EXPRESSION,BOTH,SCRIPT>"ALIGN" { RTOKEN(ALIGN_K);}
253 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_ALIGN" { RTOKEN(DATA_SEGMENT_ALIGN);}
254 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_RELRO_END" { RTOKEN(DATA_SEGMENT_RELRO_END);}
255 <EXPRESSION,BOTH,SCRIPT>"DATA_SEGMENT_END" { RTOKEN(DATA_SEGMENT_END);}
256 <EXPRESSION,BOTH,SCRIPT>"ADDR" { RTOKEN(ADDR);}
257 <EXPRESSION,BOTH,SCRIPT>"LOADADDR" { RTOKEN(LOADADDR);}
258 <EXPRESSION,BOTH>"MAX" { RTOKEN(MAX_K); }
259 <EXPRESSION,BOTH>"MIN" { RTOKEN(MIN_K); }
260 <EXPRESSION,BOTH>"ASSERT" { RTOKEN(ASSERT_K); }
261 <BOTH,SCRIPT>"ENTRY" { RTOKEN(ENTRY);}
262 <BOTH,SCRIPT,MRI>"EXTERN" { RTOKEN(EXTERN);}
263 <EXPRESSION,BOTH,SCRIPT>"NEXT" { RTOKEN(NEXT);}
264 <EXPRESSION,BOTH,SCRIPT>"sizeof_headers" { RTOKEN(SIZEOF_HEADERS);}
265 <EXPRESSION,BOTH,SCRIPT>"SIZEOF_HEADERS" { RTOKEN(SIZEOF_HEADERS);}
266 <EXPRESSION,BOTH,SCRIPT>"SEGMENT_START" { RTOKEN(SEGMENT_START);}
267 <BOTH,SCRIPT>"MAP" { RTOKEN(MAP);}
268 <EXPRESSION,BOTH,SCRIPT>"SIZEOF" { RTOKEN(SIZEOF);}
269 <BOTH,SCRIPT>"TARGET" { RTOKEN(TARGET_K);}
270 <BOTH,SCRIPT>"SEARCH_DIR" { RTOKEN(SEARCH_DIR);}
271 <BOTH,SCRIPT>"OUTPUT" { RTOKEN(OUTPUT);}
272 <BOTH,SCRIPT>"INPUT" { RTOKEN(INPUT);}
273 <EXPRESSION,BOTH,SCRIPT>"GROUP" { RTOKEN(GROUP);}
274 <EXPRESSION,BOTH,SCRIPT>"AS_NEEDED" { RTOKEN(AS_NEEDED);}
275 <EXPRESSION,BOTH,SCRIPT>"DEFINED" { RTOKEN(DEFINED);}
276 <BOTH,SCRIPT>"CREATE_OBJECT_SYMBOLS" { RTOKEN(CREATE_OBJECT_SYMBOLS);}
277 <BOTH,SCRIPT>"CONSTRUCTORS" { RTOKEN( CONSTRUCTORS);}
278 <BOTH,SCRIPT>"FORCE_COMMON_ALLOCATION" { RTOKEN(FORCE_COMMON_ALLOCATION);}
279 <BOTH,SCRIPT>"INHIBIT_COMMON_ALLOCATION" { RTOKEN(INHIBIT_COMMON_ALLOCATION);}
280 <BOTH,SCRIPT>"SECTIONS" { RTOKEN(SECTIONS);}
281 <BOTH,SCRIPT>"FILL" { RTOKEN(FILL);}
282 <BOTH,SCRIPT>"STARTUP" { RTOKEN(STARTUP);}
283 <BOTH,SCRIPT>"OUTPUT_FORMAT" { RTOKEN(OUTPUT_FORMAT);}
284 <BOTH,SCRIPT>"OUTPUT_ARCH" { RTOKEN( OUTPUT_ARCH);}
285 <BOTH,SCRIPT>"HLL" { RTOKEN(HLL);}
286 <BOTH,SCRIPT>"SYSLIB" { RTOKEN(SYSLIB);}
287 <BOTH,SCRIPT>"FLOAT" { RTOKEN(FLOAT);}
288 <BOTH,SCRIPT>"QUAD" { RTOKEN( QUAD);}
289 <BOTH,SCRIPT>"SQUAD" { RTOKEN( SQUAD);}
290 <BOTH,SCRIPT>"LONG" { RTOKEN( LONG);}
291 <BOTH,SCRIPT>"SHORT" { RTOKEN( SHORT);}
292 <BOTH,SCRIPT>"BYTE" { RTOKEN( BYTE);}
293 <BOTH,SCRIPT>"NOFLOAT" { RTOKEN(NOFLOAT);}
294 <EXPRESSION,BOTH,SCRIPT>"NOCROSSREFS" { RTOKEN(NOCROSSREFS);}
295 <BOTH,SCRIPT>"OVERLAY" { RTOKEN(OVERLAY); }
296 <BOTH,SCRIPT>"SORT_BY_NAME" { RTOKEN(SORT_BY_NAME); }
297 <BOTH,SCRIPT>"SORT_BY_ALIGNMENT" { RTOKEN(SORT_BY_ALIGNMENT); }
298 <BOTH,SCRIPT>"SORT" { RTOKEN(SORT_BY_NAME); }
299 <EXPRESSION,BOTH,SCRIPT>"NOLOAD" { RTOKEN(NOLOAD);}
300 <EXPRESSION,BOTH,SCRIPT>"DSECT" { RTOKEN(DSECT);}
301 <EXPRESSION,BOTH,SCRIPT>"COPY" { RTOKEN(COPY);}
302 <EXPRESSION,BOTH,SCRIPT>"INFO" { RTOKEN(INFO);}
303 <EXPRESSION,BOTH,SCRIPT>"OVERLAY" { RTOKEN(OVERLAY);}
304 <EXPRESSION,BOTH,SCRIPT>"ONLY_IF_RO" { RTOKEN(ONLY_IF_RO); }
305 <EXPRESSION,BOTH,SCRIPT>"ONLY_IF_RW" { RTOKEN(ONLY_IF_RW); }
306 <EXPRESSION,BOTH,SCRIPT>"SPECIAL" { RTOKEN(SPECIAL); }
307 <BOTH,SCRIPT>"o" { RTOKEN(ORIGIN);}
308 <BOTH,SCRIPT>"org" { RTOKEN(ORIGIN);}
309 <BOTH,SCRIPT>"l" { RTOKEN( LENGTH);}
310 <BOTH,SCRIPT>"len" { RTOKEN( LENGTH);}
311 <BOTH,SCRIPT>"INCLUDE" { RTOKEN(INCLUDE);}
312 <BOTH,SCRIPT>"PHDRS" { RTOKEN (PHDRS); }
313 <EXPRESSION,BOTH,SCRIPT>"AT" { RTOKEN(AT);}
314 <EXPRESSION,BOTH,SCRIPT>"SUBALIGN" { RTOKEN(SUBALIGN);}
315 <EXPRESSION,BOTH,SCRIPT>"PROVIDE" { RTOKEN(PROVIDE); }
316 <EXPRESSION,BOTH,SCRIPT>"PROVIDE_HIDDEN" { RTOKEN(PROVIDE_HIDDEN); }
317 <EXPRESSION,BOTH,SCRIPT>"KEEP" { RTOKEN(KEEP); }
318 <EXPRESSION,BOTH,SCRIPT>"EXCLUDE_FILE" { RTOKEN(EXCLUDE_FILE); }
319 <MRI>"#".*\n? { ++ lineno; }
320 <MRI>"\n" { ++ lineno; RTOKEN(NEWLINE); }
321 <MRI>"*".* { /* Mri comment line */ }
322 <MRI>";".* { /* Mri comment line */ }
323 <MRI>"END" { RTOKEN(ENDWORD); }
324 <MRI>"ALIGNMOD" { RTOKEN(ALIGNMOD);}
325 <MRI>"ALIGN" { RTOKEN(ALIGN_K);}
326 <MRI>"CHIP" { RTOKEN(CHIP); }
327 <MRI>"BASE" { RTOKEN(BASE); }
328 <MRI>"ALIAS" { RTOKEN(ALIAS); }
329 <MRI>"TRUNCATE" { RTOKEN(TRUNCATE); }
330 <MRI>"LOAD" { RTOKEN(LOAD); }
331 <MRI>"PUBLIC" { RTOKEN(PUBLIC); }
332 <MRI>"ORDER" { RTOKEN(ORDER); }
333 <MRI>"NAME" { RTOKEN(NAMEWORD); }
334 <MRI>"FORMAT" { RTOKEN(FORMAT); }
335 <MRI>"CASE" { RTOKEN(CASE); }
336 <MRI>"START" { RTOKEN(START); }
337 <MRI>"LIST".* { RTOKEN(LIST); /* LIST and ignore to end of line */ }
338 <MRI>"SECT" { RTOKEN(SECT); }
339 <EXPRESSION,BOTH,SCRIPT,MRI>"ABSOLUTE" { RTOKEN(ABSOLUTE); }
340 <MRI>"end" { RTOKEN(ENDWORD); }
341 <MRI>"alignmod" { RTOKEN(ALIGNMOD);}
342 <MRI>"align" { RTOKEN(ALIGN_K);}
343 <MRI>"chip" { RTOKEN(CHIP); }
344 <MRI>"base" { RTOKEN(BASE); }
345 <MRI>"alias" { RTOKEN(ALIAS); }
346 <MRI>"truncate" { RTOKEN(TRUNCATE); }
347 <MRI>"load" { RTOKEN(LOAD); }
348 <MRI>"public" { RTOKEN(PUBLIC); }
349 <MRI>"order" { RTOKEN(ORDER); }
350 <MRI>"name" { RTOKEN(NAMEWORD); }
351 <MRI>"format" { RTOKEN(FORMAT); }
352 <MRI>"case" { RTOKEN(CASE); }
353 <MRI>"extern" { RTOKEN(EXTERN); }
354 <MRI>"start" { RTOKEN(START); }
355 <MRI>"list".* { RTOKEN(LIST); /* LIST and ignore to end of line */ }
356 <MRI>"sect" { RTOKEN(SECT); }
357 <EXPRESSION,BOTH,SCRIPT,MRI>"absolute" { RTOKEN(ABSOLUTE); }
359 <MRI>{FILENAMECHAR1}{NOCFILENAMECHAR}* {
360 /* Filename without commas, needed to parse mri stuff */
361 yylval.name = xstrdup (yytext);
366 <BOTH,EXPRESSION>{FILENAMECHAR1}{FILENAMECHAR}* {
367 yylval.name = xstrdup (yytext);
370 <BOTH,EXPRESSION>"-l"{FILENAMECHAR}+ {
371 yylval.name = xstrdup (yytext + 2);
374 <SCRIPT>{WILDCHAR}* {
375 /* Annoyingly, this pattern can match comments, and we have
376 longest match issues to consider. So if the first two
377 characters are a comment opening, put the input back and
379 if (yytext[0] == '/' && yytext[1] == '*')
386 yylval.name = xstrdup (yytext);
391 <EXPRESSION,BOTH,SCRIPT,VERS_NODE>"\""[^\"]*"\"" {
392 /* No matter the state, quotes
393 give what's inside */
394 yylval.name = xstrdup (yytext + 1);
395 yylval.name[yyleng - 2] = 0;
398 <BOTH,SCRIPT,EXPRESSION>"\n" { lineno++;}
399 <MRI,BOTH,SCRIPT,EXPRESSION>[ \t\r]+ { }
401 <VERS_NODE,VERS_SCRIPT>[:,;] { return *yytext; }
403 <VERS_NODE>global { RTOKEN(GLOBAL); }
405 <VERS_NODE>local { RTOKEN(LOCAL); }
407 <VERS_NODE>extern { RTOKEN(EXTERN); }
409 <VERS_NODE>{V_IDENTIFIER} { yylval.name = xstrdup (yytext);
410 return VERS_IDENTIFIER; }
412 <VERS_SCRIPT>{V_TAG} { yylval.name = xstrdup (yytext);
415 <VERS_START>"{" { BEGIN(VERS_SCRIPT); return *yytext; }
417 <VERS_SCRIPT>"{" { BEGIN(VERS_NODE);
418 vers_node_nesting = 0;
421 <VERS_SCRIPT>"}" { return *yytext; }
422 <VERS_NODE>"{" { vers_node_nesting++; return *yytext; }
423 <VERS_NODE>"}" { if (--vers_node_nesting < 0)
428 <VERS_START,VERS_NODE,VERS_SCRIPT>[\n] { lineno++; }
430 <VERS_START,VERS_NODE,VERS_SCRIPT>#.* { /* Eat up comments */ }
432 <VERS_START,VERS_NODE,VERS_SCRIPT>[ \t\r]+ { /* Eat up whitespace */ }
437 if (include_stack_ptr == 0)
443 yy_switch_to_buffer (include_stack[include_stack_ptr]);
446 ldfile_input_filename = file_name_stack[include_stack_ptr - 1];
447 lineno = lineno_stack[include_stack_ptr];
452 <SCRIPT,MRI,VERS_START,VERS_SCRIPT,VERS_NODE>. lex_warn_invalid (" in script", yytext);
453 <EXPRESSION,DEFSYMEXP,BOTH>. lex_warn_invalid (" in expression", yytext);
458 /* Switch flex to reading script file NAME, open on FILE,
459 saving the current input info on the include stack. */
462 lex_push_file (FILE *file, const char *name)
464 if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
466 einfo ("%F:includes nested too deeply\n");
468 file_name_stack[include_stack_ptr] = name;
469 lineno_stack[include_stack_ptr] = lineno;
470 include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
475 yy_switch_to_buffer (yy_create_buffer (yyin, YY_BUF_SIZE));
478 /* Return a newly created flex input buffer containing STRING,
479 which is SIZE bytes long. */
481 static YY_BUFFER_STATE
482 yy_create_string_buffer (const char *string, size_t size)
486 /* Calls to m-alloc get turned by sed into xm-alloc. */
487 b = malloc (sizeof (struct yy_buffer_state));
488 b->yy_input_file = 0;
489 b->yy_buf_size = size;
491 /* yy_ch_buf has to be 2 characters longer than the size given because
492 we need to put in 2 end-of-buffer characters. */
493 b->yy_ch_buf = malloc ((unsigned) (b->yy_buf_size + 3));
495 b->yy_ch_buf[0] = '\n';
496 strcpy (b->yy_ch_buf+1, string);
497 b->yy_ch_buf[size+1] = YY_END_OF_BUFFER_CHAR;
498 b->yy_ch_buf[size+2] = YY_END_OF_BUFFER_CHAR;
499 b->yy_n_chars = size+1;
500 b->yy_buf_pos = &b->yy_ch_buf[1];
502 b->yy_is_our_buffer = 1;
503 b->yy_is_interactive = 0;
505 b->yy_fill_buffer = 0;
507 /* flex 2.4.7 changed the interface. FIXME: We should not be using
508 a flex internal interface in the first place! */
510 b->yy_buffer_status = YY_BUFFER_NEW;
512 b->yy_eof_status = EOF_NOT_SEEN;
518 /* Switch flex to reading from STRING, saving the current input info
519 on the include stack. */
522 lex_redirect (const char *string)
527 if (include_stack_ptr >= MAX_INCLUDE_DEPTH)
529 einfo("%F: macros nested too deeply\n");
531 file_name_stack[include_stack_ptr] = "redirect";
532 lineno_stack[include_stack_ptr] = lineno;
533 include_stack[include_stack_ptr] = YY_CURRENT_BUFFER;
536 tmp = yy_create_string_buffer (string, strlen (string));
537 yy_switch_to_buffer (tmp);
540 /* Functions to switch to a different flex start condition,
541 saving the current start condition on `state_stack'. */
543 static int state_stack[MAX_INCLUDE_DEPTH * 2];
544 static int *state_stack_p = state_stack;
549 *(state_stack_p)++ = yy_start;
554 ldlex_mri_script (void)
556 *(state_stack_p)++ = yy_start;
561 ldlex_version_script (void)
563 *(state_stack_p)++ = yy_start;
568 ldlex_version_file (void)
570 *(state_stack_p)++ = yy_start;
577 *(state_stack_p)++ = yy_start;
582 ldlex_expression (void)
584 *(state_stack_p)++ = yy_start;
591 *(state_stack_p)++ = yy_start;
596 ldlex_popstate (void)
598 yy_start = *(--state_stack_p);
602 /* Place up to MAX_SIZE characters in BUF and return in *RESULT
603 either the number of characters read, or 0 to indicate EOF. */
606 yy_input (char *buf, int *result, int max_size)
609 if (YY_CURRENT_BUFFER->yy_input_file)
613 *result = fread (buf, 1, max_size, yyin);
614 if (*result < max_size && ferror (yyin))
615 einfo ("%F%P: read in flex scanner failed\n");
620 /* Eat the rest of a C-style comment. */
630 while (c != '*' && c != EOF)
643 break; /* found the end */
651 einfo( "%F%P: EOF in comment\n");
657 /* Warn the user about a garbage character WHAT in the input
661 lex_warn_invalid (char *where, char *what)
665 /* If we have found an input file whose format we do not recognize,
666 and we are therefore treating it as a linker script, and we find
667 an invalid character, then most likely this is a real object file
668 of some different format. Treat it as such. */
669 if (ldfile_assumed_script)
671 bfd_set_error (bfd_error_file_not_recognized);
672 einfo ("%F%s: file not recognized: %E\n", ldfile_input_filename);
675 if (! ISPRINT (*what))
677 sprintf (buf, "\\%03o", (unsigned int) *what);
681 einfo ("%P:%S: ignoring invalid character `%s'%s\n", what, where);