1 /* Top level entry point of Bison.
3 Copyright (C) 1984, 1986, 1989, 1992, 1995, 2000, 2001, 2002, 2004, 2005,
5 Free Software Foundation, Inc.
7 This file is part of Bison, the GNU Compiler Compiler.
9 Bison is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 Bison is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with Bison; see the file COPYING. If not, write to
21 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
27 #include <bitset_stats.h>
33 #include "conflicts.h"
39 #include "muscle_tab.h"
43 #include "print_graph.h"
46 #include "scan-gram.h"
51 /* The name this program was run with, for messages. */
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 look-ahead 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 timevar_pop (TV_CONFLICTS
);
121 /* Compute the parser tables. */
122 timevar_push (TV_ACTIONS
);
124 timevar_pop (TV_ACTIONS
);
126 grammar_rules_never_reduced_report
127 (_("rule never reduced because of conflicts"));
129 /* Output file names. */
130 compute_output_file_names ();
132 /* Output the detailed report on the grammar. */
135 timevar_push (TV_REPORT
);
137 timevar_pop (TV_REPORT
);
140 /* Output the VCG graph. */
143 timevar_push (TV_GRAPH
);
145 timevar_pop (TV_GRAPH
);
148 /* Stop if there were errors, to avoid trashing previous output
150 if (complaint_issued
)
153 /* Look-ahead tokens are no longer needed. */
154 timevar_push (TV_FREE
);
156 timevar_pop (TV_FREE
);
158 /* Output the tables and the parser to ftable. In file output. */
159 timevar_push (TV_PARSER
);
161 timevar_pop (TV_PARSER
);
163 timevar_push (TV_FREE
);
172 /* The scanner memory cannot be released right after parsing, as it
173 contains things such as user actions, prologue, epilogue etc. */
174 gram_scanner_free ();
177 timevar_pop (TV_FREE
);
179 if (trace_flag
& trace_bitsets
)
180 bitset_stats_dump (stderr
);
184 /* Stop timing and print the times. */
185 timevar_stop (TV_TOTAL
);
186 timevar_print (stderr
);
188 return complaint_issued
? EXIT_FAILURE
: EXIT_SUCCESS
;