Dwarf Interpret library
A wrapper around libdwarfpp
register_map.hpp
1 #pragma once
2 
3 #include <ucontext.h>
4 
5 constexpr int REG_DWARF_TO_UCONTEXT[] = {
6  REG_RAX,
7  REG_RDX,
8  REG_RCX,
9  REG_RBX,
10  REG_RSI,
11  REG_RDI,
12  REG_RBP,
13  REG_RSP,
14  REG_R8,
15  REG_R9,
16  REG_R10,
17  REG_R11,
18  REG_R12,
19  REG_R13,
20  REG_R14,
21  REG_R15,
22  REG_RIP,
23 };