gp->sigcode0 = info->si_code;
gp->sigcode1 = (uintptr)info->si_addr;
- sp = (uintptr*)r->esp;
- *--sp = r->eip;
+ // Only push sigpanic if r->eip != 0.
+ // If r->eip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->eip != 0) {
+ sp = (uintptr*)r->esp;
+ *--sp = r->eip;
+ r->esp = (uintptr)sp;
+ }
r->eip = (uintptr)sigpanic;
- r->esp = (uintptr)sp;
return;
}
gp->sig = sig;
gp->sigcode0 = info->si_code;
gp->sigcode1 = (uintptr)info->si_addr;
-
- sp = (uintptr*)r->rsp;
- *--sp = r->rip;
+
+ // Only push sigpanic if r->rip != 0.
+ // If r->rip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->rip != 0) {
+ sp = (uintptr*)r->rsp;
+ *--sp = r->rip;
+ r->rsp = (uintptr)sp;
+ }
r->rip = (uintptr)sigpanic;
- r->rsp = (uintptr)sp;
return;
}
gp->sigcode0 = info->si_code;
gp->sigcode1 = (uintptr)info->si_addr;
- sp = (uintptr*)r->mc_esp;
- *--sp = r->mc_eip;
+ // Only push sigpanic if r->mc_eip != 0.
+ // If r->mc_eip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->mc_eip != 0) {
+ sp = (uintptr*)r->mc_esp;
+ *--sp = r->mc_eip;
+ r->mc_esp = (uintptr)sp;
+ }
r->mc_eip = (uintptr)sigpanic;
- r->mc_esp = (uintptr)sp;
return;
}
gp->sigcode0 = info->si_code;
gp->sigcode1 = (uintptr)info->si_addr;
- sp = (uintptr*)r->mc_rsp;
- *--sp = r->mc_rip;
+ // Only push sigpanic if r->mc_rip != 0.
+ // If r->mc_rip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->mc_rip != 0) {
+ sp = (uintptr*)r->mc_rsp;
+ *--sp = r->mc_rip;
+ r->mc_rsp = (uintptr)sp;
+ }
r->mc_rip = (uintptr)sigpanic;
- r->mc_rsp = (uintptr)sp;
return;
}
gp->sigcode0 = info->si_code;
gp->sigcode1 = ((uintptr*)info)[3];
- sp = (uintptr*)r->esp;
- *--sp = r->eip;
+ // Only push sigpanic if r->eip != 0.
+ // If r->eip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->eip != 0) {
+ sp = (uintptr*)r->esp;
+ *--sp = r->eip;
+ r->esp = (uintptr)sp;
+ }
r->eip = (uintptr)sigpanic;
- r->esp = (uintptr)sp;
return;
}
gp->sigcode0 = info->si_code;
gp->sigcode1 = ((uintptr*)info)[2];
- sp = (uintptr*)r->rsp;
- *--sp = r->rip;
+ // Only push sigpanic if r->rip != 0.
+ // If r->rip == 0, probably panicked because of a
+ // call to a nil func. Not pushing that onto sp will
+ // make the trace look like a call to sigpanic instead.
+ // (Otherwise the trace will end at sigpanic and we
+ // won't get to see who faulted.)
+ if(r->rip != 0) {
+ sp = (uintptr*)r->rsp;
+ *--sp = r->rip;
+ r->rsp = (uintptr)sp;
+ }
r->rip = (uintptr)sigpanic;
- r->rsp = (uintptr)sp;
return;
}
// If this is a leaf function, we do smash LR,
// but we're not going back there anyway.
- r->arm_lr = r->arm_pc;
+ // Don't bother smashing if r->arm_pc is 0,
+ // which is probably a call to a nil func: the
+ // old link register is more useful in the stack trace.
+ if(r->arm_pc != 0)
+ r->arm_lr = r->arm_pc;
r->arm_pc = (uintptr)sigpanic;
return;
}