aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/symbolizer/addr2line.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/symbolizer: fix parser handling of small hex valuesjodaco2025-08-181-1/+1
| | | | | | The parser in symbolizer was incorrectly handling values of 0x0-0xf. Fixes #6290
* all: manual linter fixesTaras Madan2025-07-171-1/+0
| | | | | | | | 1. recover the removed comment 2. unnecessary leading newline 3. unnecessary brackets 4. restore dropped "..." 5. use bytes.Equal instead of conversion to string
* all: apply linter auto fixesTaras Madan2025-07-171-4/+2
| | | | ./tools/syz-env bin/golangci-lint run ./... --fix
* pkg/symbolizer: retain the frame if line number is 0Jiao, Joey2025-03-261-1/+4
| | | | | | | | | There are numerous line_entries with a line number of 0 for __sanitizer_cov_trace_pc. Currently, if only one program counter (PC) is hit in the function and the line number is 0 for that PC, the frame is ignored. To accurately report function coverage, we should include the function in such cases.
* pkg/symbolizer: introduce Symbolizer interfaceTaras Madan2025-03-071-0/+184
To simplify interface Read*Symbols were moved out from symbolizer.Symbolizer.