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 Bison 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 2, or (at your option)
13 Bison 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 Bison; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
26 #include <bitset_stats.h>
28 #include <configmake.h>
34 #include "conflicts.h"
40 #include "muscle_tab.h"
44 #include "print_graph.h"
47 #include "scan-code.h"
48 #include "scan-gram.h"
49 #include "scan-skel.h"
57 main (int argc
, char *argv
[])
59 program_name
= argv
[0];
60 setlocale (LC_ALL
, "");
61 (void) bindtextdomain (PACKAGE
, LOCALEDIR
);
62 (void) bindtextdomain ("bison-runtime", LOCALEDIR
);
63 (void) textdomain (PACKAGE
);
69 timevar_report
= trace_flag
& trace_time
;
71 timevar_start (TV_TOTAL
);
73 if (trace_flag
& trace_bitsets
)
74 bitset_stats_enable ();
78 /* Read the input. Copy some parts of it to FGUARD, FACTION, FTABLE
79 and FATTRS. In file reader.c. The other parts are recorded in
80 the grammar; see gram.h. */
82 timevar_push (TV_READER
);
84 timevar_pop (TV_READER
);
89 /* Find useless nonterminals and productions and reduce the grammar. */
90 timevar_push (TV_REDUCE
);
92 timevar_pop (TV_REDUCE
);
94 /* Record other info about the grammar. In files derives and
96 timevar_push (TV_SETS
);
99 timevar_pop (TV_SETS
);
101 /* Convert to nondeterministic finite state machine. In file LR0.
102 See state.h for more info. */
103 timevar_push (TV_LR0
);
105 timevar_pop (TV_LR0
);
107 /* make it deterministic. In file lalr. */
108 timevar_push (TV_LALR
);
110 timevar_pop (TV_LALR
);
112 /* Find and record any conflicts: places where one token of
113 lookahead is not enough to disambiguate the parsing. In file
114 conflicts. Also resolve s/r conflicts based on precedence
116 timevar_push (TV_CONFLICTS
);
119 state_number old_to_new
[nstates
];
120 state_number nstates_old
= nstates
;
121 state_remove_unreachable_states (old_to_new
);
122 lalr_update_state_numbers (old_to_new
, nstates_old
);
123 conflicts_update_state_numbers (old_to_new
, nstates_old
);
126 timevar_pop (TV_CONFLICTS
);
128 /* Compute the parser tables. */
129 timevar_push (TV_ACTIONS
);
131 timevar_pop (TV_ACTIONS
);
133 grammar_rules_never_reduced_report
134 (_("rule never reduced because of conflicts"));
136 /* Output file names. */
137 compute_output_file_names ();
139 /* Output the detailed report on the grammar. */
142 timevar_push (TV_REPORT
);
144 timevar_pop (TV_REPORT
);
147 /* Output the graph. */
150 timevar_push (TV_GRAPH
);
152 timevar_pop (TV_GRAPH
);
155 /* Stop if there were errors, to avoid trashing previous output
157 if (complaint_issued
)
160 /* Lookahead tokens are no longer needed. */
161 timevar_push (TV_FREE
);
163 timevar_pop (TV_FREE
);
165 /* Output the tables and the parser to ftable. In file output. */
166 timevar_push (TV_PARSER
);
168 timevar_pop (TV_PARSER
);
170 timevar_push (TV_FREE
);
178 output_file_names_free ();
180 /* The scanner memory cannot be released right after parsing, as it
181 contains things such as user actions, prologue, epilogue etc. */
182 gram_scanner_free ();
185 code_scanner_free ();
186 skel_scanner_free ();
188 timevar_pop (TV_FREE
);
190 if (trace_flag
& trace_bitsets
)
191 bitset_stats_dump (stderr
);
195 /* Stop timing and print the times. */
196 timevar_stop (TV_TOTAL
);
197 timevar_print (stderr
);
199 return complaint_issued
? EXIT_FAILURE
: EXIT_SUCCESS
;