This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
EH frame parsing tool
- From: Jason Hiser <jdhiser at gmail dot com>
- To: gcc at gcc dot gnu dot org
- Date: Fri, 31 Aug 2018 13:20:45 -0400
- Subject: EH frame parsing tool
Hi All,
As part of a project at the University of Virginia, I had the opportunity
to create a parser for the exception handling information stored in ELF
binaries. I got permission to open source the project, as I couldn't find
anything else out there in the community that did this type of thing. (I'm
aware that readelf -w will print some of the EH info, but not all of it
(LSDAs, for example), and not in a machine-usable way).
If you're interested, you can find the project at
http://git.zephyr-software.com/opensrc/libehp
I'd love to hear from you if you find it useful, and welcome any comments,
feedback, suggestions, or merge requests.
Thanks,
-j