]>
git.saurik.com Git - bison.git/blob - src/print.c
1 /* Print information on generated parser, for bison,
2 Copyright (C) 1984, 1986, 1989, 2000 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
28 #include "conflicts.h"
36 print_token (int extnum
, int token
)
38 fprintf (foutput
, _(" type %d is %s\n"), extnum
, tags
[token
]);
43 /*================================\
44 | Report information on a state. |
45 \================================*/
48 print_core (int state
)
57 statep
= state_table
[state
];
63 for (i
= 0; i
< k
; i
++)
65 sp1
= sp
= ritem
+ statep
->items
[i
];
71 fprintf (foutput
, " %s -> ", tags
[rlhs
[rule
]]);
73 for (sp
= ritem
+ rrhs
[rule
]; sp
< sp1
; sp
++)
75 fprintf (foutput
, "%s ", tags
[*sp
]);
82 fprintf (foutput
, " %s", tags
[*sp
]);
86 fprintf (foutput
, _(" (rule %d)"), rule
);
94 print_actions (int state
)
105 shiftp
= shift_table
[state
];
106 redp
= reduction_table
[state
];
107 errp
= err_table
[state
];
109 if (!shiftp
&& !redp
)
111 if (final_state
== state
)
112 fprintf (foutput
, _(" $default\taccept\n"));
114 fprintf (foutput
, _(" NO ACTIONS\n"));
122 for (i
= 0; i
< k
; i
++)
124 if (!shiftp
->shifts
[i
])
126 state1
= shiftp
->shifts
[i
];
127 symbol
= accessing_symbol
[state1
];
128 /* The following line used to be turned off. */
131 if (symbol
== 0) /* I.e. strcmp(tags[symbol],"$")==0 */
132 fprintf (foutput
, _(" $ \tgo to state %d\n"), state1
);
134 fprintf (foutput
, _(" %-4s\tshift, and go to state %d\n"),
135 tags
[symbol
], state1
);
139 putc ('\n', foutput
);
153 for (j
= 0; j
< nerrs
; j
++)
157 symbol
= errp
->errs
[j
];
158 fprintf (foutput
, _(" %-4s\terror (nonassociative)\n"),
163 putc ('\n', foutput
);
166 if (consistent
[state
] && redp
)
168 rule
= redp
->rules
[0];
170 fprintf (foutput
, _(" $default\treduce using rule %d (%s)\n\n"),
175 print_reductions (state
);
182 if (!shiftp
->shifts
[i
])
184 state1
= shiftp
->shifts
[i
];
185 symbol
= accessing_symbol
[state1
];
186 fprintf (foutput
, _(" %-4s\tgo to state %d\n"), tags
[symbol
],
190 putc ('\n', foutput
);
195 print_state (int state
)
197 fprintf (foutput
, _("\n\nstate %d\n\n"), state
);
199 print_actions (state
);
202 /*-----------------------------------------.
203 | Print information on the whole grammar. |
204 `-----------------------------------------*/
206 #define END_TEST(end) \
208 if (column + strlen(buffer) > (end)) { \
209 fprintf (foutput, "%s\n ", buffer); \
224 /* rule # : LHS -> RHS */
225 fputs (_("\nGrammar\n"), foutput
);
226 for (i
= 1; i
<= nrules
; i
++)
227 /* Don't print rules disabled in reduce_grammar_tables. */
230 fprintf (foutput
, _("rule %-4d %s ->"), i
, tags
[rlhs
[i
]]);
231 rule
= &ritem
[rrhs
[i
]];
234 fprintf (foutput
, " %s", tags
[*rule
++]);
236 fputs (_(" /* empty */"), foutput
);
237 putc ('\n', foutput
);
240 /* TERMINAL (type #) : rule #s terminal is on RHS */
241 fputs (_("\nTerminals, with rules where they appear\n\n"), foutput
);
242 fprintf (foutput
, "%s (-1)\n", tags
[0]);
245 for (i
= 0; i
<= max_user_token_number
; i
++)
246 if (token_translations
[i
] != 2)
249 column
= strlen (tags
[token_translations
[i
]]);
250 fprintf (foutput
, "%s", tags
[token_translations
[i
]]);
252 sprintf (buffer
, " (%d)", i
);
254 for (j
= 1; j
<= nrules
; j
++)
256 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
257 if (*rule
== token_translations
[i
])
260 sprintf (buffer
+ strlen (buffer
), " %d", j
);
264 fprintf (foutput
, "%s\n", buffer
);
268 for (i
= 1; i
< ntokens
; i
++)
271 column
= strlen (tags
[i
]);
272 fprintf (foutput
, "%s", tags
[i
]);
274 sprintf (buffer
, " (%d)", i
);
276 for (j
= 1; j
<= nrules
; j
++)
278 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
282 sprintf (buffer
+ strlen (buffer
), " %d", j
);
286 fprintf (foutput
, "%s\n", buffer
);
289 fputs (_("\nNonterminals, with rules where they appear\n\n"), foutput
);
290 for (i
= ntokens
; i
<= nsyms
- 1; i
++)
292 int left_count
= 0, right_count
= 0;
294 for (j
= 1; j
<= nrules
; j
++)
298 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
307 fprintf (foutput
, "%s", tags
[i
]);
308 column
= strlen (tags
[i
]);
309 sprintf (buffer
, " (%d)", i
);
315 sprintf (buffer
+ strlen (buffer
), _(" on left:"));
317 for (j
= 1; j
<= nrules
; j
++)
321 sprintf (buffer
+ strlen (buffer
), " %d", j
);
328 sprintf (buffer
+ strlen (buffer
), ",");
330 sprintf (buffer
+ strlen (buffer
), _(" on right:"));
331 for (j
= 1; j
<= nrules
; j
++)
333 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
337 sprintf (buffer
+ strlen (buffer
), " %d", j
);
342 fprintf (foutput
, "%s\n", buffer
);
358 for (i
= 0; i
< nstates
; i
++)