Documentation ¶
Overview ¶
Package objfile implements portable access to OS-specific executable files.
Index ¶
- type CachedFile
- type Disasm
- type File
- 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 FileCache
- type Liner
- type Reloc
- type RelocStringer
- type Sym
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CachedFile ¶ added in go1.9
CachedFile contains the content of a file split into lines.
type Disasm ¶
type Disasm struct {
// contains filtered or unexported fields
}
Disasm is a disassembler for a given File.
func (*Disasm) Decode ¶
func (d *Disasm) Decode(start, end uint64, relocs []Reloc, f func(pc, size uint64, file string, line int, text string))
Decode disassembles the text segment range [start, end), calling f for each instruction.
func (*Disasm) Print ¶
Print prints a disassembly of the file to w. If filter is non-nil, the disassembly only includes functions with names matching filter. If printCode is true, the disassembly includs corresponding source lines. The disassembly only includes functions that overlap the range [start, end).
type File ¶
type File struct {
// contains filtered or unexported fields
}
A File is an opened executable file.
func Open ¶
Open opens the named file. The caller must call f.Close when the file is no longer needed.
func (*File) DWARF ¶ added in go1.7
DWARF returns DWARF debug data for the file, if any. This is for cmd/pprof to locate cgo functions.
func (*File) LoadAddress ¶ added in go1.7
LoadAddress returns the expected load address of the file. This differs from the actual load address for a position-independent executable.
func (*File) PCLineTable ¶
type FileCache ¶ added in go1.9
type FileCache struct {
// contains filtered or unexported fields
}
FileCache is a simple LRU cache of file contents.
func NewFileCache ¶ added in go1.9
NewFileCache returns a FileCache which can contain up to maxLen cached file contents.
func (*FileCache) Line ¶ added in go1.9
Line returns the source code line for the given file and line number. If the file is not already cached, reads it , inserts it into the cache, and removes the least recently used file if necessary. If the file is in cache, moves it up to the front of the list.
type Reloc ¶ added in go1.8
type Reloc struct { Addr uint64 // Address of first byte that reloc applies to. Size uint64 // Number of bytes Stringer RelocStringer }