package gosym

import "debug/gosym"

Package gosym implements access to the Go symbol and line number tables embedded in Go binaries generated by the gc compilers.

pclntab.go symtab.go

type DecodingError

DecodingError represents an error during the decoding of the symbol table.

func (*DecodingError) Error

type Func

A Func collects information about a single function.

type LineTable

A LineTable is a data structure mapping program counters to line numbers.

In Go 1.1 and earlier, each function (represented by a Func) had its own LineTable, and the line number corresponded to a numbering of all source lines in the program, across all files. That absolute line number would then have to be converted separately to a file name and line number within the file.

In Go 1.2, the format of the data changed so that there is a single LineTable for the entire program, shared by all Funcs, and there are no absolute line numbers, just line numbers within specific files.

For the most part, LineTable's methods should be treated as an internal detail of the package; callers should use the methods on Table instead.

func NewLineTable

NewLineTable returns a new PC/line table corresponding to the encoded data. Text must be the start address of the corresponding text segment.

func (*LineTable) LineToPC

LineToPC returns the program counter for the given line number, considering only program counters before maxpc. Callers should use Table's LineToPC method instead.

func (*LineTable) PCToLine

PCToLine returns the line number for the given program counter. Callers should use Table's PCToLine method instead.

type Obj

An Obj represents a collection of functions in a symbol table.

The exact method of division of a binary into separate Objs is an internal detail of the symbol table format.

In early versions of Go each source file became a different Obj.

In Go 1 and Go 1.1, each package produced one Obj for all Go sources and one Obj per C source file.

In Go 1.2, there is a single Obj for the entire program.

type Sym

A Sym represents a single symbol table entry.

func (*Sym) BaseName

BaseName returns the symbol name without the package or receiver name.

func (*Sym) PackageName

PackageName returns the package part of the symbol name, or the empty string if there is none.

func (*Sym) ReceiverName

ReceiverName returns the receiver type name of this symbol, or the empty string if there is none.

func (*Sym) Static

Static reports whether this symbol is static (not visible outside its file).

type Table

Table represents a Go symbol table. It stores all of the symbols decoded from the program and provides methods to translate between symbols, names, and addresses.

func NewTable

NewTable decodes the Go symbol table in data, returning an in-memory representation.

func (*Table) LineToPC

LineToPC looks up the first program counter on the given line in the named file. It returns UnknownPathError or UnknownLineError if there is an error looking up this line.

func (*Table) LookupFunc

LookupFunc returns the text, data, or bss symbol with the given name, or nil if no such symbol is found.

func (*Table) LookupSym

LookupSym returns the text, data, or bss symbol with the given name, or nil if no such symbol is found.

func (*Table) PCToFunc

PCToFunc returns the function containing the program counter pc, or nil if there is no such function.

func (*Table) PCToLine

PCToLine looks up line number information for a program counter. If there is no information, it returns fn == nil.

func (*Table) SymByAddr

SymByAddr returns the text, data, or bss symbol starting at the given address.

type UnknownFileError

UnknownFileError represents a failure to find the specific file in the symbol table.

func (UnknownFileError) Error

type UnknownLineError

UnknownLineError represents a failure to map a line to a program counter, either because the line is beyond the bounds of the file or because there is no code on the given line.

func (*UnknownLineError) Error