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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASMi386_ELF_H
  2. #define __ASMi386_ELF_H
  3. /*
  4.  * ELF register definitions..
  5.  */
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. #include <linux/utsname.h>
  9. typedef unsigned long elf_greg_t;
  10. #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
  11. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  12. typedef struct user_i387_struct elf_fpregset_t;
  13. typedef struct user_fxsr_struct elf_fpxregset_t;
  14. /*
  15.  * This is used to ensure we don't load something for the wrong architecture.
  16.  */
  17. #define elf_check_arch(x) 
  18. (((x)->e_machine == EM_386) || ((x)->e_machine == EM_486))
  19. /*
  20.  * These are used to set parameters in the core dumps.
  21.  */
  22. #define ELF_CLASS ELFCLASS32
  23. #define ELF_DATA ELFDATA2LSB
  24. #define ELF_ARCH EM_386
  25. /* SVR4/i386 ABI (pages 3-31, 3-32) says that when the program starts %edx
  26.    contains a pointer to a function which might be registered using `atexit'.
  27.    This provides a mean for the dynamic linker to call DT_FINI functions for
  28.    shared libraries that have been loaded before the code runs.
  29.    A value of 0 tells we have no such handler. 
  30.    We might as well make sure everything else is cleared too (except for %esp),
  31.    just to make things more deterministic.
  32.  */
  33. #define ELF_PLAT_INIT(_r) do { 
  34. _r->ebx = 0; _r->ecx = 0; _r->edx = 0; 
  35. _r->esi = 0; _r->edi = 0; _r->ebp = 0; 
  36. _r->eax = 0; 
  37. } while (0)
  38. #define USE_ELF_CORE_DUMP
  39. #define ELF_EXEC_PAGESIZE 4096
  40. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  41.    use of this is to invoke "./ld.so someprog" to test out a new version of
  42.    the loader.  We need to make sure that it is out of the way of the program
  43.    that it will "exec", and that there is sufficient room for the brk.  */
  44. #define ELF_ET_DYN_BASE         (TASK_SIZE / 3 * 2)
  45. /* Wow, the "main" arch needs arch dependent functions too.. :) */
  46. /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is
  47.    now struct_user_regs, they are different) */
  48. #define ELF_CORE_COPY_REGS(pr_reg, regs)
  49. pr_reg[0] = regs->ebx;
  50. pr_reg[1] = regs->ecx;
  51. pr_reg[2] = regs->edx;
  52. pr_reg[3] = regs->esi;
  53. pr_reg[4] = regs->edi;
  54. pr_reg[5] = regs->ebp;
  55. pr_reg[6] = regs->eax;
  56. pr_reg[7] = regs->xds;
  57. pr_reg[8] = regs->xes;
  58. /* fake once used fs and gs selectors? */
  59. pr_reg[9] = regs->xds; /* was fs and __fs */
  60. pr_reg[10] = regs->xds; /* was gs and __gs */
  61. pr_reg[11] = regs->orig_eax;
  62. pr_reg[12] = regs->eip;
  63. pr_reg[13] = regs->xcs;
  64. pr_reg[14] = regs->eflags;
  65. pr_reg[15] = regs->esp;
  66. pr_reg[16] = regs->xss;
  67. /* This yields a mask that user programs can use to figure out what
  68.    instruction set this CPU supports.  This could be done in user space,
  69.    but it's not easy, and we've already done it here.  */
  70. #define ELF_HWCAP (boot_cpu_data.x86_capability[0])
  71. /* This yields a string that ld.so will use to load implementation
  72.    specific libraries for optimization.  This is more specific in
  73.    intent than poking at uname or /proc/cpuinfo.
  74.    For the moment, we have only optimizations for the Intel generations,
  75.    but that could change... */
  76. #define ELF_PLATFORM  (system_utsname.machine)
  77. #ifdef __KERNEL__
  78. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  79. #endif
  80. #endif