extable.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef _ASM_X86_EXTABLE_H
  2. #define _ASM_X86_EXTABLE_H
  3. /*
  4. * The exception table consists of triples of addresses relative to the
  5. * exception table entry itself. The first address is of an instruction
  6. * that is allowed to fault, the second is the target at which the program
  7. * should continue. The third is a handler function to deal with the fault
  8. * caused by the instruction in the first field.
  9. *
  10. * All the routines below use bits of fixup code that are out of line
  11. * with the main instruction path. This means when everything is well,
  12. * we don't even have to jump over them. Further, they do not intrude
  13. * on our cache or tlb entries.
  14. */
  15. struct exception_table_entry {
  16. int insn, fixup, handler;
  17. };
  18. struct pt_regs;
  19. #define ARCH_HAS_RELATIVE_EXTABLE
  20. #define swap_ex_entry_fixup(a, b, tmp, delta) \
  21. do { \
  22. (a)->fixup = (b)->fixup + (delta); \
  23. (b)->fixup = (tmp).fixup - (delta); \
  24. (a)->handler = (b)->handler + (delta); \
  25. (b)->handler = (tmp).handler - (delta); \
  26. } while (0)
  27. extern int fixup_exception(struct pt_regs *regs, int trapnr);
  28. extern bool ex_has_fault_handler(unsigned long ip);
  29. extern void early_fixup_exception(struct pt_regs *regs, int trapnr);
  30. #endif