1990-08-31 18:22:53 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <varargs.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <alloc.h>
|
|
|
|
#include <out.h>
|
|
|
|
|
|
|
|
#include "operator.h"
|
|
|
|
#include "position.h"
|
|
|
|
#include "file.h"
|
|
|
|
#include "idf.h"
|
|
|
|
#include "tree.h"
|
|
|
|
#include "message.h"
|
|
|
|
#include "scope.h"
|
|
|
|
#include "symbol.h"
|
|
|
|
#include "langdep.h"
|
1990-09-12 16:13:59 +00:00
|
|
|
#include "type.h"
|
1990-09-19 14:31:12 +00:00
|
|
|
#include "expr.h"
|
1990-08-31 18:22:53 +00:00
|
|
|
|
|
|
|
extern FILE *db_out;
|
1990-10-17 17:00:03 +00:00
|
|
|
t_lineno currline;
|
1990-10-11 08:42:07 +00:00
|
|
|
static t_lineno listline;
|
1990-08-31 18:22:53 +00:00
|
|
|
extern long pointer_size;
|
|
|
|
extern char *strrindex();
|
1990-10-11 08:42:07 +00:00
|
|
|
extern int interrupted;
|
1990-10-17 17:00:03 +00:00
|
|
|
extern int stop_reason;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
p_tree print_command;
|
1990-09-21 16:58:20 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
static int wsize = 10;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
|
|
|
/*VARARGS1*/
|
|
|
|
p_tree
|
|
|
|
mknode(va_alist)
|
|
|
|
va_dcl
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
register p_tree p = new_tree();
|
|
|
|
|
|
|
|
va_start(ap);
|
|
|
|
{
|
|
|
|
register int i, na;
|
|
|
|
|
|
|
|
p->t_oper = va_arg(ap, int);
|
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_NAME:
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_HELP:
|
1990-08-31 18:22:53 +00:00
|
|
|
p->t_idf = va_arg(ap, struct idf *);
|
|
|
|
p->t_str = va_arg(ap, char *);
|
|
|
|
break;
|
1990-09-07 14:56:24 +00:00
|
|
|
case OP_STRING:
|
|
|
|
p->t_sval = va_arg(ap, char *);
|
|
|
|
break;
|
|
|
|
case OP_REAL:
|
|
|
|
p->t_fval = va_arg(ap, double);
|
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_AT:
|
|
|
|
p->t_lino = va_arg(ap, long);
|
|
|
|
p->t_filename = va_arg(ap, char *);
|
|
|
|
break;
|
1990-09-20 17:51:14 +00:00
|
|
|
case OP_INTEGER:
|
1990-08-31 18:22:53 +00:00
|
|
|
p->t_ival = va_arg(ap, long);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
na = nargs(p->t_oper);
|
|
|
|
assert(na <= MAXARGS);
|
|
|
|
for (i = 0; i < na; i++) {
|
|
|
|
p->t_args[i] = va_arg(ap, p_tree);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
freenode(p)
|
|
|
|
register p_tree p;
|
|
|
|
{
|
|
|
|
register int na, i;
|
|
|
|
|
|
|
|
if (! p) return;
|
1990-09-07 14:56:24 +00:00
|
|
|
na = nargs(p->t_oper);
|
|
|
|
assert(na <= MAXARGS);
|
|
|
|
for (i = 0; i < na; i++) {
|
|
|
|
freenode(p->t_args[i]);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
free_tree(p);
|
|
|
|
}
|
|
|
|
|
1990-09-21 16:58:20 +00:00
|
|
|
static t_addr
|
1990-09-25 17:40:47 +00:00
|
|
|
get_addr_from_node(p)
|
1990-09-21 16:58:20 +00:00
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
t_addr a = ILL_ADDR;
|
|
|
|
register p_symbol sym;
|
|
|
|
|
|
|
|
if (! p) return NO_ADDR;
|
|
|
|
if (p->t_address != 0) return p->t_address;
|
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_AT:
|
|
|
|
if (! p->t_filename &&
|
|
|
|
(! listfile || ! (p->t_filename = listfile->sy_idf->id_text))) {
|
|
|
|
error("no current file");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
a = get_addr_from_position(&(p->t_pos));
|
|
|
|
if (a == ILL_ADDR) {
|
|
|
|
error("could not determine address of \"%s\":%d",
|
|
|
|
p->t_filename, p->t_lino);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
p->t_address = a;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OP_IN:
|
1990-09-25 17:40:47 +00:00
|
|
|
a = get_addr_from_node(p->t_args[0]);
|
1990-10-17 17:00:03 +00:00
|
|
|
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
p_scope sc;
|
|
|
|
|
|
|
|
a = get_addr_from_node(p->t_args[1]);
|
|
|
|
sc = base_scope(get_scope_from_addr(a));
|
|
|
|
sym = identify(p->t_args[0], FUNCTION|PROC|MODULE);
|
|
|
|
if (! sym->sy_name.nm_scope ||
|
|
|
|
! sym->sy_name.nm_scope->sc_bp_opp) {
|
|
|
|
error("could not determine address of \"%s\"", p->t_str);
|
|
|
|
a = ILL_ADDR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (sc->sc_definedby != sym) {
|
|
|
|
error("inconsistent address");
|
|
|
|
a = ILL_ADDR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1990-09-21 16:58:20 +00:00
|
|
|
p->t_address = a;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OP_NAME:
|
|
|
|
case OP_SELECT:
|
|
|
|
sym = identify(p, FUNCTION|PROC|MODULE);
|
|
|
|
if (! sym) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (! sym->sy_name.nm_scope || ! sym->sy_name.nm_scope->sc_bp_opp) {
|
|
|
|
error("could not determine address of \"%s\"", p->t_str);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
a = sym->sy_name.nm_scope->sc_bp_opp;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
1990-08-31 18:22:53 +00:00
|
|
|
print_node(p, top_level)
|
|
|
|
register p_tree p;
|
|
|
|
{
|
|
|
|
if (!p) return;
|
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_LIST:
|
|
|
|
fputs("list ", db_out);
|
|
|
|
if (p->t_args[0]) {
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
if (p->t_args[1]) {
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p->t_args[1]->t_ival >= 0) {
|
|
|
|
fputs(", ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (p->t_args[1]->t_ival < -100000000) {
|
|
|
|
fputs("-", db_out);
|
|
|
|
}
|
|
|
|
else print_node(p->t_args[1], 0);
|
|
|
|
}
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OP_PRINT:
|
|
|
|
fputs("print ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_ENABLE:
|
|
|
|
fputs("enable ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
|
|
|
case OP_DISABLE:
|
|
|
|
fputs("disable ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
1990-09-20 17:51:14 +00:00
|
|
|
case OP_DISPLAY:
|
|
|
|
fputs("display ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_LINK:
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
fputs(", ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_FILE:
|
|
|
|
fputs("file ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
1990-09-19 14:31:12 +00:00
|
|
|
case OP_SET:
|
|
|
|
fputs("set ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
fputs(" to ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
break;
|
1990-09-20 17:51:14 +00:00
|
|
|
case OP_FIND:
|
|
|
|
fputs("find ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
|
|
|
case OP_WHICH:
|
|
|
|
fputs("which ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_DELETE:
|
1990-10-11 08:42:07 +00:00
|
|
|
fputs("delete ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_REGS:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("regs ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_NEXT:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("next ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_STEP:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("step ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_STATUS:
|
|
|
|
fputs("status", db_out);
|
|
|
|
break;
|
|
|
|
case OP_DUMP:
|
|
|
|
fputs("dump ", db_out);
|
|
|
|
print_position(p->t_address, 1);
|
|
|
|
break;
|
|
|
|
case OP_RESTORE:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("restore ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_WHERE:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("where ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_HELP:
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs("help ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-10-11 08:42:07 +00:00
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_CONT:
|
|
|
|
fputs("cont", db_out);
|
|
|
|
if (p->t_args[0]) {
|
1990-09-20 17:51:14 +00:00
|
|
|
fprintf(db_out, " %ld", p->t_args[0]->t_ival);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
fputs(" ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OP_WHEN:
|
|
|
|
fputs("when ", db_out);
|
|
|
|
if (p->t_address != NO_ADDR) {
|
|
|
|
print_position(p->t_address, 1);
|
|
|
|
}
|
|
|
|
else print_node(p->t_args[0], 0);
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
fputs(" if ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
}
|
|
|
|
p = p->t_args[2];
|
|
|
|
fputs(" { ", db_out);
|
1990-10-17 17:00:03 +00:00
|
|
|
while (p && p->t_oper == OP_LINK) {
|
1990-08-31 18:22:53 +00:00
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
fputs("; ", db_out);
|
|
|
|
p = p->t_args[1];
|
|
|
|
}
|
|
|
|
print_node(p, 0);
|
|
|
|
fputs(" }", db_out);
|
|
|
|
break;
|
|
|
|
case OP_STOP:
|
|
|
|
fputs("stop ", db_out);
|
|
|
|
if (p->t_address != NO_ADDR) {
|
|
|
|
print_position(p->t_address, 1);
|
|
|
|
}
|
|
|
|
else print_node(p->t_args[0], 0);
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
fputs(" if ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OP_TRACE:
|
|
|
|
fputs("trace ", db_out);
|
|
|
|
if (p->t_args[2]) {
|
|
|
|
fputs("on ", db_out);
|
|
|
|
print_node(p->t_args[2], 0);
|
|
|
|
fputs(" ", db_out);
|
|
|
|
}
|
|
|
|
if (p->t_address != NO_ADDR) {
|
|
|
|
print_position(p->t_address, 1);
|
|
|
|
}
|
|
|
|
else print_node(p->t_args[0], 0);
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
fputs(" if ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case OP_AT:
|
|
|
|
fprintf(db_out, "at \"%s\":%ld", p->t_filename, p->t_lino);
|
|
|
|
break;
|
|
|
|
case OP_IN:
|
|
|
|
fputs("in ", db_out);
|
|
|
|
print_node(p->t_args[0], 0);
|
1990-10-17 17:00:03 +00:00
|
|
|
fputs(" ", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_SELECT:
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
fputs("`", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
break;
|
|
|
|
case OP_NAME:
|
|
|
|
fputs(p->t_str, db_out);
|
|
|
|
break;
|
|
|
|
case OP_INTEGER:
|
1990-09-12 16:13:59 +00:00
|
|
|
fprintf(db_out, currlang->decint_fmt, p->t_ival);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
1990-09-07 14:56:24 +00:00
|
|
|
case OP_STRING:
|
1990-09-14 14:37:26 +00:00
|
|
|
(*currlang->printstring)(p->t_sval, strlen(p->t_sval));
|
1990-09-07 14:56:24 +00:00
|
|
|
break;
|
|
|
|
case OP_REAL:
|
1990-09-12 16:13:59 +00:00
|
|
|
fprintf(db_out, currlang->real_fmt, p->t_fval);
|
|
|
|
break;
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_FORMAT:
|
|
|
|
print_node(p->t_args[0], 0);
|
|
|
|
fputs("\\", db_out);
|
|
|
|
print_node(p->t_args[1], 0);
|
|
|
|
break;
|
1990-09-12 16:13:59 +00:00
|
|
|
case OP_UNOP:
|
|
|
|
case OP_BINOP:
|
|
|
|
(*currlang->printop)(p);
|
1990-09-07 14:56:24 +00:00
|
|
|
break;
|
1990-10-17 17:00:03 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
if (top_level) fputs("\n", db_out);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
repeatable(com)
|
|
|
|
p_tree com;
|
|
|
|
{
|
|
|
|
switch(com->t_oper) {
|
|
|
|
case OP_CONT:
|
1990-10-11 08:42:07 +00:00
|
|
|
com->t_args[0]->t_ival = 1;
|
|
|
|
freenode(com->t_args[1]);
|
|
|
|
com->t_args[1] = 0;
|
|
|
|
return 1;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_NEXT:
|
|
|
|
case OP_STEP:
|
1990-10-17 17:00:03 +00:00
|
|
|
freenode(com->t_args[0]);
|
|
|
|
com->t_args[0] = 0;
|
1990-10-11 08:42:07 +00:00
|
|
|
return 1;
|
1990-08-31 18:22:53 +00:00
|
|
|
case OP_LIST:
|
1990-10-11 08:42:07 +00:00
|
|
|
freenode(com->t_args[0]);
|
|
|
|
com->t_args[0] = 0;
|
|
|
|
freenode(com->t_args[1]);
|
|
|
|
com->t_args[1] = 0;
|
1990-08-31 18:22:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
in_status(com)
|
|
|
|
p_tree com;
|
|
|
|
{
|
|
|
|
switch(com->t_oper) {
|
|
|
|
case OP_STOP:
|
|
|
|
case OP_WHEN:
|
|
|
|
case OP_TRACE:
|
|
|
|
case OP_DUMP:
|
1990-09-20 17:51:14 +00:00
|
|
|
case OP_DISPLAY:
|
1990-08-31 18:22:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
eval(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p && operators[p->t_oper].op_fun) (*operators[p->t_oper].op_fun)(p);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_list(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-09-21 16:58:20 +00:00
|
|
|
int l1, l2;
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p->t_args[1]) {
|
|
|
|
l2 = p->t_args[1]->t_ival;
|
|
|
|
if (l2 >= 0) {
|
|
|
|
if (l2 == 0) l2 = 1;
|
|
|
|
wsize = l2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else l2 = wsize;
|
|
|
|
|
1990-09-21 16:58:20 +00:00
|
|
|
if (! p->t_args[0]) {
|
|
|
|
l1 = listline;
|
1990-10-11 08:42:07 +00:00
|
|
|
if (! l1) {
|
|
|
|
listline = currline - (wsize/2);
|
|
|
|
l1 = listline;
|
|
|
|
}
|
1990-09-21 16:58:20 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (p->t_args[0]->t_oper == OP_INTEGER) {
|
|
|
|
l1 = p->t_args[0]->t_ival;
|
|
|
|
}
|
|
|
|
else {
|
1990-09-25 17:40:47 +00:00
|
|
|
t_addr a = get_addr_from_node(p->t_args[0]);
|
1990-09-21 16:58:20 +00:00
|
|
|
p_position pos;
|
|
|
|
|
|
|
|
if (a == ILL_ADDR) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
pos = get_position_from_addr(a);
|
|
|
|
newfile(str2idf(pos->filename, 1));
|
1990-10-11 08:42:07 +00:00
|
|
|
l1 = pos->lineno - (l2 > 0 ? l2 : wsize)/2;
|
1990-09-21 16:58:20 +00:00
|
|
|
if (l1 < 1) l1 = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (listfile) {
|
1990-10-11 08:42:07 +00:00
|
|
|
if (l2 < 0) {
|
|
|
|
l2 = -l2;
|
|
|
|
if (l1 > l2) l2 = 1;
|
|
|
|
else l2 -= l1 - 1;
|
|
|
|
}
|
1990-09-21 16:58:20 +00:00
|
|
|
lines(listfile->sy_file, l1, l2);
|
1990-10-11 08:42:07 +00:00
|
|
|
listline = l1 + l2;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
1990-10-11 08:42:07 +00:00
|
|
|
else error("no current file");
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_file(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-17 17:00:03 +00:00
|
|
|
FILE *f;
|
|
|
|
|
1990-08-31 18:22:53 +00:00
|
|
|
if (p->t_args[0]) {
|
1990-10-17 17:00:03 +00:00
|
|
|
if ((f = fopen(p->t_args[0]->t_str, "r")) == NULL) {
|
|
|
|
error("could not open %s", p->t_args[0]->t_str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fclose(f);
|
1990-08-31 18:22:53 +00:00
|
|
|
newfile(p->t_args[0]->t_idf);
|
|
|
|
}
|
1990-09-21 16:58:20 +00:00
|
|
|
else if (listfile) fprintf(db_out, "%s\n", listfile->sy_idf->id_text);
|
1990-10-11 08:42:07 +00:00
|
|
|
else error("no current file");
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
newfile(id)
|
|
|
|
register struct idf *id;
|
|
|
|
{
|
|
|
|
register p_symbol sym = Lookup(id, PervasiveScope, FILESYM);
|
|
|
|
|
1990-09-21 16:58:20 +00:00
|
|
|
if (listfile != sym) listline = 1;
|
|
|
|
listfile = sym;
|
|
|
|
if (! listfile) {
|
|
|
|
listline = 1;
|
|
|
|
listfile = add_file(id->id_text);
|
|
|
|
listfile->sy_file->f_scope = FileScope;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
find_language(strrindex(id->id_text, '.'));
|
|
|
|
}
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
setstop(p, kind)
|
1990-08-31 18:22:53 +00:00
|
|
|
p_tree p;
|
1990-10-11 08:42:07 +00:00
|
|
|
int kind;
|
1990-08-31 18:22:53 +00:00
|
|
|
{
|
1990-09-25 17:40:47 +00:00
|
|
|
t_addr a = get_addr_from_node(p->t_args[0]);
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (a == ILL_ADDR) return 0;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
|
|
|
p->t_address = a;
|
|
|
|
if (a != NO_ADDR) {
|
1990-10-11 08:42:07 +00:00
|
|
|
if (! set_or_clear_breakpoint(a, kind)) {
|
|
|
|
return 0;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
1990-10-11 08:42:07 +00:00
|
|
|
return 1;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
do_stop(p)
|
1990-08-31 18:22:53 +00:00
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-11 08:42:07 +00:00
|
|
|
if (! setstop(p, SETBP)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
add_to_item_list(p);
|
|
|
|
}
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
settrace(p, kind)
|
|
|
|
p_tree p;
|
|
|
|
int kind;
|
|
|
|
{
|
|
|
|
t_addr a, e;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
a = get_addr_from_node(p->t_args[0]);
|
|
|
|
if (a == NO_ADDR) return 1;
|
|
|
|
if (a == ILL_ADDR) return 0;
|
|
|
|
if (p->t_args[0]->t_oper == OP_AT) {
|
|
|
|
e = a;
|
|
|
|
p->t_address = a;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
p_scope sc = get_next_scope_from_addr(a+1);
|
|
|
|
|
|
|
|
if (sc) e = sc->sc_start - 1;
|
|
|
|
else e = 0xffffffff;
|
|
|
|
}
|
1990-10-17 17:00:03 +00:00
|
|
|
return set_or_clear_trace(a, e, kind);
|
1990-10-11 08:42:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_trace(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
p->t_address = NO_ADDR;
|
|
|
|
if (! settrace(p, SETTRACE)) {
|
|
|
|
return;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
add_to_item_list(p);
|
|
|
|
}
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
static
|
|
|
|
able(p, kind)
|
|
|
|
p_tree p;
|
|
|
|
int kind;
|
|
|
|
{
|
1990-10-17 17:00:03 +00:00
|
|
|
if (!p) {
|
|
|
|
if (stop_reason) {
|
|
|
|
able_item(stop_reason, kind);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error("no current stopping point");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
1990-10-11 08:42:07 +00:00
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_LINK:
|
|
|
|
able(p->t_args[0], kind);
|
|
|
|
able(p->t_args[1], kind);
|
|
|
|
break;
|
|
|
|
case OP_INTEGER:
|
|
|
|
able_item((int)p->t_ival, kind);
|
|
|
|
break;
|
1990-10-17 17:00:03 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
1990-10-11 08:42:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_enable(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
able(p->t_args[0], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
do_disable(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
able(p->t_args[0], 1);
|
|
|
|
}
|
|
|
|
|
1990-08-31 18:22:53 +00:00
|
|
|
do_continue(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
count = p->t_args[0]->t_ival;
|
|
|
|
if (p->t_args[1]) {
|
|
|
|
t_addr a = get_addr_from_position(&(p->t_args[1]->t_pos));
|
|
|
|
p_scope sc = get_scope_from_addr(a);
|
|
|
|
|
1990-10-17 17:00:03 +00:00
|
|
|
if (a == ILL_ADDR || base_scope(sc) != base_scope(CurrentScope)) {
|
1990-08-31 18:22:53 +00:00
|
|
|
error("cannot continue at line %d",
|
|
|
|
p->t_args[1]->t_lino);
|
|
|
|
return;
|
|
|
|
}
|
1990-10-17 17:00:03 +00:00
|
|
|
if (! set_pc(a)) {
|
|
|
|
return;
|
|
|
|
}
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else count = 1;
|
|
|
|
while (count--) {
|
|
|
|
if (! send_cont(count==0)) {
|
|
|
|
break;
|
|
|
|
}
|
1990-10-17 17:00:03 +00:00
|
|
|
}
|
|
|
|
if (count > 0) {
|
|
|
|
fprintf(db_out, "Only %d breakpoints skipped\n",
|
|
|
|
p->t_args[0]->t_ival - count);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_step(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-17 17:00:03 +00:00
|
|
|
p = p->t_args[0];
|
|
|
|
if (! do_single_step(SETSS, p ? p->t_ival : 1L)) {
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_next(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-17 17:00:03 +00:00
|
|
|
p = p->t_args[0];
|
|
|
|
if (! do_single_step(SETSSF, p? p->t_ival : 1L)) {
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern t_addr *get_EM_regs();
|
|
|
|
|
|
|
|
do_regs(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
t_addr *buf;
|
1990-10-17 17:00:03 +00:00
|
|
|
int n = 0;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-17 17:00:03 +00:00
|
|
|
p = p->t_args[0];
|
|
|
|
if (p) n = p->t_ival;
|
1990-08-31 18:22:53 +00:00
|
|
|
if (! (buf = get_EM_regs(n))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fprintf(db_out, "EM registers %d levels back:\n", n);
|
|
|
|
fprintf(db_out, "\tLocalBase =\t0x%lx\n\tArgumentBase =\t0x%lx\n",
|
|
|
|
(long) buf[LB_OFF], (long) buf[AB_OFF]);
|
|
|
|
fprintf(db_out, "\tProgramCounter=\t0x%lx\n\tHeapPointer = \t0x%lx\n",
|
|
|
|
(long) buf[PC_OFF],
|
|
|
|
(long) buf[HP_OFF]);
|
|
|
|
fprintf(db_out, "\tStackPointer =\t0x%lx\n", (long) buf[SP_OFF]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
do_where(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
int i = 0;
|
1990-09-20 17:51:14 +00:00
|
|
|
unsigned int cnt;
|
1990-10-17 17:00:03 +00:00
|
|
|
unsigned int maxcnt = 0xffff;
|
1990-10-11 08:42:07 +00:00
|
|
|
p_scope sc;
|
|
|
|
t_addr *buf;
|
|
|
|
t_addr PC;
|
|
|
|
|
1990-10-17 17:00:03 +00:00
|
|
|
p = p->t_args[0];
|
|
|
|
if (p && p->t_ival < 0) {
|
1990-10-11 08:42:07 +00:00
|
|
|
for (;;) {
|
|
|
|
buf = get_EM_regs(i++);
|
|
|
|
if (! buf || ! buf[AB_OFF]) break;
|
|
|
|
PC = buf[PC_OFF];
|
|
|
|
sc = base_scope(get_scope_from_addr(PC));
|
|
|
|
if (! sc || sc->sc_start > PC) break;
|
|
|
|
if (interrupted) return;
|
|
|
|
}
|
|
|
|
i--;
|
|
|
|
maxcnt = - p->t_ival;
|
|
|
|
i -= maxcnt;
|
|
|
|
if (i < 0) i = 0;
|
|
|
|
}
|
1990-10-17 17:00:03 +00:00
|
|
|
else if (p) maxcnt = p->t_ival;
|
1990-10-11 08:42:07 +00:00
|
|
|
for (cnt = maxcnt; cnt != 0; cnt--) {
|
1990-08-31 18:22:53 +00:00
|
|
|
t_addr AB;
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted) return;
|
|
|
|
if (! (buf = get_EM_regs(i++))) break;
|
1990-08-31 18:22:53 +00:00
|
|
|
AB = buf[AB_OFF];
|
|
|
|
PC = buf[PC_OFF];
|
|
|
|
if (! AB) break;
|
|
|
|
sc = base_scope(get_scope_from_addr(PC));
|
|
|
|
if (! sc || sc->sc_start > PC) break;
|
|
|
|
fprintf(db_out, "%s(", sc->sc_definedby->sy_idf->id_text);
|
|
|
|
print_params(sc->sc_definedby->sy_type, AB, has_static_link(sc));
|
|
|
|
fputs(") ", db_out);
|
|
|
|
print_position(PC, 0);
|
|
|
|
fputs("\n", db_out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extern p_tree remove_from_item_list();
|
|
|
|
|
|
|
|
do_delete(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-11 08:42:07 +00:00
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_DELETE:
|
1990-10-17 17:00:03 +00:00
|
|
|
if (! p->t_args[0]) {
|
|
|
|
if (stop_reason) {
|
|
|
|
remove_from_item_list(stop_reason);
|
|
|
|
stop_reason = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
error("no current stopping point");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else do_delete(p->t_args[0]);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
1990-10-11 08:42:07 +00:00
|
|
|
case OP_LINK:
|
|
|
|
do_delete(p->t_args[0]);
|
|
|
|
do_delete(p->t_args[1]);
|
|
|
|
break;
|
|
|
|
case OP_INTEGER:
|
|
|
|
p = remove_from_item_list((int) p->t_ival);
|
1990-08-31 18:22:53 +00:00
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p) switch(p->t_oper) {
|
|
|
|
case OP_WHEN:
|
|
|
|
case OP_STOP:
|
|
|
|
setstop(p, CLRBP);
|
|
|
|
break;
|
|
|
|
case OP_TRACE:
|
|
|
|
settrace(p, CLRTRACE);
|
|
|
|
break;
|
|
|
|
case OP_DUMP:
|
|
|
|
free_dump(p);
|
|
|
|
}
|
|
|
|
freenode(p);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
1990-10-17 17:00:03 +00:00
|
|
|
default:
|
|
|
|
assert(0);
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
do_print(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
1990-10-11 08:42:07 +00:00
|
|
|
char *buf = 0;
|
|
|
|
char *format = 0;
|
1990-09-12 16:13:59 +00:00
|
|
|
long size;
|
|
|
|
p_type tp;
|
1990-08-31 18:22:53 +00:00
|
|
|
|
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_PRINT:
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p->t_args[0] == 0) {
|
|
|
|
p = print_command;
|
|
|
|
if (p == 0) {
|
|
|
|
error("no previous print command");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (p != print_command) {
|
1990-10-17 17:00:03 +00:00
|
|
|
/* freenode(print_command); No, could be in when-list */
|
1990-10-11 08:42:07 +00:00
|
|
|
print_command = p;
|
|
|
|
}
|
|
|
|
/* fall through */
|
1990-09-20 17:51:14 +00:00
|
|
|
case OP_DISPLAY:
|
1990-08-31 18:22:53 +00:00
|
|
|
do_print(p->t_args[0]);
|
|
|
|
break;
|
|
|
|
case OP_LINK:
|
|
|
|
do_print(p->t_args[0]);
|
|
|
|
do_print(p->t_args[1]);
|
|
|
|
break;
|
1990-09-12 16:13:59 +00:00
|
|
|
default:
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted || ! eval_expr(p, &buf, &size, &tp)) return;
|
1990-08-31 18:22:53 +00:00
|
|
|
print_node(p, 0);
|
1990-09-12 16:13:59 +00:00
|
|
|
fputs(" = ", db_out);
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p->t_oper == OP_FORMAT) {
|
|
|
|
format = p->t_args[1]->t_str;
|
|
|
|
}
|
|
|
|
print_val(tp, size, buf, 0, 0, format);
|
1990-09-12 16:13:59 +00:00
|
|
|
if (buf) free(buf);
|
|
|
|
fputs("\n", db_out);
|
|
|
|
break;
|
1990-08-31 18:22:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1990-09-19 14:31:12 +00:00
|
|
|
do_set(p)
|
|
|
|
p_tree p;
|
|
|
|
{
|
|
|
|
char *buf = 0;
|
|
|
|
long size, size2;
|
|
|
|
p_type tp, tp2;
|
|
|
|
t_addr a;
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted || ! eval_desig(p->t_args[0], &a, &size, &tp) ||
|
1990-09-19 14:31:12 +00:00
|
|
|
! eval_expr(p->t_args[1], &buf, &size2, &tp2) ||
|
|
|
|
! convert(&buf, &size2, &tp2, tp, size)) {
|
|
|
|
if (buf) free(buf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted) {
|
|
|
|
free(buf);
|
|
|
|
return;
|
|
|
|
}
|
1990-10-17 17:00:03 +00:00
|
|
|
set_bytes(size, buf, a);
|
1990-09-19 14:31:12 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
1990-08-31 18:22:53 +00:00
|
|
|
perform(p, a)
|
|
|
|
register p_tree p;
|
|
|
|
t_addr a;
|
|
|
|
{
|
|
|
|
switch(p->t_oper) {
|
|
|
|
case OP_WHEN:
|
1990-10-11 08:42:07 +00:00
|
|
|
if (p->t_args[1] && ! eval_cond(p->t_args[1])) break;
|
1990-08-31 18:22:53 +00:00
|
|
|
p = p->t_args[2];
|
1990-10-17 17:00:03 +00:00
|
|
|
while (p && p->t_oper == OP_LINK) {
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted) return;
|
1990-10-17 17:00:03 +00:00
|
|
|
if (p->t_args[0]) eval(p->t_args[0]);
|
1990-08-31 18:22:53 +00:00
|
|
|
p = p->t_args[1];
|
|
|
|
}
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted) return;
|
1990-10-17 17:00:03 +00:00
|
|
|
if (p) eval(p);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
case OP_TRACE:
|
|
|
|
if (p->t_args[0] && p->t_args[0]->t_oper == OP_IN) {
|
|
|
|
register p_scope sc = base_scope(CurrentScope);
|
|
|
|
|
|
|
|
if (sc != get_scope_from_addr(p->t_args[0]->t_address)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1990-10-11 08:42:07 +00:00
|
|
|
if (interrupted) return;
|
|
|
|
if (p->t_args[1] && ! eval_cond(p->t_args[1])) break;
|
1990-09-21 16:58:20 +00:00
|
|
|
list_position(get_position_from_addr(a));
|
|
|
|
if (p->t_args[2]) do_print(p->t_args[2]);
|
1990-08-31 18:22:53 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
1990-09-21 16:58:20 +00:00
|
|
|
|
|
|
|
list_position(pos)
|
|
|
|
p_position pos;
|
|
|
|
{
|
|
|
|
newfile(str2idf(pos->filename, 1));
|
|
|
|
currfile = listfile;
|
|
|
|
currline = pos->lineno;
|
1990-10-11 08:42:07 +00:00
|
|
|
lines(currfile->sy_file, (int)currline, (int)1);
|
|
|
|
listline = 0;
|
1990-09-21 16:58:20 +00:00
|
|
|
}
|