processor.h 514 B

12345678910111213141516171819202122
  1. #ifndef __UM_PROCESSOR_H
  2. #define __UM_PROCESSOR_H
  3. /* include faultinfo structure */
  4. #include <sysdep/faultinfo.h>
  5. #ifdef CONFIG_X86_32
  6. # include "processor_32.h"
  7. #else
  8. # include "processor_64.h"
  9. #endif
  10. #define KSTK_EIP(tsk) KSTK_REG(tsk, HOST_IP)
  11. #define KSTK_ESP(tsk) KSTK_REG(tsk, HOST_IP)
  12. #define KSTK_EBP(tsk) KSTK_REG(tsk, HOST_BP)
  13. #define ARCH_IS_STACKGROW(address) \
  14. (address + 65536 + 32 * sizeof(unsigned long) >= UPT_SP(&current->thread.regs.regs))
  15. #include <asm/processor-generic.h>
  16. #endif