ack/util/LLgen/src/LLgen.g

640 lines
13 KiB
Plaintext
Raw Normal View History

1985-10-03 10:35:55 +00:00
/*
1987-03-10 01:26:51 +00:00
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
1985-10-03 10:35:55 +00:00
*
*/
/*
* L L G E N
*
* An Extended LL(1) Parser Generator
*
* Author : Ceriel J.H. Jacobs
*/
/*
* LLgen.g
* Defines the grammar of LLgen.
* Some routines that build the internal structure are also included
1985-10-03 10:35:55 +00:00
*/
{
# include "types.h"
# include "io.h"
# include "extern.h"
# include "assert.h"
# include "cclass.h"
1985-10-03 10:35:55 +00:00
# ifndef NORCSID
static string rcsid = "$Header$";
1985-10-03 10:35:55 +00:00
# endif
1987-05-12 18:23:09 +00:00
p_mem alloc(), ralloc();
1985-10-03 10:35:55 +00:00
string store();
p_gram search();
1985-10-03 10:35:55 +00:00
static int nparams; /* parameter count for nonterminals */
static int acount; /* count #of global actions */
static p_order order,
maxorder;
1987-05-12 18:23:09 +00:00
static p_term t_list;
static int t_cnt;
1988-07-05 14:05:24 +00:00
static p_gram alt_table;
static int n_alts;
static int max_alts;
1988-07-05 11:51:47 +00:00
#define ALTINCR 32
1988-07-05 14:05:24 +00:00
static p_gram rule_table;
static int n_rules;
static int max_rules;
#define RULEINCR 32
1985-10-03 10:35:55 +00:00
/* Here are defined : */
STATIC p_order neworder();
1985-10-03 10:35:55 +00:00
STATIC copyact();
STATIC mkalt();
STATIC mkterm();
1985-10-03 10:35:55 +00:00
STATIC p_gram copyrule();
/* and of course LLparse() */
STATIC p_order
neworder(index) {
register p_order po;
if ((po = order) == maxorder) {
po = (p_order) alloc(20 * sizeof(*order));
maxorder = po + 20;
}
order = po + 1;
po->o_next = 0;
po->o_index = index;
if (porder) {
porder->o_next = po;
}
else sorder = po;
return po;
}
1988-07-05 14:05:24 +00:00
1988-07-05 11:51:47 +00:00
p_init()
{
1988-07-05 14:05:24 +00:00
alt_table = (p_gram )alloc(ALTINCR*sizeof(t_gram));
n_alts = 0;
max_alts = ALTINCR;
rule_table = (p_gram )alloc(RULEINCR*sizeof(t_gram));
n_rules = 0;
max_rules = RULEINCR;
1988-07-05 11:51:47 +00:00
}
1985-10-03 10:35:55 +00:00
}
%start LLparse, spec;
1988-07-05 11:51:47 +00:00
spec : { acount = 0; p_init(); }
1985-10-03 10:35:55 +00:00
[ %persistent def ]*
{ /*
* Put an endmarker in temporary file
*/
putc('\0', fact);
putc('\0', fact);
1988-07-05 11:51:47 +00:00
free((p_mem) rule_table);
free((p_mem) alt_table);
1985-10-03 10:35:55 +00:00
}
;
def { register string p; }
1988-07-05 14:05:24 +00:00
: rule
1985-10-03 10:35:55 +00:00
/*
* A grammar rule
*/
| C_TOKEN listel [ ',' listel ]* ';'
/*
* A token declaration
*/
| C_START C_IDENT
1988-07-05 14:05:24 +00:00
{ p = store(lextoken.t_string); }
1985-10-03 10:35:55 +00:00
',' C_IDENT ';'
/*
* A start symbol declaration
*/
{ /*
* Put the declaration in the list
* of start symbols
*/
register p_gram temp;
1985-10-03 10:35:55 +00:00
register p_start ff;
temp = search(NONTERM,lextoken.t_string,BOTH);
ff = (p_start) alloc(sizeof(t_start));
1987-05-12 18:23:09 +00:00
ff->ff_nont = g_getcont(temp);
1985-10-03 10:35:55 +00:00
ff->ff_name = p;
ff->ff_next = start;
start = ff;
}
| C_LEXICAL C_IDENT
/*
* Declaration of a name for the lexical analyser.
* May appear only once
*/
1985-10-03 10:35:55 +00:00
{ if (!lexical) {
lexical = store(lextoken.t_string);
}
else error(linecount,"Duplicate %%lexical");
1985-10-03 10:35:55 +00:00
}
';'
| C_ONERROR C_IDENT
{ if (! onerror) {
onerror = store(lextoken.t_string);
}
else error(linecount,"Duplicate %%onerror");
}
';'
1985-10-03 10:35:55 +00:00
| action(0) { acount++; }
/*
* A global C-declaration
*/
| firsts
/*
* declarations for macros
*/
;
listel : C_IDENT { search(TERMINAL,lextoken.t_string,ENTERING); }
;
rule { register p_nont p;
p_gram rr;
register p_gram temp;
}
1985-10-03 10:35:55 +00:00
: /*
* grammar for a production rule
*/
C_IDENT { temp = search(NONTERM,lextoken.t_string,BOTH);
1988-07-05 14:05:24 +00:00
p = &nonterms[g_getcont(temp)];
1985-10-03 10:35:55 +00:00
if (p->n_rule) {
error(linecount,
1987-06-03 19:05:14 +00:00
"Nonterminal %s already defined", lextoken.t_string);
1985-10-03 10:35:55 +00:00
}
/*
* Remember the order in which the nonterminals
* were defined. Code must be generated in that
* order to keep track with the actions on the
* temporary file
*/
porder = neworder(p - nonterms);
1985-10-03 10:35:55 +00:00
p->n_count = acount;
acount = 0;
p->n_lineno = linecount;
1988-07-05 14:05:24 +00:00
}
1985-10-03 10:35:55 +00:00
[ params(2) { p->n_flags |= PARAMS;
if (nparams > 15) {
1985-10-03 10:35:55 +00:00
error(linecount,"Too many parameters");
}
else setntparams(p,nparams);
1985-10-03 10:35:55 +00:00
}
]?
[ action(0) { p->n_flags |= LOCALS; }
]?
':' productions(&rr) ';'
/*
* Do not use p->n_rule now! The nonterms array
* might have been re-allocated.
*/
1988-07-05 14:05:24 +00:00
{ nonterms[g_getcont(temp)].n_rule = rr;}
1985-10-03 10:35:55 +00:00
;
action(int n;)
/*
* The parameter n is non-zero when the opening and closing
* bracket must be copied along with the action
*/
: '{' { copyact('{','}',n,0); }
'}'
;
productions(p_gram *p;)
/*
* One or more alternatives
*/
{ p_gram prod;
int conflres = 0;
int t = 0;
int haddefault = 0;
1988-07-05 14:05:24 +00:00
int altcnt = 0;
1985-10-03 10:35:55 +00:00
int o_lc, n_lc;
} :
{ o_lc = linecount; }
1985-10-03 10:35:55 +00:00
simpleproduction(p,&conflres)
{ if (conflres & DEF) haddefault = 1; }
1988-07-05 14:05:24 +00:00
[
[ '|' { n_lc = linecount; }
simpleproduction(&prod,&t)
1988-07-05 14:05:24 +00:00
{ if (n_alts >= max_alts-2) {
alt_table = (p_gram ) ralloc(
(p_mem) alt_table,
(max_alts+=ALTINCR)*sizeof(t_gram));
}
if (t & DEF) {
if (haddefault) {
error(n_lc,
"More than one %%default in alternation");
}
haddefault = 1;
}
1988-07-05 11:51:47 +00:00
mkalt(*p,conflres,o_lc,&alt_table[n_alts++]);
1988-07-05 14:05:24 +00:00
altcnt++;
1985-10-03 10:35:55 +00:00
o_lc = n_lc;
conflres = t;
t = 0;
*p = prod;
}
]+ { if (conflres & ~DEF) {
1985-10-03 10:35:55 +00:00
error(n_lc,
"Resolver on last alternative not allowed");
1985-10-03 10:35:55 +00:00
}
1988-07-05 14:05:24 +00:00
mkalt(*p,conflres,n_lc,&alt_table[n_alts++]);
altcnt++;
g_settype((&alt_table[n_alts]),EORULE);
*p = copyrule(&alt_table[n_alts-altcnt],altcnt+1);
}
|
{ if (conflres & ~DEF) {
error(o_lc,
"No alternation conflict resolver allowed here");
}
/*
if (conflres & DEF) {
error(o_lc,
"No %%default allowed here");
}
*/
}
]
1988-07-05 11:51:47 +00:00
{ n_alts -= altcnt; }
1985-10-03 10:35:55 +00:00
;
{
STATIC
mkalt(prod,condition,lc,res) p_gram prod; register p_gram res; {
1985-10-03 10:35:55 +00:00
/*
* Create an alternation and initialise it.
1985-10-03 10:35:55 +00:00
*/
register p_link l;
1987-05-12 18:23:09 +00:00
static p_link list;
static int cnt;
1985-10-03 10:35:55 +00:00
1987-05-12 18:23:09 +00:00
if (! cnt) {
cnt = 50;
list = (p_link) alloc(50 * sizeof(t_link));
}
cnt--;
l = list++;
1985-10-03 10:35:55 +00:00
l->l_rule = prod;
l->l_flag = condition;
1987-05-12 18:23:09 +00:00
g_setlink(res,l);
g_settype(res,ALTERNATION);
res->g_lineno = lc;
1987-05-12 18:23:09 +00:00
nalts++;
1985-10-03 10:35:55 +00:00
}
}
simpleproduction(p_gram *p; register int *conflres;)
1988-07-05 11:51:47 +00:00
{ t_gram elem;
int elmcnt = 0;
int cnt, kind;
1987-05-12 18:23:09 +00:00
int termdeleted = 0;
1985-10-03 10:35:55 +00:00
} :
[ C_DEFAULT { *conflres = DEF; }
]?
1985-10-03 10:35:55 +00:00
[
/*
* Optional conflict reslover
*/
1988-07-05 14:05:24 +00:00
C_IF expr { *conflres |= COND; }
1985-10-03 10:35:55 +00:00
| C_PREFER { *conflres |= PREFERING; }
| C_AVOID { *conflres |= AVOIDING; }
]?
[ %persistent elem(&elem)
1988-07-05 14:05:24 +00:00
{ if (n_rules >= max_rules-2) {
rule_table = (p_gram) ralloc(
(p_mem) rule_table,
(max_rules+=RULEINCR)*sizeof(t_gram));
1985-10-03 10:35:55 +00:00
}
kind = FIXED;
cnt = 0;
1985-10-03 10:35:55 +00:00
}
[ repeats(&kind, &cnt)
1985-10-03 10:35:55 +00:00
{ if (g_gettype(&elem) != TERM) {
1988-07-05 11:51:47 +00:00
rule_table[n_rules] = elem;
1988-07-05 14:05:24 +00:00
g_settype((&rule_table[n_rules+1]),EORULE);
mkterm(copyrule(&rule_table[n_rules],2),
0,
1988-07-05 11:51:47 +00:00
elem.g_lineno,
&elem);
1985-10-03 10:35:55 +00:00
}
}
1987-05-12 18:23:09 +00:00
|
{ if (g_gettype(&elem) == TERM) {
register p_term q = g_getterm(&elem);
if (! (q->t_flags & RESOLVER) &&
g_gettype(q->t_rule) != ALTERNATION &&
1987-05-12 18:23:09 +00:00
g_gettype(q->t_rule) != EORULE) {
while (g_gettype(q->t_rule) != EORULE) {
1988-07-05 11:51:47 +00:00
rule_table[n_rules++] = *q->t_rule++;
1988-07-05 14:05:24 +00:00
elmcnt++;
if (n_rules >= max_rules-2) {
rule_table = (p_gram) ralloc(
(p_mem) rule_table,
(max_rules+=RULEINCR)*sizeof(t_gram));
}
1987-05-12 18:23:09 +00:00
}
elem = *--(q->t_rule);
1988-07-05 11:51:47 +00:00
n_rules--;
elmcnt--;
1987-05-12 18:23:09 +00:00
if (q == t_list - 1) {
1988-07-05 14:05:24 +00:00
t_list--;
nterms--;
1987-05-12 18:23:09 +00:00
t_cnt++;
}
termdeleted = 1;
}
}
}
] { if (!termdeleted && g_gettype(&elem) == TERM) {
1985-10-03 10:35:55 +00:00
register p_term q;
1987-05-12 18:23:09 +00:00
q = g_getterm(&elem);
r_setkind(q,kind);
r_setnum(q,cnt);
if ((q->t_flags & RESOLVER) &&
(kind == PLUS || kind == FIXED)) {
1985-10-03 10:35:55 +00:00
error(linecount,
"%%while not allowed in this term");
1985-10-03 10:35:55 +00:00
}
/*
* A persistent fixed term is the same
* as a non-persistent fixed term.
* Should we complain?
if ((q->t_flags & PERSISTENT) &&
kind == FIXED) {
1985-10-03 10:35:55 +00:00
error(linecount,
1987-06-03 19:05:14 +00:00
"Illegal %%persistent");
1985-10-03 10:35:55 +00:00
}
*/
1985-10-03 10:35:55 +00:00
}
1987-06-03 19:05:14 +00:00
termdeleted = 0;
1988-07-05 11:51:47 +00:00
elmcnt++;
1988-07-05 14:05:24 +00:00
rule_table[n_rules++] = elem;
1985-10-03 10:35:55 +00:00
}
]* { register p_term q;
1988-07-05 14:05:24 +00:00
1988-07-05 11:51:47 +00:00
g_settype((&rule_table[n_rules]),EORULE);
1988-07-05 14:05:24 +00:00
*p = 0;
n_rules -= elmcnt;
if (g_gettype(&rule_table[n_rules]) == TERM &&
elmcnt == 1) {
q = g_getterm(&rule_table[n_rules]);
if (r_getkind(q) == FIXED &&
r_getnum(q) == 0) {
*p = q->t_rule;
}
}
if (!*p) *p = copyrule(&rule_table[n_rules],
elmcnt+1);
}
1985-10-03 10:35:55 +00:00
;
{
STATIC
1987-05-12 18:23:09 +00:00
mkterm(prod,flags,lc,result) p_gram prod; register p_gram result; {
1985-10-03 10:35:55 +00:00
/*
* Create a term, initialise it and return
* a grammar element containing it
1985-10-03 10:35:55 +00:00
*/
register p_term q;
1988-07-05 14:05:24 +00:00
1987-05-12 18:23:09 +00:00
if (! t_cnt) {
t_cnt = 50;
t_list = (p_term) alloc(50 * sizeof(t_term));
}
t_cnt--;
q = t_list++;
1985-10-03 10:35:55 +00:00
q->t_rule = prod;
q->t_contains = 0;
q->t_flags = flags;
g_settype(result,TERM);
1987-05-12 18:23:09 +00:00
g_setterm(result,q);
result->g_lineno = lc;
1987-05-12 18:23:09 +00:00
nterms++;
1985-10-03 10:35:55 +00:00
}
}
elem (register p_gram pres;)
1987-05-12 18:23:09 +00:00
{ register int t = 0;
1985-10-03 10:35:55 +00:00
p_gram p1;
int ln;
p_gram pe;
1985-10-03 10:35:55 +00:00
} :
'[' { ln = linecount; }
[ C_WHILE expr { t |= RESOLVER; }
]?
[ C_PERSISTENT { t |= PERSISTENT; }
]?
productions(&p1)
']' {
1988-07-05 14:05:24 +00:00
mkterm(p1,t,ln,pres);
1985-10-03 10:35:55 +00:00
}
|
C_IDENT { pe = search(UNKNOWN,lextoken.t_string,BOTH);
*pres = *pe;
1988-07-05 14:05:24 +00:00
}
[ params(0) { if (nparams > 14) {
1985-10-03 10:35:55 +00:00
error(linecount,"Too many parameters");
} else g_setnpar(pres,nparams+1);
if (g_gettype(pres) == TERMINAL) {
1985-10-03 10:35:55 +00:00
error(linecount,
"Terminal with parameters");
}
}
]?
| C_LITERAL { pe = search(LITERAL,lextoken.t_string,BOTH);
*pres = *pe;
}
| { g_settype(pres,ACTION);
pres->g_lineno = linecount;
1985-10-03 10:35:55 +00:00
}
action(1)
;
params(int n;)
: '(' { copyact('(',')',n,0); }
')'
;
expr : '(' { copyact('(',')',1,0); }
')'
;
repeats(int *kind, *cnt;) { int t1 = 0; } :
1985-10-03 10:35:55 +00:00
[
'?' { *kind = OPT; }
| [ '*' { *kind = STAR; }
| '+' { *kind = PLUS; }
1985-10-03 10:35:55 +00:00
]
number(&t1)?
{ if (t1 == 1) {
t1 = 0;
if (*kind == STAR) *kind = OPT;
if (*kind == PLUS) *kind = FIXED;
1985-10-03 10:35:55 +00:00
}
}
| number(&t1)
] { *cnt = t1; }
1985-10-03 10:35:55 +00:00
;
number(int *t;)
: C_NUMBER
{ *t = lextoken.t_num;
if (*t <= 0 || *t >= 8192) {
error(linecount,"Illegal number");
}
1988-07-05 14:05:24 +00:00
}
1985-10-03 10:35:55 +00:00
;
firsts { register string p; }
: C_FIRST C_IDENT
1988-07-05 14:05:24 +00:00
{ p = store(lextoken.t_string); }
1985-10-03 10:35:55 +00:00
',' C_IDENT ';'
{ /*
* Store this %first in the list belonging
* to this input file
*/
p_gram temp;
1985-10-03 10:35:55 +00:00
register p_first ff;
temp = search(NONTERM,lextoken.t_string,BOTH);
ff = (p_first) alloc(sizeof(t_first));
1987-05-12 18:23:09 +00:00
ff->ff_nont = g_getcont(temp);
1985-10-03 10:35:55 +00:00
ff->ff_name = p;
ff->ff_next = pfile->f_firsts;
pfile->f_firsts = ff;
}
;
{
STATIC
copyact(ch1,ch2,flag,level) char ch1,ch2; {
/*
* Copy an action to file f. Opening bracket is ch1, closing bracket
* is ch2.
* If flag = 1, copy opening and closing parameters too.
1988-07-05 14:05:24 +00:00
* If flag = 2, the copy is a parameter declaration copy.
1985-10-03 10:35:55 +00:00
* Give an error message if not ending on a ';'
*/
register FILE *f;
register ch; /* Current char */
register match; /* used to read strings */
int saved; /* save linecount */
int semicolon = 0;
f = fact;
if (!level) {
saved = linecount;
nparams = 0; /* count comma's */
putc('\0',f);
fprintf(f,"# line %d \"%s\"\n", linecount,f_input);
1985-10-03 10:35:55 +00:00
}
if (level || flag == 1) putc(ch1,f);
1985-10-03 10:35:55 +00:00
for (;;) {
ch = input();
if (ch == ch2) {
if (!level) unput(ch);
if (level || flag == 1) putc(ch,f);
if ((!level) && flag == 2 && !semicolon) {
1987-06-03 19:05:14 +00:00
error(linecount,"Missing ';'");
1985-10-03 10:35:55 +00:00
}
return;
}
if (c_class[ch] != ISSPA) semicolon = 0;
1985-10-03 10:35:55 +00:00
switch(ch) {
case ')':
case '}':
case ']':
error(linecount,"Parentheses mismatch");
break;
case '(':
copyact('(',')',flag,level+1);
continue;
case '{':
copyact('{','}',flag,level+1);
continue;
case '[':
copyact('[',']',flag,level+1);
continue;
case '/':
ch = input();
unput(ch);
if (ch == '*') {
skipcomment(1);
continue;
}
ch = '/';
1985-10-03 10:35:55 +00:00
break;
case ';':
semicolon = 1;
/* Fall through */
case ',':
if (!level) { /*
* Only ','s and ';'s on the
* outer level are counted
*/
nparams++;
}
break;
case '\'':
case '"' :
1988-07-05 14:05:24 +00:00
/*
* watch out for brackets in strings, they do not
1985-10-03 10:35:55 +00:00
* count !
*/
match = ch;
putc(ch,f);
while((ch = input())) {
if (ch == match) break;
if (ch == '\\') {
putc(ch,f);
ch = input();
}
if (ch == '\n') {
1987-06-03 19:05:14 +00:00
error(linecount,"Newline in string");
1985-10-03 10:35:55 +00:00
unput(match);
}
putc(ch,f);
}
if (ch == match) break;
/* Fall through */
case EOF :
if (!level) error(saved,"Action does not terminate");
return;
}
putc(ch,f);
}
}
STATIC p_gram
copyrule(p,length) register p_gram p; {
1985-10-03 10:35:55 +00:00
/*
* Returns a pointer to a grammar rule that was created in
* p. The space pointed to by p can now be reused
*/
register p_gram t;
p_gram rule;
t = (p_gram) alloc((unsigned) length * sizeof(t_gram));
rule = t;
while (length--) {
*t++ = *p++;
}
return rule;
}
}