• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

python/H03-May-2022-1,5451,239

tests/H07-May-2022-3,7803,280

verilog/H10-Jan-2019-1,7441,385

.gitignoreH A D10-Jan-2019106 109

.travis.ymlH A D10-Jan-2019125 109

4calc.gH A D10-Jan-2019706 3125

4calc.inH A D10-Jan-201919 31

CHANGESH A D10-Jan-20195.8 KiB158126

COPYRIGHTH A D10-Jan-20191.4 KiB106

D_BUILD_VERSIONH A D03-May-20225 21

MakefileH A D03-May-20225.7 KiB226171

README.mdH A D10-Jan-2019662 1711

TODOH A D10-Jan-2019681 1916

ansic.gH A D10-Jan-20195.9 KiB203169

arg.cH A D03-May-20225.7 KiB186171

arg.hH A D10-Jan-2019749 3826

baselineH A D10-Jan-201991 85

buildallH A D10-Jan-2019988 3024

d.hH A D10-Jan-20192.5 KiB11292

dparse.hH A D10-Jan-20192.5 KiB9071

dparse_tables.hH A D10-Jan-20193.9 KiB168141

dparse_tree.cH A D10-Jan-20191.9 KiB7147

dparse_tree.hH A D10-Jan-20191.7 KiB448

driver_parsetree.cH A D10-Jan-20191.1 KiB4733

dsymtab.hH A D10-Jan-20192.2 KiB6855

gram.cH A D10-Jan-201947.2 KiB1,6001,449

gram.hH A D10-Jan-20197.6 KiB287252

gramgram.hH A D10-Jan-2019324 1811

grammar.gH A D10-Jan-20196.9 KiB212184

grammar.g.cH A D10-Jan-2019341.7 KiB5,9745,429

lex.cH A D10-Jan-201913.9 KiB525473

lex.hH A D10-Jan-2019491 2917

lr.cH A D10-Jan-20199.2 KiB347300

lr.hH A D10-Jan-2019277 158

make_dparser.1H A D10-Jan-20193.8 KiB118115

make_dparser.cH A D10-Jan-20194.9 KiB11999

make_dparser.catH A D10-Jan-20194.5 KiB11580

mkdepH A D10-Jan-20193.2 KiB10147

mkdparse.cH A D10-Jan-2019717 1911

mkdparse.hH A D10-Jan-2019346 2213

parse.cH A D10-Jan-201963.3 KiB2,1211,924

parse.hH A D10-Jan-20193.4 KiB153119

parser_testsH A D10-Jan-20191.1 KiB4640

read_binary.cH A D10-Jan-20192.7 KiB8069

read_binary.hH A D10-Jan-2019763 2618

sample.gH A D10-Jan-20194.1 KiB168147

sample_parser.cH A D10-Jan-20193.7 KiB10691

scan.cH A D10-Jan-20194.7 KiB160148

scan.hH A D10-Jan-2019288 1910

symtab.cH A D10-Jan-201910.7 KiB436367

test_parser.cH A D10-Jan-20196.3 KiB176150

util.cH A D10-Jan-20198 KiB386348

util.hH A D10-Jan-20195.3 KiB149129

version.cH A D10-Jan-2019243 105

write_tables.cH A D10-Jan-201963.2 KiB1,7351,588

write_tables.hH A D10-Jan-2019278 94

README.md

1This is DParser, a scannerless GLR parser.  It uses to Tomita algorithm,
2and incorporates BNF production syntax, regular expression terminals,
3and a state-specific symbol table.
4
5It can be compiled to work with or without the Boehm Garbage Collector.
6To compile with GC, uncomment the line D_USE_GC=1 in the Makefile.
7
8The result is natural grammars and powerful parsing.
9
10To build:	'gmake'	        (only available with source code package)
11To test:	'gmake test'    (only available with source code package)
12To install:	'gmake install' (binary or source code packages)
13
14For python support, '(cd python; gmake install)'
15
16Refer to the manual for more information.
17