1 /* Top level entry point of Bison.
3 Copyright (C) 1984, 1986, 1989, 1992, 1995, 2000, 2001, 2002, 2004,
4 2005, 2006, 2007 Free Software Foundation, Inc.
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include <bitset_stats.h>
26 #include <configmake.h>
32 #include "conflicts.h"
38 #include "muscle_tab.h"
42 #include "print_graph.h"
43 #include "print-xml.h"
46 #include "scan-code.h"
47 #include "scan-gram.h"
48 #include "scan-skel.h"
56 main (int argc
, char *argv
[])
58 program_name
= argv
[0];
59 setlocale (LC_ALL
, "");
60 (void) bindtextdomain (PACKAGE
, LOCALEDIR
);
61 (void) bindtextdomain ("bison-runtime", LOCALEDIR
);
62 (void) textdomain (PACKAGE
);
68 timevar_report
= trace_flag
& trace_time
;
70 timevar_start (TV_TOTAL
);
72 if (trace_flag
& trace_bitsets
)
73 bitset_stats_enable ();
77 /* Read the input. Copy some parts of it to FGUARD, FACTION, FTABLE
78 and FATTRS. In file reader.c. The other parts are recorded in
79 the grammar; see gram.h. */
81 timevar_push (TV_READER
);
83 timevar_pop (TV_READER
);
88 /* Find useless nonterminals and productions and reduce the grammar. */
89 timevar_push (TV_REDUCE
);
91 timevar_pop (TV_REDUCE
);
93 /* Record other info about the grammar. In files derives and
95 timevar_push (TV_SETS
);
98 timevar_pop (TV_SETS
);
100 /* Convert to nondeterministic finite state machine. In file LR0.
101 See state.h for more info. */
102 timevar_push (TV_LR0
);
104 timevar_pop (TV_LR0
);
106 /* make it deterministic. In file lalr. */
107 timevar_push (TV_LALR
);
109 timevar_pop (TV_LALR
);
111 /* Find and record any conflicts: places where one token of
112 lookahead is not enough to disambiguate the parsing. In file
113 conflicts. Also resolve s/r conflicts based on precedence
115 timevar_push (TV_CONFLICTS
);
117 muscle_percent_define_default ("lr.keep_unreachable_states", "false");
118 if (!muscle_percent_define_flag_if ("lr.keep_unreachable_states"))
120 state_number
*old_to_new
= xnmalloc (nstates
, sizeof *old_to_new
);
121 state_number nstates_old
= nstates
;
122 state_remove_unreachable_states (old_to_new
);
123 lalr_update_state_numbers (old_to_new
, nstates_old
);
124 conflicts_update_state_numbers (old_to_new
, nstates_old
);
128 timevar_pop (TV_CONFLICTS
);
130 /* Compute the parser tables. */
131 timevar_push (TV_ACTIONS
);
133 timevar_pop (TV_ACTIONS
);
135 grammar_rules_never_reduced_report
136 (_("rule never reduced because of conflicts"));
138 /* Output file names. */
139 compute_output_file_names ();
141 /* Output the detailed report on the grammar. */
144 timevar_push (TV_REPORT
);
146 timevar_pop (TV_REPORT
);
149 /* Output the graph. */
152 timevar_push (TV_GRAPH
);
154 timevar_pop (TV_GRAPH
);
160 timevar_push (TV_XML
);
162 timevar_pop (TV_XML
);
165 /* Stop if there were errors, to avoid trashing previous output
167 if (complaint_issued
)
170 /* Lookahead tokens are no longer needed. */
171 timevar_push (TV_FREE
);
173 timevar_pop (TV_FREE
);
175 /* Output the tables and the parser to ftable. In file output. */
176 timevar_push (TV_PARSER
);
178 timevar_pop (TV_PARSER
);
180 timevar_push (TV_FREE
);
188 output_file_names_free ();
190 /* The scanner memory cannot be released right after parsing, as it
191 contains things such as user actions, prologue, epilogue etc. */
192 gram_scanner_free ();
195 code_scanner_free ();
196 skel_scanner_free ();
198 timevar_pop (TV_FREE
);
200 if (trace_flag
& trace_bitsets
)
201 bitset_stats_dump (stderr
);
205 /* Stop timing and print the times. */
206 timevar_stop (TV_TOTAL
);
207 timevar_print (stderr
);
209 return complaint_issued
? EXIT_FAILURE
: EXIT_SUCCESS
;