mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
glr2.cc: use 'const' for some constant local variables
* data/skeletons/glr2.cc: here.
This commit is contained in:
committed by
Akim Demaille
parent
12b5924939
commit
4f24f5f304
@@ -1042,7 +1042,7 @@ class semantic_option {
|
|||||||
{
|
{
|
||||||
if (this->yyrule == yyy1->yyrule)
|
if (this->yyrule == yyy1->yyrule)
|
||||||
{
|
{
|
||||||
glr_state *yys0, *yys1;
|
const glr_state *yys0, *yys1;
|
||||||
int yyn;
|
int yyn;
|
||||||
for (yys0 = this->state(),
|
for (yys0 = this->state(),
|
||||||
yys1 = yyy1->state(),
|
yys1 = yyy1->state(),
|
||||||
@@ -1880,19 +1880,18 @@ public:
|
|||||||
*/
|
*/
|
||||||
if (yytoken != ]b4_namespace_ref::b4_parser_class::b4_symbol(empty, kind)[)
|
if (yytoken != ]b4_namespace_ref::b4_parser_class::b4_symbol(empty, kind)[)
|
||||||
{
|
{
|
||||||
int yyn = yypact[firstTopState()->yylrState];
|
const int yyn = yypact[firstTopState()->yylrState];
|
||||||
yyarg[yycount++] = yytoken;
|
yyarg[yycount++] = yytoken;
|
||||||
if (!yypact_value_is_default (yyn))
|
if (!yypact_value_is_default (yyn))
|
||||||
{
|
{
|
||||||
/* Start YYX at -YYN if negative to avoid negative indexes in
|
/* Start YYX at -YYN if negative to avoid negative indexes in
|
||||||
YYCHECK. In other words, skip the first -YYN actions for this
|
YYCHECK. In other words, skip the first -YYN actions for this
|
||||||
state because they are default actions. */
|
state because they are default actions. */
|
||||||
int yyxbegin = yyn < 0 ? -yyn : 0;
|
const int yyxbegin = yyn < 0 ? -yyn : 0;
|
||||||
/* Stay within bounds of both yycheck and yytname. */
|
/* Stay within bounds of both yycheck and yytname. */
|
||||||
int yychecklim = YYLAST - yyn + 1;
|
const int yychecklim = YYLAST - yyn + 1;
|
||||||
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
|
const int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
|
||||||
int yyx;
|
for (int yyx = yyxbegin; yyx < yyxend; ++yyx)
|
||||||
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
|
|
||||||
if (yycheck[yyx + yyn] == yyx && yyx != ]b4_namespace_ref::b4_parser_class::b4_symbol(error, kind)[
|
if (yycheck[yyx + yyn] == yyx && yyx != ]b4_namespace_ref::b4_parser_class::b4_symbol(error, kind)[
|
||||||
&& !yytable_value_is_error (yytable[yyx + yyn]))
|
&& !yytable_value_is_error (yytable[yyx + yyn]))
|
||||||
{
|
{
|
||||||
@@ -2028,7 +2027,7 @@ public:
|
|||||||
{
|
{
|
||||||
while (yystateStack.topAt(yyk) != YY_NULLPTR)
|
while (yystateStack.topAt(yyk) != YY_NULLPTR)
|
||||||
{
|
{
|
||||||
state_num yystate = topState(yyk)->yylrState;
|
const state_num yystate = topState(yyk)->yylrState;
|
||||||
YY_DEBUG_STREAM << "Stack " << yyk.get()
|
YY_DEBUG_STREAM << "Stack " << yyk.get()
|
||||||
<< " Entering state " << yystate << '\n';
|
<< " Entering state " << yystate << '\n';
|
||||||
|
|
||||||
@@ -2036,14 +2035,14 @@ public:
|
|||||||
|
|
||||||
if (yyisDefaultedState (yystate))
|
if (yyisDefaultedState (yystate))
|
||||||
{
|
{
|
||||||
rule_num yyrule = yydefaultAction (yystate);
|
const rule_num yyrule = yydefaultAction (yystate);
|
||||||
if (yyrule == 0)
|
if (yyrule == 0)
|
||||||
{
|
{
|
||||||
YY_DEBUG_STREAM << "Stack " << yyk.get() << " dies.\n";
|
YY_DEBUG_STREAM << "Stack " << yyk.get() << " dies.\n";
|
||||||
yystateStack.yytops.yymarkStackDeleted (yyk);
|
yystateStack.yytops.yymarkStackDeleted (yyk);
|
||||||
return yyok;
|
return yyok;
|
||||||
}
|
}
|
||||||
YYRESULTTAG yyflag = yyglrReduce (yyk, yyrule,
|
const YYRESULTTAG yyflag = yyglrReduce (yyk, yyrule,
|
||||||
yyimmediate[yyrule]);
|
yyimmediate[yyrule]);
|
||||||
if (yyflag == yyerr)
|
if (yyflag == yyerr)
|
||||||
{
|
{
|
||||||
@@ -2058,7 +2057,7 @@ public:
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
yystateStack.yytops.setLookaheadNeeds(yyk, true);
|
yystateStack.yytops.setLookaheadNeeds(yyk, true);
|
||||||
yysymbol_kind_t yytoken = ]b4_yygetToken_call[;
|
const yysymbol_kind_t yytoken = ]b4_yygetToken_call[;
|
||||||
const short* yyconflicts;
|
const short* yyconflicts;
|
||||||
int yyaction = yygetLRActions (yystate, yytoken, &yyconflicts);
|
int yyaction = yygetLRActions (yystate, yytoken, &yyconflicts);
|
||||||
|
|
||||||
@@ -2204,7 +2203,7 @@ public:
|
|||||||
yydoAction (state_set_index yyk, rule_num yyrule,
|
yydoAction (state_set_index yyk, rule_num yyrule,
|
||||||
YYSTYPE* yyvalp]b4_locations_if([, YYLTYPE* yylocp])[)
|
YYSTYPE* yyvalp]b4_locations_if([, YYLTYPE* yylocp])[)
|
||||||
{
|
{
|
||||||
int yynrhs = yyrhsLength (yyrule);
|
const int yynrhs = yyrhsLength (yyrule);
|
||||||
|
|
||||||
if (!yystateStack.isSplit())
|
if (!yystateStack.isSplit())
|
||||||
{
|
{
|
||||||
@@ -2212,8 +2211,8 @@ public:
|
|||||||
YYASSERT (yyk.get() == 0);
|
YYASSERT (yyk.get() == 0);
|
||||||
glr_stack_item* yyrhs = yystateStack.firstTop()->asItem();
|
glr_stack_item* yyrhs = yystateStack.firstTop()->asItem();
|
||||||
YY_REDUCE_PRINT ((true, yyrhs, yyk, yyrule, yyparser));
|
YY_REDUCE_PRINT ((true, yyrhs, yyk, yyrule, yyparser));
|
||||||
YYRESULTTAG res = yyuserAction (yyrule, yynrhs, yyrhs,
|
const YYRESULTTAG res = yyuserAction (yyrule, yynrhs, yyrhs,
|
||||||
yyvalp]b4_locations_if([, yylocp])[);
|
yyvalp]b4_locations_if([, yylocp])[);
|
||||||
yystateStack.pop_back(static_cast<size_t>(yynrhs));
|
yystateStack.pop_back(static_cast<size_t>(yynrhs));
|
||||||
yystateStack.setFirstTop(&yystateStack[yystateStack.size() - 1].getState());
|
yystateStack.setFirstTop(&yystateStack[yystateStack.size() - 1].getState());
|
||||||
return res;
|
return res;
|
||||||
@@ -2697,7 +2696,7 @@ yygetLRActions (state_num yystate, yysymbol_kind_t yytoken, const short** yyconf
|
|||||||
static inline state_num
|
static inline state_num
|
||||||
yyLRgotoState (state_num yystate, yysymbol_kind_t yysym)
|
yyLRgotoState (state_num yystate, yysymbol_kind_t yysym)
|
||||||
{
|
{
|
||||||
int yyr = yypgoto[yysym - YYNTOKENS] + yystate;
|
const int yyr = yypgoto[yysym - YYNTOKENS] + yystate;
|
||||||
if (0 <= yyr && yyr <= YYLAST && yycheck[yyr] == yystate)
|
if (0 <= yyr && yyr <= YYLAST && yycheck[yyr] == yystate)
|
||||||
return yytable[yyr];
|
return yytable[yyr];
|
||||||
else
|
else
|
||||||
@@ -2788,13 +2787,13 @@ b4_dollar_popdef])[]dnl
|
|||||||
/* Standard mode */
|
/* Standard mode */
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
state_num yystate = yystack.firstTopState()->yylrState;
|
const state_num yystate = yystack.firstTopState()->yylrState;
|
||||||
YY_DEBUG_STREAM << "Entering state " << yystate << "\n";
|
YY_DEBUG_STREAM << "Entering state " << yystate << "\n";
|
||||||
if (yystate == YYFINAL)
|
if (yystate == YYFINAL)
|
||||||
goto yyacceptlab;
|
goto yyacceptlab;
|
||||||
if (yyisDefaultedState (yystate))
|
if (yyisDefaultedState (yystate))
|
||||||
{
|
{
|
||||||
rule_num yyrule = yydefaultAction (yystate);
|
const rule_num yyrule = yydefaultAction (yystate);
|
||||||
if (yyrule == 0)
|
if (yyrule == 0)
|
||||||
{]b4_locations_if([[
|
{]b4_locations_if([[
|
||||||
yystack.yyerror_range[1].getState().yyloc = yylloc;]])[
|
yystack.yyerror_range[1].getState().yyloc = yylloc;]])[
|
||||||
@@ -2805,7 +2804,7 @@ b4_dollar_popdef])[]dnl
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
yysymbol_kind_t yytoken = ]b4_yygetToken_call;[
|
const yysymbol_kind_t yytoken = ]b4_yygetToken_call[;
|
||||||
const short* yyconflicts;
|
const short* yyconflicts;
|
||||||
int yyaction = yygetLRActions (yystate, yytoken, &yyconflicts);
|
int yyaction = yygetLRActions (yystate, yytoken, &yyconflicts);
|
||||||
if (*yyconflicts != 0)
|
if (*yyconflicts != 0)
|
||||||
@@ -2884,7 +2883,7 @@ b4_dollar_popdef])[]dnl
|
|||||||
yyposn += 1;
|
yyposn += 1;
|
||||||
for (state_set_index yys = create_state_set_index(0); yys.uget() < yystack.yystateStack.numTops(); ++yys)
|
for (state_set_index yys = create_state_set_index(0); yys.uget() < yystack.yystateStack.numTops(); ++yys)
|
||||||
{
|
{
|
||||||
state_num yystate = yystack.topState(yys)->yylrState;
|
const state_num yystate = yystack.topState(yys)->yylrState;
|
||||||
const short* yyconflicts;
|
const short* yyconflicts;
|
||||||
int yyaction = yygetLRActions (yystate, yytoken_to_shift,
|
int yyaction = yygetLRActions (yystate, yytoken_to_shift,
|
||||||
&yyconflicts);
|
&yyconflicts);
|
||||||
|
|||||||
Reference in New Issue
Block a user