Scroll to navigation

ANTLR(1) General Commands Manual ANTLR(1)

NAME

ANTLR - ANother Tool for Language Recognition, version 3

SYNOPSIS

antlr3 [args] file.g [ file2.g file3.g ...]

DESCRIPTION

ANTLR (ANother Tool for Language Recognition) is a parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build and walk parse trees.

specify output directory where all output generated.
same as -o but force even files with relative paths to dir.
specify location of token files.
generate file dependencies.
print out a report about the grammar(s) processed.
print out the grammar without actions.
generate a parser that emits debugging events.
generate a parser that computes profiling information.
generate a recognizer that traces rule entry/exit.
generate an NFA for each rule.
generate a DFA for each decision point.
specify output style for messages.
generate ANTLR version and other information.
only build if generated files older than grammar.
print the version of ANTLR and exit.
override language grammar option; generate L
display the list of extended arguments
print the grammar AST
print DFA as text
test lookahead against EBNF block exit branches
collapse incident edges into DFA states
dump lots of info during NFA conversion
use to restrict NFA conversion exponentiality
run the analysis in 2 threads
do not merge stop states
generate DFA states in DOT with NFA configs
print a message for each NFA before converting
put tags at start/stop of all templates in output
for nondeterminisms, list NFA states for each path
max number of rule invocations during conversion [4]
max "comfortable" number of edges for single DFA state [65534]
max DFA states before table used rather than inlining [60]
don't generate switch() statements for dfas bigger than m [300]
don't generate switch() statements for dfas smaller than m [3]
don't delete temporary lexers generated from combined grammars

AUTHOR

This manual page was written by Ludovic Claude <ludovic.claude@laposte.net>

SEE ALSO

java(1), runantlr(1), http://www.antlr.org/

July 22, 2015 antlr