context_x86.h 231 B

123456789101112
  1. #pragma once
  2. #if defined(_x86_64_)
  3. #include "context_x86_64.h"
  4. #elif defined(_i386_)
  5. #include "context_i686.h"
  6. #endif
  7. #define PROGR_CNT MJB_PC
  8. #define STACK_CNT MJB_RSP
  9. #define FRAME_CNT MJB_RBP
  10. #define EXTRA_PUSH_ARGS 1