📄 events.c
字号:
/* * Copyright (c) 1983 The Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */#ifndef lintstatic char sccsid[] = "@(#)events.c 5.5 (Berkeley) 6/1/90";#endif /* not lint *//* * Event/breakpoint managment. */#include "defs.h"#include "events.h"#include "main.h"#include "symbols.h"#include "tree.h"#include "eval.h"#include "source.h"#include "mappings.h"#include "runtime.h"#include "process.h"#include "machine.h"#include "lists.h"#ifndef publictypedef struct Event *Event;typedef struct Breakpoint *Breakpoint;#include "symbols.h"#define addevent(cond, cmdlist) event_alloc(false, cond, cmdlist)#define event_once(cond, cmdlist) event_alloc(true, cond, cmdlist)/* * When tracing variables we keep a copy of their most recent value * and compare it to the current one each time a breakpoint occurs. * MAXTRSIZE is the maximum size variable we allow. */#define MAXTRSIZE 512#endifpublic boolean inst_tracing;public boolean single_stepping;public boolean isstopped;public Symbol linesym;public Symbol procsym;public Symbol pcsym;public Symbol retaddrsym;struct Event { unsigned int id; boolean temporary; Node condition; Cmdlist actions;};struct Breakpoint { Event event; Address bpaddr; Lineno bpline; Cmdlist actions; boolean temporary;};typedef List Eventlist;typedef List Bplist;#define eventlist_append(event, el) list_append(list_item(event), nil, el)#define bplist_append(bp, bl) list_append(list_item(bp), nil, bl)private Eventlist eventlist; /* list of active events */private Bplist bplist; /* list of active breakpoints */private Event curevent; /* most recently created event */private integer eventid; /* id number of current event */private integer trid; /* id number of current trace */typedef struct Trcmd { Integer trid; Event event; Cmdlist cmdlist;} *Trcmd;private List eachline; /* commands to execute after each line */private List eachinst; /* commands to execute after each instruction */private Breakpoint bp_alloc();/* * Initialize breakpoint information. */private Symbol builtinsym(str, class, type)String str;Symclass class;Symbol type;{ Symbol s; s = insert(identname(str, true)); s->language = findlanguage(".s"); s->class = class; s->type = type; return s;}public bpinit(){ linesym = builtinsym("$line", VAR, t_int); procsym = builtinsym("$proc", PROC, nil); pcsym = lookup(identname("$pc", true)); if (pcsym == nil) { panic("can't find $pc"); } retaddrsym = builtinsym("$retaddr", VAR, t_int); eventlist = list_alloc(); bplist = list_alloc(); eachline = list_alloc(); eachinst = list_alloc();}/* * Trap an event and do the associated commands when it occurs. */public Event event_alloc(istmp, econd, cmdlist)boolean istmp;Node econd;Cmdlist cmdlist;{ register Event e; e = new(Event); ++eventid; e->id = eventid; e->temporary = istmp; e->condition = econd; e->actions = cmdlist; eventlist_append(e, eventlist); curevent = e; translate(e); return e;}/* * Delete the event with the given id. * Returns whether it's successful or not. */public boolean delevent (id)unsigned int id;{ Event e; Breakpoint bp; Trcmd t; boolean found; found = false; foreach (Event, e, eventlist) if (e->id == id) { found = true; foreach (Breakpoint, bp, bplist) if (bp->event == e) { if (tracebpts) { printf("deleting breakpoint at 0x%x\n", bp->bpaddr); fflush(stdout); } list_delete(list_curitem(bplist), bplist); } endfor list_delete(list_curitem(eventlist), eventlist); break; } endfor foreach (Trcmd, t, eachline) if (t->event->id == id) { found = true; printrmtr(t); list_delete(list_curitem(eachline), eachline); } endfor foreach (Trcmd, t, eachinst) if (t->event->id == id) { found = true; printrmtr(t); list_delete(list_curitem(eachinst), eachinst); } endfor if (list_size(eachinst) == 0) { inst_tracing = false; if (list_size(eachline) == 0) { single_stepping = false; } } return found;}/* * Translate an event into the appropriate breakpoints and actions. * While we're at it, turn on the breakpoints if the condition is true. */private translate(e)Event e;{ Breakpoint bp; Symbol s; Node place; Lineno line; Address addr; checkref(e->condition); switch (e->condition->op) { case O_EQ: if (e->condition->value.arg[0]->op == O_SYM) { s = e->condition->value.arg[0]->value.sym; place = e->condition->value.arg[1]; if (s == linesym) { if (place->op == O_QLINE) { line = place->value.arg[1]->value.lcon; addr = objaddr(line, place->value.arg[0]->value.scon); } else { eval(place); line = pop(long); addr = objaddr(line, cursource); } if (addr == NOADDR) { if (not delevent(e->id)) { printf("!! dbx.translate: can't undo event %d?\n", e->id); } beginerrmsg(); fprintf(stderr, "no executable code at line "); prtree(stderr, place); enderrmsg(); } bp = bp_alloc(e, addr, line, e->actions); } else if (s == procsym) { eval(place); s = pop(Symbol); bp = bp_alloc(e, codeloc(s), 0, e->actions); if (isactive(s) and pc != codeloc(program)) { evalcmdlist(e->actions); } } else if (s == pcsym) { eval(place); bp = bp_alloc(e, pop(Address), 0, e->actions); } else { condbp(e); } } else { condbp(e); } break; /* * These should be handled specially. * But for now I'm ignoring the problem. */ case O_AND: case O_OR: default: condbp(e); break; }}/* * Create a breakpoint for a condition that cannot be pinpointed * to happening at a particular address, but one for which we * must single step and check the condition after each statement. */private condbp(e)Event e;{ Symbol p; Breakpoint bp; Cmdlist actions; p = tcontainer(e->condition); if (p == nil) { p = program; } actions = buildcmdlist(build(O_IF, e->condition, e->actions)); actions = buildcmdlist(build(O_TRACEON, false, actions)); bp = bp_alloc(e, codeloc(p), 0, actions);}/* * Determine the deepest nested subprogram that still contains * all elements in the given expression. */public Symbol tcontainer(exp)Node exp;{ Integer i; Symbol s, t, u, v; checkref(exp); s = nil; if (exp->op == O_SYM) { s = container(exp->value.sym); } else if (not isleaf(exp->op)) { for (i = 0; i < nargs(exp->op); i++) { t = tcontainer(exp->value.arg[i]); if (t != nil) { if (s == nil) { s = t; } else { u = s; v = t; while (u != v and u != nil) { u = container(u); v = container(v); } if (u == nil) { panic("bad ancestry for \"%s\"", symname(s)); } else { s = u; } } } } } return s;}/* * Determine if the given function can be executed at full speed. * This can only be done if there are no breakpoints within the function. */public boolean canskip(f)Symbol f;{ Breakpoint p; boolean ok; ok = true; foreach (Breakpoint, p, bplist) if (whatblock(p->bpaddr) == f) { ok = false; break; } endfor return ok;}/* * Print out what's currently being traced by looking at * the currently active events. * * Some convolution here to translate internal representation * of events back into something more palatable. */public status(){ Event e; foreach (Event, e, eventlist) if (not e->temporary) { printevent(e); } endfor}public printevent(e)Event e;{ Command cmd; if (not isredirected()) { printeventid(e->id); } cmd = list_element(Command, list_head(e->actions)); if (cmd->op == O_PRINTCALL) { printf("trace "); printname(stdout, cmd->value.sym); } else { if (list_size(e->actions) > 1) { printf("{ "); } foreach (Command, cmd, e->actions) printcmd(stdout, cmd); if (not list_islast()) { printf("; "); } endfor if (list_size(e->actions) > 1) { printf(" }"); } printcond(e->condition); } printf("\n");}private printeventid (id)integer id;{ printf("[%d] ", id);}/* * Print out a condition. */private printcond(cond)Node cond;{ Symbol s; Node place; if (cond->op == O_EQ and cond->value.arg[0]->op == O_SYM) { s = cond->value.arg[0]->value.sym; place = cond->value.arg[1]; if (s == procsym) { if (place->value.sym != program) { printf(" in "); printname(stdout, place->value.sym); } } else if (s == linesym) { printf(" at "); prtree(stdout, place); } else if (s == pcsym or s == retaddrsym) { printf("i at "); prtree(stdout, place); } else {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -