123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- #ifndef LIBUNWIND_H
- #define LIBUNWIND_H
- #if defined(__cplusplus) || defined(c_plusplus)
- extern "C" {
- #endif
- #include <sys/types.h>
- #include <inttypes.h>
- #include <ucontext.h>
- #define UNW_TARGET x86_64
- #define UNW_TARGET_X86_64 1
- #define _U_TDEP_QP_TRUE 0
- #define UNW_TDEP_CURSOR_LEN 127
- typedef uint64_t unw_word_t;
- typedef int64_t unw_sword_t;
- typedef long double unw_tdep_fpreg_t;
- typedef enum
- {
- UNW_X86_64_RAX,
- UNW_X86_64_RDX,
- UNW_X86_64_RCX,
- UNW_X86_64_RBX,
- UNW_X86_64_RSI,
- UNW_X86_64_RDI,
- UNW_X86_64_RBP,
- UNW_X86_64_RSP,
- UNW_X86_64_R8,
- UNW_X86_64_R9,
- UNW_X86_64_R10,
- UNW_X86_64_R11,
- UNW_X86_64_R12,
- UNW_X86_64_R13,
- UNW_X86_64_R14,
- UNW_X86_64_R15,
- UNW_X86_64_RIP,
- #ifdef CONFIG_MSABI_SUPPORT
- UNW_X86_64_XMM0,
- UNW_X86_64_XMM1,
- UNW_X86_64_XMM2,
- UNW_X86_64_XMM3,
- UNW_X86_64_XMM4,
- UNW_X86_64_XMM5,
- UNW_X86_64_XMM6,
- UNW_X86_64_XMM7,
- UNW_X86_64_XMM8,
- UNW_X86_64_XMM9,
- UNW_X86_64_XMM10,
- UNW_X86_64_XMM11,
- UNW_X86_64_XMM12,
- UNW_X86_64_XMM13,
- UNW_X86_64_XMM14,
- UNW_X86_64_XMM15,
- UNW_TDEP_LAST_REG = UNW_X86_64_XMM15,
- #else
- UNW_TDEP_LAST_REG = UNW_X86_64_RIP,
- #endif
-
-
- UNW_X86_64_CFA,
- UNW_TDEP_IP = UNW_X86_64_RIP,
- UNW_TDEP_SP = UNW_X86_64_RSP,
- UNW_TDEP_BP = UNW_X86_64_RBP,
- UNW_TDEP_EH = UNW_X86_64_RAX
- }
- x86_64_regnum_t;
- #define UNW_TDEP_NUM_EH_REGS 2
- typedef struct unw_tdep_save_loc
- {
-
- }
- unw_tdep_save_loc_t;
- typedef ucontext_t unw_tdep_context_t;
- typedef struct
- {
-
- }
- unw_tdep_proc_info_t;
- #include "libunwind-dynamic.h"
- #include "libunwind-common.h"
- #define unw_tdep_getcontext UNW_ARCH_OBJ(getcontext)
- #define unw_tdep_is_fpreg UNW_ARCH_OBJ(is_fpreg)
- extern int unw_tdep_getcontext (unw_tdep_context_t *);
- extern int unw_tdep_is_fpreg (int);
- #if defined(__cplusplus) || defined(c_plusplus)
- }
- #endif
- #endif
|