]> git.saurik.com Git - bison.git/blame - src/main.c
Add tryclose(), which verifies that fclose was successful.
[bison.git] / src / main.c
CommitLineData
54bd0db4 1/* Top level entry point of bison,
a98ad01e 2 Copyright (C) 1984, 1986, 1989, 1992, 1995 Free Software Foundation, Inc.
54bd0db4
RS
3
4This file is part of Bison, the GNU Compiler Compiler.
5
6Bison is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11Bison is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with Bison; see the file COPYING. If not, write to
c49a8e71
JT
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
54bd0db4
RS
20
21
22#include <stdio.h>
23#include "system.h"
a98ad01e 24#include "machine.h" /* for MAXSHORT */
54bd0db4
RS
25
26extern int lineno;
27extern int verboseflag;
d2729d44 28extern char *infile;
54bd0db4
RS
29
30/* Nonzero means failure has been detected; don't write a parser file. */
31int failure;
32
a98ad01e 33/* The name this program was run with, for messages. */
54bd0db4
RS
34char *program_name;
35
d2729d44
JT
36char *printable_version PARAMS((int));
37char *int_to_string PARAMS((int));
38void fatal PARAMS((char *));
39void fatals PARAMS((char *, char *));
40void warn PARAMS((char *));
41void warni PARAMS((char *, int));
42void warns PARAMS((char *, char *));
43void warnss PARAMS((char *, char *, char *));
44void warnsss PARAMS((char *, char *, char *, char *));
45void toomany PARAMS((char *));
46void berror PARAMS((char *));
47
48extern void getargs PARAMS((int, char *[]));
49extern void openfiles PARAMS((void));
50extern void reader PARAMS((void));
51extern void reduce_grammar PARAMS((void));
52extern void set_derives PARAMS((void));
53extern void set_nullable PARAMS((void));
54extern void generate_states PARAMS((void));
55extern void lalr PARAMS((void));
56extern void initialize_conflicts PARAMS((void));
57extern void verbose PARAMS((void));
58extern void terse PARAMS((void));
59extern void output PARAMS((void));
60extern void done PARAMS((int));
54bd0db4
RS
61
62
63/* VMS complained about using `int'. */
a98ad01e 64
54bd0db4 65int
d2729d44 66main (int argc, char *argv[])
54bd0db4
RS
67{
68 program_name = argv[0];
29340571
RS
69 setlocale (LC_ALL, "");
70 bindtextdomain (PACKAGE, LOCALEDIR);
71 textdomain (PACKAGE);
72
54bd0db4
RS
73 failure = 0;
74 lineno = 0;
75 getargs(argc, argv);
76 openfiles();
77
78 /* read the input. Copy some parts of it to fguard, faction, ftable and fattrs.
79 In file reader.c.
80 The other parts are recorded in the grammar; see gram.h. */
81 reader();
a98ad01e
RS
82 if (failure)
83 done(failure);
54bd0db4
RS
84
85 /* find useless nonterminals and productions and reduce the grammar. In
86 file reduce.c */
87 reduce_grammar();
88
89 /* record other info about the grammar. In files derives and nullable. */
90 set_derives();
91 set_nullable();
92
93 /* convert to nondeterministic finite state machine. In file LR0.
94 See state.h for more info. */
95 generate_states();
96
97 /* make it deterministic. In file lalr. */
98 lalr();
99
100 /* Find and record any conflicts: places where one token of lookahead is not
101 enough to disambiguate the parsing. In file conflicts.
fe01694d 102 Also resolve s/r conflicts based on precedence declarations. */
54bd0db4
RS
103 initialize_conflicts();
104
105 /* print information about results, if requested. In file print. */
106 if (verboseflag)
107 verbose();
108 else
109 terse();
110
111 /* output the tables and the parser to ftable. In file output. */
112 output();
113 done(failure);
42f95d63 114 return failure;
54bd0db4 115}
a98ad01e 116\f
54bd0db4
RS
117/* functions to report errors which prevent a parser from being generated */
118
a98ad01e
RS
119
120/* Return a string containing a printable version of C:
121 either C itself, or the corresponding \DDD code. */
122
123char *
d2729d44 124printable_version (int c)
a98ad01e
RS
125{
126 static char buf[10];
127 if (c < ' ' || c >= '\177')
128 sprintf(buf, "\\%o", c);
129 else
130 {
131 buf[0] = c;
132 buf[1] = '\0';
133 }
134 return buf;
135}
136
137/* Generate a string from the integer I.
138 Return a ptr to internal memory containing the string. */
139
140char *
d2729d44 141int_to_string (int i)
a98ad01e
RS
142{
143 static char buf[20];
144 sprintf(buf, "%d", i);
145 return buf;
146}
147
a889d44c
JT
148static void
149fatal_banner (void)
150{
151 if (infile == 0)
152 fprintf(stderr, _("%s: fatal error: "), program_name);
153 else
154 fprintf(stderr, _("%s:%d: fatal error: "), infile, lineno);
155}
156
a98ad01e
RS
157/* Print the message S for a fatal error. */
158
54bd0db4 159void
d2729d44 160fatal (char *s)
54bd0db4 161{
a889d44c
JT
162 fatal_banner ();
163 fputs (s, stderr);
164 fputc ('\n', stderr);
165 done (1);
54bd0db4
RS
166}
167
168
a98ad01e
RS
169/* Print a message for a fatal error. Use FMT to construct the message
170 and incorporate string X1. */
54bd0db4
RS
171
172void
d2729d44 173fatals (char *fmt, char *x1)
54bd0db4 174{
a889d44c
JT
175 fatal_banner ();
176 fprintf (stderr, fmt, x1);
177 fputc ('\n', stderr);
178 done (1);
179}
180
181static void
182warn_banner (void)
183{
184 if (infile == 0)
185 fprintf(stderr, _("%s: "), program_name);
186 else
187 fprintf(stderr, _("%s:%d: "), infile, lineno);
188 failure = 1;
54bd0db4
RS
189}
190
a98ad01e 191/* Print a warning message S. */
54bd0db4
RS
192
193void
d2729d44 194warn (char *s)
a98ad01e 195{
a889d44c
JT
196 warn_banner ();
197 fputs (s, stderr);
198 fputc ('\n', stderr);
a98ad01e
RS
199}
200
201/* Print a warning message containing the string for the integer X1.
202 The message is given by the format FMT. */
203
204void
d2729d44 205warni (char *fmt, int x1)
54bd0db4 206{
a889d44c
JT
207 warn_banner ();
208 fprintf (stderr, fmt, x1);
209 fputc ('\n', stderr);
a98ad01e
RS
210}
211
212/* Print a warning message containing the string X1.
213 The message is given by the format FMT. */
214
215void
d2729d44 216warns (char *fmt, char *x1)
a98ad01e 217{
a889d44c
JT
218 warn_banner ();
219 fprintf (stderr, fmt, x1);
220 fputc ('\n', stderr);
a98ad01e
RS
221}
222
223/* Print a warning message containing the two strings X1 and X2.
224 The message is given by the format FMT. */
225
226void
d2729d44 227warnss (char *fmt, char *x1, char *x2)
a98ad01e 228{
a889d44c
JT
229 warn_banner ();
230 fprintf (stderr, fmt, x1, x2);
231 fputc ('\n', stderr);
a98ad01e
RS
232}
233
234/* Print a warning message containing the 3 strings X1, X2, X3.
235 The message is given by the format FMT. */
236
237void
d2729d44 238warnsss (char *fmt, char *x1, char *x2, char *x3)
a98ad01e 239{
a889d44c
JT
240 warn_banner ();
241 fprintf (stderr, fmt, x1, x2, x3);
242 fputc ('\n', stderr);
a98ad01e
RS
243}
244
245/* Print a message for the fatal occurence of more than MAXSHORT
246 instances of whatever is denoted by the string S. */
54bd0db4 247
a98ad01e 248void
d2729d44 249toomany (char *s)
a98ad01e 250{
a889d44c
JT
251 fatal_banner ();
252 fprintf (stderr, _("too many %s (max %d)"), s, MAXSHORT);
253 fputc ('\n', stderr);
254 done (1);
54bd0db4
RS
255}
256
a98ad01e 257/* Abort for an internal error denoted by string S. */
54bd0db4
RS
258
259void
d2729d44 260berror (char *s)
54bd0db4 261{
319ce533 262 fprintf(stderr, _("%s: internal error: %s\n"), program_name, s);
54bd0db4
RS
263 abort();
264}