7 #include <dwarfpp/lib.hpp> 8 #include <dwarfpp/regs.hpp> 9 #include <dwarfpp/frame.hpp> 10 #include <dwarfpp/attr.hpp> 11 #include <dwarfpp/frame.hpp> 12 #include <dwarfpp/root.hpp> 14 #include "MemoryMap.hpp" 16 #define OF_WHAT_EXCEPTION(cl_name) \ 17 cl_name: public WhatException { \ 19 cl_name(const std::string& what): WhatException(what) {} \ 20 cl_name() = default; \ 48 const char*
what() const noexcept {
49 return what_str.c_str();
57 class OF_WHAT_EXCEPTION(InvalidElf);
61 class OF_WHAT_EXCEPTION(NoDebugData);
65 class OF_WHAT_EXCEPTION(NoElfForPC);
69 class OF_WHAT_EXCEPTION(ExoticRegister);
73 class OF_WHAT_EXCEPTION(ValuelessRegister);
76 class OF_WHAT_EXCEPTION(NotImplemented);
79 class OF_WHAT_EXCEPTION(FailedGetContext);
82 class OF_WHAT_EXCEPTION(NotFound);
91 typedef std::set<std::pair<int, DwarfRegister> >
DwarfRow;
188 const dwarf::core::FrameSection::fde_iterator fde_at(
190 const dwarf::core::FrameSection::cie_iterator cie_at(
204 static std::map<int, std::unique_ptr<DwarfInterpret> > instances;
208 std::unique_ptr<dwarf::core::root_die> root_die;
Definition: MemoryMap.hpp:20
DwarfRow dwarf_row_at(uintptr_t pc) const
Definition: DwarfInterpret.cpp:320
Definition: DwarfInterpret.hpp:105
Definition: MemoryMap.hpp:51
uintptr_t reg_content_t
The value type of a register's contents.
Definition: DwarfInterpret.hpp:94
const char * what() const noexcept
Get the explanatory text for this exception.
Definition: DwarfInterpret.hpp:48
WhatException(const std::string &what)
Initialize the exception with an explanatory text chunk.
Definition: DwarfInterpret.hpp:41
static UnwindContext get_current_unwind_context()
Definition: DwarfInterpret.cpp:191
Definition: DwarfInterpret.hpp:23
Definition: DwarfInterpret.hpp:33
reg_content_t interpret_dw_register(const DwarfRow &row, const DwarfRegister ®, const UnwindContext &ctx) const
Definition: DwarfInterpret.cpp:112
dwarf::core::FrameSection::register_def DwarfRegister
A Dwarf register.
Definition: DwarfInterpret.hpp:88
static DwarfInterpret & acquire()
Definition: DwarfInterpret.cpp:73
UnwindContext unwind_context(const UnwindContext &ctx)
Definition: DwarfInterpret.cpp:208
WhatException()
Leave the explanatory text empty.
Definition: DwarfInterpret.hpp:45
std::set< std::pair< int, DwarfRegister > > DwarfRow
A Dwarf row of registers (for a given PC)
Definition: DwarfInterpret.hpp:91
Thrown when trying to unwind a context with nothing more to unwind.
Definition: DwarfInterpret.hpp:85