Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nrc/xmas-dwarf
https://github.com/nrc/xmas-dwarf
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nrc/xmas-dwarf
- Owner: nrc
- License: other
- Created: 2015-12-27T08:47:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-22T06:54:54.000Z (over 8 years ago)
- Last Synced: 2024-10-28T20:47:02.465Z (about 2 months ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# xmas-dwarf
A Rust library for reading and navigating DWARF files.
DWARF is used to represent debug information on Unix-like systems. xmas-dwarf is
a type-safe library written in Rust for parsing DWARF files.* [Introduction to DWARF](http://dwarfstd.org/doc/Debugging%20using%20DWARF-2012.pdf)
* [Spec](http://www.dwarfstd.org/doc/DWARF4.pdf)## Supported
* debug_info section (the DIEs)
* abbreviation table
* lines table## limitations
* no support for sections not listed above
* assumes DWARF embedded in ELF
* only supports 32bit DWARF (note this is unrelated to the pointer width of the target machine) and kinda, sorta version 3
* does not take into account ELF relocation info
* no support for DWARF expressions