asm-offsets.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 <linux/kbuild.h>
  16. #include <asm/bootinfo.h>
  17. #include <asm/irq.h>
  18. #include <asm/thread_info.h>
  19. int main(void)
  20. {
  21. /* offsets into the task struct */
  22. DEFINE(TASK_STATE, offsetof(struct task_struct, state));
  23. DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags));
  24. DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace));
  25. DEFINE(TASK_BLOCKED, offsetof(struct task_struct, blocked));
  26. DEFINE(TASK_THREAD, offsetof(struct task_struct, thread));
  27. DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack));
  28. DEFINE(TASK_MM, offsetof(struct task_struct, mm));
  29. DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm));
  30. /* offsets into the irq_cpustat_t struct */
  31. DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t, __softirq_pending));
  32. /* offsets into the thread struct */
  33. DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp));
  34. DEFINE(THREAD_USP, offsetof(struct thread_struct, usp));
  35. DEFINE(THREAD_SR, offsetof(struct thread_struct, sr));
  36. DEFINE(THREAD_FS, offsetof(struct thread_struct, fs));
  37. DEFINE(THREAD_CRP, offsetof(struct thread_struct, crp));
  38. DEFINE(THREAD_ESP0, offsetof(struct thread_struct, esp0));
  39. DEFINE(THREAD_FPREG, offsetof(struct thread_struct, fp));
  40. DEFINE(THREAD_FPCNTL, offsetof(struct thread_struct, fpcntl));
  41. DEFINE(THREAD_FPSTATE, offsetof(struct thread_struct, fpstate));
  42. /* offsets into the pt_regs */
  43. DEFINE(PT_OFF_D0, offsetof(struct pt_regs, d0));
  44. DEFINE(PT_OFF_ORIG_D0, offsetof(struct pt_regs, orig_d0));
  45. DEFINE(PT_OFF_D1, offsetof(struct pt_regs, d1));
  46. DEFINE(PT_OFF_D2, offsetof(struct pt_regs, d2));
  47. DEFINE(PT_OFF_D3, offsetof(struct pt_regs, d3));
  48. DEFINE(PT_OFF_D4, offsetof(struct pt_regs, d4));
  49. DEFINE(PT_OFF_D5, offsetof(struct pt_regs, d5));
  50. DEFINE(PT_OFF_A0, offsetof(struct pt_regs, a0));
  51. DEFINE(PT_OFF_A1, offsetof(struct pt_regs, a1));
  52. DEFINE(PT_OFF_A2, offsetof(struct pt_regs, a2));
  53. DEFINE(PT_OFF_PC, offsetof(struct pt_regs, pc));
  54. DEFINE(PT_OFF_SR, offsetof(struct pt_regs, sr));
  55. #ifdef CONFIG_COLDFIRE
  56. /* bitfields are a bit difficult */
  57. DEFINE(PT_OFF_FORMATVEC, offsetof(struct pt_regs, sr) - 2);
  58. #else
  59. /* bitfields are a bit difficult */
  60. DEFINE(PT_OFF_VECTOR, offsetof(struct pt_regs, pc) + 4);
  61. #endif
  62. /* signal defines */
  63. DEFINE(SIGSEGV, SIGSEGV);
  64. DEFINE(SEGV_MAPERR, SEGV_MAPERR);
  65. DEFINE(SIGTRAP, SIGTRAP);
  66. DEFINE(TRAP_TRACE, TRAP_TRACE);
  67. DEFINE(PT_PTRACED, PT_PTRACED);
  68. DEFINE(THREAD_SIZE, THREAD_SIZE);
  69. /* Offsets in thread_info structure */
  70. DEFINE(TI_TASK, offsetof(struct thread_info, task));
  71. DEFINE(TI_EXECDOMAIN, offsetof(struct thread_info, exec_domain));
  72. DEFINE(TI_FLAGS, offsetof(struct thread_info, flags));
  73. DEFINE(TI_PREEMPTCOUNT, offsetof(struct thread_info, preempt_count));
  74. DEFINE(TI_CPU, offsetof(struct thread_info, cpu));
  75. return 0;
  76. }