Startprog starts up a program under control of the debug module. Dis is the full pathname of the Dis module to load (which must be compatible with command (2); dir is the current directory in which to put the new process; ctxt and argv are the arguments given to the new process. Startprog returns a tuple ( prog , err ) where prog can be used to interrogate and control the running process, as detailed below, unless there is an error, in which case prog will be nil, and err contains a description of the error. Prog is similar to startprog, except that it attaches to an already running process identified by pid .
10 prog .cont() Run the program until a break point is reached.
prog .delbpt(dis, pc) Delbpt deletes the breakpoint in the Dis module with filename dis at Dis instruction pc .
prog .event() Event waits for a state transition in the running prog and returns the new state, as returned by a read of the dbgctl file (see prog (3)).
prog .grab() Grab stops the prog and puts it into a state where single stepping is possible.
prog .kill() Kill kills prog .
prog .setbpt(dis, pc) Setbpt sets a breakpoint in the Dis module with filename dis at Dis instruction pc .
prog .stack() Stack returns a tuple ( exps , err ) where exps is an array of Exp adts, each representing one frame of the current execution stack of prog . If an error occurs, exps will be nil, and err will contain a description of the error.
prog .start() Start runs prog until it hits a breakpoint or exits.
prog .status() Status returns a tuple (pgrp, user, state, module) where pgrp is the process group id of prog , user is the owner of the process, state is the current state of the process, and module is the module implementation name of the currently executing module.
prog .step(how) Step steps prog forward in a manner specified by how , which is one of the following constants:
StepExp Step one expression evaluation.
StepStmt Step one source statement.
StepOver Step over one called function.
StepOut Step until the current function has returned.
prog .stop() Stop prog from running.
prog .unstop() Release a program from its stopped state; breakpoints will no longer be triggered.
A Pos represents a position in a Limbo source code file; it holds the source file name, the line number (origin 1) and the character within the line (origin 0). The Src adt represents a range in a Limbo source code file; Src.start and Src.stop represent the beginning and the end of the range, respectively.
A Sym represents a .sbl symbol file, and is created by calling sym( p ) where p is the pathname of the symbol file; sym returns a tuple ( sym , err ), where if sym is nil, err contains an error message. A Sym can map between a Dis PC and a source file address, and vice versa. For a given Sym sym , sym .srctopc( src ) returns the PC associated with src (or -1 on error); sym .pctosrc converts the other way (and returns nil on error).
Each element e in the top level stack, as returned by Prog.stack , has an associated Module e .m which needs to be associated with a Sym so that debug can glean from it the type information it needs. Given a module m , m .stdsym() will try and find a symbol file in a standard place, but this will fail if the symbol file or the Dis file is in a non-standard place. M .addsym( s ) sets the symbol file for m to the Sym s . M .dis() and m .sbl() return the paths of the Dis and symbol files associated with m respectively.
Each top level stack element expands into three elements, ``args'', ``locals'', and ``module'', representing the arguments to the function, the function's local variables, and the module-global variables of the function's module respectively. Before a top level stack element can be expanded, it is necessary to call findsym on it to locate the function's data.
10 exp .name The name of the symbol.
exp .expand() Expand a hierarchical structure into an array of its component elements. A list element expands into two elements named ``hd'' and ``tl''; a tuple into elements named ``t0'', ``t1'',..., an array into elements named ``0'', ``1'',..., etc.
exp .val() Val returns a tuple ( s , flag ) where s is a string representation of the value of exp , and if flag is zero, exp cannot be expanded.
exp .src() Src returns the file range associated with exp.
exp .findsym() If exp is a top level stack frame (i.e. one of the members of the array returned by Prog.stack ) then findsym will attempt to locate its type and name. If it succeeds, it returns the null string, otherwise it returns an error indicating the problem.
exp .srcstr() Srcstr returns a string representing the position in the source file of exp .