https://github.com/moriyoshi/kmyacc-forked
A fork of kmyacc, with some essential patches applied
https://github.com/moriyoshi/kmyacc-forked
Last synced: 6 months ago
JSON representation
A fork of kmyacc, with some essential patches applied
- Host: GitHub
- URL: https://github.com/moriyoshi/kmyacc-forked
- Owner: moriyoshi
- License: gpl-2.0
- Created: 2009-08-24T08:15:50.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-08-25T08:24:58.000Z (over 15 years ago)
- Last Synced: 2023-04-11T17:06:22.790Z (about 2 years ago)
- Language: C
- Homepage: http://www005.upp.so-net.ne.jp/kmori/kmyacc/
- Size: 161 KB
- Stars: 49
- Watchers: 7
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
kmyacc version 4.1.4 (2006/02/15)
=================================kmyacc is an LALR(1) parser generator, hopefully compatible with
AT&T yacc.Features:
- Generates smaller table than Yacc/Berkeley yacc/Bison.
- Supports multi-language (currenly C and Java).
INSTALL
=======(1) You must have ANSI C compiler.
(2) Read Makefile and change macro BIN and PARLIB appropriately.
(3) Type
make
make installHOW TO USE
==========Command
kmyacc foo.y
generates parser code "y.tab.c", same as original yacc.
Command
kmyacc Foo.jy
creates parser code "Foo.java", its class name is "Foo".
Synopsys:
kmyacc [ -dvltani ] [ -b X ] [ -p XX ] [ -m MODEL ] [ -L LANG ] grammar
Options:
-d Makes definition file named y.tab.h, which contains definitions of
token values and the type of semantic stack. (C language only)-v Generates file y.output which contains human-readable parser
tables and diagnostics.-l Does not insert #line control directives in y.tab.c.
-t Generates debugging code. Compiling with -DYYDEBUG option gives
the same effect.-a Makes semantic actions individual functions rather than blocks in
one switch statement. This option is useful if your compiler
can not compile big functions/methods.-b X
Uses X rather than y as the prefix of generated filenames.
X.tab.c for C, X.java for Java.-p XX
Uses XX rather than yy as the prefix of global identifiers in
the parser. You can avoid collision of external symbols when
you use more than one parser in the same program by specifing
this option. (C language only)-m MODEL
Uses file MODEL as prototype of parser code. When defaulted, file
/usr/local/lib/kmyacc.LANG.parser is taken, where LANG is a host
language name deduced from source file extension(.y/.jy), or one
specified by -L switch explicitly.-L LANG
Specifies LANG as host programming language. c,java,javascript,perl
are available.-n
Allows referencing semantic values by name.-i
Inhibits referencing semantic values by $$, $1, $2 form.Environment
KMYACCPAR Prototype file name. Same as -m option.Differences between kmyacc and AT&T yacc
========================================- Options -b, -p, -a, -m, -L added
- Bison's %expect, %pure_parser statement added
- Treat // as comment
- Following obsolete features deleted
o literal tokens surrounded by "
o \left, \right etc.
o %<, %>, %binary, %2, %0, %=- YYBACKUP macro not supported
COPYRIGHT
=========Copyright (C) 1987,1989,1992,1993,2005,2006 MORI Koichiro.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USACONTACT
=======
Bug reports, suggestions, patches are welcome.
Please send email to:MORI Koichiro