Versions in this module Expand all Collapse all v0 v0.0.1 Nov 12, 2016 Changes in this version + type Disasm struct + func (d *Disasm) Decode(start, end uint64, relocs []Reloc, ...) + func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64) + type File struct + func Open(name string) (*File, error) + func (f *File) Close() error + func (f *File) DWARF() (*dwarf.Data, error) + func (f *File) Disasm() (*Disasm, error) + func (f *File) GOARCH() string + func (f *File) LoadAddress() (uint64, error) + func (f *File) PCLineTable() (Liner, error) + func (f *File) Symbols() ([]Sym, error) + func (f *File) Text() (uint64, []byte, error) + type Liner interface + PCToLine func(uint64) (string, int, *gosym.Func) + type Reloc struct + Addr uint64 + Size uint64 + Stringer RelocStringer + type RelocStringer interface + String func(insnOffset uint64) string + type Sym struct + Addr uint64 + Code rune + Name string + Relocs []Reloc + Size int64 + Type string