offset.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * offset.c: Calculate pt_regs and task_struct offsets.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller
  5.  * Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Ralf Baechle
  6.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  7.  *
  8.  * Kevin Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  9.  * Copyright (C) 2000 MIPS Technologies, Inc.
  10.  */
  11. #include <linux/types.h>
  12. #include <linux/sched.h>
  13. #include <linux/mm.h>
  14. #include <asm/ptrace.h>
  15. #include <asm/processor.h>
  16. #define text(t) __asm__("n@@@" t)
  17. #define _offset(type, member) (&(((type *)NULL)->member))
  18. #define offset(string, ptr, member) 
  19. __asm__("n@@@" string "%0" : : "i" (_offset(ptr, member)))
  20. #define constant(string, member) 
  21. __asm__("n@@@" string "%x0" : : "i" (member))
  22. #define size(string, size) 
  23. __asm__("n@@@" string "%0" : : "i" (sizeof(size)))
  24. #define linefeed text("")
  25. text("/* DO NOT TOUCH, AUTOGENERATED BY OFFSET.C */");
  26. linefeed;
  27. text("#ifndef _MIPS_OFFSET_H");
  28. text("#define _MIPS_OFFSET_H");
  29. linefeed;
  30. void output_ptreg_defines(void)
  31. {
  32. text("/* MIPS pt_regs offsets. */");
  33. offset("#define PT_R0     ", struct pt_regs, regs[0]);
  34. offset("#define PT_R1     ", struct pt_regs, regs[1]);
  35. offset("#define PT_R2     ", struct pt_regs, regs[2]);
  36. offset("#define PT_R3     ", struct pt_regs, regs[3]);
  37. offset("#define PT_R4     ", struct pt_regs, regs[4]);
  38. offset("#define PT_R5     ", struct pt_regs, regs[5]);
  39. offset("#define PT_R6     ", struct pt_regs, regs[6]);
  40. offset("#define PT_R7     ", struct pt_regs, regs[7]);
  41. offset("#define PT_R8     ", struct pt_regs, regs[8]);
  42. offset("#define PT_R9     ", struct pt_regs, regs[9]);
  43. offset("#define PT_R10    ", struct pt_regs, regs[10]);
  44. offset("#define PT_R11    ", struct pt_regs, regs[11]);
  45. offset("#define PT_R12    ", struct pt_regs, regs[12]);
  46. offset("#define PT_R13    ", struct pt_regs, regs[13]);
  47. offset("#define PT_R14    ", struct pt_regs, regs[14]);
  48. offset("#define PT_R15    ", struct pt_regs, regs[15]);
  49. offset("#define PT_R16    ", struct pt_regs, regs[16]);
  50. offset("#define PT_R17    ", struct pt_regs, regs[17]);
  51. offset("#define PT_R18    ", struct pt_regs, regs[18]);
  52. offset("#define PT_R19    ", struct pt_regs, regs[19]);
  53. offset("#define PT_R20    ", struct pt_regs, regs[20]);
  54. offset("#define PT_R21    ", struct pt_regs, regs[21]);
  55. offset("#define PT_R22    ", struct pt_regs, regs[22]);
  56. offset("#define PT_R23    ", struct pt_regs, regs[23]);
  57. offset("#define PT_R24    ", struct pt_regs, regs[24]);
  58. offset("#define PT_R25    ", struct pt_regs, regs[25]);
  59. offset("#define PT_R26    ", struct pt_regs, regs[26]);
  60. offset("#define PT_R27    ", struct pt_regs, regs[27]);
  61. offset("#define PT_R28    ", struct pt_regs, regs[28]);
  62. offset("#define PT_R29    ", struct pt_regs, regs[29]);
  63. offset("#define PT_R30    ", struct pt_regs, regs[30]);
  64. offset("#define PT_R31    ", struct pt_regs, regs[31]);
  65. offset("#define PT_LO     ", struct pt_regs, lo);
  66. offset("#define PT_HI     ", struct pt_regs, hi);
  67. offset("#define PT_EPC    ", struct pt_regs, cp0_epc);
  68. offset("#define PT_BVADDR ", struct pt_regs, cp0_badvaddr);
  69. offset("#define PT_STATUS ", struct pt_regs, cp0_status);
  70. offset("#define PT_CAUSE  ", struct pt_regs, cp0_cause);
  71. size("#define PT_SIZE   ", struct pt_regs);
  72. linefeed;
  73. }
  74. void output_task_defines(void)
  75. {
  76. text("/* MIPS task_struct offsets. */");
  77. offset("#define TASK_STATE         ", struct task_struct, state);
  78. offset("#define TASK_FLAGS         ", struct task_struct, flags);
  79. constant("  #define _PT_TRACESYS        ", PT_TRACESYS);
  80. offset("#define TASK_SIGPENDING    ", struct task_struct, sigpending);
  81. offset("#define TASK_NEED_RESCHED  ", struct task_struct, need_resched);
  82. offset("#define TASK_PTRACE        ", struct task_struct, ptrace);
  83. offset("#define TASK_COUNTER       ", struct task_struct, counter);
  84. offset("#define TASK_NICE          ", struct task_struct, nice);
  85. offset("#define TASK_MM            ", struct task_struct, mm);
  86. offset("#define TASK_PROCESSOR     ", struct task_struct, processor);
  87. offset("#define TASK_PID           ", struct task_struct, pid);
  88. size(  "#define TASK_STRUCT_SIZE   ", struct task_struct);
  89. linefeed;
  90. }
  91. void output_thread_defines(void)
  92. {
  93. text("/* MIPS specific thread_struct offsets. */");
  94. offset("#define THREAD_REG16   ", struct task_struct, thread.reg16);
  95. offset("#define THREAD_REG17   ", struct task_struct, thread.reg17);
  96. offset("#define THREAD_REG18   ", struct task_struct, thread.reg18);
  97. offset("#define THREAD_REG19   ", struct task_struct, thread.reg19);
  98. offset("#define THREAD_REG20   ", struct task_struct, thread.reg20);
  99. offset("#define THREAD_REG21   ", struct task_struct, thread.reg21);
  100. offset("#define THREAD_REG22   ", struct task_struct, thread.reg22);
  101. offset("#define THREAD_REG23   ", struct task_struct, thread.reg23);
  102. offset("#define THREAD_REG29   ", struct task_struct, thread.reg29);
  103. offset("#define THREAD_REG30   ", struct task_struct, thread.reg30);
  104. offset("#define THREAD_REG31   ", struct task_struct, thread.reg31);
  105. offset("#define THREAD_STATUS  ", struct task_struct, 
  106.        thread.cp0_status);
  107. offset("#define THREAD_FPU     ", struct task_struct, thread.fpu);
  108. offset("#define THREAD_BVADDR  ", struct task_struct, 
  109.        thread.cp0_badvaddr);
  110. offset("#define THREAD_BUADDR  ", struct task_struct, 
  111.        thread.cp0_baduaddr);
  112. offset("#define THREAD_ECODE   ", struct task_struct, 
  113.        thread.error_code);
  114. offset("#define THREAD_TRAPNO  ", struct task_struct, thread.trap_no);
  115. offset("#define THREAD_MFLAGS  ", struct task_struct, thread.mflags);
  116. offset("#define THREAD_CURDS   ", struct task_struct, 
  117.        thread.current_ds);
  118. offset("#define THREAD_TRAMP   ", struct task_struct, 
  119.        thread.irix_trampoline);
  120. offset("#define THREAD_OLDCTX  ", struct task_struct, 
  121.        thread.irix_oldctx);
  122. linefeed;
  123. }
  124. void output_mm_defines(void)
  125. {
  126. text("/* Linux mm_struct offsets. */");
  127. offset("#define MM_USERS      ", struct mm_struct, mm_users);
  128. offset("#define MM_PGD        ", struct mm_struct, pgd);
  129. offset("#define MM_CONTEXT    ", struct mm_struct, context);
  130. linefeed;
  131. constant("#define _PAGE_SIZE     ", PAGE_SIZE);
  132. constant("#define _PGD_ORDER     ", PGD_ORDER);
  133. constant("#define _PGDIR_SHIFT   ", PGDIR_SHIFT);
  134. linefeed;
  135. }
  136. void output_sc_defines(void)
  137. {
  138. text("/* Linux sigcontext offsets. */");
  139. offset("#define SC_REGS       ", struct sigcontext, sc_regs);
  140. offset("#define SC_FPREGS     ", struct sigcontext, sc_fpregs);
  141. offset("#define SC_MDHI       ", struct sigcontext, sc_mdhi);
  142. offset("#define SC_MDLO       ", struct sigcontext, sc_mdlo);
  143. offset("#define SC_PC         ", struct sigcontext, sc_pc);
  144. offset("#define SC_STATUS     ", struct sigcontext, sc_status);
  145. offset("#define SC_OWNEDFP    ", struct sigcontext, sc_ownedfp);
  146. offset("#define SC_FPC_CSR    ", struct sigcontext, sc_fpc_csr);
  147. offset("#define SC_FPC_EIR    ", struct sigcontext, sc_fpc_eir);
  148. offset("#define SC_CAUSE      ", struct sigcontext, sc_cause);
  149. offset("#define SC_BADVADDR   ", struct sigcontext, sc_badvaddr);
  150. linefeed;
  151. }
  152. void output_signal_defined(void)
  153. {
  154. text("/* Linux signal numbers. */");
  155. constant("#define _SIGHUP     ", SIGHUP);
  156. constant("#define _SIGINT     ", SIGINT);
  157. constant("#define _SIGQUIT    ", SIGQUIT);
  158. constant("#define _SIGILL     ", SIGILL);
  159. constant("#define _SIGTRAP    ", SIGTRAP);
  160. constant("#define _SIGIOT     ", SIGIOT);
  161. constant("#define _SIGABRT    ", SIGABRT);
  162. constant("#define _SIGEMT     ", SIGEMT);
  163. constant("#define _SIGFPE     ", SIGFPE);
  164. constant("#define _SIGKILL    ", SIGKILL);
  165. constant("#define _SIGBUS     ", SIGBUS);
  166. constant("#define _SIGSEGV    ", SIGSEGV);
  167. constant("#define _SIGSYS     ", SIGSYS);
  168. constant("#define _SIGPIPE    ", SIGPIPE);
  169. constant("#define _SIGALRM    ", SIGALRM);
  170. constant("#define _SIGTERM    ", SIGTERM);
  171. constant("#define _SIGUSR1    ", SIGUSR1);
  172. constant("#define _SIGUSR2    ", SIGUSR2);
  173. constant("#define _SIGCHLD    ", SIGCHLD);
  174. constant("#define _SIGPWR     ", SIGPWR);
  175. constant("#define _SIGWINCH   ", SIGWINCH);
  176. constant("#define _SIGURG     ", SIGURG);
  177. constant("#define _SIGIO      ", SIGIO);
  178. constant("#define _SIGSTOP    ", SIGSTOP);
  179. constant("#define _SIGTSTP    ", SIGTSTP);
  180. constant("#define _SIGCONT    ", SIGCONT);
  181. constant("#define _SIGTTIN    ", SIGTTIN);
  182. constant("#define _SIGTTOU    ", SIGTTOU);
  183. constant("#define _SIGVTALRM  ", SIGVTALRM);
  184. constant("#define _SIGPROF    ", SIGPROF);
  185. constant("#define _SIGXCPU    ", SIGXCPU);
  186. constant("#define _SIGXFSZ    ", SIGXFSZ);
  187. }
  188. text("#endif /* !(_MIPS_OFFSET_H) */");