mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
process control
This commit is contained in:
parent
88c6062214
commit
7468541674
2 changed files with 58 additions and 8 deletions
33
acid/386
33
acid/386
|
@ -67,17 +67,44 @@ defn mmregs()
|
|||
print("MM6\t", *MM6, " MM7\t", *MM7, "\n");
|
||||
}
|
||||
|
||||
defn pfixstop(pid)
|
||||
{
|
||||
if *fmt(*PC-1, 'b') == 0xCC then {
|
||||
// Linux stops us after the breakpoint, not at it
|
||||
*PC = *PC-1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
defn pstop(pid)
|
||||
{
|
||||
local l;
|
||||
local pc;
|
||||
local why;
|
||||
|
||||
pc = *PC;
|
||||
|
||||
print(pid,": ", reason(*TRAP), "\t");
|
||||
print(fmt(pc, 'a'), "\t", *fmt(pc, 'i'), "\n");
|
||||
// FIgure out why we stopped.
|
||||
if *fmt(pc, 'b') == 0xCC then {
|
||||
why = "breakpoint";
|
||||
|
||||
if notes then {
|
||||
// fix up instruction for print; will put back later
|
||||
*pc = @pc;
|
||||
} else if *(pc-2\x) == 0x80CD then {
|
||||
pc = pc-2;
|
||||
why = "system call";
|
||||
} else
|
||||
why = "stopped";
|
||||
|
||||
if printstopped then {
|
||||
print(pid,": ", why, "\t");
|
||||
print(fmt(pc, 'a'), "\t", *fmt(pc, 'i'), "\n");
|
||||
}
|
||||
|
||||
if why == "breakpoint" then
|
||||
*fmt(pc, bpfmt) = bpinst;
|
||||
|
||||
if printstopped && notes then {
|
||||
if notes[0] != "sys: breakpoint" then {
|
||||
print("Notes pending:\n");
|
||||
l = notes;
|
||||
|
|
31
acid/port
31
acid/port
|
@ -326,6 +326,16 @@ defn bpdel(addr) // delete a breakpoint
|
|||
{
|
||||
local n, pc, nbplist;
|
||||
|
||||
if addr == 0 then {
|
||||
while bplist do {
|
||||
pc = head bplist;
|
||||
pc = fmt(pc, bpfmt);
|
||||
*pc = @pc;
|
||||
bplist = tail bplist;
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
n = match(addr, bplist);
|
||||
if n < 0 then {
|
||||
print("no breakpoint at ", fmt(addr, 'a'), "\n");
|
||||
|
@ -360,6 +370,7 @@ defn cont() // continue execution
|
|||
|
||||
defn stopped(pid) // called from acid when a process changes state
|
||||
{
|
||||
pfixstop(pid);
|
||||
pstop(pid); // stub so this is easy to replace
|
||||
}
|
||||
|
||||
|
@ -472,14 +483,22 @@ defn win2()
|
|||
stopped(npid);
|
||||
}
|
||||
|
||||
printstopped = 1;
|
||||
defn new()
|
||||
{
|
||||
local a;
|
||||
|
||||
bplist = {};
|
||||
newproc(progargs);
|
||||
// Dont miss the delay slot calls
|
||||
bpset(follow(main)[0]);
|
||||
a = var("p9main");
|
||||
if a == {} then
|
||||
a = var("main");
|
||||
if a == {} then
|
||||
return {};
|
||||
bpset(a);
|
||||
while *PC != a do
|
||||
cont();
|
||||
bpdel(*PC);
|
||||
bpdel(a);
|
||||
}
|
||||
|
||||
defn stmnt() // step one statement
|
||||
|
@ -517,10 +536,14 @@ defn func() // step until we leave the current function
|
|||
|
||||
defn next()
|
||||
{
|
||||
local sp, bound;
|
||||
local sp, bound, pc;
|
||||
|
||||
sp = *SP;
|
||||
bound = fnbound(*PC);
|
||||
if bound == {} then {
|
||||
print("cannot locate text symbol\n");
|
||||
return {};
|
||||
}
|
||||
stmnt();
|
||||
pc = *PC;
|
||||
if pc >= bound[0] && pc < bound[1] then
|
||||
|
|
Loading…
Reference in a new issue