mirror of
https://github.com/golang/go
synced 2024-11-26 00:28:00 -07:00
fix linux 386 build
R=austin DELTA=140 (128 added, 0 deleted, 12 changed) OCL=34344 CL=34347
This commit is contained in:
parent
f2a8cd5ad9
commit
74bb34c107
@ -289,7 +289,7 @@ func (t *thread) logTrace(format string, args ...) {
|
||||
var regs syscall.PtraceRegs;
|
||||
err := t.ptraceGetRegs(®s);
|
||||
if err == nil {
|
||||
fmt.Fprintf(os.Stderr, "@%x", regs.Rip);
|
||||
fmt.Fprintf(os.Stderr, "@%x", regs.PC());
|
||||
}
|
||||
}
|
||||
fmt.Fprint(os.Stderr, ": ");
|
||||
@ -516,7 +516,7 @@ func (ev *debugEvent) doTrap() (threadState, os.Error) {
|
||||
return stopped, err;
|
||||
}
|
||||
|
||||
b, ok := t.proc.breakpoints[uintptr(regs.Rip)-uintptr(len(bpinst386))];
|
||||
b, ok := t.proc.breakpoints[uintptr(regs.PC())-uintptr(len(bpinst386))];
|
||||
if !ok {
|
||||
// We must have hit a breakpoint that was actually in
|
||||
// the program. Leave the IP where it is so we don't
|
||||
@ -526,9 +526,9 @@ func (ev *debugEvent) doTrap() (threadState, os.Error) {
|
||||
}
|
||||
|
||||
t.breakpoint = b;
|
||||
t.logTrace("at breakpoint %v, backing up PC from %#x", b, regs.Rip);
|
||||
t.logTrace("at breakpoint %v, backing up PC from %#x", b, regs.PC());
|
||||
|
||||
regs.Rip = uint64(b.pc);
|
||||
regs.SetPC(uint64(b.pc));
|
||||
err = t.ptraceSetRegs(®s);
|
||||
if err != nil {
|
||||
return stopped, err;
|
||||
@ -997,7 +997,7 @@ func (p *process) Continue() os.Error {
|
||||
if err != nil {
|
||||
return err;
|
||||
}
|
||||
if b, ok := p.breakpoints[uintptr(regs.Rip)]; ok {
|
||||
if b, ok := p.breakpoints[uintptr(regs.PC())]; ok {
|
||||
t.logTrace("stepping over breakpoint %v", b);
|
||||
if err := t.stepAsync(ready); err != nil {
|
||||
return err;
|
||||
|
@ -4,3 +4,116 @@
|
||||
|
||||
package proc
|
||||
|
||||
import (
|
||||
"os";
|
||||
"strconv";
|
||||
"syscall";
|
||||
)
|
||||
|
||||
type _386Regs struct {
|
||||
syscall.PtraceRegs;
|
||||
setter func (*syscall.PtraceRegs) os.Error;
|
||||
}
|
||||
|
||||
var names = [...]string {
|
||||
"eax",
|
||||
"ebx",
|
||||
"ecx",
|
||||
"edx",
|
||||
"esi",
|
||||
"edi",
|
||||
"ebp",
|
||||
"esp",
|
||||
"eip",
|
||||
"eflags",
|
||||
"cs",
|
||||
"ss",
|
||||
"ds",
|
||||
"es",
|
||||
"fs",
|
||||
"gs",
|
||||
}
|
||||
|
||||
func (r *_386Regs) PC() Word {
|
||||
return Word(r.Eip);
|
||||
}
|
||||
|
||||
func (r *_386Regs) SetPC(val Word) os.Error {
|
||||
r.Eip = int32(val);
|
||||
return r.setter(&r.PtraceRegs);
|
||||
}
|
||||
|
||||
func (r *_386Regs) Link() Word {
|
||||
// TODO(austin)
|
||||
panic("No link register");
|
||||
}
|
||||
|
||||
func (r *_386Regs) SetLink(val Word) os.Error {
|
||||
panic("No link register");
|
||||
}
|
||||
|
||||
func (r *_386Regs) SP() Word {
|
||||
return Word(r.Esp);
|
||||
}
|
||||
|
||||
func (r *_386Regs) SetSP(val Word) os.Error {
|
||||
r.Esp = int32(val);
|
||||
return r.setter(&r.PtraceRegs);
|
||||
}
|
||||
|
||||
func (r *_386Regs) Names() []string {
|
||||
return &names;
|
||||
}
|
||||
|
||||
func (r *_386Regs) Get(i int) Word {
|
||||
switch i {
|
||||
case 0: return Word(uint32(r.Eax));
|
||||
case 1: return Word(uint32(r.Ebx));
|
||||
case 2: return Word(uint32(r.Ecx));
|
||||
case 3: return Word(uint32(r.Edx));
|
||||
case 4: return Word(uint32(r.Esi));
|
||||
case 5: return Word(uint32(r.Edi));
|
||||
case 6: return Word(uint32(r.Ebp));
|
||||
case 7: return Word(uint32(r.Esp));
|
||||
case 8: return Word(uint32(r.Eip));
|
||||
case 9: return Word(uint32(r.Eflags));
|
||||
case 10: return Word(r.Cs);
|
||||
case 11: return Word(r.Ss);
|
||||
case 12: return Word(r.Ds);
|
||||
case 13: return Word(r.Es);
|
||||
case 14: return Word(r.Fs);
|
||||
case 15: return Word(r.Gs);
|
||||
}
|
||||
panic("invalid register index ", strconv.Itoa(i));
|
||||
}
|
||||
|
||||
func (r *_386Regs) Set(i int, val Word) os.Error {
|
||||
switch i {
|
||||
case 0: r.Eax = int32(val);
|
||||
case 1: r.Ebx = int32(val);
|
||||
case 2: r.Ecx = int32(val);
|
||||
case 3: r.Edx = int32(val);
|
||||
case 4: r.Esi = int32(val);
|
||||
case 5: r.Edi = int32(val);
|
||||
case 6: r.Ebp = int32(val);
|
||||
case 7: r.Esp = int32(val);
|
||||
case 8: r.Eip = int32(val);
|
||||
case 9: r.Eflags = int32(val);
|
||||
case 10: r.Cs = uint16(val);
|
||||
case 11: r.Ss = uint16(val);
|
||||
case 12: r.Ds = uint16(val);
|
||||
case 13: r.Es = uint16(val);
|
||||
case 14: r.Fs = uint16(val);
|
||||
case 15: r.Gs = uint16(val);
|
||||
default:
|
||||
panic("invalid register index ", strconv.Itoa(i));
|
||||
}
|
||||
return r.setter(&r.PtraceRegs);
|
||||
}
|
||||
|
||||
func newRegs(regs *syscall.PtraceRegs, setter func (*syscall.PtraceRegs) os.Error) Regs {
|
||||
res := _386Regs{};
|
||||
res.PtraceRegs = *regs;
|
||||
res.setter = setter;
|
||||
return &res;
|
||||
}
|
||||
|
@ -136,3 +136,11 @@ func Listen(s int, n int) (errno int) {
|
||||
_, errno = socketcall(_LISTEN, uintptr(s), uintptr(n), 0, 0, 0, 0);
|
||||
return;
|
||||
}
|
||||
|
||||
func (r *PtraceRegs) PC() uint64 {
|
||||
return uint64(uint32(r.Eip));
|
||||
}
|
||||
|
||||
func (r *PtraceRegs) SetPC(pc uint64) {
|
||||
r.Eip = int32(pc);
|
||||
}
|
||||
|
@ -62,3 +62,10 @@ func NsecToTimeval(nsec int64) (tv Timeval) {
|
||||
return;
|
||||
}
|
||||
|
||||
func (r *PtraceRegs) PC() uint64 {
|
||||
return r.Rip;
|
||||
}
|
||||
|
||||
func (r *PtraceRegs) SetPC(pc uint64) {
|
||||
r.Rip = pc;
|
||||
}
|
||||
|
@ -307,21 +307,21 @@ type PtraceRegs struct {
|
||||
Ebp int32;
|
||||
Eax int32;
|
||||
Ds uint16;
|
||||
__ds uint16;
|
||||
X__ds uint16;
|
||||
Es uint16;
|
||||
__es uint16;
|
||||
X__es uint16;
|
||||
Fs uint16;
|
||||
__fs uint16;
|
||||
X__fs uint16;
|
||||
Gs uint16;
|
||||
__gs uint16;
|
||||
X__gs uint16;
|
||||
Orig_eax int32;
|
||||
Eip int32;
|
||||
Cs uint16;
|
||||
__cs uint16;
|
||||
X__cs uint16;
|
||||
Eflags int32;
|
||||
Esp int32;
|
||||
Ss uint16;
|
||||
__ss uint16;
|
||||
X__ss uint16;
|
||||
}
|
||||
|
||||
type FdSet struct {
|
||||
|
Loading…
Reference in New Issue
Block a user