2016-09-20 18:37:16 +00:00
|
|
|
#include <assert.h>
|
2016-09-24 14:59:49 +00:00
|
|
|
#include <unistd.h>
|
2016-09-20 18:37:16 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include "iburg.h"
|
|
|
|
|
|
|
|
static char rcsid[] = "$Id$";
|
|
|
|
|
2016-09-24 14:59:49 +00:00
|
|
|
int maxcost = SHRT_MAX / 2;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
static char* prefix = "burm";
|
2016-09-24 14:59:49 +00:00
|
|
|
static int Tflag = 1; /* tracing */
|
2016-09-20 18:37:16 +00:00
|
|
|
static int ntnumber = 0;
|
|
|
|
static Nonterm start = 0;
|
|
|
|
static Term terms;
|
|
|
|
static Nonterm nts;
|
|
|
|
static Rule rules;
|
|
|
|
static int nrules;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
static void print(char* fmt, ...);
|
2016-09-20 18:37:16 +00:00
|
|
|
static void ckreach(Nonterm p);
|
|
|
|
static void emitclosure(Nonterm nts);
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitcost(Tree t, char* v);
|
2016-09-24 11:33:59 +00:00
|
|
|
static void emitcostcalc(Rule r);
|
2016-09-20 18:37:16 +00:00
|
|
|
static void emitdefs(Nonterm nts, int ntnumber);
|
|
|
|
static void emitfuncs(void);
|
|
|
|
static void emitheader(void);
|
|
|
|
static void emitkids(Rule rules, int nrules);
|
|
|
|
static void emitlabel(Nonterm start);
|
|
|
|
static void emitleaf(Term p, int ntnumber);
|
|
|
|
static void emitnts(Rule rules, int nrules);
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitrecord(char* pre, Rule r, int cost);
|
2016-09-20 18:37:16 +00:00
|
|
|
static void emitrule(Nonterm nts);
|
2016-09-20 22:43:10 +00:00
|
|
|
static void emitpredicatedefinitions(Rule rules);
|
2016-09-20 18:37:16 +00:00
|
|
|
static void emitstate(Term terms, Nonterm start, int ntnumber);
|
|
|
|
static void emitstring(Rule rules);
|
|
|
|
static void emitstruct(Nonterm nts, int ntnumber);
|
|
|
|
static void emitterms(Term terms);
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emittest(Tree t, char* v, char* suffix);
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
int c, i;
|
|
|
|
Nonterm p;
|
2016-09-20 19:00:16 +00:00
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
#if 0
|
|
|
|
extern int yydebug;
|
|
|
|
yydebug = 1;
|
|
|
|
#endif
|
|
|
|
|
2016-09-24 14:59:49 +00:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
int opt = getopt(argc, argv, "p:");
|
|
|
|
if (opt == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (opt)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-24 14:59:49 +00:00
|
|
|
case 'p':
|
|
|
|
prefix = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
yyerror("usage: %s [-p prefix] < input > output\n", argv[0]);
|
2016-09-20 18:37:16 +00:00
|
|
|
exit(1);
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
2016-09-24 14:59:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
infp = stdin;
|
|
|
|
outfp = stdout;
|
2016-09-20 22:43:10 +00:00
|
|
|
|
2016-09-24 15:20:40 +00:00
|
|
|
emitheader();
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
yyin = infp;
|
2016-09-20 18:37:16 +00:00
|
|
|
yyparse();
|
2016-09-20 22:43:10 +00:00
|
|
|
|
2016-09-20 18:37:16 +00:00
|
|
|
if (start)
|
|
|
|
ckreach(start);
|
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
if (!p->reached)
|
|
|
|
yyerror("can't reach non-terminal `%s'\n", p->name);
|
2016-09-24 15:20:40 +00:00
|
|
|
|
2016-09-20 18:37:16 +00:00
|
|
|
emitdefs(nts, ntnumber);
|
|
|
|
emitstruct(nts, ntnumber);
|
|
|
|
emitnts(rules, nrules);
|
|
|
|
emitterms(terms);
|
2016-09-24 14:59:49 +00:00
|
|
|
emitstring(rules);
|
2016-09-20 18:37:16 +00:00
|
|
|
emitrule(nts);
|
|
|
|
emitclosure(nts);
|
2016-09-20 22:43:10 +00:00
|
|
|
emitpredicatedefinitions(rules);
|
2016-09-20 18:37:16 +00:00
|
|
|
if (start)
|
|
|
|
emitstate(terms, start, ntnumber);
|
|
|
|
print("#ifdef STATE_LABEL\n");
|
|
|
|
if (start)
|
|
|
|
emitlabel(start);
|
|
|
|
emitkids(rules, nrules);
|
|
|
|
emitfuncs();
|
|
|
|
print("#endif\n");
|
2016-09-20 22:43:10 +00:00
|
|
|
print("#include \"mcgg_generated_footer.h\"\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
return errcnt > 0;
|
|
|
|
}
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
/* stringf - format and save a string */
|
|
|
|
char* stringf(char* fmt, ...)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-20 22:43:10 +00:00
|
|
|
int n;
|
|
|
|
char* p;
|
|
|
|
va_list ap;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
n = vsnprintf(NULL, 0, fmt, ap) + 1;
|
|
|
|
va_end(ap);
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
p = malloc(n);
|
|
|
|
if (!p)
|
|
|
|
return NULL;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(p, n, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return p;
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
struct entry
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
2016-09-24 10:11:30 +00:00
|
|
|
const char* name;
|
2016-09-20 18:37:16 +00:00
|
|
|
struct term t;
|
|
|
|
struct nonterm nt;
|
|
|
|
} sym;
|
2016-09-20 19:00:16 +00:00
|
|
|
struct entry* link;
|
|
|
|
} * table[211];
|
|
|
|
#define HASHSIZE (sizeof table / sizeof table[0])
|
2016-09-20 18:37:16 +00:00
|
|
|
|
|
|
|
/* hash - return hash number for str */
|
2016-09-24 10:11:30 +00:00
|
|
|
static unsigned hash(const char* str)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
unsigned h = 0;
|
|
|
|
|
|
|
|
while (*str)
|
2016-09-20 19:00:16 +00:00
|
|
|
h = (h << 1) + *str++;
|
2016-09-20 18:37:16 +00:00
|
|
|
return h;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lookup - lookup symbol name */
|
2016-09-24 10:11:30 +00:00
|
|
|
static void* lookup(const char* name)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
|
|
|
struct entry* p = table[hash(name) % HASHSIZE];
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
for (; p; p = p->link)
|
2016-09-20 18:37:16 +00:00
|
|
|
if (strcmp(name, p->sym.name) == 0)
|
|
|
|
return &p->sym;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* install - install symbol name */
|
2016-09-24 10:11:30 +00:00
|
|
|
static void* install(const char* name)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-20 22:43:10 +00:00
|
|
|
struct entry* p = calloc(1, sizeof *p);
|
2016-09-20 19:00:16 +00:00
|
|
|
int i = hash(name) % HASHSIZE;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
|
|
|
p->sym.name = name;
|
|
|
|
p->link = table[i];
|
|
|
|
table[i] = p;
|
|
|
|
return &p->sym;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* nonterm - create a new terminal id, if necessary */
|
2016-09-24 10:11:30 +00:00
|
|
|
Nonterm nonterm(const char* id)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
|
|
|
Nonterm p = lookup(id), * q = &nts;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
|
|
|
if (p && p->kind == NONTERM)
|
|
|
|
return p;
|
|
|
|
if (p && p->kind == TERM)
|
|
|
|
yyerror("`%s' is a terminal\n", id);
|
|
|
|
p = install(id);
|
|
|
|
p->kind = NONTERM;
|
|
|
|
p->number = ++ntnumber;
|
|
|
|
if (p->number == 1)
|
|
|
|
start = p;
|
|
|
|
while (*q && (*q)->number < p->number)
|
|
|
|
q = &(*q)->link;
|
|
|
|
assert(*q == 0 || (*q)->number != p->number);
|
|
|
|
p->link = *q;
|
|
|
|
*q = p;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* term - create a new terminal id with external symbol number esn */
|
2016-09-24 10:11:30 +00:00
|
|
|
Term term(const char* id, int esn)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
|
|
|
Term p = lookup(id), * q = &terms;
|
2016-09-20 18:37:16 +00:00
|
|
|
|
|
|
|
if (p)
|
|
|
|
yyerror("redefinition of terminal `%s'\n", id);
|
|
|
|
else
|
|
|
|
p = install(id);
|
|
|
|
p->kind = TERM;
|
|
|
|
p->esn = esn;
|
|
|
|
p->arity = -1;
|
|
|
|
while (*q && (*q)->esn < p->esn)
|
|
|
|
q = &(*q)->link;
|
|
|
|
if (*q && (*q)->esn == p->esn)
|
|
|
|
yyerror("duplicate external symbol number `%s=%d'\n",
|
2016-09-20 19:00:16 +00:00
|
|
|
p->name, p->esn);
|
2016-09-20 18:37:16 +00:00
|
|
|
p->link = *q;
|
|
|
|
*q = p;
|
2016-09-20 22:43:10 +00:00
|
|
|
|
|
|
|
if (esn != -1)
|
|
|
|
print("enum { %s = %d };\n", id, esn);
|
2016-09-20 18:37:16 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* tree - create & initialize a tree node with the given fields */
|
2016-09-24 10:11:30 +00:00
|
|
|
Tree tree(const char* id, const char* label, Tree left, Tree right)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-20 22:43:10 +00:00
|
|
|
Tree t = calloc(1, sizeof *t);
|
2016-09-20 18:37:16 +00:00
|
|
|
Term p = lookup(id);
|
|
|
|
int arity = 0;
|
|
|
|
|
|
|
|
if (left && right)
|
|
|
|
arity = 2;
|
|
|
|
else if (left)
|
|
|
|
arity = 1;
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p == NULL && arity > 0)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
yyerror("undefined terminal `%s'\n", id);
|
|
|
|
p = term(id, -1);
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
|
|
|
else if (p == NULL && arity == 0)
|
2016-09-20 18:37:16 +00:00
|
|
|
p = (Term)nonterm(id);
|
2016-09-20 19:00:16 +00:00
|
|
|
else if (p && p->kind == NONTERM && arity > 0)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
yyerror("`%s' is a non-terminal\n", id);
|
|
|
|
p = term(id, -1);
|
|
|
|
}
|
|
|
|
if (p->kind == TERM && p->arity == -1)
|
|
|
|
p->arity = arity;
|
|
|
|
if (p->kind == TERM && arity != p->arity)
|
|
|
|
yyerror("inconsistent arity for terminal `%s'\n", id);
|
|
|
|
t->op = p;
|
2016-09-24 10:11:30 +00:00
|
|
|
t->label = label;
|
2016-09-20 18:37:16 +00:00
|
|
|
t->nterms = p->kind == TERM;
|
|
|
|
if (t->left = left)
|
|
|
|
t->nterms += left->nterms;
|
|
|
|
if (t->right = right)
|
|
|
|
t->nterms += right->nterms;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rule - create & initialize a rule with the given fields */
|
2016-09-20 22:43:10 +00:00
|
|
|
Rule rule(char* id, Tree pattern, int ern, Stringlist when, int cost)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-20 22:43:10 +00:00
|
|
|
Rule r = calloc(1, sizeof *r);
|
|
|
|
Rule *q;
|
2016-09-20 18:37:16 +00:00
|
|
|
Term p = pattern->op;
|
|
|
|
|
|
|
|
nrules++;
|
2016-09-20 22:43:10 +00:00
|
|
|
r->when = when;
|
2016-09-20 18:37:16 +00:00
|
|
|
r->lhs = nonterm(id);
|
|
|
|
r->packed = ++r->lhs->lhscount;
|
|
|
|
for (q = &r->lhs->rules; *q; q = &(*q)->decode)
|
|
|
|
;
|
|
|
|
*q = r;
|
|
|
|
r->pattern = pattern;
|
|
|
|
r->ern = ern;
|
|
|
|
r->cost = cost;
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->kind == TERM)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
r->next = p->rules;
|
|
|
|
p->rules = r;
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
|
|
|
else if (pattern->left == NULL && pattern->right == NULL)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p = pattern->op;
|
|
|
|
r->chain = p->chain;
|
2016-09-20 19:00:16 +00:00
|
|
|
p->chain = r;
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
for (q = &rules; *q && (*q)->ern < r->ern; q = &(*q)->link)
|
|
|
|
;
|
|
|
|
if (*q && (*q)->ern == r->ern)
|
|
|
|
yyerror("duplicate external rule number `%d'\n", r->ern);
|
|
|
|
r->link = *q;
|
|
|
|
*q = r;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
Stringlist pushstring(const char* data, Stringlist list)
|
|
|
|
{
|
|
|
|
Stringlist sl = calloc(1, sizeof *sl);
|
|
|
|
sl->payload = data;
|
|
|
|
sl->next = list;
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
|
2016-09-20 18:37:16 +00:00
|
|
|
/* print - formatted output */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void print(char* fmt, ...)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2016-09-20 19:00:16 +00:00
|
|
|
for (; *fmt; fmt++)
|
2016-09-20 18:37:16 +00:00
|
|
|
if (*fmt == '%')
|
2016-09-20 19:00:16 +00:00
|
|
|
switch (*++fmt)
|
|
|
|
{
|
|
|
|
case 'd':
|
|
|
|
fprintf(outfp, "%d", va_arg(ap, int));
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
fputs(va_arg(ap, char*), outfp);
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
fprintf(outfp, "%s_", prefix);
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
{
|
|
|
|
Tree t = va_arg(ap, Tree);
|
|
|
|
print("%S", t->op);
|
|
|
|
if (t->left && t->right)
|
|
|
|
print("(%T,%T)", t->left, t->right);
|
|
|
|
else if (t->left)
|
|
|
|
print("(%T)", t->left);
|
|
|
|
break;
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
2016-09-20 19:00:16 +00:00
|
|
|
case 'R':
|
|
|
|
{
|
|
|
|
Rule r = va_arg(ap, Rule);
|
|
|
|
print("%S: %T", r->lhs, r->pattern);
|
|
|
|
break;
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
2016-09-20 19:00:16 +00:00
|
|
|
case 'S':
|
|
|
|
fputs(va_arg(ap, Term)->name, outfp);
|
|
|
|
break;
|
|
|
|
case '1':
|
|
|
|
case '2':
|
|
|
|
case '3':
|
|
|
|
case '4':
|
|
|
|
case '5':
|
|
|
|
{
|
|
|
|
int n = *fmt - '0';
|
|
|
|
while (n-- > 0)
|
|
|
|
putc('\t', outfp);
|
|
|
|
break;
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
2016-09-20 19:00:16 +00:00
|
|
|
default:
|
|
|
|
putc(*fmt, outfp);
|
|
|
|
break;
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
putc(*fmt, outfp);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
void printlineno(void)
|
|
|
|
{
|
|
|
|
print("#line %d\n", yylineno);
|
|
|
|
}
|
|
|
|
|
2016-09-20 18:37:16 +00:00
|
|
|
/* reach - mark all non-terminals in tree t as reachable */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void reach(Tree t)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p = t->op;
|
|
|
|
|
|
|
|
if (p->kind == NONTERM)
|
|
|
|
if (!p->reached)
|
|
|
|
ckreach(p);
|
|
|
|
if (t->left)
|
|
|
|
reach(t->left);
|
|
|
|
if (t->right)
|
|
|
|
reach(t->right);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ckreach - mark all non-terminals reachable from p */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void ckreach(Nonterm p)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
p->reached = 1;
|
2016-09-20 18:37:16 +00:00
|
|
|
for (r = p->rules; r; r = r->decode)
|
|
|
|
reach(r->pattern);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitcase - emit one case in function state */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitcase(Term p, int ntnumber)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
|
|
|
|
|
|
|
print("%1case %d: /* %S */\n", p->esn, p);
|
2016-09-20 19:00:16 +00:00
|
|
|
switch (p->arity)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case -1:
|
2016-09-20 18:37:16 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2016-09-20 19:00:16 +00:00
|
|
|
print("%2assert(l);\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2016-09-20 19:00:16 +00:00
|
|
|
print("%2assert(l && r);\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
break;
|
2016-09-20 19:00:16 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
for (r = p->rules; r; r = r->next)
|
|
|
|
{
|
|
|
|
switch (p->arity)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
case -1:
|
2016-09-24 11:33:59 +00:00
|
|
|
print("%2{%1/* %R */\n%3c = ", r);
|
|
|
|
emitcostcalc(r);
|
2016-09-20 19:00:16 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (r->pattern->nterms > 1)
|
|
|
|
{
|
|
|
|
print("%2if (%1/* %R */\n", r);
|
|
|
|
emittest(r->pattern->left, "l", " ");
|
|
|
|
print("%2) {\n%3c = ");
|
|
|
|
}
|
|
|
|
else
|
2016-09-20 22:43:10 +00:00
|
|
|
{
|
2016-09-24 11:33:59 +00:00
|
|
|
print("%2{%1/* %R */\n%3c = ", r);
|
2016-09-20 22:43:10 +00:00
|
|
|
}
|
2016-09-24 11:33:59 +00:00
|
|
|
emitcostcalc(r);
|
2016-09-20 19:00:16 +00:00
|
|
|
emitcost(r->pattern->left, "l");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (r->pattern->nterms > 1)
|
|
|
|
{
|
|
|
|
print("%2if (%1/* %R */\n", r);
|
|
|
|
emittest(r->pattern->left, "l",
|
|
|
|
r->pattern->right->nterms ? " && " : " ");
|
|
|
|
emittest(r->pattern->right, "r", " ");
|
|
|
|
print("%2) {\n%3c = ");
|
|
|
|
}
|
|
|
|
else
|
2016-09-20 22:43:10 +00:00
|
|
|
{
|
2016-09-24 11:33:59 +00:00
|
|
|
print("%2{%1/* %R */\n%3c = ", r);
|
2016-09-20 22:43:10 +00:00
|
|
|
}
|
2016-09-24 11:33:59 +00:00
|
|
|
emitcostcalc(r);
|
2016-09-20 19:00:16 +00:00
|
|
|
emitcost(r->pattern->left, "l");
|
|
|
|
emitcost(r->pattern->right, "r");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
print("%d;\n", r->cost);
|
|
|
|
emitrecord("\t\t\t", r, 0);
|
|
|
|
print("%2}\n");
|
|
|
|
}
|
|
|
|
print("%2break;\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitclosure - emit the closure functions */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitclosure(Nonterm nts)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p;
|
|
|
|
|
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
if (p->chain)
|
|
|
|
print("static void %Pclosure_%S(struct %Pstate *, int);\n", p);
|
|
|
|
print("\n");
|
|
|
|
for (p = nts; p; p = p->link)
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->chain)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
|
|
|
print("static void %Pclosure_%S(struct %Pstate *p, int c) {\n", p);
|
|
|
|
for (r = p->chain; r; r = r->chain)
|
|
|
|
emitrecord("\t", r, r->cost);
|
|
|
|
print("}\n\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitcost - emit cost computation for tree t */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitcost(Tree t, char* v)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p = t->op;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->kind == TERM)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
if (t->left)
|
2016-09-20 19:00:16 +00:00
|
|
|
emitcost(t->left, stringf("%s->left", v));
|
2016-09-20 18:37:16 +00:00
|
|
|
if (t->right)
|
|
|
|
emitcost(t->right, stringf("%s->right", v));
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
|
|
|
else
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%s->cost[%P%S_NT] + ", v, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitdefs - emit non-terminal defines and data structures */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitdefs(Nonterm nts, int ntnumber)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p;
|
|
|
|
|
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
print("#define %P%S_NT %d\n", p, p->number);
|
2016-09-24 14:59:49 +00:00
|
|
|
print("static const int %Pmax_nt = %d;\n\n", ntnumber);
|
|
|
|
print("const char *%Pntname[] = {\n%10,\n");
|
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
print("%1\"%S\",\n", p);
|
|
|
|
print("%10\n};\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* emitfuncs - emit functions to access node fields */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitfuncs(void)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
print("int %Pop_label(NODEPTR_TYPE p) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(p, PANIC(\"NULL tree in %Pop_label\\n\"));\n"
|
|
|
|
"%1return OP_LABEL(p);\n}\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
print("STATE_TYPE %Pstate_label(NODEPTR_TYPE p) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(p, PANIC(\"NULL tree in %Pstate_label\\n\"));\n"
|
|
|
|
"%1return STATE_LABEL(p);\n}\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
print("NODEPTR_TYPE %Pchild(NODEPTR_TYPE p, int index) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(p, PANIC(\"NULL tree in %Pchild\\n\"));\n"
|
|
|
|
"%1switch (index) {\n%1case 0:%1return LEFT_CHILD(p);\n"
|
|
|
|
"%1case 1:%1return RIGHT_CHILD(p);\n%1}\n"
|
|
|
|
"%1%Passert(0, PANIC(\"Bad index %%d in %Pchild\\n\", index));\n%1return 0;\n}\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* emitheader - emit initial definitions */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitheader(void)
|
|
|
|
{
|
2016-09-24 15:20:40 +00:00
|
|
|
print("#include \"mcgg_generated_header.h\"\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
if (Tflag)
|
|
|
|
print("static NODEPTR_TYPE %Pnp;\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* computekids - compute paths to kids in tree t */
|
2016-09-20 19:00:16 +00:00
|
|
|
static char* computekids(Tree t, char* v, char* bp, int* ip)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Term p = t->op;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->kind == NONTERM)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
sprintf(bp, "\t\tkids[%d] = %s;\n", (*ip)++, v);
|
|
|
|
bp += strlen(bp);
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
|
|
|
else if (p->arity > 0)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
bp = computekids(t->left, stringf("LEFT_CHILD(%s)", v), bp, ip);
|
|
|
|
if (p->arity == 2)
|
|
|
|
bp = computekids(t->right, stringf("RIGHT_CHILD(%s)", v), bp, ip);
|
|
|
|
}
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitkids - emit burm_kids */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitkids(Rule rules, int nrules)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
int i;
|
2016-09-20 22:43:10 +00:00
|
|
|
Rule r, * rc = calloc(nrules+1, sizeof *rc);
|
|
|
|
char** str = calloc(nrules+1, sizeof *str);
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
for (i = 0, r = rules; r; r = r->link)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
int j = 0;
|
2016-09-20 19:00:16 +00:00
|
|
|
char buf[1024], * bp = buf;
|
2016-09-20 18:37:16 +00:00
|
|
|
*computekids(r->pattern, "p", bp, &j) = 0;
|
|
|
|
for (j = 0; str[j] && strcmp(str[j], buf); j++)
|
|
|
|
;
|
|
|
|
if (str[j] == NULL)
|
2016-09-20 22:43:10 +00:00
|
|
|
str[j] = strdup(buf);
|
2016-09-20 18:37:16 +00:00
|
|
|
r->kids = rc[j];
|
|
|
|
rc[j] = r;
|
|
|
|
}
|
|
|
|
print("NODEPTR_TYPE *%Pkids(NODEPTR_TYPE p, int eruleno, NODEPTR_TYPE kids[]) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(p, PANIC(\"NULL tree in %Pkids\\n\"));\n"
|
|
|
|
"%1%Passert(kids, PANIC(\"NULL kids in %Pkids\\n\"));\n"
|
|
|
|
"%1switch (eruleno) {\n");
|
|
|
|
for (i = 0; r = rc[i]; i++)
|
|
|
|
{
|
|
|
|
for (; r; r = r->kids)
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%1case %d: /* %R */\n", r->ern, r);
|
|
|
|
print("%s%2break;\n", str[i]);
|
|
|
|
}
|
|
|
|
print("%1default:\n%2%Passert(0, PANIC(\"Bad external rule number %%d in %Pkids\\n\", eruleno));\n%1}\n%1return kids;\n}\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitlabel - emit the labelling functions */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitlabel(Nonterm start)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
print("static void %Plabel1(NODEPTR_TYPE p) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(p, PANIC(\"NULL tree in %Plabel\\n\"));\n"
|
|
|
|
"%1switch (%Parity[OP_LABEL(p)]) {\n"
|
|
|
|
"%1case 0:\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
if (Tflag)
|
|
|
|
print("%2%Pnp = p;\n");
|
2016-09-20 22:43:10 +00:00
|
|
|
print("%2STATE_LABEL(p) = %Pstate(p, 0, 0);\n%2break;\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1case 1:\n%2%Plabel1(LEFT_CHILD(p));\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
if (Tflag)
|
|
|
|
print("%2%Pnp = p;\n");
|
2016-09-20 22:43:10 +00:00
|
|
|
print("%2STATE_LABEL(p) = %Pstate(p,\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%3STATE_LABEL(LEFT_CHILD(p)), 0);\n%2break;\n"
|
|
|
|
"%1case 2:\n%2%Plabel1(LEFT_CHILD(p));\n%2%Plabel1(RIGHT_CHILD(p));\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
if (Tflag)
|
|
|
|
print("%2%Pnp = p;\n");
|
2016-09-20 22:43:10 +00:00
|
|
|
print("%2STATE_LABEL(p) = %Pstate(p,\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%3STATE_LABEL(LEFT_CHILD(p)),\n%3STATE_LABEL(RIGHT_CHILD(p)));\n%2break;\n"
|
|
|
|
"%1}\n}\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
print(
|
2016-09-20 19:00:16 +00:00
|
|
|
"STATE_TYPE %Plabel(NODEPTR_TYPE p) {\n%1%Plabel1(p);\n"
|
|
|
|
"%1return ((struct %Pstate *)STATE_LABEL(p))->rule.%P%S ? STATE_LABEL(p) : 0;\n"
|
|
|
|
"}\n\n",
|
|
|
|
start);
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* closure - fill in cost & rule with results of chain rules w/p as rhs */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void closure(int cost[], Rule rule[], Nonterm p, int c)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
|
|
|
|
|
|
|
for (r = p->chain; r; r = r->chain)
|
2016-09-20 19:00:16 +00:00
|
|
|
if (c + r->cost < cost[r->lhs->number])
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
cost[r->lhs->number] = c + r->cost;
|
|
|
|
rule[r->lhs->number] = r;
|
|
|
|
closure(cost, rule, r->lhs, c + r->cost);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* computents - fill in bp with burm_nts vector for tree t */
|
2016-09-20 19:00:16 +00:00
|
|
|
static char* computents(Tree t, char* bp)
|
|
|
|
{
|
|
|
|
if (t)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p = t->op;
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->kind == NONTERM)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
sprintf(bp, "%s_%s_NT, ", prefix, p->name);
|
|
|
|
bp += strlen(bp);
|
2016-09-20 19:00:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
bp = computents(t->right, computents(t->left, bp));
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitnts - emit burm_nts ragged array */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitnts(Rule rules, int nrules)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
2016-09-20 22:43:10 +00:00
|
|
|
int i, j, * nts = calloc(nrules, sizeof *nts);
|
|
|
|
char** str = calloc(nrules, sizeof *str);
|
2016-09-20 18:37:16 +00:00
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
for (i = 0, r = rules; r; r = r->link)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
char buf[1024];
|
|
|
|
*computents(r->pattern, buf) = 0;
|
|
|
|
for (j = 0; str[j] && strcmp(str[j], buf); j++)
|
|
|
|
;
|
2016-09-20 19:00:16 +00:00
|
|
|
if (str[j] == NULL)
|
|
|
|
{
|
2016-09-24 14:59:49 +00:00
|
|
|
print("static const short %Pnts_%d[] = { %s0 };\n", j, buf);
|
2016-09-20 22:43:10 +00:00
|
|
|
str[j] = strdup(buf);
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
nts[i++] = j;
|
|
|
|
}
|
2016-09-24 14:59:49 +00:00
|
|
|
print("\nconst short *%Pnts[] = {\n");
|
2016-09-20 19:00:16 +00:00
|
|
|
for (i = j = 0, r = rules; r; r = r->link)
|
|
|
|
{
|
|
|
|
for (; j < r->ern; j++)
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%10,%1/* %d */\n", j);
|
|
|
|
print("%1%Pnts_%d,%1/* %d */\n", nts[i++], j++);
|
|
|
|
}
|
|
|
|
print("};\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitrecord - emit code that tests for a winning match of rule r */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitrecord(char* pre, Rule r, int cost)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%sif (", pre);
|
|
|
|
if (Tflag)
|
|
|
|
print("%Ptrace(%Pnp, %d, c + %d, p->cost[%P%S_NT]), ",
|
2016-09-20 19:00:16 +00:00
|
|
|
r->ern, cost, r->lhs);
|
2016-09-20 18:37:16 +00:00
|
|
|
print("c + %d < p->cost[%P%S_NT]) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%s%1p->cost[%P%S_NT] = c + %d;\n%s%1p->rule.%P%S = %d;\n",
|
|
|
|
cost, r->lhs, pre, r->lhs, cost, pre, r->lhs,
|
|
|
|
r->packed);
|
2016-09-20 18:37:16 +00:00
|
|
|
if (r->lhs->chain)
|
|
|
|
print("%s%1%Pclosure_%S(p, c + %d);\n", pre, r->lhs, cost);
|
|
|
|
print("%s}\n", pre);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitrule - emit decoding vectors and burm_rule */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitrule(Nonterm nts)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Nonterm p;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
2016-09-24 14:59:49 +00:00
|
|
|
print("static const short %Pdecode_%S[] = {\n%10,\n", p);
|
2016-09-20 18:37:16 +00:00
|
|
|
for (r = p->rules; r; r = r->decode)
|
|
|
|
print("%1%d,\n", r->ern);
|
|
|
|
print("};\n\n");
|
|
|
|
}
|
|
|
|
print("int %Prule(STATE_TYPE state, int goalnt) {\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1%Passert(goalnt >= 1 && goalnt <= %d, PANIC(\"Bad goal nonterminal %%d in %Prule\\n\", goalnt));\n"
|
|
|
|
"%1if (!state)\n%2return 0;\n%1switch (goalnt) {\n",
|
|
|
|
ntnumber);
|
2016-09-20 18:37:16 +00:00
|
|
|
for (p = nts; p; p = p->link)
|
|
|
|
print("%1case %P%S_NT:"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1return %Pdecode_%S[((struct %Pstate *)state)->rule.%P%S];\n",
|
|
|
|
p, p, p);
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%1default:\n%2%Passert(0, PANIC(\"Bad goal nonterminal %%d in %Prule\\n\", goalnt));\n%1}\n%1return 0;\n}\n\n");
|
|
|
|
}
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
/* emitpredicates - emit predicates for rules */
|
|
|
|
static void emitpredicatedefinitions(Rule r)
|
|
|
|
{
|
|
|
|
while (r)
|
|
|
|
{
|
|
|
|
Stringlist s = r->when;
|
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
print("static int %Ppredicate_%d(NODEPTR_TYPE n) {\n", r->ern);
|
|
|
|
while (s)
|
|
|
|
{
|
|
|
|
print("%s", s->payload);
|
|
|
|
s = s->next;
|
|
|
|
}
|
|
|
|
print("\n}\n\n");
|
|
|
|
}
|
|
|
|
r = r->link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-24 11:33:59 +00:00
|
|
|
/* emitcost - emit a cost calculation via a predicate */
|
|
|
|
static void emitcostcalc(Rule r)
|
2016-09-20 22:43:10 +00:00
|
|
|
{
|
|
|
|
if (r->when)
|
2016-09-24 11:33:59 +00:00
|
|
|
print("!%Ppredicate_%d(node) ? %d : ", r->ern, maxcost);
|
2016-09-20 22:43:10 +00:00
|
|
|
}
|
|
|
|
|
2016-09-20 18:37:16 +00:00
|
|
|
/* emitstate - emit state function */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitstate(Term terms, Nonterm start, int ntnumber)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
int i;
|
|
|
|
Term p;
|
|
|
|
|
2016-09-20 22:43:10 +00:00
|
|
|
print("STATE_TYPE %Pstate(NODEPTR_TYPE node, STATE_TYPE left, STATE_TYPE right) {\n%1int c;\n"
|
|
|
|
"%1int op = OP_LABEL(node);\n"
|
|
|
|
"%1struct %Pstate* p;\n"
|
|
|
|
"%1struct %Pstate* l = (struct %Pstate *)left;\n"
|
|
|
|
"%1struct %Pstate* r = (struct %Pstate *)right;\n"
|
|
|
|
"\n"
|
|
|
|
"%1assert(sizeof (STATE_TYPE) >= sizeof (void *));\n%1");
|
2016-09-24 15:20:40 +00:00
|
|
|
print("%1p = malloc(sizeof *p);\n"
|
2016-09-24 11:33:59 +00:00
|
|
|
"%1p->op = op;\n"
|
|
|
|
"%1p->left = l;\n"
|
|
|
|
"%1p->right = r;\n"
|
|
|
|
"%1p->rule.%P%S = 0;\n",
|
2016-09-20 19:00:16 +00:00
|
|
|
start);
|
2016-09-20 18:37:16 +00:00
|
|
|
for (i = 1; i <= ntnumber; i++)
|
2016-09-24 11:33:59 +00:00
|
|
|
print("%1p->cost[%d] =\n", i);
|
|
|
|
print("%2%d;\n"
|
|
|
|
"%1switch (op) {\n", maxcost);
|
2016-09-20 18:37:16 +00:00
|
|
|
for (p = terms; p; p = p->link)
|
|
|
|
emitcase(p, ntnumber);
|
|
|
|
print("%1default:\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%2%Passert(0, PANIC(\"Bad operator %%d in %Pstate\\n\", op));\n%1}\n"
|
|
|
|
"%1return (STATE_TYPE)p;\n}\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* emitstring - emit array of rules and costs */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitstring(Rule rules)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Rule r;
|
|
|
|
int k;
|
|
|
|
|
2016-09-24 14:59:49 +00:00
|
|
|
print("static const short %Pcost[][4] = {\n");
|
2016-09-20 19:00:16 +00:00
|
|
|
for (k = 0, r = rules; r; r = r->link)
|
|
|
|
{
|
|
|
|
for (; k < r->ern; k++)
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%1{ 0 },%1/* %d */\n", k);
|
|
|
|
print("%1{ %d },%1/* %d = %R */\n", r->cost, k++, r);
|
|
|
|
}
|
2016-09-24 14:59:49 +00:00
|
|
|
print("};\n\nconst char *%Pstring[] = {\n");
|
2016-09-20 19:00:16 +00:00
|
|
|
for (k = 0, r = rules; r; r = r->link)
|
|
|
|
{
|
|
|
|
for (; k < r->ern; k++)
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%1/* %d */%10,\n", k);
|
|
|
|
print("%1/* %d */%1\"%R\",\n", k++, r);
|
|
|
|
}
|
|
|
|
print("};\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitstruct - emit the definition of the state structure */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitstruct(Nonterm nts, int ntnumber)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
print("struct %Pstate {\n%1int op;\n%1struct %Pstate *left, *right;\n"
|
2016-09-20 19:00:16 +00:00
|
|
|
"%1short cost[%d];\n%1struct {\n",
|
|
|
|
ntnumber + 1);
|
|
|
|
for (; nts; nts = nts->link)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
int n = 1, m = nts->lhscount;
|
|
|
|
while (m >>= 1)
|
2016-09-20 19:00:16 +00:00
|
|
|
n++;
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%2unsigned %P%S:%d;\n", nts, n);
|
|
|
|
}
|
|
|
|
print("%1} rule;\n};\n\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* emitterms - emit terminal data structures */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emitterms(Term terms)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Term p;
|
|
|
|
int k;
|
|
|
|
|
2016-09-24 14:59:49 +00:00
|
|
|
print("static const char %Parity[] = {\n");
|
2016-09-20 19:00:16 +00:00
|
|
|
for (k = 0, p = terms; p; p = p->link)
|
|
|
|
{
|
|
|
|
for (; k < p->esn; k++)
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%10,%1/* %d */\n", k);
|
|
|
|
print("%1%d,%1/* %d=%S */\n", p->arity < 0 ? 0 : p->arity, k++, p);
|
|
|
|
}
|
|
|
|
print("};\n\n");
|
2016-09-24 14:59:49 +00:00
|
|
|
|
|
|
|
print("static const char *%Popname[] = {\n");
|
|
|
|
for (k = 0, p = terms; p; p = p->link)
|
2016-09-20 19:00:16 +00:00
|
|
|
{
|
2016-09-24 14:59:49 +00:00
|
|
|
for (; k < p->esn; k++)
|
|
|
|
print("%1/* %d */%10,\n", k);
|
|
|
|
print("%1/* %d */%1\"%S\",\n", k++, p);
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
2016-09-24 14:59:49 +00:00
|
|
|
print("};\n\n");
|
2016-09-20 18:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* emittest - emit clause for testing a match */
|
2016-09-20 19:00:16 +00:00
|
|
|
static void emittest(Tree t, char* v, char* suffix)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
Term p = t->op;
|
|
|
|
|
2016-09-20 19:00:16 +00:00
|
|
|
if (p->kind == TERM)
|
|
|
|
{
|
2016-09-20 18:37:16 +00:00
|
|
|
print("%3%s->op == %d%s/* %S */\n", v, p->esn,
|
2016-09-20 19:00:16 +00:00
|
|
|
t->nterms > 1 ? " && " : suffix, p);
|
2016-09-20 18:37:16 +00:00
|
|
|
if (t->left)
|
2016-09-20 19:00:16 +00:00
|
|
|
emittest(t->left, stringf("%s->left", v),
|
|
|
|
t->right && t->right->nterms ? " && " : suffix);
|
2016-09-20 18:37:16 +00:00
|
|
|
if (t->right)
|
|
|
|
emittest(t->right, stringf("%s->right", v), suffix);
|
|
|
|
}
|
|
|
|
}
|