Versions in this module Expand all Collapse all v0 v0.3.2 Jul 19, 2026 v0.3.1 Jul 14, 2026 Changes in this version + var ViewNames = []string + func AlignAsm(text string) string + func CPUFeatures(f *binfile.File) (string, error) + func ClassifySyscallSite(inst disasm.Inst, symAt func(uint64) (binfile.Symbol, bool)) (site bool, vdso bool) + func DisasmTo(w io.Writer, f *binfile.File, all bool) error + func Function(f *binfile.File, target string) (string, error) + func FunctionInsts(f *binfile.File, svc *explorer.DisasmService, sym binfile.Symbol) []disasm.Inst + func FunctionText(sym binfile.Symbol, insts []disasm.Inst, addrW int) string + func Info(f *binfile.File) string + func IsDisasm(name string) (disasm, all bool) + func IsVDSOName(name string) bool + func IsView(name string) bool + func Libs(f *binfile.File) string + func Relocs(f *binfile.File) string + func ResolveSyscallNum(prev []disasm.Inst, a disasm.Arch) (int64, bool) + func Sections(f *binfile.File) string + func Segments(f *binfile.File) string + func Sources(f *binfile.File) string + func StreamView(w io.Writer, f *binfile.File, name string) (handled bool, err error) + func Strings(f *binfile.File) string + func StringsTo(w io.Writer, f *binfile.File) error + func Symbols(f *binfile.File) string + func SymbolsTo(w io.Writer, f *binfile.File) error + func SyscallName(f *binfile.File, num int64) (string, bool) + func Syscalls(f *binfile.File, full bool) string + func SyscallsArchive(members []binfile.ArchiveMember, full bool) string + func SyscallsFull(f *binfile.File) string + func VDSOSymAt(f *binfile.File) func(uint64) (binfile.Symbol, bool) + func View(f *binfile.File, name string) (string, error) + func ViewNeedsDemangle(name string) bool + func ViewNeedsLayoutOnly(name string) bool + type CPUFeatureSet struct + Baseline string + Counts map[string]int + FirstUse map[string]uint64 + Total int + func ScanCPUFeatures(f *binfile.File) (CPUFeatureSet, error) + func ScanCPUFeaturesCancel(f *binfile.File, done <-chan struct{}) (CPUFeatureSet, error) + func (s CPUFeatureSet) SortedFeatures() []string + type SyscallSite struct + Addr uint64 + HasNum bool + Name string + Num int64 + Origin string + Sym string + Text string + VDSO bool + func CollectSyscallsFull(f *binfile.File) (sites []SyscallSite, objects int, notes []string) + func CollectSyscallsFullCancel(f *binfile.File, done <-chan struct{}) (sites []SyscallSite, objects int, notes []string)