asm-consts.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * This program is used to generate definitions needed by
  3. * assembly language modules.
  4. *
  5. * We use the technique used in the OSF Mach kernel code:
  6. * generate asm statements containing #defines,
  7. * compile this file to assembler, and then extract the
  8. * #defines from the assembly-language output.
  9. */
  10. #include <linux/stddef.h>
  11. #include <linux/sched.h>
  12. #include <linux/kernel_stat.h>
  13. #include <linux/ptrace.h>
  14. #include <linux/hardirq.h>
  15. #include <asm/irq.h>
  16. #include <asm/errno.h>
  17. #define DEFINE(sym, val) \
  18. asm volatile("\n->" #sym " %0 " #val : : "i" (val))
  19. #define BLANK() asm volatile("\n->" : : )
  20. int main (void)
  21. {
  22. /* offsets into the task struct */
  23. DEFINE (TASK_STATE, offsetof (struct task_struct, state));
  24. DEFINE (TASK_FLAGS, offsetof (struct task_struct, flags));
  25. DEFINE (TASK_PTRACE, offsetof (struct task_struct, ptrace));
  26. DEFINE (TASK_BLOCKED, offsetof (struct task_struct, blocked));
  27. DEFINE (TASK_THREAD, offsetof (struct task_struct, thread));
  28. DEFINE (TASK_THREAD_INFO, offsetof (struct task_struct, thread_info));
  29. DEFINE (TASK_MM, offsetof (struct task_struct, mm));
  30. DEFINE (TASK_ACTIVE_MM, offsetof (struct task_struct, active_mm));
  31. DEFINE (TASK_PID, offsetof (struct task_struct, pid));
  32. /* offsets into the kernel_stat struct */
  33. DEFINE (STAT_IRQ, offsetof (struct kernel_stat, irqs));
  34. /* signal defines */
  35. DEFINE (SIGSEGV, SIGSEGV);
  36. DEFINE (SEGV_MAPERR, SEGV_MAPERR);
  37. DEFINE (SIGTRAP, SIGTRAP);
  38. DEFINE (SIGCHLD, SIGCHLD);
  39. DEFINE (SIGILL, SIGILL);
  40. DEFINE (TRAP_TRACE, TRAP_TRACE);
  41. /* ptrace flag bits */
  42. DEFINE (PT_PTRACED, PT_PTRACED);
  43. DEFINE (PT_DTRACE, PT_DTRACE);
  44. /* error values */
  45. DEFINE (ENOSYS, ENOSYS);
  46. /* clone flag bits */
  47. DEFINE (CLONE_VFORK, CLONE_VFORK);
  48. DEFINE (CLONE_VM, CLONE_VM);
  49. return 0;
  50. }