]>
git.saurik.com Git - bison.git/blob - src/main.c
9bff77a2f6efa74b4e9ec9e1dfe4af4a3308005c
1 /* Top level entry point of bison,
2 Copyright (C) 1984, 1986, 1989, 1992, 1995 Free Software Foundation, Inc.
4 This file is part of Bison, the GNU Compiler Compiler.
6 Bison is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 Bison is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with Bison; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include "machine.h" /* for MAXSHORT */
26 extern int verboseflag
;
29 /* Nonzero means failure has been detected; don't write a parser file. */
32 /* The name this program was run with, for messages. */
35 char *printable_version
PARAMS((int));
36 char *int_to_string
PARAMS((int));
37 void fatal
PARAMS((char *));
38 void fatals
PARAMS((char *, char *));
39 void warn
PARAMS((char *));
40 void warni
PARAMS((char *, int));
41 void warns
PARAMS((char *, char *));
42 void warnss
PARAMS((char *, char *, char *));
43 void warnsss
PARAMS((char *, char *, char *, char *));
44 void toomany
PARAMS((char *));
45 void berror
PARAMS((char *));
47 extern void getargs
PARAMS((int, char *[]));
48 extern void openfiles
PARAMS((void));
49 extern void reader
PARAMS((void));
50 extern void reduce_grammar
PARAMS((void));
51 extern void set_derives
PARAMS((void));
52 extern void set_nullable
PARAMS((void));
53 extern void generate_states
PARAMS((void));
54 extern void lalr
PARAMS((void));
55 extern void initialize_conflicts
PARAMS((void));
56 extern void verbose
PARAMS((void));
57 extern void terse
PARAMS((void));
58 extern void output
PARAMS((void));
59 extern void done
PARAMS((int));
62 /* VMS complained about using `int'. */
65 main (int argc
, char *argv
[])
67 program_name
= argv
[0];
68 setlocale (LC_ALL
, "");
69 bindtextdomain (PACKAGE
, LOCALEDIR
);
77 /* read the input. Copy some parts of it to fguard, faction, ftable and fattrs.
79 The other parts are recorded in the grammar; see gram.h. */
84 /* find useless nonterminals and productions and reduce the grammar. In
88 /* record other info about the grammar. In files derives and nullable. */
92 /* convert to nondeterministic finite state machine. In file LR0.
93 See state.h for more info. */
96 /* make it deterministic. In file lalr. */
99 /* Find and record any conflicts: places where one token of lookahead is not
100 enough to disambiguate the parsing. In file conflicts.
101 Also resolve s/r conflicts based on precedence declarations. */
102 initialize_conflicts();
104 /* print information about results, if requested. In file print. */
110 /* output the tables and the parser to ftable. In file output. */
116 /* functions to report errors which prevent a parser from being generated */
119 /* Return a string containing a printable version of C:
120 either C itself, or the corresponding \DDD code. */
123 printable_version (int c
)
126 if (c
< ' ' || c
>= '\177')
127 sprintf(buf
, "\\%o", c
);
136 /* Generate a string from the integer I.
137 Return a ptr to internal memory containing the string. */
140 int_to_string (int i
)
143 sprintf(buf
, "%d", i
);
151 fprintf(stderr
, _("%s: fatal error: "), program_name
);
153 fprintf(stderr
, _("%s:%d: fatal error: "), infile
, lineno
);
156 /* Print the message S for a fatal error. */
163 fputc ('\n', stderr
);
168 /* Print a message for a fatal error. Use FMT to construct the message
169 and incorporate string X1. */
172 fatals (char *fmt
, char *x1
)
175 fprintf (stderr
, fmt
, x1
);
176 fputc ('\n', stderr
);
184 fprintf(stderr
, _("%s: "), program_name
);
186 fprintf(stderr
, _("%s:%d: "), infile
, lineno
);
190 /* Print a warning message S. */
197 fputc ('\n', stderr
);
200 /* Print a warning message containing the string for the integer X1.
201 The message is given by the format FMT. */
204 warni (char *fmt
, int x1
)
207 fprintf (stderr
, fmt
, x1
);
208 fputc ('\n', stderr
);
211 /* Print a warning message containing the string X1.
212 The message is given by the format FMT. */
215 warns (char *fmt
, char *x1
)
218 fprintf (stderr
, fmt
, x1
);
219 fputc ('\n', stderr
);
222 /* Print a warning message containing the two strings X1 and X2.
223 The message is given by the format FMT. */
226 warnss (char *fmt
, char *x1
, char *x2
)
229 fprintf (stderr
, fmt
, x1
, x2
);
230 fputc ('\n', stderr
);
233 /* Print a warning message containing the 3 strings X1, X2, X3.
234 The message is given by the format FMT. */
237 warnsss (char *fmt
, char *x1
, char *x2
, char *x3
)
240 fprintf (stderr
, fmt
, x1
, x2
, x3
);
241 fputc ('\n', stderr
);
244 /* Print a message for the fatal occurence of more than MAXSHORT
245 instances of whatever is denoted by the string S. */
251 fprintf (stderr
, _("too many %s (max %d)"), s
, MAXSHORT
);
252 fputc ('\n', stderr
);
256 /* Abort for an internal error denoted by string S. */
261 fprintf(stderr
, _("%s: internal error: %s\n"), program_name
, s
);