Ragel State Machine Compiler 6.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Ragel State Machine Compiler 6.2 (Default branch)
# 1  
Old 05-09-2008
Ragel State Machine Compiler 6.2 (Default branch)

Ragel compiles finite state machines from regular languages into C, C++, Objective-C, D, Java, or Ruby code. It allows the programmer to embed actions at any point in a regular language, and to control non-determinism in the resulting machines. It understands concatenation, union, kleene star, subtraction, intersection, epsilon transitions, and various other common operators. It also supports the construction of scanners and the building of state machines using state charts. It can be used to create very fast recognizers and parsers that are also robust. License: GNU General Public License (GPL) Changes:
A number of reported bugs were fixed. Include and import file searching was improved. The -I include path option was added.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Vim function to generate RTL Code(finite state machine) in verilog

Hi I wanted to call the AutoFsm function (given below) in vim to generate a code something like: **********verilog code to generate ************* always @(posedge clk or negedge rst_n) begin if(!rst_n) begin state_r <= #1 next_stateascii_r; ... (0 Replies)
Discussion started by: dll_fpga
0 Replies

2. Programming

Bitwise operation for state machine

Hello All, I am writing basic state machine which maintains 8 different states and there is posibility that system may be in multiple states at a time (Except for state1 to state3. menas only once state can be active at a time from state1 to state3). I have declared... (9 Replies)
Discussion started by: anand.shah
9 Replies

3. Programming

How Can a Machine Reads a Compiler Since A Compiler is Written in Text! Not Binaries?

To make a programming language you need a compiler, so what was the first programming language and how was is created if you need the compiler first? The compiler itself is considered as a high language comparing to the machine! since the compiler is not created in 1's and 0's... Eventhough i... (12 Replies)
Discussion started by: f.ben.isaac
12 Replies
Login or Register to Ask a Question
JANINOC(1)						      General Commands Manual							JANINOC(1)

NAME
Janino - a runtime Java Compiler. SYNOPSIS
janinoc [options] source-file ... DESCRIPTION
Janino is a compiler that reads a Java expression, block, class body, source file or a set of source files, and generates Java bytecode that is loaded and executed directly. Janino is not intended to be a development tool, but an embedded compiler for run-time compilation purposes, e.g. expression evaluators or "server pages" engines like JSP. janinoc is a front-end that compiles all specified input files. OPTIONS
-d output-dir Where to save class files -sourcepath dirlist, -extdirs dirlist, -bootclasspath dirlist Where to look for other source files -encoding encoding Encoding of source files, e.g. "UTF-8" or "ISO-8859-1" -verbose More output. -g [none|{lines,vars,source}] Generate all, no, or only some debugging info. -warn:pattern-list Issue certain warnings, examples: -warn:* All warnings -warn:IASF Only warn against implicit access to static fields -warn:*-IASF Enables all warnings, except those against implicit access to static fields -warn:*-IA*+IASF Enables all warnings, except those against implicit accesses, but do warn against implicit access to static fields -rebuild Compile all source files, even if the class files seems up-to-date -help Prints a help message AUTHORS
The Janino Team http://janino.net/ Arno Unkrig <aunkrig@codehaus.org> Janino July 2007 JANINOC(1)