]>
git.saurik.com Git - bison.git/blob - src/print.c
1 /* Print information on generated parser, for bison,
2 Copyright (C) 1984, 1986, 1989 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. */
33 extern short *accessing_symbol
;
34 extern core
**state_table
;
35 extern shifts
**shift_table
;
36 extern errs
**err_table
;
37 extern reductions
**reduction_table
;
38 extern char *consistent
;
39 extern char any_conflicts
;
40 extern char *conflicts
;
41 extern int final_state
;
43 extern void conflict_log
PARAMS((void));
44 extern void verbose_conflict_log
PARAMS((void));
45 extern void print_reductions
PARAMS((int));
47 void terse
PARAMS((void));
48 void verbose
PARAMS((void));
49 void print_token
PARAMS((int, int));
50 void print_state
PARAMS((int));
51 void print_core
PARAMS((int));
52 void print_actions
PARAMS((int));
53 void print_grammar
PARAMS((void));
71 verbose_conflict_log();
75 for (i
= 0; i
< nstates
; i
++)
83 print_token (int extnum
, int token
)
85 fprintf(foutput
, _(" type %d is %s\n"), extnum
, tags
[token
]);
90 print_state (int state
)
92 fprintf(foutput
, _("\n\nstate %d\n\n"), state
);
99 print_core (int state
)
104 register core
*statep
;
108 statep
= state_table
[state
];
113 for (i
= 0; i
< k
; i
++)
115 sp1
= sp
= ritem
+ statep
->items
[i
];
121 fprintf(foutput
, " %s -> ", tags
[rlhs
[rule
]]);
123 for (sp
= ritem
+ rrhs
[rule
]; sp
< sp1
; sp
++)
125 fprintf(foutput
, "%s ", tags
[*sp
]);
132 fprintf(foutput
, " %s", tags
[*sp
]);
136 fprintf (foutput
, _(" (rule %d)"), rule
);
145 print_actions (int state
)
151 register shifts
*shiftp
;
153 register reductions
*redp
;
156 shiftp
= shift_table
[state
];
157 redp
= reduction_table
[state
];
158 errp
= err_table
[state
];
160 if (!shiftp
&& !redp
)
162 if (final_state
== state
)
163 fprintf(foutput
, _(" $default\taccept\n"));
165 fprintf(foutput
, _(" NO ACTIONS\n"));
173 for (i
= 0; i
< k
; i
++)
175 if (! shiftp
->shifts
[i
]) continue;
176 state1
= shiftp
->shifts
[i
];
177 symbol
= accessing_symbol
[state1
];
178 /* The following line used to be turned off. */
179 if (ISVAR(symbol
)) break;
180 if (symbol
==0) /* I.e. strcmp(tags[symbol],"$")==0 */
181 fprintf(foutput
, _(" $ \tgo to state %d\n"), state1
);
183 fprintf(foutput
, _(" %-4s\tshift, and go to state %d\n"),
184 tags
[symbol
], state1
);
202 for (j
= 0; j
< nerrs
; j
++)
204 if (! errp
->errs
[j
]) continue;
205 symbol
= errp
->errs
[j
];
206 fprintf(foutput
, _(" %-4s\terror (nonassociative)\n"), tags
[symbol
]);
213 if (consistent
[state
] && redp
)
215 rule
= redp
->rules
[0];
217 fprintf(foutput
, _(" $default\treduce using rule %d (%s)\n\n"),
222 print_reductions(state
);
229 if (! shiftp
->shifts
[i
]) continue;
230 state1
= shiftp
->shifts
[i
];
231 symbol
= accessing_symbol
[state1
];
232 fprintf(foutput
, _(" %-4s\tgo to state %d\n"), tags
[symbol
], state1
);
239 #define END_TEST(end) \
240 if (column + strlen(buffer) > (end)) \
241 { fprintf (foutput, "%s\n ", buffer); column = 3; buffer[0] = 0; } \
252 /* rule # : LHS -> RHS */
253 fputs(_("\nGrammar\n"), foutput
);
254 for (i
= 1; i
<= nrules
; i
++)
255 /* Don't print rules disabled in reduce_grammar_tables. */
258 fprintf(foutput
, _("rule %-4d %s ->"), i
, tags
[rlhs
[i
]]);
259 rule
= &ritem
[rrhs
[i
]];
262 fprintf(foutput
, " %s", tags
[*rule
++]);
264 fputs (_(" /* empty */"), foutput
);
268 /* TERMINAL (type #) : rule #s terminal is on RHS */
269 fputs(_("\nTerminals, with rules where they appear\n\n"), foutput
);
270 fprintf(foutput
, "%s (-1)\n", tags
[0]);
273 for (i
= 0; i
<= max_user_token_number
; i
++)
274 if (token_translations
[i
] != 2)
277 column
= strlen (tags
[token_translations
[i
]]);
278 fprintf(foutput
, "%s", tags
[token_translations
[i
]]);
280 sprintf (buffer
, " (%d)", i
);
282 for (j
= 1; j
<= nrules
; j
++)
284 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
285 if (*rule
== token_translations
[i
])
288 sprintf (buffer
+ strlen(buffer
), " %d", j
);
292 fprintf (foutput
, "%s\n", buffer
);
296 for (i
= 1; i
< ntokens
; i
++)
299 column
= strlen (tags
[i
]);
300 fprintf(foutput
, "%s", tags
[i
]);
302 sprintf (buffer
, " (%d)", i
);
304 for (j
= 1; j
<= nrules
; j
++)
306 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
310 sprintf (buffer
+ strlen(buffer
), " %d", j
);
314 fprintf (foutput
, "%s\n", buffer
);
317 fputs(_("\nNonterminals, with rules where they appear\n\n"), foutput
);
318 for (i
= ntokens
; i
<= nsyms
- 1; i
++)
320 int left_count
= 0, right_count
= 0;
322 for (j
= 1; j
<= nrules
; j
++)
326 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
335 fprintf(foutput
, "%s", tags
[i
]);
336 column
= strlen (tags
[i
]);
337 sprintf (buffer
, " (%d)", i
);
343 sprintf (buffer
+ strlen(buffer
), _(" on left:"));
345 for (j
= 1; j
<= nrules
; j
++)
349 sprintf (buffer
+ strlen(buffer
), " %d", j
);
356 sprintf (buffer
+ strlen(buffer
), ",");
358 sprintf (buffer
+ strlen(buffer
), _(" on right:"));
359 for (j
= 1; j
<= nrules
; j
++)
361 for (rule
= &ritem
[rrhs
[j
]]; *rule
> 0; rule
++)
365 sprintf (buffer
+ strlen(buffer
), " %d", j
);
370 fprintf (foutput
, "%s\n", buffer
);