Run through clang-format.
This commit is contained in:
parent
03b7202e54
commit
2183c6c622
|
@ -40,7 +40,8 @@ static void emitstruct(Nonterm nts, int ntnumber);
|
|||
static void emitterms(Term terms);
|
||||
static void emittest(Tree t, char* v, char* suffix);
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int c, i;
|
||||
Nonterm p;
|
||||
|
||||
|
@ -57,21 +58,28 @@ int main(int argc, char *argv[]) {
|
|||
prefix = &argv[i][2];
|
||||
else if (strncmp(argv[i], "-p", 2) == 0 && i + 1 < argc)
|
||||
prefix = argv[++i];
|
||||
else if (*argv[i] == '-' && argv[i][1]) {
|
||||
else if (*argv[i] == '-' && argv[i][1])
|
||||
{
|
||||
yyerror("usage: %s [-T | -I | -p prefix | -maxcost=ddd ]... [ [ input ] output \n",
|
||||
argv[0]);
|
||||
exit(1);
|
||||
} else if (infp == NULL) {
|
||||
}
|
||||
else if (infp == NULL)
|
||||
{
|
||||
if (strcmp(argv[i], "-") == 0)
|
||||
infp = stdin;
|
||||
else if ((infp = fopen(argv[i], "r")) == NULL) {
|
||||
else if ((infp = fopen(argv[i], "r")) == NULL)
|
||||
{
|
||||
yyerror("%s: can't read `%s'\n", argv[0], argv[i]);
|
||||
exit(1);
|
||||
}
|
||||
} else if (outfp == NULL) {
|
||||
}
|
||||
else if (outfp == NULL)
|
||||
{
|
||||
if (strcmp(argv[i], "-") == 0)
|
||||
outfp = stdout;
|
||||
if ((outfp = fopen(argv[i], "w")) == NULL) {
|
||||
if ((outfp = fopen(argv[i], "w")) == NULL)
|
||||
{
|
||||
yyerror("%s: can't write `%s'\n", argv[0], argv[i]);
|
||||
exit(1);
|
||||
}
|
||||
|
@ -110,10 +118,12 @@ int main(int argc, char *argv[]) {
|
|||
}
|
||||
|
||||
/* alloc - allocate nbytes or issue fatal error */
|
||||
void *alloc(int nbytes) {
|
||||
void* alloc(int nbytes)
|
||||
{
|
||||
void* p = calloc(1, nbytes);
|
||||
|
||||
if (p == NULL) {
|
||||
if (p == NULL)
|
||||
{
|
||||
yyerror("out of memory\n");
|
||||
exit(1);
|
||||
}
|
||||
|
@ -121,7 +131,8 @@ void *alloc(int nbytes) {
|
|||
}
|
||||
|
||||
/* stringf - format and save a string */
|
||||
static char *stringf(char *fmt, ...) {
|
||||
static char* stringf(char* fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
char* s, buf[512];
|
||||
|
||||
|
@ -131,8 +142,10 @@ static char *stringf(char *fmt, ...) {
|
|||
return strcpy(alloc(strlen(buf) + 1), buf);
|
||||
}
|
||||
|
||||
struct entry {
|
||||
union {
|
||||
struct entry
|
||||
{
|
||||
union
|
||||
{
|
||||
char* name;
|
||||
struct term t;
|
||||
struct nonterm nt;
|
||||
|
@ -142,7 +155,8 @@ struct entry {
|
|||
#define HASHSIZE (sizeof table / sizeof table[0])
|
||||
|
||||
/* hash - return hash number for str */
|
||||
static unsigned hash(char *str) {
|
||||
static unsigned hash(char* str)
|
||||
{
|
||||
unsigned h = 0;
|
||||
|
||||
while (*str)
|
||||
|
@ -151,7 +165,8 @@ static unsigned hash(char *str) {
|
|||
}
|
||||
|
||||
/* lookup - lookup symbol name */
|
||||
static void *lookup(char *name) {
|
||||
static void* lookup(char* name)
|
||||
{
|
||||
struct entry* p = table[hash(name) % HASHSIZE];
|
||||
|
||||
for (; p; p = p->link)
|
||||
|
@ -161,7 +176,8 @@ static void *lookup(char *name) {
|
|||
}
|
||||
|
||||
/* install - install symbol name */
|
||||
static void *install(char *name) {
|
||||
static void* install(char* name)
|
||||
{
|
||||
struct entry* p = alloc(sizeof *p);
|
||||
int i = hash(name) % HASHSIZE;
|
||||
|
||||
|
@ -172,7 +188,8 @@ static void *install(char *name) {
|
|||
}
|
||||
|
||||
/* nonterm - create a new terminal id, if necessary */
|
||||
Nonterm nonterm(char *id) {
|
||||
Nonterm nonterm(char* id)
|
||||
{
|
||||
Nonterm p = lookup(id), * q = &nts;
|
||||
|
||||
if (p && p->kind == NONTERM)
|
||||
|
@ -193,7 +210,8 @@ Nonterm nonterm(char *id) {
|
|||
}
|
||||
|
||||
/* term - create a new terminal id with external symbol number esn */
|
||||
Term term(char *id, int esn) {
|
||||
Term term(char* id, int esn)
|
||||
{
|
||||
Term p = lookup(id), * q = &terms;
|
||||
|
||||
if (p)
|
||||
|
@ -214,7 +232,8 @@ Term term(char *id, int esn) {
|
|||
}
|
||||
|
||||
/* tree - create & initialize a tree node with the given fields */
|
||||
Tree tree(char *id, Tree left, Tree right) {
|
||||
Tree tree(char* id, Tree left, Tree right)
|
||||
{
|
||||
Tree t = alloc(sizeof *t);
|
||||
Term p = lookup(id);
|
||||
int arity = 0;
|
||||
|
@ -223,12 +242,15 @@ Tree tree(char *id, Tree left, Tree right) {
|
|||
arity = 2;
|
||||
else if (left)
|
||||
arity = 1;
|
||||
if (p == NULL && arity > 0) {
|
||||
if (p == NULL && arity > 0)
|
||||
{
|
||||
yyerror("undefined terminal `%s'\n", id);
|
||||
p = term(id, -1);
|
||||
} else if (p == NULL && arity == 0)
|
||||
}
|
||||
else if (p == NULL && arity == 0)
|
||||
p = (Term)nonterm(id);
|
||||
else if (p && p->kind == NONTERM && arity > 0) {
|
||||
else if (p && p->kind == NONTERM && arity > 0)
|
||||
{
|
||||
yyerror("`%s' is a non-terminal\n", id);
|
||||
p = term(id, -1);
|
||||
}
|
||||
|
@ -246,7 +268,8 @@ Tree tree(char *id, Tree left, Tree right) {
|
|||
}
|
||||
|
||||
/* rule - create & initialize a rule with the given fields */
|
||||
Rule rule(char *id, Tree pattern, int ern, int cost) {
|
||||
Rule rule(char* id, Tree pattern, int ern, int cost)
|
||||
{
|
||||
Rule r = alloc(sizeof *r), *q;
|
||||
Term p = pattern->op;
|
||||
|
||||
|
@ -259,10 +282,13 @@ Rule rule(char *id, Tree pattern, int ern, int cost) {
|
|||
r->pattern = pattern;
|
||||
r->ern = ern;
|
||||
r->cost = cost;
|
||||
if (p->kind == TERM) {
|
||||
if (p->kind == TERM)
|
||||
{
|
||||
r->next = p->rules;
|
||||
p->rules = r;
|
||||
} else if (pattern->left == NULL && pattern->right == NULL) {
|
||||
}
|
||||
else if (pattern->left == NULL && pattern->right == NULL)
|
||||
{
|
||||
Nonterm p = pattern->op;
|
||||
r->chain = p->chain;
|
||||
p->chain = r;
|
||||
|
@ -277,17 +303,26 @@ Rule rule(char *id, Tree pattern, int ern, int cost) {
|
|||
}
|
||||
|
||||
/* print - formatted output */
|
||||
static void print(char *fmt, ...) {
|
||||
static void print(char* fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, fmt);
|
||||
for (; *fmt; fmt++)
|
||||
if (*fmt == '%')
|
||||
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': {
|
||||
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)
|
||||
|
@ -296,19 +331,29 @@ static void print(char *fmt, ...) {
|
|||
print("(%T)", t->left);
|
||||
break;
|
||||
}
|
||||
case 'R': {
|
||||
case 'R':
|
||||
{
|
||||
Rule r = va_arg(ap, Rule);
|
||||
print("%S: %T", r->lhs, r->pattern);
|
||||
break;
|
||||
}
|
||||
case 'S': fputs(va_arg(ap, Term)->name, outfp); break;
|
||||
case '1': case '2': case '3': case '4': case '5': {
|
||||
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;
|
||||
}
|
||||
default: putc(*fmt, outfp); break;
|
||||
default:
|
||||
putc(*fmt, outfp);
|
||||
break;
|
||||
}
|
||||
else
|
||||
putc(*fmt, outfp);
|
||||
|
@ -316,7 +361,8 @@ static void print(char *fmt, ...) {
|
|||
}
|
||||
|
||||
/* reach - mark all non-terminals in tree t as reachable */
|
||||
static void reach(Tree t) {
|
||||
static void reach(Tree t)
|
||||
{
|
||||
Nonterm p = t->op;
|
||||
|
||||
if (p->kind == NONTERM)
|
||||
|
@ -329,7 +375,8 @@ static void reach(Tree t) {
|
|||
}
|
||||
|
||||
/* ckreach - mark all non-terminals reachable from p */
|
||||
static void ckreach(Nonterm p) {
|
||||
static void ckreach(Nonterm p)
|
||||
{
|
||||
Rule r;
|
||||
|
||||
p->reached = 1;
|
||||
|
@ -338,48 +385,65 @@ static void ckreach(Nonterm p) {
|
|||
}
|
||||
|
||||
/* emitcase - emit one case in function state */
|
||||
static void emitcase(Term p, int ntnumber) {
|
||||
static void emitcase(Term p, int ntnumber)
|
||||
{
|
||||
Rule r;
|
||||
|
||||
print("%1case %d: /* %S */\n", p->esn, p);
|
||||
switch (p->arity) {
|
||||
case 0: case -1:
|
||||
if (!Tflag) {
|
||||
switch (p->arity)
|
||||
{
|
||||
case 0:
|
||||
case -1:
|
||||
if (!Tflag)
|
||||
{
|
||||
emitleaf(p, ntnumber);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
case 1: print("%2assert(l);\n"); break;
|
||||
case 2: print("%2assert(l && r);\n"); break;
|
||||
default: assert(0);
|
||||
case 1:
|
||||
print("%2assert(l);\n");
|
||||
break;
|
||||
case 2:
|
||||
print("%2assert(l && r);\n");
|
||||
break;
|
||||
default:
|
||||
assert(0);
|
||||
}
|
||||
for (r = p->rules; r; r = r->next) {
|
||||
switch (p->arity) {
|
||||
case 0: case -1:
|
||||
for (r = p->rules; r; r = r->next)
|
||||
{
|
||||
switch (p->arity)
|
||||
{
|
||||
case 0:
|
||||
case -1:
|
||||
print("%2{%1/* %R */\n%3c = ", r);
|
||||
break;
|
||||
case 1:
|
||||
if (r->pattern->nterms > 1) {
|
||||
if (r->pattern->nterms > 1)
|
||||
{
|
||||
print("%2if (%1/* %R */\n", r);
|
||||
emittest(r->pattern->left, "l", " ");
|
||||
print("%2) {\n%3c = ");
|
||||
} else
|
||||
}
|
||||
else
|
||||
print("%2{%1/* %R */\n%3c = ", r);
|
||||
emitcost(r->pattern->left, "l");
|
||||
break;
|
||||
case 2:
|
||||
if (r->pattern->nterms > 1) {
|
||||
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
|
||||
}
|
||||
else
|
||||
print("%2{%1/* %R */\n%3c = ", r);
|
||||
emitcost(r->pattern->left, "l");
|
||||
emitcost(r->pattern->right, "r");
|
||||
break;
|
||||
default: assert(0);
|
||||
default:
|
||||
assert(0);
|
||||
}
|
||||
print("%d;\n", r->cost);
|
||||
emitrecord("\t\t\t", r, 0);
|
||||
|
@ -389,7 +453,8 @@ static void emitcase(Term p, int ntnumber) {
|
|||
}
|
||||
|
||||
/* emitclosure - emit the closure functions */
|
||||
static void emitclosure(Nonterm nts) {
|
||||
static void emitclosure(Nonterm nts)
|
||||
{
|
||||
Nonterm p;
|
||||
|
||||
for (p = nts; p; p = p->link)
|
||||
|
@ -397,7 +462,8 @@ static void emitclosure(Nonterm nts) {
|
|||
print("static void %Pclosure_%S(struct %Pstate *, int);\n", p);
|
||||
print("\n");
|
||||
for (p = nts; p; p = p->link)
|
||||
if (p->chain) {
|
||||
if (p->chain)
|
||||
{
|
||||
Rule r;
|
||||
print("static void %Pclosure_%S(struct %Pstate *p, int c) {\n", p);
|
||||
for (r = p->chain; r; r = r->chain)
|
||||
|
@ -407,26 +473,31 @@ static void emitclosure(Nonterm nts) {
|
|||
}
|
||||
|
||||
/* emitcost - emit cost computation for tree t */
|
||||
static void emitcost(Tree t, char *v) {
|
||||
static void emitcost(Tree t, char* v)
|
||||
{
|
||||
Nonterm p = t->op;
|
||||
|
||||
if (p->kind == TERM) {
|
||||
if (p->kind == TERM)
|
||||
{
|
||||
if (t->left)
|
||||
emitcost(t->left, stringf("%s->left", v));
|
||||
if (t->right)
|
||||
emitcost(t->right, stringf("%s->right", v));
|
||||
} else
|
||||
}
|
||||
else
|
||||
print("%s->cost[%P%S_NT] + ", v, p);
|
||||
}
|
||||
|
||||
/* emitdefs - emit non-terminal defines and data structures */
|
||||
static void emitdefs(Nonterm nts, int ntnumber) {
|
||||
static void emitdefs(Nonterm nts, int ntnumber)
|
||||
{
|
||||
Nonterm p;
|
||||
|
||||
for (p = nts; p; p = p->link)
|
||||
print("#define %P%S_NT %d\n", p, p->number);
|
||||
print("int %Pmax_nt = %d;\n\n", ntnumber);
|
||||
if (Iflag) {
|
||||
if (Iflag)
|
||||
{
|
||||
print("char *%Pntname[] = {\n%10,\n");
|
||||
for (p = nts; p; p = p->link)
|
||||
print("%1\"%S\",\n", p);
|
||||
|
@ -435,7 +506,8 @@ static void emitdefs(Nonterm nts, int ntnumber) {
|
|||
}
|
||||
|
||||
/* emitfuncs - emit functions to access node fields */
|
||||
static void emitfuncs(void) {
|
||||
static void emitfuncs(void)
|
||||
{
|
||||
print("int %Pop_label(NODEPTR_TYPE p) {\n"
|
||||
"%1%Passert(p, PANIC(\"NULL tree in %Pop_label\\n\"));\n"
|
||||
"%1return OP_LABEL(p);\n}\n\n");
|
||||
|
@ -450,7 +522,8 @@ static void emitfuncs(void) {
|
|||
}
|
||||
|
||||
/* emitheader - emit initial definitions */
|
||||
static void emitheader(void) {
|
||||
static void emitheader(void)
|
||||
{
|
||||
print("#include <limits.h>\n#include <stdlib.h>\n");
|
||||
print("#ifndef STATE_TYPE\n#define STATE_TYPE int\n#endif\n");
|
||||
print("#ifndef ALLOC\n#define ALLOC(n) malloc(n)\n#endif\n"
|
||||
|
@ -460,13 +533,17 @@ static void emitheader(void) {
|
|||
}
|
||||
|
||||
/* computekids - compute paths to kids in tree t */
|
||||
static char *computekids(Tree t, char *v, char *bp, int *ip) {
|
||||
static char* computekids(Tree t, char* v, char* bp, int* ip)
|
||||
{
|
||||
Term p = t->op;
|
||||
|
||||
if (p->kind == NONTERM) {
|
||||
if (p->kind == NONTERM)
|
||||
{
|
||||
sprintf(bp, "\t\tkids[%d] = %s;\n", (*ip)++, v);
|
||||
bp += strlen(bp);
|
||||
} else if (p->arity > 0) {
|
||||
}
|
||||
else if (p->arity > 0)
|
||||
{
|
||||
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);
|
||||
|
@ -475,12 +552,14 @@ static char *computekids(Tree t, char *v, char *bp, int *ip) {
|
|||
}
|
||||
|
||||
/* emitkids - emit burm_kids */
|
||||
static void emitkids(Rule rules, int nrules) {
|
||||
static void emitkids(Rule rules, int nrules)
|
||||
{
|
||||
int i;
|
||||
Rule r, * rc = alloc((nrules + 1) * sizeof *rc);
|
||||
char** str = alloc((nrules + 1) * sizeof *str);
|
||||
|
||||
for (i = 0, r = rules; r; r = r->link) {
|
||||
for (i = 0, r = rules; r; r = r->link)
|
||||
{
|
||||
int j = 0;
|
||||
char buf[1024], * bp = buf;
|
||||
*computekids(r->pattern, "p", bp, &j) = 0;
|
||||
|
@ -495,7 +574,8 @@ static void emitkids(Rule rules, int nrules) {
|
|||
"%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 (i = 0; r = rc[i]; i++)
|
||||
{
|
||||
for (; r; r = r->kids)
|
||||
print("%1case %d: /* %R */\n", r->ern, r);
|
||||
print("%s%2break;\n", str[i]);
|
||||
|
@ -504,7 +584,8 @@ static void emitkids(Rule rules, int nrules) {
|
|||
}
|
||||
|
||||
/* emitlabel - emit the labelling functions */
|
||||
static void emitlabel(Nonterm start) {
|
||||
static void emitlabel(Nonterm start)
|
||||
{
|
||||
print("static void %Plabel1(NODEPTR_TYPE p) {\n"
|
||||
"%1%Passert(p, PANIC(\"NULL tree in %Plabel\\n\"));\n"
|
||||
"%1switch (%Parity[OP_LABEL(p)]) {\n"
|
||||
|
@ -526,15 +607,18 @@ static void emitlabel(Nonterm start) {
|
|||
print(
|
||||
"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);
|
||||
"}\n\n",
|
||||
start);
|
||||
}
|
||||
|
||||
/* closure - fill in cost & rule with results of chain rules w/p as rhs */
|
||||
static void closure(int cost[], Rule rule[], Nonterm p, int c) {
|
||||
static void closure(int cost[], Rule rule[], Nonterm p, int c)
|
||||
{
|
||||
Rule r;
|
||||
|
||||
for (r = p->chain; r; r = r->chain)
|
||||
if (c + r->cost < cost[r->lhs->number]) {
|
||||
if (c + r->cost < cost[r->lhs->number])
|
||||
{
|
||||
cost[r->lhs->number] = c + r->cost;
|
||||
rule[r->lhs->number] = r;
|
||||
closure(cost, rule, r->lhs, c + r->cost);
|
||||
|
@ -542,22 +626,26 @@ static void closure(int cost[], Rule rule[], Nonterm p, int c) {
|
|||
}
|
||||
|
||||
/* emitleaf - emit state code for a leaf */
|
||||
static void emitleaf(Term p, int ntnumber) {
|
||||
static void emitleaf(Term p, int ntnumber)
|
||||
{
|
||||
int i;
|
||||
Rule r;
|
||||
static int* cost;
|
||||
static Rule* rule;
|
||||
|
||||
if (cost == NULL) {
|
||||
if (cost == NULL)
|
||||
{
|
||||
cost = alloc((ntnumber + 1) * sizeof *cost);
|
||||
rule = alloc((ntnumber + 1) * sizeof *rule);
|
||||
}
|
||||
for (i = 0; i <= ntnumber; i++) {
|
||||
for (i = 0; i <= ntnumber; i++)
|
||||
{
|
||||
cost[i] = maxcost;
|
||||
rule[i] = NULL;
|
||||
}
|
||||
for (r = p->rules; r; r = r->next)
|
||||
if (r->pattern->left == NULL && r->pattern->right == NULL) {
|
||||
if (r->pattern->left == NULL && r->pattern->right == NULL)
|
||||
{
|
||||
cost[r->lhs->number] = r->cost;
|
||||
rule[r->lhs->number] = r;
|
||||
closure(cost, rule, r->lhs, r->cost);
|
||||
|
@ -578,37 +666,45 @@ static void emitleaf(Term p, int ntnumber) {
|
|||
}
|
||||
|
||||
/* computents - fill in bp with burm_nts vector for tree t */
|
||||
static char *computents(Tree t, char *bp) {
|
||||
if (t) {
|
||||
static char* computents(Tree t, char* bp)
|
||||
{
|
||||
if (t)
|
||||
{
|
||||
Nonterm p = t->op;
|
||||
if (p->kind == NONTERM) {
|
||||
if (p->kind == NONTERM)
|
||||
{
|
||||
sprintf(bp, "%s_%s_NT, ", prefix, p->name);
|
||||
bp += strlen(bp);
|
||||
} else
|
||||
}
|
||||
else
|
||||
bp = computents(t->right, computents(t->left, bp));
|
||||
}
|
||||
return bp;
|
||||
}
|
||||
|
||||
/* emitnts - emit burm_nts ragged array */
|
||||
static void emitnts(Rule rules, int nrules) {
|
||||
static void emitnts(Rule rules, int nrules)
|
||||
{
|
||||
Rule r;
|
||||
int i, j, * nts = alloc(nrules * sizeof *nts);
|
||||
char** str = alloc(nrules * sizeof *str);
|
||||
|
||||
for (i = 0, r = rules; r; r = r->link) {
|
||||
for (i = 0, r = rules; r; r = r->link)
|
||||
{
|
||||
char buf[1024];
|
||||
*computents(r->pattern, buf) = 0;
|
||||
for (j = 0; str[j] && strcmp(str[j], buf); j++)
|
||||
;
|
||||
if (str[j] == NULL) {
|
||||
if (str[j] == NULL)
|
||||
{
|
||||
print("static short %Pnts_%d[] = { %s0 };\n", j, buf);
|
||||
str[j] = strcpy(alloc(strlen(buf) + 1), buf);
|
||||
}
|
||||
nts[i++] = j;
|
||||
}
|
||||
print("\nshort *%Pnts[] = {\n");
|
||||
for (i = j = 0, r = rules; r; r = r->link) {
|
||||
for (i = j = 0, r = rules; r; r = r->link)
|
||||
{
|
||||
for (; j < r->ern; j++)
|
||||
print("%10,%1/* %d */\n", j);
|
||||
print("%1%Pnts_%d,%1/* %d */\n", nts[i++], j++);
|
||||
|
@ -617,7 +713,8 @@ static void emitnts(Rule rules, int nrules) {
|
|||
}
|
||||
|
||||
/* emitrecord - emit code that tests for a winning match of rule r */
|
||||
static void emitrecord(char *pre, Rule r, int cost) {
|
||||
static void emitrecord(char* pre, Rule r, int cost)
|
||||
{
|
||||
print("%sif (", pre);
|
||||
if (Tflag)
|
||||
print("%Ptrace(%Pnp, %d, c + %d, p->cost[%P%S_NT]), ",
|
||||
|
@ -632,10 +729,12 @@ static void emitrecord(char *pre, Rule r, int cost) {
|
|||
}
|
||||
|
||||
/* emitrule - emit decoding vectors and burm_rule */
|
||||
static void emitrule(Nonterm nts) {
|
||||
static void emitrule(Nonterm nts)
|
||||
{
|
||||
Nonterm p;
|
||||
|
||||
for (p = nts; p; p = p->link) {
|
||||
for (p = nts; p; p = p->link)
|
||||
{
|
||||
Rule r;
|
||||
print("static short %Pdecode_%S[] = {\n%10,\n", p);
|
||||
for (r = p->rules; r; r = r->decode)
|
||||
|
@ -644,15 +743,18 @@ static void emitrule(Nonterm nts) {
|
|||
}
|
||||
print("int %Prule(STATE_TYPE state, int goalnt) {\n"
|
||||
"%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);
|
||||
"%1if (!state)\n%2return 0;\n%1switch (goalnt) {\n",
|
||||
ntnumber);
|
||||
for (p = nts; p; p = p->link)
|
||||
print("%1case %P%S_NT:"
|
||||
"%1return %Pdecode_%S[((struct %Pstate *)state)->rule.%P%S];\n", p, p, p);
|
||||
"%1return %Pdecode_%S[((struct %Pstate *)state)->rule.%P%S];\n",
|
||||
p, p, p);
|
||||
print("%1default:\n%2%Passert(0, PANIC(\"Bad goal nonterminal %%d in %Prule\\n\", goalnt));\n%1}\n%1return 0;\n}\n\n");
|
||||
}
|
||||
|
||||
/* emitstate - emit state function */
|
||||
static void emitstate(Term terms, Nonterm start, int ntnumber) {
|
||||
static void emitstate(Term terms, Nonterm start, int ntnumber)
|
||||
{
|
||||
int i;
|
||||
Term p;
|
||||
|
||||
|
@ -663,7 +765,8 @@ static void emitstate(Term terms, Nonterm start, int ntnumber) {
|
|||
print("if (%Parity[op] > 0) ");
|
||||
print("{\n%2p = ALLOC(sizeof *p);\n"
|
||||
"%2%Passert(p, PANIC(\"ALLOC returned NULL in %Pstate\\n\"));\n"
|
||||
"%2p->op = op;\n%2p->left = l;\n%2p->right = r;\n%2p->rule.%P%S = 0;\n", start);
|
||||
"%2p->op = op;\n%2p->left = l;\n%2p->right = r;\n%2p->rule.%P%S = 0;\n",
|
||||
start);
|
||||
for (i = 1; i <= ntnumber; i++)
|
||||
print("%2p->cost[%d] =\n", i);
|
||||
print("%3%d;\n%1}\n%1switch (op) {\n", maxcost);
|
||||
|
@ -675,18 +778,21 @@ static void emitstate(Term terms, Nonterm start, int ntnumber) {
|
|||
}
|
||||
|
||||
/* emitstring - emit array of rules and costs */
|
||||
static void emitstring(Rule rules) {
|
||||
static void emitstring(Rule rules)
|
||||
{
|
||||
Rule r;
|
||||
int k;
|
||||
|
||||
print("short %Pcost[][4] = {\n");
|
||||
for (k = 0, r = rules; r; r = r->link) {
|
||||
for (k = 0, r = rules; r; r = r->link)
|
||||
{
|
||||
for (; k < r->ern; k++)
|
||||
print("%1{ 0 },%1/* %d */\n", k);
|
||||
print("%1{ %d },%1/* %d = %R */\n", r->cost, k++, r);
|
||||
}
|
||||
print("};\n\nchar *%Pstring[] = {\n");
|
||||
for (k = 0, r = rules; r; r = r->link) {
|
||||
for (k = 0, r = rules; r; r = r->link)
|
||||
{
|
||||
for (; k < r->ern; k++)
|
||||
print("%1/* %d */%10,\n", k);
|
||||
print("%1/* %d */%1\"%R\",\n", k++, r);
|
||||
|
@ -695,10 +801,13 @@ static void emitstring(Rule rules) {
|
|||
}
|
||||
|
||||
/* emitstruct - emit the definition of the state structure */
|
||||
static void emitstruct(Nonterm nts, int ntnumber) {
|
||||
static void emitstruct(Nonterm nts, int ntnumber)
|
||||
{
|
||||
print("struct %Pstate {\n%1int op;\n%1struct %Pstate *left, *right;\n"
|
||||
"%1short cost[%d];\n%1struct {\n", ntnumber + 1);
|
||||
for ( ; nts; nts = nts->link) {
|
||||
"%1short cost[%d];\n%1struct {\n",
|
||||
ntnumber + 1);
|
||||
for (; nts; nts = nts->link)
|
||||
{
|
||||
int n = 1, m = nts->lhscount;
|
||||
while (m >>= 1)
|
||||
n++;
|
||||
|
@ -708,20 +817,24 @@ static void emitstruct(Nonterm nts, int ntnumber) {
|
|||
}
|
||||
|
||||
/* emitterms - emit terminal data structures */
|
||||
static void emitterms(Term terms) {
|
||||
static void emitterms(Term terms)
|
||||
{
|
||||
Term p;
|
||||
int k;
|
||||
|
||||
print("char %Parity[] = {\n");
|
||||
for (k = 0, p = terms; p; p = p->link) {
|
||||
for (k = 0, p = terms; p; p = p->link)
|
||||
{
|
||||
for (; k < p->esn; k++)
|
||||
print("%10,%1/* %d */\n", k);
|
||||
print("%1%d,%1/* %d=%S */\n", p->arity < 0 ? 0 : p->arity, k++, p);
|
||||
}
|
||||
print("};\n\n");
|
||||
if (Iflag) {
|
||||
if (Iflag)
|
||||
{
|
||||
print("char *%Popname[] = {\n");
|
||||
for (k = 0, p = terms; p; p = p->link) {
|
||||
for (k = 0, p = terms; p; p = p->link)
|
||||
{
|
||||
for (; k < p->esn; k++)
|
||||
print("%1/* %d */%10,\n", k);
|
||||
print("%1/* %d */%1\"%S\",\n", k++, p);
|
||||
|
@ -731,10 +844,12 @@ static void emitterms(Term terms) {
|
|||
}
|
||||
|
||||
/* emittest - emit clause for testing a match */
|
||||
static void emittest(Tree t, char *v, char *suffix) {
|
||||
static void emittest(Tree t, char* v, char* suffix)
|
||||
{
|
||||
Term p = t->op;
|
||||
|
||||
if (p->kind == TERM) {
|
||||
if (p->kind == TERM)
|
||||
{
|
||||
print("%3%s->op == %d%s/* %S */\n", v, p->esn,
|
||||
t->nterms > 1 ? " && " : suffix, p);
|
||||
if (t->left)
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
/* iburg.c: */
|
||||
extern void* alloc(int nbytes);
|
||||
|
||||
typedef enum { TERM=1, NONTERM } Kind;
|
||||
typedef enum
|
||||
{
|
||||
TERM = 1,
|
||||
NONTERM
|
||||
} Kind;
|
||||
typedef struct rule* Rule;
|
||||
typedef struct term* Term;
|
||||
struct term { /* terminals: */
|
||||
struct term
|
||||
{ /* terminals: */
|
||||
char* name; /* terminal name */
|
||||
Kind kind; /* TERM */
|
||||
int esn; /* external symbol number */
|
||||
|
@ -18,7 +23,8 @@ struct term { /* terminals: */
|
|||
};
|
||||
|
||||
typedef struct nonterm* Nonterm;
|
||||
struct nonterm { /* non-terminals: */
|
||||
struct nonterm
|
||||
{ /* non-terminals: */
|
||||
char* name; /* non-terminal name */
|
||||
Kind kind; /* NONTERM */
|
||||
int number; /* identifying number */
|
||||
|
@ -32,14 +38,16 @@ extern Nonterm nonterm(char *id);
|
|||
extern Term term(char* id, int esn);
|
||||
|
||||
typedef struct tree* Tree;
|
||||
struct tree { /* tree patterns: */
|
||||
struct tree
|
||||
{ /* tree patterns: */
|
||||
void* op; /* a terminal or non-terminal */
|
||||
Tree left, right; /* operands */
|
||||
int nterms; /* number of terminal nodes in this tree */
|
||||
};
|
||||
extern Tree tree(char* op, Tree left, Tree right);
|
||||
|
||||
struct rule { /* rules: */
|
||||
struct rule
|
||||
{ /* rules: */
|
||||
Nonterm lhs; /* lefthand side non-terminal */
|
||||
Tree pattern; /* rule pattern */
|
||||
int ern; /* external rule number */
|
||||
|
|
Loading…
Reference in a new issue