]> git.saurik.com Git - bison.git/commitdiff
* src/lalr.h (consistent): Removed array, which contents is now
authorAkim Demaille <akim@epita.fr>
Mon, 19 Nov 2001 10:08:02 +0000 (10:08 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 19 Nov 2001 10:08:02 +0000 (10:08 +0000)
member of...
(state_t): this structure.
* src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
Adjust.

ChangeLog
src/conflicts.c
src/lalr.c
src/lalr.h
src/output.c
src/print.c
src/print_graph.c

index 09d1b416180cb19688b96f352a58e261974dedb0..4663bec0a2389a82c431528da54e70eb992561e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2001-11-19  Akim Demaille  <akim@epita.fr>
+
+       * src/lalr.h (consistent): Removed array, which contents is now
+       member of...
+       (state_t): this structure.
+       * src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
+       Adjust.
+
 2001-11-19  Akim Demaille  <akim@epita.fr>
 
        * src/lalr.h (reduction_table, shift_table): Removed arrays, which
index 2f213850987ef20341f1b8db0464a7b6731a3c9c..60a5edec88ea185e2396c2fab68a3f56bf60a991 100644 (file)
@@ -191,7 +191,7 @@ set_conflicts (int state)
   unsigned *fp1;
   int symbol;
 
-  if (consistent[state])
+  if (state_table[state].consistent)
     return;
 
   for (i = 0; i < tokensetsize; i++)
index 27e04be455c4bd7752f7bb77fec16dcd2b70f3f5..d4795b57e41b141246b8829eb6bf597707ff5bb9 100644 (file)
@@ -42,7 +42,6 @@ short *lookaheads;
 short *LAruleno;
 unsigned *LA;
 
-char *consistent;
 short *goto_map;
 short *from_state;
 short *to_state;
@@ -208,7 +207,6 @@ initialize_LA (void)
   shifts *sp;
   short *np;
 
-  consistent = XCALLOC (char, nstates);
   lookaheads = XCALLOC (short, nstates + 1);
 
   count = 0;
@@ -225,14 +223,14 @@ initialize_LA (void)
              || (sp && !ISVAR (state_table[sp->shifts[0]].accessing_symbol))))
        count += rp->nreds;
       else
-       consistent[i] = 1;
+       state_table[i].consistent = 1;
 
       if (sp)
        for (k = 0; k < sp->nshifts; k++)
          if (state_table[sp->shifts[k]].accessing_symbol
              == error_token_number)
            {
-             consistent[i] = 0;
+             state_table[i].consistent = 0;
              break;
            }
     }
@@ -255,7 +253,7 @@ initialize_LA (void)
   np = LAruleno;
   for (i = 0; i < nstates; i++)
     {
-      if (!consistent[i])
+      if (!state_table[i].consistent)
        {
          if ((rp = state_table[i].reduction_table))
            for (j = 0; j < rp->nreds; j++)
@@ -580,7 +578,7 @@ build_relations (void)
              states[length++] = stateno;
            }
 
-         if (!consistent[stateno])
+         if (!state_table[stateno].consistent)
            add_lookback_edge (stateno, *rulep, i);
 
          length--;
index c3d719fd29873af917c9574f081051f7da4e66f0..c2444883e49cac72ba9d13bb36747236e8ae0e98 100644 (file)
@@ -49,12 +49,6 @@ extern short *goto_map;
 extern short *from_state;
 extern short *to_state;
 
-/* CONSISTENT[S] is nonzero if no lookahead is needed to decide what
-   to do in state S.  */
-
-extern char *consistent;
-
-
 /* LARULENO is a vector which records the rules that need lookahead in
    various states.  The elements of LARULENO that apply to state S are
    those from LOOKAHEADS[S] through LOOKAHEADS[S+1]-1.  Each element
@@ -85,6 +79,10 @@ typedef struct state_s
 
   shifts *shift_table;
   reductions *reduction_table;
+
+  /* Nonzero if no lookahead is needed to decide what to do in state
+     S.  */
+  char consistent;
 } state_t;
 
 /* All the decorated states, indexed by the state number.  Warning:
index 4c86b22ecacfa8d5a27ead7885e01e50f2990595..8abbd5d2cec526923969198d4fc710f12faae93f 100644 (file)
@@ -428,7 +428,7 @@ action_row (int state)
 
   if (nreds >= 1 && !nodefault)
     {
-      if (consistent[state])
+      if (state_table[state].consistent)
        default_rule = redp->rules[0];
       else
        {
index cbc0ceb2db7751ee30cbd4015df9a88cfedea065..d676f7f3b226722dda83f4d4a61ee547917861b6 100644 (file)
@@ -165,7 +165,7 @@ print_actions (FILE *out, int state)
        fputc ('\n', out);
     }
 
-  if (consistent[state] && redp)
+  if (state_table[state].consistent && redp)
     {
       rule = redp->rules[0];
       symbol = rlhs[rule];
index 55eb702c4726cc148f6ce6010e23c44fa947a563..2ce8e45150e3238ce8bd26f7d9d55a86a3eb2743 100644 (file)
@@ -178,7 +178,7 @@ print_actions (int state, const char *node_name, struct obstack *node_obstack)
        obstack_sgrow (node_obstack, "\\n");
     }
 
-  if (consistent[state] && redp)
+  if (state_table[state].consistent && redp)
     {
       rule = redp->rules[0];
       symbol = rlhs[rule];