]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/yacc/yyfix.1
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / yacc / yyfix.1
1 .\" Copyright (c) 1990, 1991 The Regents of the University of California.
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)yyfix.1     5.4 (Berkeley) 3/23/93
33 .\" $FreeBSD$
34 .\"
35 .Dd March 23, 1993
36 .Dt YYFIX 1
37 .Os
38 .Sh NAME
39 .Nm yyfix
40 .Nd extract tables from y.tab.c
41 .Sh SYNOPSIS
42 .Nm
43 .Ar file
44 .Op Ar tables
45 .Sh DESCRIPTION
46 Programs have historically used a script (often named
47 .Dq :yyfix )
48 to extract tables from the
49 .Xr yacc 1
50 generated file
51 .Pa y.tab.c .
52 As the names of the tables generated by the current version of
53 .Xr yacc 1
54 are different from those of historical versions of
55 .Xr yacc 1 ,
56 the shell script
57 .Nm
58 is provided to simplify the transition.
59 .Pp
60 The first (and required) argument to
61 .Nm
62 is the name of the file where the extracted tables should be stored.
63 .Pp
64 If further command line arguments are specified, they are taken as
65 the list of tables to be extracted.
66 Otherwise,
67 .Nm
68 attempts to determine if the
69 .Pa y.tab.c
70 file is from an old or new
71 .Xr yacc 1 ,
72 and extracts the appropriate tables.
73 .Pp
74 The tables
75 .Dq yyexca ,
76 .Dq yyact ,
77 .Dq yypact ,
78 .Dq yypgo ,
79 .Dq yyr1 ,
80 .Dq yyr2 ,
81 .Dq yychk ,
82 and
83 .Dq yydef
84 are extracted
85 from historical versions of
86 .Xr yacc 1 .
87 .Pp
88 The tables
89 .Dq yylhs ,
90 .Dq yylen ,
91 .Dq yydefred ,
92 .Dq yydgoto ,
93 .Dq yysindex ,
94 .Dq yyrindex ,
95 .Dq yygindex ,
96 .Dq yytable ,
97 .Dq yyname ,
98 .Dq yyrule ,
99 and
100 .Dq yycheck ,
101 are extracted from the current version of
102 .Xr yacc 1 .
103 .Sh FILES
104 .Bl -tag -width y.tab.c
105 .It Pa y.tab.c
106 File from which tables are extracted.
107 .El
108 .Sh SEE ALSO
109 .Xr yacc 1
110 .Sh HISTORY
111 The
112 .Nm
113 command first appeared in
114 .Bx 4.4 .