Commit 0e56e590 by Ian Lance Taylor Committed by Ian Lance Taylor

libgo: Use libbacktrace rather than debug/elf registration.

From-SVN: r191831
parent d10402b4
2012-09-28 Ian Lance Taylor <iant@google.com>
* Makefile.def: Make all-target-libgo depend on
all-target-libbacktrace.
* Makefile.in: Rebuild.
2012-09-26 Ian Lance Taylor <iant@google.com> 2012-09-26 Ian Lance Taylor <iant@google.com>
* Makefile.def: Make all-gcc depend on all-libbacktrace. * Makefile.def: Make all-gcc depend on all-libbacktrace.
......
...@@ -491,6 +491,7 @@ dependencies = { module=configure-target-fastjar; on=configure-target-zlib; }; ...@@ -491,6 +491,7 @@ dependencies = { module=configure-target-fastjar; on=configure-target-zlib; };
dependencies = { module=all-target-fastjar; on=all-target-zlib; }; dependencies = { module=all-target-fastjar; on=all-target-zlib; };
dependencies = { module=configure-target-libgo; on=configure-target-libffi; }; dependencies = { module=configure-target-libgo; on=configure-target-libffi; };
dependencies = { module=configure-target-libgo; on=all-target-libstdc++-v3; }; dependencies = { module=configure-target-libgo; on=all-target-libstdc++-v3; };
dependencies = { module=all-target-libgo; on=all-target-libbacktrace; };
dependencies = { module=all-target-libgo; on=all-target-libffi; }; dependencies = { module=all-target-libgo; on=all-target-libffi; };
dependencies = { module=configure-target-libjava; on=configure-target-zlib; }; dependencies = { module=configure-target-libjava; on=configure-target-zlib; };
dependencies = { module=configure-target-libjava; on=configure-target-boehm-gc; }; dependencies = { module=configure-target-libjava; on=configure-target-boehm-gc; };
......
...@@ -45348,6 +45348,7 @@ configure-target-fastjar: maybe-configure-target-zlib ...@@ -45348,6 +45348,7 @@ configure-target-fastjar: maybe-configure-target-zlib
all-target-fastjar: maybe-all-target-zlib all-target-fastjar: maybe-all-target-zlib
configure-target-libgo: maybe-configure-target-libffi configure-target-libgo: maybe-configure-target-libffi
configure-target-libgo: maybe-all-target-libstdc++-v3 configure-target-libgo: maybe-all-target-libstdc++-v3
all-target-libgo: maybe-all-target-libbacktrace
all-target-libgo: maybe-all-target-libffi all-target-libgo: maybe-all-target-libffi
configure-target-libjava: maybe-configure-target-zlib configure-target-libjava: maybe-configure-target-zlib
configure-target-libjava: maybe-configure-target-boehm-gc configure-target-libjava: maybe-configure-target-boehm-gc
...@@ -39,7 +39,8 @@ ACLOCAL_AMFLAGS = -I ./config -I ../config ...@@ -39,7 +39,8 @@ ACLOCAL_AMFLAGS = -I ./config -I ../config
AM_CFLAGS = -fexceptions -fplan9-extensions $(SPLIT_STACK) $(WARN_CFLAGS) \ AM_CFLAGS = -fexceptions -fplan9-extensions $(SPLIT_STACK) $(WARN_CFLAGS) \
$(STRINGOPS_FLAG) $(OSCFLAGS) \ $(STRINGOPS_FLAG) $(OSCFLAGS) \
-I $(srcdir)/../libgcc -I $(MULTIBUILDTOP)../../gcc/include -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
-I $(MULTIBUILDTOP)../../gcc/include
if USING_SPLIT_STACK if USING_SPLIT_STACK
AM_LDFLAGS = -XCClinker $(SPLIT_STACK) AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
...@@ -1062,8 +1063,7 @@ go_debug_dwarf_files = \ ...@@ -1062,8 +1063,7 @@ go_debug_dwarf_files = \
go/debug/dwarf/unit.go go/debug/dwarf/unit.go
go_debug_elf_files = \ go_debug_elf_files = \
go/debug/elf/elf.go \ go/debug/elf/elf.go \
go/debug/elf/file.go \ go/debug/elf/file.go
go/debug/elf/runtime.go
go_debug_gosym_files = \ go_debug_gosym_files = \
go/debug/gosym/pclntab.go \ go/debug/gosym/pclntab.go \
go/debug/gosym/symtab.go go/debug/gosym/symtab.go
...@@ -1782,7 +1782,8 @@ libgo_la_SOURCES = $(runtime_files) ...@@ -1782,7 +1782,8 @@ libgo_la_SOURCES = $(runtime_files)
libgo_la_LDFLAGS = $(PTHREAD_CFLAGS) $(AM_LDFLAGS) libgo_la_LDFLAGS = $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
libgo_la_LIBADD = \ libgo_la_LIBADD = \
$(libgo_go_objs) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS) $(libgo_go_objs) ../libbacktrace/libbacktrace.la \
$(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
libgobegin_a_SOURCES = \ libgobegin_a_SOURCES = \
runtime/go-main.c runtime/go-main.c
......
...@@ -169,7 +169,8 @@ am__DEPENDENCIES_2 = bufio.lo bytes.lo bytes/index.lo crypto.lo \ ...@@ -169,7 +169,8 @@ am__DEPENDENCIES_2 = bufio.lo bytes.lo bytes/index.lo crypto.lo \
text/tabwriter.lo text/template.lo text/template/parse.lo \ text/tabwriter.lo text/template.lo text/template/parse.lo \
testing/iotest.lo testing/quick.lo unicode/utf16.lo \ testing/iotest.lo testing/quick.lo unicode/utf16.lo \
unicode/utf8.lo unicode/utf8.lo
libgo_la_DEPENDENCIES = $(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \ libgo_la_DEPENDENCIES = $(am__DEPENDENCIES_2) \
../libbacktrace/libbacktrace.la $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
@LIBGO_IS_LINUX_FALSE@am__objects_1 = lock_sema.lo thread-sema.lo @LIBGO_IS_LINUX_FALSE@am__objects_1 = lock_sema.lo thread-sema.lo
...@@ -435,7 +436,8 @@ AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS) ...@@ -435,7 +436,8 @@ AM_CPPFLAGS = -I $(srcdir)/runtime $(LIBFFIINCS) $(PTHREAD_CFLAGS)
ACLOCAL_AMFLAGS = -I ./config -I ../config ACLOCAL_AMFLAGS = -I ./config -I ../config
AM_CFLAGS = -fexceptions -fplan9-extensions $(SPLIT_STACK) $(WARN_CFLAGS) \ AM_CFLAGS = -fexceptions -fplan9-extensions $(SPLIT_STACK) $(WARN_CFLAGS) \
$(STRINGOPS_FLAG) $(OSCFLAGS) \ $(STRINGOPS_FLAG) $(OSCFLAGS) \
-I $(srcdir)/../libgcc -I $(MULTIBUILDTOP)../../gcc/include -I $(srcdir)/../libgcc -I $(srcdir)/../libbacktrace \
-I $(MULTIBUILDTOP)../../gcc/include
@USING_SPLIT_STACK_TRUE@AM_LDFLAGS = -XCClinker $(SPLIT_STACK) @USING_SPLIT_STACK_TRUE@AM_LDFLAGS = -XCClinker $(SPLIT_STACK)
...@@ -1287,8 +1289,7 @@ go_debug_dwarf_files = \ ...@@ -1287,8 +1289,7 @@ go_debug_dwarf_files = \
go_debug_elf_files = \ go_debug_elf_files = \
go/debug/elf/elf.go \ go/debug/elf/elf.go \
go/debug/elf/file.go \ go/debug/elf/file.go
go/debug/elf/runtime.go
go_debug_gosym_files = \ go_debug_gosym_files = \
go/debug/gosym/pclntab.go \ go/debug/gosym/pclntab.go \
...@@ -1932,7 +1933,8 @@ libgo_go_objs = \ ...@@ -1932,7 +1933,8 @@ libgo_go_objs = \
libgo_la_SOURCES = $(runtime_files) libgo_la_SOURCES = $(runtime_files)
libgo_la_LDFLAGS = $(PTHREAD_CFLAGS) $(AM_LDFLAGS) libgo_la_LDFLAGS = $(PTHREAD_CFLAGS) $(AM_LDFLAGS)
libgo_la_LIBADD = \ libgo_la_LIBADD = \
$(libgo_go_objs) $(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS) $(libgo_go_objs) ../libbacktrace/libbacktrace.la \
$(LIBFFI) $(PTHREAD_LIBS) $(MATH_LIBS) $(NET_LIBS)
libgobegin_a_SOURCES = \ libgobegin_a_SOURCES = \
runtime/go-main.c runtime/go-main.c
......
...@@ -2,10 +2,9 @@ ...@@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package elf_test package elf
import ( import (
. "debug/elf"
"fmt" "fmt"
"testing" "testing"
) )
......
...@@ -2,11 +2,10 @@ ...@@ -2,11 +2,10 @@
// Use of this source code is governed by a BSD-style // Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file. // license that can be found in the LICENSE file.
package elf_test package elf
import ( import (
"debug/dwarf" "debug/dwarf"
. "debug/elf"
"encoding/binary" "encoding/binary"
"net" "net"
"os" "os"
......
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// This is gccgo-specific code that uses DWARF information to fetch
// file/line information for PC values. This package registers itself
// with the runtime package.
package elf
import (
"debug/dwarf"
"debug/macho"
"os"
"runtime"
"sort"
"sync"
)
func init() {
// Register our lookup functions with the runtime package.
runtime.RegisterDebugLookup(funcFileLine, symbolValue)
}
// The file struct holds information for a specific file that is part
// of the execution.
type file struct {
elf *File // If ELF
macho *macho.File // If Mach-O
dwarf *dwarf.Data // DWARF information
symsByName []sym // Sorted by name
symsByAddr []sym // Sorted by address
}
// Sort symbols by name.
type symsByName []sym
func (s symsByName) Len() int { return len(s) }
func (s symsByName) Less(i, j int) bool { return s[i].name < s[j].name }
func (s symsByName) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
// Sort symbols by address.
type symsByAddr []sym
func (s symsByAddr) Len() int { return len(s) }
func (s symsByAddr) Less(i, j int) bool { return s[i].addr < s[j].addr }
func (s symsByAddr) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
// The sym structure holds the information we care about for a symbol,
// namely name and address.
type sym struct {
name string
addr uintptr
}
// Open an input file.
func open(name string) (*file, error) {
efile, err := Open(name)
var mfile *macho.File
if err != nil {
var merr error
mfile, merr = macho.Open(name)
if merr != nil {
return nil, err
}
}
r := &file{elf: efile, macho: mfile}
if efile != nil {
r.dwarf, err = efile.DWARF()
} else {
r.dwarf, err = mfile.DWARF()
}
if err != nil {
return nil, err
}
var syms []sym
if efile != nil {
esyms, err := efile.Symbols()
if err != nil {
return nil, err
}
syms = make([]sym, 0, len(esyms))
for _, s := range esyms {
if ST_TYPE(s.Info) == STT_FUNC {
syms = append(syms, sym{s.Name, uintptr(s.Value)})
}
}
} else {
syms = make([]sym, 0, len(mfile.Symtab.Syms))
for _, s := range mfile.Symtab.Syms {
syms = append(syms, sym{s.Name, uintptr(s.Value)})
}
}
r.symsByName = make([]sym, len(syms))
copy(r.symsByName, syms)
sort.Sort(symsByName(r.symsByName))
r.symsByAddr = syms
sort.Sort(symsByAddr(r.symsByAddr))
return r, nil
}
// The main executable
var executable *file
// Only open the executable once.
var executableOnce sync.Once
func openExecutable() {
executableOnce.Do(func() {
f, err := open("/proc/self/exe")
if err != nil {
f, err = open(os.Args[0])
if err != nil {
return
}
}
executable = f
})
}
// The funcFileLine function looks up the function name, file name,
// and line number for a PC value.
func funcFileLine(pc uintptr, function *string, file *string, line *int) bool {
openExecutable()
if executable == nil || executable.dwarf == nil {
return false
}
f, ln, err := executable.dwarf.FileLine(uint64(pc))
if err != nil {
return false
}
*file = f
*line = ln
*function = ""
if len(executable.symsByAddr) > 0 && pc >= executable.symsByAddr[0].addr {
i := sort.Search(len(executable.symsByAddr),
func(i int) bool { return executable.symsByAddr[i].addr > pc })
*function = executable.symsByAddr[i-1].name
}
return true
}
// The symbolValue function fetches the value of a symbol.
func symbolValue(name string, val *uintptr) bool {
i := sort.Search(len(executable.symsByName),
func(i int) bool { return executable.symsByName[i].name >= name })
if i >= len(executable.symsByName) || executable.symsByName[i].name != name {
return false
}
*val = executable.symsByName[i].addr
return true
}
...@@ -35,7 +35,6 @@ package pprof ...@@ -35,7 +35,6 @@ package pprof
import ( import (
"bufio" "bufio"
"bytes" "bytes"
_ "debug/elf"
"fmt" "fmt"
"html/template" "html/template"
"io" "io"
......
...@@ -6,7 +6,6 @@ package net ...@@ -6,7 +6,6 @@ package net
import ( import (
"bytes" "bytes"
_ "debug/elf"
"reflect" "reflect"
"runtime" "runtime"
"testing" "testing"
......
...@@ -8,7 +8,6 @@ package debug ...@@ -8,7 +8,6 @@ package debug
import ( import (
"bytes" "bytes"
_ "debug/elf"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os" "os"
......
...@@ -11,7 +11,6 @@ package pprof ...@@ -11,7 +11,6 @@ package pprof
import ( import (
"bufio" "bufio"
"bytes" "bytes"
_ "debug/elf"
"fmt" "fmt"
"io" "io"
"runtime" "runtime"
......
...@@ -79,7 +79,6 @@ ...@@ -79,7 +79,6 @@
package testing package testing
import ( import (
_ "debug/elf"
"flag" "flag"
"fmt" "fmt"
"os" "os"
......
...@@ -8,41 +8,99 @@ ...@@ -8,41 +8,99 @@
#include <stdint.h> #include <stdint.h>
#include "backtrace.h"
#include "runtime.h" #include "runtime.h"
#include "go-string.h" #include "go-string.h"
/* Get the function name, file name, and line number for a PC value. /* Get the function name, file name, and line number for a PC value.
We use the DWARF debug information to get this. Rather than write We use the backtrace library to get this. */
a whole new library in C, we use the existing Go library.
Unfortunately, the Go library is only available if the debug/elf /* Data structure to gather file/line information. */
package is imported (we use debug/elf for both ELF and Mach-O, in
this case). We arrange for the debug/elf package to register struct caller
itself, and tweak the various packages that need this information {
to import debug/elf where possible. */ struct __go_string fn;
struct __go_string file;
int line;
};
/* Collect file/line information for a PC value. If this is called
more than once, due to inlined functions, we use the last call, as
that is usually the most useful one. */
static int
callback (void *data, uintptr_t pc __attribute__ ((unused)),
const char *filename, int lineno, const char *function)
{
struct caller *c = (struct caller *) data;
if (function == NULL)
{
c->fn.__data = NULL;
c->fn.__length = 0;
}
else
{
char *s;
c->fn.__length = __builtin_strlen (function);
s = runtime_malloc (c->fn.__length);
__builtin_memcpy (s, function, c->fn.__length);
c->fn.__data = (unsigned char *) s;
}
if (filename == NULL)
{
c->file.__data = NULL;
c->file.__length = 0;
}
else
{
char *s;
c->file.__length = __builtin_strlen (filename);
s = runtime_malloc (c->file.__length);
__builtin_memcpy (s, filename, c->file.__length);
c->file.__data = (unsigned char *) s;
}
c->line = lineno;
return 0;
}
/* The function that returns function/file/line information. */ /* The error callback for backtrace_pcinfo and backtrace_syminfo. */
typedef _Bool (*infofn_type) (uintptr_t, struct __go_string *, static void
struct __go_string *, int *); error_callback (void *data __attribute__ ((unused)),
static infofn_type infofn; const char *msg, int errnum)
{
if (errnum == -1)
return;
if (errnum > 0)
runtime_printf ("%s errno %d\n", msg, errnum);
runtime_throw (msg);
}
/* The backtrace library state. */
/* The function that returns the value of a symbol, used to get the static void *back_state;
entry address of a function. */
typedef _Bool (*symvalfn_type) (struct __go_string, uintptr_t *); /* A lock to control creating back_state. */
static symvalfn_type symvalfn;
/* This is called by debug/elf to register the function that returns static Lock back_state_lock;
function/file/line information. */
void RegisterDebugLookup (infofn_type, symvalfn_type) /* Fetch back_state, creating it if necessary. */
__asm__ ("runtime.RegisterDebugLookup");
void struct backtrace_state *
RegisterDebugLookup (infofn_type pi, symvalfn_type ps) __go_get_backtrace_state ()
{ {
infofn = pi; runtime_lock (&back_state_lock);
symvalfn = ps; if (back_state == NULL)
back_state = backtrace_create_state (NULL, 1, error_callback, NULL);
runtime_unlock (&back_state_lock);
return back_state;
} }
/* Return function/file/line information for PC. */ /* Return function/file/line information for PC. */
...@@ -51,19 +109,38 @@ _Bool ...@@ -51,19 +109,38 @@ _Bool
__go_file_line (uintptr pc, struct __go_string *fn, struct __go_string *file, __go_file_line (uintptr pc, struct __go_string *fn, struct __go_string *file,
int *line) int *line)
{ {
if (infofn == NULL) struct caller c;
return 0;
return infofn (pc, fn, file, line); runtime_memclr (&c, sizeof c);
backtrace_pcinfo (__go_get_backtrace_state (), pc, callback,
error_callback, &c);
*fn = c.fn;
*file = c.file;
*line = c.line;
return c.file.__length > 0;
} }
/* Return the value of a symbol. */ /* Collect symbol information. */
_Bool static void
__go_symbol_value (struct __go_string sym, uintptr_t *val) syminfo_callback (void *data, uintptr_t pc __attribute__ ((unused)),
const char *symname __attribute__ ((unused)),
uintptr_t address)
{
uintptr_t *pval = (uintptr_t *) data;
*pval = address;
}
/* Set *VAL to the value of the symbol for PC. */
static _Bool
__go_symbol_value (uintptr_t pc, uintptr_t *val)
{ {
if (symvalfn == NULL) *val = 0;
return 0; backtrace_syminfo (__go_get_backtrace_state (), pc, syminfo_callback,
return symvalfn (sym, val); error_callback, &val);
return *val != 0;
} }
/* The values returned by runtime.Caller. */ /* The values returned by runtime.Caller. */
...@@ -112,12 +189,15 @@ FuncForPC (uintptr_t pc) ...@@ -112,12 +189,15 @@ FuncForPC (uintptr_t pc)
if (!__go_file_line (pc, &fn, &file, &line)) if (!__go_file_line (pc, &fn, &file, &line))
return NULL; return NULL;
if (!__go_symbol_value (fn, &val))
return NULL;
ret = (Func *) runtime_malloc (sizeof (*ret)); ret = (Func *) runtime_malloc (sizeof (*ret));
ret->name = fn; ret->name = fn;
ret->entry = val;
if (__go_symbol_value (pc, &val))
ret->entry = val;
else
ret->entry = 0;
return ret; return ret;
} }
......
...@@ -6,64 +6,56 @@ ...@@ -6,64 +6,56 @@
#include "config.h" #include "config.h"
#include "unwind.h" #include "backtrace.h"
#include "runtime.h" #include "runtime.h"
/* Argument passed to backtrace function. */ /* Argument passed to callback function. */
struct callers_data struct callers_data
{ {
int skip;
uintptr *pcbuf; uintptr *pcbuf;
int index; int index;
int max; int max;
}; };
static _Unwind_Reason_Code /* Callback function for backtrace_simple. Just collect the PC
backtrace (struct _Unwind_Context *context, void *varg) values. Return zero to continue, non-zero to stop. */
static int
callback (void *data, uintptr_t pc)
{
struct callers_data *arg = (struct callers_data *) data;
arg->pcbuf[arg->index] = pc;
++arg->index;
return arg->index >= arg->max;
}
/* Error callback. */
static void
error_callback (void *data __attribute__ ((unused)),
const char *msg, int errnum)
{ {
struct callers_data *arg = (struct callers_data *) varg; if (errnum != 0)
uintptr pc; runtime_printf ("%s errno %d\n", msg, errnum);
int ip_before_insn = 0; runtime_throw (msg);
#ifdef HAVE_GETIPINFO
pc = _Unwind_GetIPInfo (context, &ip_before_insn);
#else
pc = _Unwind_GetIP (context);
#endif
/* FIXME: If PC is in the __morestack routine, we should ignore
it. */
if (arg->skip > 0)
--arg->skip;
else if (arg->index >= arg->max)
return _URC_END_OF_STACK;
else
{
/* Here PC will be the return address. We actually want the
address of the call instruction, so back up one byte and
count on the lookup routines handling that correctly. */
if (!ip_before_insn)
--pc;
arg->pcbuf[arg->index] = pc;
++arg->index;
}
return _URC_NO_REASON;
} }
/* Gather caller PC's. */
int32 int32
runtime_callers (int32 skip, uintptr *pcbuf, int32 m) runtime_callers (int32 skip, uintptr *pcbuf, int32 m)
{ {
struct callers_data arg; struct callers_data data;
arg.skip = skip + 1; data.pcbuf = pcbuf;
arg.pcbuf = pcbuf; data.index = 0;
arg.index = 0; data.max = m;
arg.max = m; backtrace_simple (__go_get_backtrace_state (), skip + 1, callback,
_Unwind_Backtrace (backtrace, &arg); error_callback, &data);
return arg.index; return data.index;
} }
int Callers (int, struct __go_open_array) int Callers (int, struct __go_open_array)
......
...@@ -517,6 +517,8 @@ void __go_register_gc_roots(struct root_list*); ...@@ -517,6 +517,8 @@ void __go_register_gc_roots(struct root_list*);
// the stacks are allocated by the splitstack library. // the stacks are allocated by the splitstack library.
extern uintptr runtime_stacks_sys; extern uintptr runtime_stacks_sys;
extern _Bool __go_file_line (uintptr, String*, String*, int *); struct backtrace_state;
extern struct backtrace_state *__go_get_backtrace_state(void);
extern _Bool __go_file_line(uintptr, String*, String*, int *);
int32 getproccount(void); int32 getproccount(void);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment