SearchPixie - High Traffic Pay per Click Search Engine
bookmark
Home : Computers : Programming : Compilers : Lexer and Parser Generators
Featured Listing:

LINKS:
  • AnaGram: LALR Parser Generator
    AnaGram provides a powerful grammar notation, special features for maintenance of highly configurable parsers, visual parsing and unique interactive debugging tools, supporting thread-safe parsers. The program produces C/C++ parsers for use on any platform and runs under Win9x/NT. A free trial copy is available.
    http://www.parsifalsoft.com/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Coco/R compiler generator
    Coco/R combines the functionality of the well-known UNIX tools lex and yacc, to form an extremely easy to use compiler generator that generates recursive descent parsers, their associated scanners, and (in some versions) a driver program, from attributed grammars (written using EBNF syntax with attributes and semantic actions) which conform to the restrictions imposed by LL(1) parsing (rather than LALR parsing, as allowed by yacc).
    http://www.ssw.uni-linz.ac.at/Research/Projects/Compiler.html
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • EAG
    A compiler compiler that uses the Extended Affix Grammar (EAG) formalism which describes both the context free and context sensitive syntax of language. The compiler generates either a recognizer or a transducer or a translator or a syntax-directed editor for a described language.
    ftp://hades.cs.kun.nl/pub/eag/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Elex
    A multi-language scanner generator package which generates a scanner (i.e. a lexer) from a specification oriented around regular expressions. Elex differs from most other scanner generators in that it supports multiple languages.
    http://members.ozemail.com.au/~mpp/elex/elex.html
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • GNU Flex
    A fast lexical analyser generator. It is a tool for generating programs that perform pattern-matching on text. There are many applications for Flex, including writing compilers in conjunction with GNU Bison. [Open source, GPL]
    http://www.gnu.org/software/flex/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • GOLD Parser
    A free parser generator. Unlike common compiler-compilers, the GOLD Parser does not require you to embed your grammar directly into your source code. Instead, the Builder analyzes the grammar description and saves the parse tables to a separate file. This file can be subsequently loaded by the actual parser engine and used. Currently the GOLD Parser Engine is available in Java, .NET and ActiveX. [Open Source]
    http://www.devincook.com/goldparser/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Hapy
    A runtime parser generator library. It generates parsers from BNF-like language grammars. Parsing scripting languages and communication protocol messages are typical use cases. [Public domain]
    http://hapy.sourceforge.net/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • IParse
    An interpretting parser, meaning that it accept on the input a grammar and a source file which should be parsed according to that grammar, and produces an abstract program tree from this. Very compact implementation.
    http://home.planet.nl/~faase009/MM.html
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • JB2CSharp
    A port of the Java-Bison/Flex software developed by the Serl project at the University of Colorado, Boulder. Parsers and lexers will be able to use C# actions. The open source .NET project Mono has requested the port, and here it is. [Open source, BSD License]
    http://sourceforge.net/projects/jb2csharp/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Pattern matching
    Pattern matching in syntax analysis as influenced by SNOBOL4. The library distributed under the GNU Library General Public License provides for recursive patterns, various iterators and user-defined patterns along with bindings for Ada, K&R C/ANSI C/C++.
    http://www.dmitry-kazakov.de/match/match.htm
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • PCCTS Resources and
    The primary source of maintenance releases for the PCCTS compiler construction tool set. PCCTS is an LL(k) recursive descent parser generator with semantic predicates and backtracking. It was developed by T.J. Parr.
    http://www.polhode.com/pccts.html
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • PRECC - A PREttier Compiler-Compiler
    an infinite-lookahead parser generator for context dependent grammars which generates ANSI C code. Specification scripts are in very extended BNF with inherited and synthetic attributes allowed. Scripts can be compiled in separate modules and later linked together, and meta-production rules are allowed. Converter for yacc scripts is available.
    http://www.afm.sbu.ac.uk/precc/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • re2c lexer generator
    re2c is a tool for writing fast and flexible lexers. A re2c generated scanner is usually 2-3 times faster than a flex based scanner, and its input model is much more flexible.
    http://re2c.org
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Spirit C++ Parser Framework
    An object oriented recursive descent parser generator framework implemented using template meta-programming techniques. Expression templates allow to approximate the syntax of Extended Backus Normal Form (EBNF) completely in C++.
    http://spirit.sourceforge.net/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Styx
    A scanner and lalr(1) parser generator. It has features like automatic derivation of depth grammar, production of the abstract syntax tree including its C interface and preserves full source information to faciliate source-source translation.
    http://www.speculate.de/styx/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • The SYNTAX System
    A set of tools for the design and implementation of the front-end part of translators. The SYNTAX tools allow the generation of analyzers and the compilation of source texts with those analyzers. This has all the capabilities of lex and yacc plus some additional features including better error processing, i.e. an automatic (and tunable) error repair and recovery mechanism.
    http://www-rocq.inria.fr/oscar/www/syntax/syntax-eng.htm
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Turbo Pascal Lex/Yacc
    a compiler generator for Turbo Pascal and compatibles. The package contains two programs, TP Lex and Yacc, which are approximately compatible with the UNIX utilities Lex and Yacc, but are written in and produce code for the Turbo Pascal programming language. The present version works with all recent flavours of Turbo/Borland Pascal, including Delphi and Free Pascal Compiler, a GPL'ed Turbo Pascal-compatible compiler which currently runs on DOS and Linux.
    http://www.musikwissenschaft.uni-mainz.de/~ag/tply/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
  • Visual Parse++ 4.0
    The tool allows visual design of lexers and parsers for use in C++, Java, Delphi and Visual Basic applications under UNIX, Linux and Windows/NT. New to version 4.0 is support for XML, XPath, XSLT, XPointer, XQL, DTD and Namespaces.
    http://www.sand-stone.com/
    (Added: Thu Jan 01 2004 Hits: 0 Rating: 0.00 Votes: 0)   Rate It   Review It
 
HOMEADD A LINKMODIFY A LINKNEW LINKSCOOL LINKSTOP RATEDNEWSLETTERRANDOM LINKSEARCHLOGIN

Copyright ©2006 SearchPixie.com Pay Per Click Search Engine. All Rights Reserved 

Network Sites : A Funny Site Big Upload TrafficGiveAway SearchPixie 100000freecliparts picZs MyfunPortal Top20Cool HotterBabes 12Freebie Clipaholic ActivityPortal FreebieJungle MyOwnStartpage WallpaperSpecials Online Games Sexy.VoteMonster 100000freetemplates 100000freewallpapers SiteBuilder-FX UpdatedSucks 100000freescreensavers VoteMonster Nature Photo Index filehostingreview Wonderful Faces