1990-08-31 18:22:53 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
|
|
|
/* Command grammar */
|
|
|
|
{
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "ops.h"
|
|
|
|
#include "class.h"
|
|
|
|
#include "position.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "idf.h"
|
|
|
|
#include "symbol.h"
|
|
|
|
#include "tree.h"
|
1990-09-07 14:56:24 +00:00
|
|
|
#include "langdep.h"
|
|
|
|
#include "token.h"
|
1990-09-12 16:13:59 +00:00
|
|
|
#include "expr.h"
|
1990-08-31 18:22:53 +00:00
|
|
|
|
|
|
|
extern char *Salloc();
|
|
|
|
extern t_lineno currline;
|
|
|
|
extern FILE *db_in;
|
|
|
|
|
|
|
|
int errorgiven;
|
1990-09-07 14:56:24 +00:00
|
|
|
static int extended_charset = 0;
|
|
|
|
static int in_expression = 0;
|
1990-08-31 18:22:53 +00:00
|
|
|
jmp_buf jmpbuf;
|
|
|
|
|
|
|
|
static int init_del();
|
|
|
|
static int skip_to_eol();
|
|
|
|
|
1990-09-07 14:56:24 +00:00
|
|
|
struct token tok, aside;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-09-19 14:31:12 +00:00
|
|
|
#define binprio(op) ((*(currlang->binop_prio))(op))
|
|
|
|
#define unprio(op) ((*(currlang->unop_prio))(op))
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
%start Commands, commands;
|
|
|
|
|
|
|
|
%lexical LLlex;
|
|
|
|
|
|
|
|
commands
|
|
|
|
{ p_tree com, lastcom = 0;
|
|
|
|
}
|
|
|
|
:
|
|
|
|
{ if (! setjmp(jmpbuf)) {
|
|
|
|
init_del();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
skip_to_eol();
|
|
|
|
goto prmpt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[ %persistent command_line(&com)
|
|
|
|
{ if (com) {
|
|
|
|
if (errorgiven) {
|
|
|
|
freenode(com);
|
|
|
|
com = 0;
|
|
|
|
}
|
|
|
|
if (lastcom && !in_status(lastcom) &&
|
|
|
|
lastcom != run_command) {
|
|
|
|
freenode(lastcom);
|
|
|
|
lastcom = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (com) {
|
|
|
|
if (repeatable(com)) {
|
|
|
|
lastcom = com;
|
|
|
|
}
|
|
|
|
eval(com);
|
|
|
|
if (! repeatable(com) &&
|
|
|
|
! in_status(com) &&
|
|
|
|
com != run_command) {
|
|
|
|
freenode(com);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (lastcom && ! errorgiven) eval(lastcom);
|
|
|
|
}
|
|
|
|
[ '\n' { prmpt: prompt(); }
|
|
|
|
| ';'
|
|
|
|
] { errorgiven = 0; }
|
|
|
|
]*
|
|
|
|
{ signal_child(SIGKILL); }
|
|
|
|
;
|
|
|
|
|
|
|
|
command_line(p_tree *p;)
|
|
|
|
:
|
|
|
|
list_command(p)
|
|
|
|
| file_command(p)
|
|
|
|
| run_command(p)
|
|
|
|
| stop_command(p)
|
|
|
|
| when_command(p)
|
|
|
|
| continue_command(p)
|
|
|
|
| step_command(p)
|
|
|
|
| next_command(p)
|
|
|
|
| regs_command(p)
|
|
|
|
| WHERE { *p = mknode(OP_WHERE); }
|
|
|
|
| STATUS { *p = mknode(OP_STATUS); }
|
|
|
|
| DUMP { *p = mknode(OP_DUMP); }
|
|
|
|
| RESTORE INTEGER { *p = mknode(OP_RESTORE, tok.ival); }
|
|
|
|
| delete_command(p)
|
|
|
|
| print_command(p)
|
|
|
|
| trace_command(p)
|
1990-09-19 14:31:12 +00:00
|
|
|
| set_command(p)
|
1990-08-31 18:22:53 +00:00
|
|
|
| { *p = 0; }
|
|
|
|
;
|
|
|
|
|
|
|
|
list_command(p_tree *p;)
|
|
|
|
{ p_tree t1 = 0, t2 = 0; }
|
|
|
|
:
|
|
|
|
LIST
|
|
|
|
[
|
|
|
|
| lin_num(&t1)
|
|
|
|
[ ',' lin_num(&t2)
|
|
|
|
| { t2 = mknode(OP_INTEGER, t1->t_ival); }
|
|
|
|
]
|
|
|
|
] { *p = mknode(OP_LIST, t1, t2); }
|
|
|
|
;
|
|
|
|
|
|
|
|
file_command(p_tree *p;)
|
|
|
|
:
|
|
|
|
XFILE { extended_charset = 1; }
|
|
|
|
[ { *p = 0; }
|
|
|
|
| name(p) { (*p)->t_idf = str2idf((*p)->t_str, 0); }
|
|
|
|
] { *p = mknode(OP_FILE, *p);
|
|
|
|
extended_charset = 0;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
run_command(p_tree *p;)
|
|
|
|
:
|
|
|
|
RUN { extended_charset = 1; *p = 0; }
|
|
|
|
args(p) { *p = mknode(OP_RUN, *p);
|
|
|
|
extended_charset = 0;
|
|
|
|
freenode(run_command);
|
|
|
|
run_command = *p;
|
|
|
|
}
|
|
|
|
| RERUN { if (! run_command) {
|
|
|
|
error("no run command given yet");
|
|
|
|
}
|
|
|
|
else *p = run_command;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
stop_command(p_tree *p;)
|
|
|
|
{ p_tree whr = 0, cond = 0; }
|
|
|
|
:
|
|
|
|
STOP
|
|
|
|
where(&whr)?
|
|
|
|
condition(&cond)? { if (! whr && ! cond) {
|
|
|
|
error("no position or condition");
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
else *p = mknode(OP_STOP, whr, cond);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
trace_command(p_tree *p;)
|
|
|
|
{ p_tree whr = 0, cond = 0, exp = 0; }
|
|
|
|
:
|
|
|
|
TRACE
|
1990-09-07 14:56:24 +00:00
|
|
|
[ ON expression(&exp, 1) ]?
|
1990-08-31 18:22:53 +00:00
|
|
|
where(&whr)?
|
|
|
|
condition(&cond)? { *p = mknode(OP_TRACE, whr, cond, exp); }
|
|
|
|
;
|
|
|
|
|
|
|
|
continue_command(p_tree *p;)
|
|
|
|
{ long l; p_tree pos = 0; }
|
|
|
|
:
|
|
|
|
CONT
|
|
|
|
[ INTEGER { l = tok.ival; }
|
|
|
|
| { l = 1; }
|
|
|
|
]
|
|
|
|
position(&pos)?
|
|
|
|
{ *p = mknode(OP_CONT, mknode(OP_INTEGER, l), pos); }
|
|
|
|
;
|
|
|
|
|
|
|
|
when_command(p_tree *p;)
|
|
|
|
{ p_tree whr = 0, cond = 0; }
|
|
|
|
:
|
|
|
|
WHEN
|
|
|
|
where(&whr)?
|
|
|
|
condition(&cond)?
|
|
|
|
'{'
|
|
|
|
command_line(p)
|
|
|
|
[ ';' { *p = mknode(OP_LINK, *p, (p_tree) 0);
|
|
|
|
p = &((*p)->t_args[1]);
|
|
|
|
}
|
|
|
|
command_line(p)
|
|
|
|
]*
|
|
|
|
'}'
|
|
|
|
{ if (! whr && ! cond) {
|
|
|
|
error("no position or condition");
|
|
|
|
freenode(*p);
|
|
|
|
*p = 0;
|
|
|
|
}
|
|
|
|
else *p = mknode(OP_WHEN, whr, cond, *p);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
step_command(p_tree *p;)
|
|
|
|
{ long l; }
|
|
|
|
:
|
|
|
|
STEP
|
|
|
|
[ INTEGER { l = tok.ival; }
|
|
|
|
| { l = 1; }
|
|
|
|
] { *p = mknode(OP_STEP, l); }
|
|
|
|
;
|
|
|
|
|
|
|
|
next_command(p_tree *p;)
|
|
|
|
{ long l; }
|
|
|
|
:
|
|
|
|
NEXT
|
|
|
|
[ INTEGER { l = tok.ival; }
|
|
|
|
| { l = 1; }
|
|
|
|
] { *p = mknode(OP_NEXT, l); }
|
|
|
|
;
|
|
|
|
|
|
|
|
regs_command(p_tree *p;)
|
|
|
|
{ long l; }
|
|
|
|
:
|
|
|
|
REGS
|
|
|
|
[ INTEGER { l = tok.ival; }
|
|
|
|
| { l = 0; }
|
|
|
|
] { *p = mknode(OP_REGS, l); }
|
|
|
|
;
|
|
|
|
|
|
|
|
delete_command(p_tree *p;)
|
|
|
|
:
|
|
|
|
DELETE
|
|
|
|
INTEGER { *p = mknode(OP_DELETE, tok.ival); }
|
|
|
|
;
|
|
|
|
|
|
|
|
print_command(p_tree *p;)
|
|
|
|
:
|
1990-09-07 14:56:24 +00:00
|
|
|
PRINT expression(p, 1){ *p = mknode(OP_PRINT, *p);
|
1990-08-31 18:22:53 +00:00
|
|
|
p = &((*p)->t_args[0]);
|
|
|
|
}
|
|
|
|
[ ',' { *p = mknode(OP_LINK, *p, (p_tree) 0);
|
|
|
|
p = &((*p)->t_args[1]);
|
|
|
|
}
|
1990-09-07 14:56:24 +00:00
|
|
|
expression(p, 1)
|
1990-08-31 18:22:53 +00:00
|
|
|
]*
|
|
|
|
;
|
|
|
|
|
1990-09-19 14:31:12 +00:00
|
|
|
set_command(p_tree *p;)
|
|
|
|
:
|
|
|
|
SET expression(p, 1) { *p = mknode(OP_SET, *p, (p_tree) 0); }
|
|
|
|
TO expression(&((*p)->t_args[1]), 1)
|
|
|
|
;
|
|
|
|
|
1990-08-31 18:22:53 +00:00
|
|
|
condition(p_tree *p;)
|
|
|
|
:
|
1990-09-07 14:56:24 +00:00
|
|
|
IF expression(p, 1)
|
1990-08-31 18:22:53 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
where(p_tree *p;)
|
|
|
|
:
|
|
|
|
IN qualified_name(p) { *p = mknode(OP_IN, *p); }
|
|
|
|
|
|
|
|
|
position(p)
|
|
|
|
;
|
|
|
|
|
1990-09-07 14:56:24 +00:00
|
|
|
expression(p_tree *p; int level;)
|
|
|
|
{ int currprio, currop; }
|
|
|
|
: { in_expression++; }
|
|
|
|
factor(p)
|
1990-09-19 14:31:12 +00:00
|
|
|
[ %while ((currprio = binprio(currop = (int) tok.ival)) > level)
|
1990-09-07 14:56:24 +00:00
|
|
|
[ BIN_OP | PREF_OR_BIN_OP ]
|
|
|
|
{ *p = mknode(OP_BINOP, *p, (p_tree) 0);
|
|
|
|
(*p)->t_whichoper = currop;
|
|
|
|
}
|
|
|
|
expression(&((*p)->t_args[1]), currprio)
|
1990-09-19 14:31:12 +00:00
|
|
|
{ adjust_oper(p); }
|
1990-09-07 14:56:24 +00:00
|
|
|
]*
|
|
|
|
{ in_expression--; }
|
|
|
|
;
|
|
|
|
|
|
|
|
factor(p_tree *p;)
|
1990-08-31 18:22:53 +00:00
|
|
|
:
|
1990-09-07 14:56:24 +00:00
|
|
|
'(' expression(p, 1) ')'
|
|
|
|
|
|
|
|
|
INTEGER { *p = mknode(OP_INTEGER, tok.ival); }
|
|
|
|
|
|
|
|
|
REAL { *p = mknode(OP_REAL, tok.fval); }
|
|
|
|
|
|
|
|
|
STRING { *p = mknode(OP_STRING, tok.str); }
|
|
|
|
|
|
|
|
|
designator(p)
|
|
|
|
|
|
1990-09-12 16:13:59 +00:00
|
|
|
{ *p = mknode(OP_UNOP, (p_tree) 0);
|
1990-09-07 14:56:24 +00:00
|
|
|
(*p)->t_whichoper = (int) tok.ival;
|
|
|
|
}
|
1990-09-12 16:13:59 +00:00
|
|
|
[ PREF_OP | PREF_OR_BIN_OP ]
|
1990-09-19 14:31:12 +00:00
|
|
|
expression(&(*p)->t_args[0], unprio((*p)->t_whichoper))
|
1990-09-07 14:56:24 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
designator(p_tree *p;)
|
|
|
|
:
|
|
|
|
qualified_name(p)
|
|
|
|
[
|
|
|
|
SEL_OP { *p = mknode(OP_BINOP, *p, (p_tree) 0);
|
|
|
|
(*p)->t_whichoper = (int) tok.ival;
|
|
|
|
}
|
|
|
|
name(&(*p)->t_args[1])
|
|
|
|
|
|
|
|
|
'[' { *p = mknode(OP_BINOP, *p, (p_tree) 0);
|
1990-09-12 16:13:59 +00:00
|
|
|
(*p)->t_whichoper = E_ARRAY;
|
1990-09-07 14:56:24 +00:00
|
|
|
}
|
|
|
|
expression(&(*p)->t_args[1], 1)
|
|
|
|
']'
|
|
|
|
|
|
|
|
|
POST_OP { *p = mknode(OP_UNOP, *p);
|
|
|
|
(*p)->t_whichoper = (int) tok.ival;
|
|
|
|
}
|
|
|
|
]*
|
1990-08-31 18:22:53 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
position(p_tree *p;)
|
|
|
|
{ p_tree lin;
|
|
|
|
char *str;
|
|
|
|
}
|
|
|
|
:
|
|
|
|
AT
|
|
|
|
[ STRING { str = tok.str; }
|
|
|
|
':'
|
|
|
|
| { if (! currfile) str = 0;
|
|
|
|
else str = currfile->sy_idf->id_text;
|
|
|
|
}
|
|
|
|
]
|
|
|
|
lin_num(&lin) { *p = mknode(OP_AT, lin->t_ival, str);
|
|
|
|
freenode(lin);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
args(p_tree *p;)
|
|
|
|
{ int first_time = 1; }
|
|
|
|
:
|
|
|
|
[ { if (! first_time) {
|
|
|
|
*p = mknode(OP_LINK, *p, (p_tree) 0);
|
|
|
|
p = &((*p)->t_args[1]);
|
|
|
|
}
|
|
|
|
first_time = 0;
|
|
|
|
}
|
|
|
|
arg(p)
|
|
|
|
]*
|
|
|
|
;
|
|
|
|
|
|
|
|
arg(p_tree *p;)
|
|
|
|
:
|
|
|
|
name(p)
|
|
|
|
|
|
|
|
|
'>' name(p) { (*p)->t_oper = OP_OUTPUT; }
|
|
|
|
|
|
|
|
|
'<' name(p) { (*p)->t_oper = OP_INPUT; }
|
|
|
|
;
|
|
|
|
|
|
|
|
lin_num(p_tree *p;)
|
|
|
|
:
|
|
|
|
INTEGER { *p = mknode(OP_INTEGER, tok.ival); }
|
|
|
|
;
|
|
|
|
|
|
|
|
qualified_name(p_tree *p;)
|
|
|
|
:
|
|
|
|
name(p)
|
|
|
|
[ '`' { *p = mknode(OP_SELECT, *p, (p_tree) 0); }
|
|
|
|
name(&((*p)->t_args[1]))
|
|
|
|
]*
|
|
|
|
;
|
|
|
|
|
|
|
|
name(p_tree *p;)
|
|
|
|
:
|
|
|
|
[ XFILE
|
|
|
|
| LIST
|
|
|
|
| RUN
|
|
|
|
| RERUN
|
|
|
|
| STOP
|
|
|
|
| WHEN
|
|
|
|
| AT
|
|
|
|
| IN
|
|
|
|
| IF
|
|
|
|
| NAME
|
|
|
|
| CONT
|
|
|
|
| STEP
|
|
|
|
| NEXT
|
|
|
|
| REGS
|
|
|
|
| WHERE
|
|
|
|
| STATUS
|
|
|
|
| PRINT
|
|
|
|
| DELETE
|
|
|
|
| DUMP
|
|
|
|
| RESTORE
|
|
|
|
| TRACE
|
|
|
|
| ON
|
1990-09-19 14:31:12 +00:00
|
|
|
| SET
|
|
|
|
| TO
|
1990-08-31 18:22:53 +00:00
|
|
|
] { *p = mknode(OP_NAME, tok.idf, tok.str); }
|
|
|
|
;
|
|
|
|
|
|
|
|
{
|
|
|
|
int
|
|
|
|
LLlex()
|
|
|
|
{
|
|
|
|
register int c;
|
|
|
|
|
|
|
|
if (ASIDE) {
|
|
|
|
tok = aside;
|
|
|
|
ASIDE = 0;
|
|
|
|
return TOK;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
c = getc(db_in);
|
|
|
|
} while (c != EOF && class(c) == STSKIP);
|
|
|
|
if (c == EOF) return c;
|
|
|
|
switch(class(c)) {
|
|
|
|
case STSTR:
|
1990-09-07 14:56:24 +00:00
|
|
|
TOK = (*currlang->get_string)(c);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case STIDF:
|
1990-09-07 14:56:24 +00:00
|
|
|
if (in_expression) TOK = (*currlang->get_name)(c);
|
|
|
|
else TOK = get_name(c);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case STNUM:
|
1990-09-07 14:56:24 +00:00
|
|
|
TOK = (*currlang->get_number)(c);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case STNL:
|
|
|
|
TOK = c;
|
|
|
|
break;
|
1990-09-07 14:56:24 +00:00
|
|
|
case STSIMP:
|
|
|
|
if (! in_expression) {
|
|
|
|
TOK = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* Fall through */
|
1990-08-31 18:22:53 +00:00
|
|
|
default:
|
1990-09-07 14:56:24 +00:00
|
|
|
TOK = (*currlang->get_token)(c);
|
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
return TOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
get_name(c)
|
|
|
|
register int c;
|
|
|
|
{
|
|
|
|
char buf[512+1];
|
|
|
|
register char *p = &buf[0];
|
|
|
|
register struct idf *id;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (p - buf < 512) *p++ = c;
|
|
|
|
c = getc(db_in);
|
|
|
|
} while ((extended_charset && in_ext(c)) || in_idf(c));
|
|
|
|
ungetc(c, db_in);
|
|
|
|
*p = 0;
|
|
|
|
if (extended_charset) {
|
|
|
|
tok.idf = 0;
|
|
|
|
tok.str = Salloc(buf, (unsigned) (p - buf));
|
|
|
|
return NAME;
|
|
|
|
}
|
|
|
|
id = str2idf(buf, 1);
|
|
|
|
tok.idf = id;
|
|
|
|
tok.str = id->id_text;
|
|
|
|
return id->id_reserved ? id->id_reserved : NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern char * symbol2str();
|
|
|
|
|
|
|
|
LLmessage(t)
|
|
|
|
{
|
|
|
|
if (t > 0) {
|
|
|
|
if (! errorgiven) {
|
|
|
|
error("%s missing before %s", symbol2str(t), symbol2str(TOK));
|
|
|
|
}
|
|
|
|
aside = tok;
|
|
|
|
}
|
|
|
|
else if (t == 0) {
|
|
|
|
if (! errorgiven) {
|
|
|
|
error("%s unexpected", symbol2str(TOK));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (! errorgiven) {
|
|
|
|
error("EOF expected");
|
|
|
|
}
|
|
|
|
errorgiven = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
catch_del()
|
|
|
|
{
|
|
|
|
signal(SIGINT, catch_del);
|
|
|
|
signal_child(SIGEMT);
|
|
|
|
longjmp(jmpbuf, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
init_del()
|
|
|
|
{
|
|
|
|
signal(SIGINT, catch_del);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
skip_to_eol()
|
|
|
|
{
|
|
|
|
while (TOK != '\n' && TOK > 0) LLlex();
|
|
|
|
wait_for_child("interrupted");
|
|
|
|
}
|
|
|
|
}
|