From: Anthony Martin Date: Thu, 13 Mar 2014 01:10:31 +0000 (-0700) Subject: cmd/ld: give acid a fighting chance at unwinding the stack X-Git-Tag: go1.3beta1~378 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b67979320a9214b7d1b75bbd2d11ea5a1aa40323;p=gostls13.git cmd/ld: give acid a fighting chance at unwinding the stack Acid can't produce a stack trace without .frame symbols. Of course, it can only unwind through linear stacks but this is still better than nothing. (I wrote an acid func to do the full unwind a long time ago but lost it and haven't worked up the courage to write it again). Note that these will only be present in the native symbol table for Plan 9 binaries. LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/72450045 --- diff --git a/src/cmd/ld/lib.c b/src/cmd/ld/lib.c index e0fcd15da5..20383de1e1 100644 --- a/src/cmd/ld/lib.c +++ b/src/cmd/ld/lib.c @@ -1341,6 +1341,9 @@ genasmsym(void (*put)(LSym*, char*, int, vlong, vlong, int, LSym*)) for(s = ctxt->textp; s != nil; s = s->next) { put(s, s->name, 'T', s->value, s->size, s->version, s->gotype); + // NOTE(ality): acid can't produce a stack trace without .frame symbols + put(nil, ".frame", 'm', s->locals+PtrSize, 0, 0, 0); + for(a=s->autom; a; a=a->link) { // Emit a or p according to actual offset, even if label is wrong. // This avoids negative offsets, which cannot be encoded.