asm-offsets.c 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // SPDX-License-Identifier: GPL-2.0
  2. // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
  3. #include <linux/sched.h>
  4. #include <linux/kernel_stat.h>
  5. #include <linux/kbuild.h>
  6. #include <abi/regdef.h>
  7. int main(void)
  8. {
  9. /* offsets into the task struct */
  10. DEFINE(TASK_STATE, offsetof(struct task_struct, state));
  11. DEFINE(TASK_THREAD_INFO, offsetof(struct task_struct, stack));
  12. DEFINE(TASK_FLAGS, offsetof(struct task_struct, flags));
  13. DEFINE(TASK_PTRACE, offsetof(struct task_struct, ptrace));
  14. DEFINE(TASK_THREAD, offsetof(struct task_struct, thread));
  15. DEFINE(TASK_MM, offsetof(struct task_struct, mm));
  16. DEFINE(TASK_ACTIVE_MM, offsetof(struct task_struct, active_mm));
  17. /* offsets into the thread struct */
  18. DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp));
  19. DEFINE(THREAD_SR, offsetof(struct thread_struct, sr));
  20. DEFINE(THREAD_ESP0, offsetof(struct thread_struct, esp0));
  21. DEFINE(THREAD_FESR, offsetof(struct thread_struct, user_fp.fesr));
  22. DEFINE(THREAD_FCR, offsetof(struct thread_struct, user_fp.fcr));
  23. DEFINE(THREAD_FPREG, offsetof(struct thread_struct, user_fp.vr));
  24. DEFINE(THREAD_DSPHI, offsetof(struct thread_struct, hi));
  25. DEFINE(THREAD_DSPLO, offsetof(struct thread_struct, lo));
  26. /* offsets into the thread_info struct */
  27. DEFINE(TINFO_FLAGS, offsetof(struct thread_info, flags));
  28. DEFINE(TINFO_PREEMPT, offsetof(struct thread_info, preempt_count));
  29. DEFINE(TINFO_ADDR_LIMIT, offsetof(struct thread_info, addr_limit));
  30. DEFINE(TINFO_TP_VALUE, offsetof(struct thread_info, tp_value));
  31. DEFINE(TINFO_TASK, offsetof(struct thread_info, task));
  32. /* offsets into the pt_regs */
  33. DEFINE(PT_PC, offsetof(struct pt_regs, pc));
  34. DEFINE(PT_ORIG_AO, offsetof(struct pt_regs, orig_a0));
  35. DEFINE(PT_SR, offsetof(struct pt_regs, sr));
  36. DEFINE(PT_A0, offsetof(struct pt_regs, a0));
  37. DEFINE(PT_A1, offsetof(struct pt_regs, a1));
  38. DEFINE(PT_A2, offsetof(struct pt_regs, a2));
  39. DEFINE(PT_A3, offsetof(struct pt_regs, a3));
  40. DEFINE(PT_REGS0, offsetof(struct pt_regs, regs[0]));
  41. DEFINE(PT_REGS1, offsetof(struct pt_regs, regs[1]));
  42. DEFINE(PT_REGS2, offsetof(struct pt_regs, regs[2]));
  43. DEFINE(PT_REGS3, offsetof(struct pt_regs, regs[3]));
  44. DEFINE(PT_REGS4, offsetof(struct pt_regs, regs[4]));
  45. DEFINE(PT_REGS5, offsetof(struct pt_regs, regs[5]));
  46. DEFINE(PT_REGS6, offsetof(struct pt_regs, regs[6]));
  47. DEFINE(PT_REGS7, offsetof(struct pt_regs, regs[7]));
  48. DEFINE(PT_REGS8, offsetof(struct pt_regs, regs[8]));
  49. DEFINE(PT_REGS9, offsetof(struct pt_regs, regs[9]));
  50. DEFINE(PT_R15, offsetof(struct pt_regs, lr));
  51. #if defined(__CSKYABIV2__)
  52. DEFINE(PT_R16, offsetof(struct pt_regs, exregs[0]));
  53. DEFINE(PT_R17, offsetof(struct pt_regs, exregs[1]));
  54. DEFINE(PT_R18, offsetof(struct pt_regs, exregs[2]));
  55. DEFINE(PT_R19, offsetof(struct pt_regs, exregs[3]));
  56. DEFINE(PT_R20, offsetof(struct pt_regs, exregs[4]));
  57. DEFINE(PT_R21, offsetof(struct pt_regs, exregs[5]));
  58. DEFINE(PT_R22, offsetof(struct pt_regs, exregs[6]));
  59. DEFINE(PT_R23, offsetof(struct pt_regs, exregs[7]));
  60. DEFINE(PT_R24, offsetof(struct pt_regs, exregs[8]));
  61. DEFINE(PT_R25, offsetof(struct pt_regs, exregs[9]));
  62. DEFINE(PT_R26, offsetof(struct pt_regs, exregs[10]));
  63. DEFINE(PT_R27, offsetof(struct pt_regs, exregs[11]));
  64. DEFINE(PT_R28, offsetof(struct pt_regs, exregs[12]));
  65. DEFINE(PT_R29, offsetof(struct pt_regs, exregs[13]));
  66. DEFINE(PT_R30, offsetof(struct pt_regs, exregs[14]));
  67. DEFINE(PT_R31, offsetof(struct pt_regs, exregs[15]));
  68. DEFINE(PT_RHI, offsetof(struct pt_regs, rhi));
  69. DEFINE(PT_RLO, offsetof(struct pt_regs, rlo));
  70. #endif
  71. DEFINE(PT_USP, offsetof(struct pt_regs, usp));
  72. /* offsets into the irq_cpustat_t struct */
  73. DEFINE(CPUSTAT_SOFTIRQ_PENDING, offsetof(irq_cpustat_t,
  74. __softirq_pending));
  75. /* signal defines */
  76. DEFINE(SIGSEGV, SIGSEGV);
  77. DEFINE(SIGTRAP, SIGTRAP);
  78. return 0;
  79. }