\f
static inline void
-log_resolution (int state, int LAno, int token, char *resolution)
+log_resolution (state_t *state, int LAno, int token, char *resolution)
{
if (verbose_flag)
obstack_fgrow4 (&output_obstack,
_("\
Conflict in state %d between rule %d and token %s resolved as %s.\n"),
- state, LAruleno[LAno], tags[token], resolution);
+ state->number, LAruleno[LAno], tags[token], resolution);
}
`------------------------------------------------------------------*/
static void
-flush_shift (int state, int token)
+flush_shift (state_t *state, int token)
{
- shifts *shiftp = state_table[state]->shifts;
+ shifts *shiftp = state->shifts;
int i;
RESETBIT (lookaheadset, token);
`------------------------------------------------------------------*/
static void
-resolve_sr_conflict (int state, int lookahead)
+resolve_sr_conflict (state_t *state, int lookahead)
{
int i;
/* find the rule to reduce by to get precedence of reduction */
/* Some tokens have been explicitly made errors. Allocate a
permanent errs structure for this state, to record them. */
i = (char *) errtokens - (char *) errp;
- state_table[state]->errs = ERRS_ALLOC (i + 1);
- memcpy (state_table[state]->errs, errp, i);
+ state->errs = ERRS_ALLOC (i + 1);
+ memcpy (state->errs, errp, i);
free (errp);
}
static void
-set_conflicts (int state)
+set_conflicts (state_t *state)
{
int i, j;
shifts *shiftp;
- if (state_table[state]->consistent)
+ if (state->consistent)
return;
for (i = 0; i < tokensetsize; i++)
lookaheadset[i] = 0;
- shiftp = state_table[state]->shifts;
+ shiftp = state->shifts;
for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++)
if (!SHIFT_IS_DISABLED (shiftp, i))
SETBIT (lookaheadset, SHIFT_SYMBOL (shiftp, i));
/* Loop over all rules which require lookahead in this state. First
check for shift-reduce conflict, and try to resolve using
precedence */
- for (i = state_table[state]->lookaheadsp;
- i < state_table[state + 1]->lookaheadsp;
- ++i)
- if (rule_table[LAruleno[i]].prec)
+ for (i = 0; i < state->nlookaheads; ++i)
+ if (rule_table[LAruleno[state->lookaheadsp + i]].prec)
for (j = 0; j < tokensetsize; ++j)
- if (LA (i)[j] & lookaheadset[j])
+ if (LA (state->lookaheadsp + i)[j] & lookaheadset[j])
{
- resolve_sr_conflict (state, i);
+ resolve_sr_conflict (state, state->lookaheadsp + i);
break;
}
/* Loop over all rules which require lookahead in this state. Check
for conflicts not resolved above. */
- for (i = state_table[state]->lookaheadsp;
- i < state_table[state + 1]->lookaheadsp;
- ++i)
+ for (i = 0; i < state->nlookaheads; ++i)
{
for (j = 0; j < tokensetsize; ++j)
- if (LA (i)[j] & lookaheadset[j])
- conflicts[state] = 1;
+ if (LA (state->lookaheadsp + i)[j] & lookaheadset[j])
+ conflicts[state->number] = 1;
for (j = 0; j < tokensetsize; ++j)
- lookaheadset[j] |= LA (i)[j];
+ lookaheadset[j] |= LA (state->lookaheadsp + i)[j];
}
}
lookaheadset = XCALLOC (unsigned, tokensetsize);
for (i = 0; i < nstates; i++)
- set_conflicts (i);
+ set_conflicts (state_table[i]);
}
`---------------------------------------------*/
static int
-count_sr_conflicts (int state)
+count_sr_conflicts (state_t *state)
{
int i, k;
int src_count = 0;
- shifts *shiftp = state_table[state]->shifts;
+ shifts *shiftp = state->shifts;
if (!shiftp)
return 0;
if (!SHIFT_IS_DISABLED (shiftp, i))
SETBIT (shiftset, SHIFT_SYMBOL (shiftp, i));
- for (i = state_table[state]->lookaheadsp;
- i < state_table[state + 1]->lookaheadsp;
- ++i)
+ for (i = 0; i < state->nlookaheads; ++i)
for (k = 0; k < tokensetsize; ++k)
- lookaheadset[k] |= LA (i)[k];
+ lookaheadset[k] |= LA (state->lookaheadsp + i)[k];
for (k = 0; k < tokensetsize; ++k)
lookaheadset[k] &= shiftset[k];
`----------------------------------------------*/
static int
-count_rr_conflicts (int state)
+count_rr_conflicts (state_t *state)
{
int i;
int rrc_count = 0;
- int m = state_table[state]->lookaheadsp;
- int n = state_table[state + 1]->lookaheadsp;
-
- if (n - m < 2)
+ if (state->nlookaheads < 2)
return 0;
for (i = 0; i < ntokens; i++)
{
int count = 0;
int j;
- for (j = m; j < n; j++)
- if (BITISSET (LA (m), j))
+ for (j = 0; j < state->nlookaheads; ++j)
+ if (BITISSET (LA (state->lookaheadsp), state->lookaheadsp + j))
count++;
if (count >= 2)
if (conflicts[i])
{
fprintf (out, _("State %d contains "), i);
- fputs (conflict_report (count_sr_conflicts (i),
- count_rr_conflicts (i)), out);
+ fputs (conflict_report (count_sr_conflicts (state_table[i]),
+ count_rr_conflicts (state_table[i])), out);
printed_sth = TRUE;
}
if (printed_sth)
for (i = 0; i < nstates; i++)
if (conflicts[i])
{
- src_total += count_sr_conflicts (i);
- rrc_total += count_rr_conflicts (i);
+ src_total += count_sr_conflicts (state_table[i]);
+ rrc_total += count_rr_conflicts (state_table[i]);
}
src_ok = src_total == (expected_conflicts == -1 ? 0 : expected_conflicts);
void
-print_reductions (FILE *out, int state)
+print_reductions (FILE *out, state_t *state)
{
int i;
- int m = state_table[state]->lookaheadsp;
- int n = state_table[state + 1]->lookaheadsp;
- shifts *shiftp = state_table[state]->shifts;
- errs *errp = state_table[state]->errs;
+ shifts *shiftp = state->shifts;
+ errs *errp = state->errs;
int nodefault = 0;
for (i = 0; i < tokensetsize; i++)
if (errp->errs[i])
SETBIT (shiftset, errp->errs[i]);
- if (n - m == 1 && !nodefault)
+ if (state->nlookaheads == 1 && !nodefault)
{
int k;
- int default_rule = LAruleno[m];
+ int default_rule = LAruleno[state->lookaheadsp];
for (k = 0; k < tokensetsize; ++k)
- lookaheadset[k] = LA (m)[k] & shiftset[k];
+ lookaheadset[k] = LA (state->lookaheadsp)[k] & shiftset[k];
for (i = 0; i < ntokens; i++)
if (BITISSET (lookaheadset, i))
fprintf (out, _(" $default\treduce using rule %d (%s)\n\n"),
default_rule, tags[rule_table[default_rule].lhs]);
}
- else if (n - m >= 1)
+ else if (state->nlookaheads >= 1)
{
int cmax = 0;
int default_LA = -1;
int default_rule = 0;
if (!nodefault)
- for (i = m; i < n; i++)
+ for (i = 0; i < state->nlookaheads; ++i)
{
int count = 0;
int j, k;
for (k = 0; k < tokensetsize; ++k)
- lookaheadset[k] = LA (i)[k] & ~shiftset[k];
+ lookaheadset[k] = LA (state->lookaheadsp + i)[k] & ~shiftset[k];
for (j = 0; j < ntokens; j++)
if (BITISSET (lookaheadset, j))
if (count > cmax)
{
cmax = count;
- default_LA = i;
- default_rule = LAruleno[i];
+ default_LA = state->lookaheadsp + i;
+ default_rule = LAruleno[state->lookaheadsp + i];
}
for (k = 0; k < tokensetsize; ++k)
int defaulted = 0;
int count = BITISSET (shiftset, i);
- for (j = m; j < n; j++)
+ for (j = 0; j < state->nlookaheads; ++j)
{
- if (BITISSET (LA (j), i))
+ if (BITISSET (LA (state->lookaheadsp + j), i))
{
if (count == 0)
{
- if (j != default_LA)
+ if (state->lookaheadsp + j != default_LA)
fprintf (out,
_(" %-4s\treduce using rule %d (%s)\n"),
tags[i],
- LAruleno[j],
- tags[rule_table[LAruleno[j]].lhs]);
+ LAruleno[state->lookaheadsp + j],
+ tags[rule_table[LAruleno[state->lookaheadsp + j]].lhs]);
else
defaulted = 1;
fprintf (out,
_(" %-4s\t[reduce using rule %d (%s)]\n"),
tags[i],
- LAruleno[j],
- tags[rule_table[LAruleno[j]].lhs]);
+ LAruleno[state->lookaheadsp + j],
+ tags[rule_table[LAruleno[state->lookaheadsp + j]].lhs]);
}
}
}
`--------------------------------*/
static void
-print_core (FILE *out, int state)
+print_core (FILE *out, state_t *state)
{
int i;
- short *sitems = state_table[state]->items;
- int snitems = state_table[state]->nitems;
+ short *sitems = state->items;
+ int snitems = state->nitems;
/* New experimental feature: if TRACE_FLAGS output all the items of
a state, not only its kernel. */
}
static void
-print_actions (FILE *out, int state)
+print_actions (FILE *out, state_t *state)
{
int i;
- shifts *shiftp = state_table[state]->shifts;
- reductions *redp = state_table[state]->reductions;
- errs *errp = state_table[state]->errs;
+ shifts *shiftp = state->shifts;
+ reductions *redp = state->reductions;
+ errs *errp = state->errs;
if (!shiftp->nshifts && !redp)
{
- if (final_state == state)
+ if (final_state == state->number)
fprintf (out, _(" $default\taccept\n"));
else
fprintf (out, _(" NO ACTIONS\n"));
fputc ('\n', out);
}
- if (state_table[state]->consistent && redp)
+ if (state->consistent && redp)
{
int rule = redp->rules[0];
int symbol = rule_table[rule].lhs;
}
static void
-print_state (FILE *out, int state)
+print_state (FILE *out, state_t *state)
{
- fprintf (out, _("state %d"), state);
+ fprintf (out, _("state %d"), state->number);
fputs ("\n\n", out);
print_core (out, state);
print_actions (out, state);
if (trace_flag)
new_closure (nitems);
for (i = 0; i < nstates; i++)
- print_state (out, i);
+ print_state (out, state_table[i]);
if (trace_flag)
free_closure ();
/* This part will construct the label of nodes. */
static void
-print_core (int state, struct obstack *node_obstack)
+print_core (state_t *state, struct obstack *node_obstack)
{
int i;
- short *sitems = state_table[state]->items;
- int snitems = state_table[state]->nitems;
+ short *sitems = state->items;
+ int snitems = state->nitems;
/* Output all the items of a state, not only its kernel. */
closure (sitems, snitems);
sitems = itemset;
snitems = nitemset;
- obstack_fgrow1 (node_obstack, "%2d: ", state);
+ obstack_fgrow1 (node_obstack, "%2d: ", state->number);
for (i = 0; i < snitems; i++)
{
short *sp;
if (i)
obstack_sgrow (node_obstack, "\n ");
- obstack_fgrow1 (node_obstack, " %s -> ",
+ obstack_fgrow1 (node_obstack, " %s -> ",
tags[rule_table[rule].lhs]);
for (sp = ritem + rule_table[rule].rhs; sp < sp1; sp++)
`---------------------------------------------------------------*/
static void
-print_actions (int state, const char *node_name)
+print_actions (state_t *state, const char *node_name)
{
int i;
- shifts *shiftp = state_table[state]->shifts;
- reductions *redp = state_table[state]->reductions;
+ shifts *shiftp = state->shifts;
+ reductions *redp = state->reductions;
#if 0
- errs *errp = state_table[state]->errs;
+ errs *errp = state->errs;
#endif
static char buff[10];
new_edge (&edge);
- if (state > state1)
+ if (state->number > state1)
edge.type = back_edge;
open_edge (&edge, fgraph);
/* The edge source is the current node. */
obstack_1grow (node_obstack, '\n');
}
- if (state_table[state]->consistent && redp)
+ if (state->consistent && redp)
{
rule = redp->rules[0];
symbol = rule_table[rule].lhs;
`-------------------------------------------------------------*/
static void
-print_state (int state)
+print_state (state_t *state)
{
static char name[10];
struct obstack node_obstack;
/* The labels of the nodes are their the items. */
obstack_init (&node_obstack);
new_node (&node);
- sprintf (name, "%d", state);
+ sprintf (name, "%d", state->number);
node.title = name;
print_core (state, &node_obstack);
obstack_1grow (&node_obstack, '\0');
/* Output nodes and edges. */
new_closure (nitems);
for (i = 0; i < nstates; i++)
- print_state (i);
+ print_state (state_table[i]);
free_closure ();
/* Close graph. */