]>
Commit | Line | Data |
---|---|---|
a54a1bdc PE |
1 | /* Top level entry point of Bison. |
2 | ||
e9071366 AD |
3 | Copyright (C) 1984, 1986, 1989, 1992, 1995, 2000, 2001, 2002, 2004, 2005, |
4 | 2006 | |
ceed8467 | 5 | Free Software Foundation, Inc. |
54bd0db4 | 6 | |
e87b5700 | 7 | This file is part of Bison, the GNU Compiler Compiler. |
54bd0db4 | 8 | |
e87b5700 AD |
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) | |
12 | any later version. | |
54bd0db4 | 13 | |
e87b5700 AD |
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. | |
54bd0db4 | 18 | |
e87b5700 AD |
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 | |
0fb669f9 PE |
21 | the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
22 | Boston, MA 02110-1301, USA. */ | |
54bd0db4 | 23 | |
2cec9080 | 24 | #include <config.h> |
54bd0db4 | 25 | #include "system.h" |
17ee7397 PE |
26 | |
27 | #include <bitset_stats.h> | |
28 | #include <bitset.h> | |
29 | #include <timevar.h> | |
30 | ||
31 | #include "LR0.h" | |
a0f6b076 | 32 | #include "complain.h" |
17ee7397 | 33 | #include "conflicts.h" |
cc84fd5d | 34 | #include "derives.h" |
17ee7397 PE |
35 | #include "files.h" |
36 | #include "getargs.h" | |
37 | #include "gram.h" | |
a70083a3 | 38 | #include "lalr.h" |
17ee7397 | 39 | #include "muscle_tab.h" |
3519ec76 | 40 | #include "nullable.h" |
17ee7397 | 41 | #include "output.h" |
07a58c13 | 42 | #include "print.h" |
c4b66126 | 43 | #include "print_graph.h" |
17ee7397 PE |
44 | #include "reader.h" |
45 | #include "reduce.h" | |
0c8e079f | 46 | #include "scan-gram.h" |
17ee7397 PE |
47 | #include "symtab.h" |
48 | #include "tables.h" | |
49 | #include "uniqstr.h" | |
54bd0db4 | 50 | |
a98ad01e | 51 | /* The name this program was run with, for messages. */ |
54bd0db4 RS |
52 | char *program_name; |
53 | ||
caf23d24 | 54 | |
caf23d24 | 55 | |
54bd0db4 | 56 | int |
d2729d44 | 57 | main (int argc, char *argv[]) |
54bd0db4 RS |
58 | { |
59 | program_name = argv[0]; | |
29340571 | 60 | setlocale (LC_ALL, ""); |
04098407 PE |
61 | (void) bindtextdomain (PACKAGE, LOCALEDIR); |
62 | (void) bindtextdomain ("bison-runtime", LOCALEDIR); | |
63 | (void) textdomain (PACKAGE); | |
29340571 | 64 | |
17ee7397 | 65 | uniqstrs_new (); |
95612cfa | 66 | |
cc84fd5d | 67 | getargs (argc, argv); |
a0f6b076 | 68 | |
17ee7397 | 69 | timevar_report = trace_flag & trace_time; |
1509d42f AD |
70 | init_timevar (); |
71 | timevar_start (TV_TOTAL); | |
72 | ||
273a74fa | 73 | if (trace_flag & trace_bitsets) |
613f5e1a AD |
74 | bitset_stats_enable (); |
75 | ||
11d82f03 | 76 | muscle_init (); |
54bd0db4 | 77 | |
cc84fd5d AD |
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. */ | |
640748ee | 81 | |
1509d42f AD |
82 | timevar_push (TV_READER); |
83 | reader (); | |
84 | timevar_pop (TV_READER); | |
640748ee | 85 | |
5ca3209b | 86 | if (complaint_issued) |
f6d0c239 | 87 | goto finish; |
54bd0db4 | 88 | |
00238958 | 89 | /* Find useless nonterminals and productions and reduce the grammar. */ |
1509d42f | 90 | timevar_push (TV_REDUCE); |
cc84fd5d | 91 | reduce_grammar (); |
1509d42f | 92 | timevar_pop (TV_REDUCE); |
640748ee | 93 | |
7da99ede AD |
94 | /* Record other info about the grammar. In files derives and |
95 | nullable. */ | |
1509d42f | 96 | timevar_push (TV_SETS); |
bb0027a9 AD |
97 | derives_compute (); |
98 | nullable_compute (); | |
1509d42f | 99 | timevar_pop (TV_SETS); |
54bd0db4 | 100 | |
7da99ede | 101 | /* Convert to nondeterministic finite state machine. In file LR0. |
54bd0db4 | 102 | See state.h for more info. */ |
1509d42f | 103 | timevar_push (TV_LR0); |
cc84fd5d | 104 | generate_states (); |
1509d42f | 105 | timevar_pop (TV_LR0); |
54bd0db4 RS |
106 | |
107 | /* make it deterministic. In file lalr. */ | |
1509d42f | 108 | timevar_push (TV_LALR); |
cc84fd5d | 109 | lalr (); |
1509d42f | 110 | timevar_pop (TV_LALR); |
54bd0db4 | 111 | |
cc84fd5d | 112 | /* Find and record any conflicts: places where one token of |
8dd162d3 | 113 | look-ahead is not enough to disambiguate the parsing. In file |
cc84fd5d AD |
114 | conflicts. Also resolve s/r conflicts based on precedence |
115 | declarations. */ | |
1509d42f | 116 | timevar_push (TV_CONFLICTS); |
b408954b | 117 | conflicts_solve (); |
0df87bb6 | 118 | conflicts_print (); |
1509d42f | 119 | timevar_pop (TV_CONFLICTS); |
342b8b6e | 120 | |
c8f002c7 AD |
121 | /* Compute the parser tables. */ |
122 | timevar_push (TV_ACTIONS); | |
123 | tables_generate (); | |
124 | timevar_pop (TV_ACTIONS); | |
125 | ||
126 | grammar_rules_never_reduced_report | |
127 | (_("rule never reduced because of conflicts")); | |
128 | ||
342b8b6e AD |
129 | /* Output file names. */ |
130 | compute_output_file_names (); | |
131 | ||
b7c49edf | 132 | /* Output the detailed report on the grammar. */ |
ec3bc396 | 133 | if (report_flag) |
1509d42f AD |
134 | { |
135 | timevar_push (TV_REPORT); | |
136 | print_results (); | |
137 | timevar_pop (TV_REPORT); | |
138 | } | |
b7c49edf | 139 | |
e8cb70b9 | 140 | /* Output the VCG graph. */ |
64d15509 | 141 | if (graph_flag) |
1509d42f AD |
142 | { |
143 | timevar_push (TV_GRAPH); | |
144 | print_graph (); | |
145 | timevar_pop (TV_GRAPH); | |
146 | } | |
c4b66126 | 147 | |
c8f002c7 AD |
148 | /* Stop if there were errors, to avoid trashing previous output |
149 | files. */ | |
5ca3209b | 150 | if (complaint_issued) |
f6d0c239 | 151 | goto finish; |
c6f1a33c | 152 | |
8dd162d3 | 153 | /* Look-ahead tokens are no longer needed. */ |
3325ddc4 AD |
154 | timevar_push (TV_FREE); |
155 | lalr_free (); | |
156 | timevar_pop (TV_FREE); | |
157 | ||
cc84fd5d | 158 | /* Output the tables and the parser to ftable. In file output. */ |
1509d42f | 159 | timevar_push (TV_PARSER); |
cc84fd5d | 160 | output (); |
1509d42f | 161 | timevar_pop (TV_PARSER); |
a0f6b076 | 162 | |
1509d42f | 163 | timevar_push (TV_FREE); |
cd08e51e AD |
164 | nullable_free (); |
165 | derives_free (); | |
c6f1a33c | 166 | tables_free (); |
c7ca99d4 | 167 | states_free (); |
337c5bd1 | 168 | reduce_free (); |
b408954b | 169 | conflicts_free (); |
76514394 | 170 | grammar_free (); |
4515534c AD |
171 | |
172 | /* The scanner memory cannot be released right after parsing, as it | |
173 | contains things such as user actions, prologue, epilogue etc. */ | |
e9071366 | 174 | gram_scanner_free (); |
592e8d4d | 175 | muscle_free (); |
17ee7397 | 176 | uniqstrs_free (); |
1509d42f | 177 | timevar_pop (TV_FREE); |
722c4bfe | 178 | |
273a74fa | 179 | if (trace_flag & trace_bitsets) |
640748ee | 180 | bitset_stats_dump (stderr); |
613f5e1a | 181 | |
f6d0c239 PE |
182 | finish: |
183 | ||
1509d42f AD |
184 | /* Stop timing and print the times. */ |
185 | timevar_stop (TV_TOTAL); | |
186 | timevar_print (stderr); | |
187 | ||
e95aed63 | 188 | return complaint_issued ? EXIT_FAILURE : EXIT_SUCCESS; |
54bd0db4 | 189 | } |