Philip Craig
Philip Craig
Display the disassembled instructions for each function, and annotate with information from the DWARF. Desired information: - variables associated with operands of instructions - file/line, and inlined function if applicable...
Currently ddbug parses everything into memory. Instead, it should do an initial pass that only parses what is needed for sorting and correlation, and then when displaying entries the full...
rust's support for splitting into multiple codegen units makes it harder to compare differences. Can we optionally merge them back together again?
Need to associate closures with the functions that defined them.
Images at http://www.remotesensing.org/libtiff/images.html
Currently the tests require Linux builds to use `split-debuginfo=off` and macOS builds to use `split-debuginfo=packed`. On stable rust, we achieve this with `split-debuginfo=packed` in `Cargo.toml`. This works because this option...
`r_symbolnum` is an addend, not a symbol or section index.
Parsing for these was added in #448
Currently `InflateStream::update` nearly always returns `Ok` for truncated streams, and this flows through to the higher level APIs. There should be some way to determine that more data is still...