/* Copyright (C) 1991-2025 Free Software Foundation, Inc.
Written by Steve Chamberlain of Cygnus Support.
This file is part of the GNU Binutils.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
MA 02110-1301, USA. */
/* The type of top-level parser input.
yylex and yyparse (indirectly) both check this. */
input_type parser_input;
/* Line number in the current input file. */
unsigned int lineno;
/* The string we are currently lexing, or NULL if we are reading a
file. */
const char *lex_string = NULL;
/* Support for flex reading from more than one input file (stream).
`include_stack' is flex's input state for each open file;
`file_name_stack' is the file names. `lineno_stack' is the current
line numbers.
If `include_stack_ptr' is 0, we haven't started reading anything yet.
Otherwise, stack elements 0 through `include_stack_ptr - 1' are valid. */
#undef YY_INPUT
#define YY_INPUT(buf,result,max_size) result = yy_input (buf, max_size)
#define MAX_INCLUDE_DEPTH 10
static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH];
static const char *file_name_stack[MAX_INCLUDE_DEPTH];
static unsigned int lineno_stack[MAX_INCLUDE_DEPTH];
static unsigned int sysrooted_stack[MAX_INCLUDE_DEPTH];
static unsigned int include_stack_ptr = 0;
static int vers_node_nesting = 0;
/* STATES
EXPRESSION in an expression
SCRIPT in a script
INPUTLIST in a script, a filename-list
MRI in an MRI script
WILD inside the braces of an output section or overlay,
for input section wildcards
VERS_START starting a Sun style mapfile
VERS_SCRIPT a Sun style mapfile
VERS_NODE a node within a Sun style mapfile
*/
#define RTOKEN(x) { yylval.token = x; return x; }
if (parser_input != input_selected)
{
/* The first token of the input determines the initial parser state. */
input_type t = parser_input;
parser_input = input_selected;
switch (t)
{
case input_script: return INPUT_SCRIPT;
case input_mri_script: return INPUT_MRI_SCRIPT;
case input_version_script: return INPUT_VERSION_SCRIPT;
case input_section_ordering_script: return INPUT_SECTION_ORDERING_SCRIPT;
case input_dynamic_list: return INPUT_DYNAMIC_LIST;
case input_defsym: return INPUT_DEFSYM;
default: abort ();
}
}
/* Some tokens that only appear in expressions must be enabled for
states other than EXPRESSION, since parser lookahead means they
must be recognised before the parser switches the lexer out of
SCRIPT or WILD state into EXPRESSION state.
This sort of thing happens for example with NAME in ldgram.y
"section" rule, which is immediately followed by ldlex_expression.
However, if you follow the grammar from "sec_or_group_p1" you see
"assignment" appearing in "statement_anywhere". Now,
"assignment" also has NAME as its first token, just like
"section". So the parser can't know whether it is in the
"section" or the "assignment" rule until it has scanned the next
token to find an assignment operator. Thus the next token after
NAME in the "section" rule may be lexed before the lexer is
switched to EXPRESSION state, and there are quite a number of
optional components. The first token in all those components
must be able to be lexed in SCRIPT state, as well as the
assignment operators. In fact, due to "opt_exp_with_type",
anything that can appear on the left hand side of "exp" might
need to be lexed in SCRIPT state.
<MRI>{FILENAMECHAR1}{NOCFILENAMECHAR}* {
/* Filename without commas, needed to parse mri stuff */
yylval.name = stat_strdup (yytext);
return NAME;
}
<SCRIPT,INPUTLIST>{FILENAMECHAR1}{FILENAMECHAR}* {
yylval.name = stat_strdup (yytext);
return NAME;
}
<INPUTLIST>"="{FILENAMECHAR1}{FILENAMECHAR}* {
/* Filename to be prefixed by --sysroot or when non-sysrooted, nothing. */
yylval.name = stat_strdup (yytext);
return NAME;
}
<INPUTLIST>"-l"{FILENAMECHAR}+ {
yylval.name = stat_strdup (yytext + 2);
return LNAME;
}
<EXPRESSION>{SYMBOLNAMECHAR1}{SYMBOLNAMECHAR}* {
yylval.name = stat_strdup (yytext);
return NAME;
}
/* The following rule is to prevent a fill expression on the output
section before /DISCARD/ interpreting the '/' as a divide. */
<EXPRESSION>"/DISCARD/" {
yylval.name = stat_strdup (yytext);
return NAME;
}
<WILD>{WILDCHAR}* {
/* Annoyingly, this pattern can match comments, and we have
longest match issues to consider. So if the first two
characters are a comment opening, put the input back and
try again. */
if (yytext[0] == '/' && yytext[1] == '*')
{
yyless (2);
comment ();
}
else
{
yylval.name = stat_strdup (yytext);
return NAME;
}
}
<SCRIPT,EXPRESSION,WILD,VERS_NODE,INPUTLIST>"\""[^\"]*"\"" {
/* No matter the state, quotes give what's inside. */
yylval.name = stat_memdup (yytext + 1, yyleng - 2, yyleng - 1);
return NAME;
}
/* yy_ch_buf has to be 2 characters longer than the size given because
we need to put in 2 end-of-buffer characters. */
b->yy_ch_buf = xmalloc (b->yy_buf_size + 3);
/* flex 2.4.7 changed the interface. FIXME: We should not be using
a flex internal interface in the first place! */
#ifdef YY_BUFFER_NEW
b->yy_buffer_status = YY_BUFFER_NEW;
#else
b->yy_eof_status = EOF_NOT_SEEN;
#endif
return b;
}
/* Switch flex to reading from STRING, saving the current input info
on the include stack. */
/* In cases where the parser needs to look ahead and the context
changes from expression to script or vice-versa, throw away a
NAME. What constitutes a NAME depends on context. */
void
ldlex_backup (void)
{
yyless (0);
}
/* Return the current file name, or the previous file if no file is
current. */
/* If we have found an input file whose format we do not recognize,
and we are therefore treating it as a linker script, and we find
an invalid character, then most likely this is a real object file
of some different format. Treat it as such. */
if (ldfile_assumed_script)
{
bfd_set_error (bfd_error_file_not_recognized);
fatal (_("%s: file not recognized: %E\n"), ldlex_filename ());
}
if (! ISPRINT (*what))
{
sprintf (buf, "\\%03o", *(unsigned char *) what);
what = buf;
}
einfo (_("%P:%pS: ignoring invalid character `%s'%s\n"), NULL, what, where);
}