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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_X86_64_ELF_H
  2. #define __ASM_X86_64_ELF_H
  3. /*
  4.  * ELF register definitions..
  5.  */
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. typedef unsigned long elf_greg_t;
  9. #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
  10. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  11. typedef struct user_i387_struct elf_fpregset_t;
  12. typedef struct user_fxsr_struct elf_fpxregset_t;
  13. /*
  14.  * This is used to ensure we don't load something for the wrong architecture.
  15.  */
  16. #define elf_check_arch(x) 
  17. ((x)->e_machine == EM_X86_64)
  18. /*
  19.  * These are used to set parameters in the core dumps.
  20.  */
  21. #define ELF_CLASS ELFCLASS64
  22. #define ELF_DATA ELFDATA2LSB
  23. #define ELF_ARCH EM_X86_64
  24. /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx
  25.    contains a pointer to a function which might be registered using `atexit'.
  26.    This provides a mean for the dynamic linker to call DT_FINI functions for
  27.    shared libraries that have been loaded before the code runs.
  28.    A value of 0 tells we have no such handler. 
  29.    We might as well make sure everything else is cleared too (except for %esp),
  30.    just to make things more deterministic.
  31.  */
  32. #define ELF_PLAT_INIT(_r) do { 
  33. struct task_struct *cur = current; 
  34. (_r)->rbx = 0; (_r)->rcx = 0; (_r)->rdx = 0; 
  35. (_r)->rsi = 0; (_r)->rdi = 0; (_r)->rbp = 0; 
  36. (_r)->rax = 0;
  37. (_r)->r8 = 0;
  38. (_r)->r9 = 0;
  39. (_r)->r10 = 0;
  40. (_r)->r11 = 0;
  41. (_r)->r12 = 0;
  42. (_r)->r13 = 0;
  43. (_r)->r14 = 0;
  44. (_r)->r15 = 0;
  45.         cur->thread.fs = 0; cur->thread.gs = 0; 
  46. cur->thread.fsindex = 0; cur->thread.gsindex = 0; 
  47.         cur->thread.ds = 0; cur->thread.es = 0;  
  48. cur->thread.flags &= ~THREAD_IA32; 
  49. } while (0)
  50. #define USE_ELF_CORE_DUMP
  51. #define ELF_EXEC_PAGESIZE 4096
  52. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  53.    use of this is to invoke "./ld.so someprog" to test out a new version of
  54.    the loader.  We need to make sure that it is out of the way of the program
  55.    that it will "exec", and that there is sufficient room for the brk.  */
  56. #define ELF_ET_DYN_BASE         (2 * TASK_SIZE / 3)
  57. /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is
  58.    now struct_user_regs, they are different). Assumes current is the process
  59.    getting dumped. */
  60. #define ELF_CORE_COPY_REGS(pr_reg, regs)  do { 
  61. unsigned v;
  62. (pr_reg)[0] = (regs)->r15;
  63. (pr_reg)[1] = (regs)->r14;
  64. (pr_reg)[2] = (regs)->r13;
  65. (pr_reg)[3] = (regs)->r12;
  66. (pr_reg)[4] = (regs)->rbp;
  67. (pr_reg)[5] = (regs)->rbx;
  68. (pr_reg)[6] = (regs)->r11;
  69. (pr_reg)[7] = (regs)->r10;
  70. (pr_reg)[8] = (regs)->r9;
  71. (pr_reg)[9] = (regs)->r8;
  72. (pr_reg)[10] = (regs)->rax;
  73. (pr_reg)[11] = (regs)->rcx;
  74. (pr_reg)[12] = (regs)->rdx;
  75. (pr_reg)[13] = (regs)->rsi;
  76. (pr_reg)[14] = (regs)->rdi;
  77. (pr_reg)[15] = (regs)->orig_rax;
  78. (pr_reg)[16] = (regs)->rip;
  79. (pr_reg)[17] = (regs)->cs;
  80. (pr_reg)[18] = (regs)->eflags;
  81. (pr_reg)[19] = (regs)->rsp;
  82. (pr_reg)[20] = (regs)->ss;
  83. (pr_reg)[21] = current->thread.fs;
  84. (pr_reg)[22] = current->thread.gs;
  85. asm("movl %%ds,%0" : "=r" (v)); (pr_reg)[23] = v;
  86. asm("movl %%es,%0" : "=r" (v)); (pr_reg)[24] = v;
  87. asm("movl %%fs,%0" : "=r" (v)); (pr_reg)[25] = v;
  88. asm("movl %%gs,%0" : "=r" (v)); (pr_reg)[26] = v;
  89. } while(0);
  90. /* This yields a mask that user programs can use to figure out what
  91.    instruction set this CPU supports.  This could be done in user space,
  92.    but it's not easy, and we've already done it here.  */
  93. #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
  94. /* This yields a string that ld.so will use to load implementation
  95.    specific libraries for optimization.  This is more specific in
  96.    intent than poking at uname or /proc/cpuinfo.
  97.    For the moment, we have only optimizations for the Intel generations,
  98.    but that could change... */
  99. /* I'm not sure if we can use '-' here */
  100. #define ELF_PLATFORM  ("x86_64")
  101. #ifdef __KERNEL__
  102. extern void set_personality_64bit(void);
  103. #define SET_PERSONALITY(ex, ibcs2) set_personality_64bit()
  104. #endif
  105. #endif