.\" .\" monoburg manual page. .\" (C) Ximian, Inc. .\" Author: .\" Dietmar Maurer (dietmar@ximian.com) .\" .TH Mono "Mono 1.0" .SH NAME monoburg \- code generator generator .SH SYNOPSIS .PP .B monoburg [\-h] [\-e] [\-p] [\-c VALUE] [\-d HEADER] [\-DVALUE] [FILE...] .SH DESCRIPTION The \fImonoburg\fP program is used to generate tree pattern matchers from BURG specifications. \fImonoburg\fP accepts the following EBNF grammar. .PP .nf .RS .ft CW spec: ccode `%%' { dcl } [`%%' ccode] dcl: `%start' nonterm `%term' { identifier [`=' integer] } `%termprefix' { identifier } nonterm `:' tree [cost] [ `{' ccode `}' ] [costfunc] tree: term `(' tree `,' tree `)' term `(' tree `)' term nonterm cost: `"' string '"' integer costfunc: `cost' `{' ccode `}' .RE .fi .PP Where \fIccode\fP is arbitrary C code. \fIcost\fP and \fIcostfunc\fP are used mutually exclusive, you can't use both in one rule. \fIcost\fP must be a C expression, whereas \fIccode\fP inside \fIcostfunc\fP is the body of a C function. Here are some example rules: .PP .nf .RS .ft CW # define some terminal %term Fetch Four Mul Plus # this rule uses fixed costs addr: Plus (con, Mul (Four, reg)) 2 { printf ("Emit your code here."); } # this one computes costs inside a function reg: Fetch (addr) { printf ("Tree address is %p", tree); } cost { int c; c = 1; /* calculate the costs here */ return c; } .RE .fi .PP A simple pre-processor is included, consisting of: %ifdef, %else and %endif. %ifdef operates on definitions from the command line. .SH OPTIONS The following options are supported: .TP .I "-h" Displays usage instructions. .TP .I "-d HEADER" Writes a separate header file which contains all monoburg definitions. .TP .I "-p" Assume termainals are already defined. Its possible to omit the %term definitions in this mode if you use the %termprefix command. All symbols starting with a prefix specified in %termprefix are considered to be terminals. .TP .I "-e" Extended mode. Enables monoburg to work with DAGs. .TP .I "-c VALUE" Set the default costs to VALUE .TP .I "-Dvar" Defines the variable "var" as true. This is used with %ifdef, %else and %endif in the source files to perform conditional compilation. .PP .SH AUTHOR monoburg was written by Dietmar Maurer. It is based on the papers from Christopher W.\ Fraser, Robert R.\ Henry and Todd A.\ Proebsting: "BURG - Fast Optimal Instruction Selection and Tree Parsing" and "Engineering a Simple, Efficient Code Generator Generator". .SH SEE ALSO .BR monodis(1) .BR pedump(1)