Lots of exploratory new grammar for instruction definitions and string and

fragment emission (none of which is hooked up to anything yet).
This commit is contained in:
David Given 2016-09-24 13:08:17 +02:00
parent 960259f0b0
commit d96ceea08a
3 changed files with 65 additions and 21 deletions

View file

@ -23,17 +23,19 @@ static int nextern = 0;
%term PPERCENT
%term PATTERNS
%term PAT
%term WHEN
%term EMIT
%term FRAGMENT
%term COST
%term INS
%term OUTS
%token <n> INT
%token <string> ID
%token <string> CFRAGMENT
%token <string> STRING
%type <n> cost
%type <string> label
%type <string> lhs
%type <stringlist> stringlist
%type <stringlist> when
@ -73,7 +75,7 @@ patterns
;
pattern
: lhs '=' rhs when cost { rule($1, $3, nextern++, $4, $5); }
: lhs '=' rhs when ins outs emits cost { rule($1, $3, nextern++, $4, $8); }
;
lhs
@ -101,6 +103,40 @@ stringlist
| CFRAGMENT stringlist { $$ = pushstring($1, $2); }
;
ins
: /* nothing */
| INS inslist
;
inslist
: inslist ',' in
| in
;
in
: ID ':' ID
;
outs
: /* nothing */
| OUTS outslist
;
outslist
: outslist ',' out
| out
;
out
: ID ':' ID
;
emits
: /* nothing */
| EMIT STRING
| FRAGMENT STRING
;
cost
: /* lambda */ { $$ = 0; }
| COST INT {

View file

@ -10,7 +10,12 @@ static void dumpCover(NODEPTR_TYPE p, int goalnt, int indent) {
fprintf(stderr, "%s\n", burm_string[eruleno]);
burm_kids(p, eruleno, kids);
for (i = 0; nts[i]; i++)
{
if (kids[i])
dumpCover(kids[i], nts[i], indent + 1);
else
fprintf(stderr, "failed!\n");
}
#endif
}

View file

@ -55,11 +55,14 @@ static int braces = 0;
"%start" return START;
"PATTERNS" return PATTERNS;
"pat" return PAT;
"when" return WHEN;
"ins" return INS;
"outs" return OUTS;
"emit" return EMIT;
"fragment" return FRAGMENT;
"cost" return COST;
\"[^"\n]*\" { yylval.string = strdup(yytext); return STRING; }
[A-Za-z_][A-Za-z0-9_]* { yylval.string = strdup(yytext); return ID; }
[0-9]+ { yylval.n = atoi(yytext); return INT; }
[ \t\r\n]* ;