Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ReadRodataSymbols ¶
ReadRodataSymbols returns list of rodata symbols in the binary bin.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache caches symbolization results from Symbolizer in a thread-safe way.
type Interner ¶
type Interner struct {
// contains filtered or unexported fields
}
Interner allows to intern/deduplicate strings. Interner.Do semantically returns the same string, but physically it will point to an existing string with the same contents (if there was one passed to Do in the past). Interned strings are also "cloned", that is, if the passed string points to a large buffer, it won't after interning (and won't prevent GC'ing of the large buffer). The type is not thread-safe.
Click to show internal directories.
Click to hide internal directories.