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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.elf.h 1.14 08/21/01 16:07:48 trini
  3.  */
  4. #ifndef __PPC_ELF_H
  5. #define __PPC_ELF_H
  6. /*
  7.  * ELF register definitions..
  8.  */
  9. #include <asm/types.h>
  10. #include <asm/ptrace.h>
  11. #include <asm/cputable.h>
  12. #define ELF_NGREG 48 /* includes nip, msr, lr, etc. */
  13. #define ELF_NFPREG 33 /* includes fpscr */
  14. #define ELF_NVRREG 33 /* includes vscr */
  15. /*
  16.  * These are used to set parameters in the core dumps.
  17.  */
  18. #define ELF_ARCH EM_PPC
  19. #define ELF_CLASS ELFCLASS32
  20. #define ELF_DATA ELFDATA2MSB
  21. /* General registers */
  22. typedef unsigned long elf_greg_t;
  23. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  24. /* Floating point registers */
  25. typedef double elf_fpreg_t;
  26. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  27. /* Altivec registers */
  28. typedef __vector128 elf_vrreg_t;
  29. typedef elf_vrreg_t elf_vrregset_t[ELF_NVRREG];
  30. #ifdef __KERNEL__
  31. /*
  32.  * This is used to ensure we don't load something for the wrong architecture.
  33.  */
  34. #define elf_check_arch(x) ((x)->e_machine == EM_PPC)
  35. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  36.    use of this is to invoke "./ld.so someprog" to test out a new version of
  37.    the loader.  We need to make sure that it is out of the way of the program
  38.    that it will "exec", and that there is sufficient room for the brk.  */
  39. #define ELF_ET_DYN_BASE         (0x08000000)
  40. #define USE_ELF_CORE_DUMP
  41. #define ELF_EXEC_PAGESIZE 4096
  42. #define ELF_CORE_COPY_REGS(gregs, regs) 
  43. memcpy(gregs, regs, 
  44.        sizeof(struct pt_regs) < sizeof(elf_gregset_t)? 
  45.        sizeof(struct pt_regs): sizeof(elf_gregset_t));
  46. /* This yields a mask that user programs can use to figure out what
  47.    instruction set this cpu supports.  This could be done in userspace,
  48.    but it's not easy, and we've already done it here.  */
  49. #define ELF_HWCAP (cur_cpu_spec[0]->cpu_user_features)
  50. /* This yields a string that ld.so will use to load implementation
  51.    specific libraries for optimization.  This is more specific in
  52.    intent than poking at uname or /proc/cpuinfo.
  53.    For the moment, we have only optimizations for the Intel generations,
  54.    but that could change... */
  55. #define ELF_PLATFORM (NULL)
  56. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  57. /*
  58.  * We need to put in some extra aux table entries to tell glibc what
  59.  * the cache block size is, so it can use the dcbz instruction safely.
  60.  */
  61. #define AT_DCACHEBSIZE 19
  62. #define AT_ICACHEBSIZE 20
  63. #define AT_UCACHEBSIZE 21
  64. /* A special ignored type value for PPC, for glibc compatibility.  */
  65. #define AT_IGNOREPPC 22
  66. extern int dcache_bsize;
  67. extern int icache_bsize;
  68. extern int ucache_bsize;
  69. /*
  70.  * The requirements here are:
  71.  * - keep the final alignment of sp (sp & 0xf)
  72.  * - make sure the 32-bit value at the first 16 byte aligned position of
  73.  *   AUXV is greater than 16 for glibc compatibility.
  74.  *   AT_IGNOREPPC is used for that.
  75.  * - for compatibility with glibc ARCH_DLINFO must always be defined on PPC,
  76.  *   even if DLINFO_ARCH_ITEMS goes to zero or is undefined.
  77.  */
  78. #define DLINFO_ARCH_ITEMS 3
  79. #define ARCH_DLINFO
  80. do {
  81. sp -= DLINFO_ARCH_ITEMS * 2;
  82. NEW_AUX_ENT(0, AT_DCACHEBSIZE, dcache_bsize);
  83. NEW_AUX_ENT(1, AT_ICACHEBSIZE, icache_bsize);
  84. NEW_AUX_ENT(2, AT_UCACHEBSIZE, ucache_bsize);
  85. /*
  86.  * Now handle glibc compatibility.
  87.  */
  88. sp -= 2*2;
  89. NEW_AUX_ENT(0, AT_IGNOREPPC, AT_IGNOREPPC);
  90. NEW_AUX_ENT(1, AT_IGNOREPPC, AT_IGNOREPPC);
  91.  } while (0)
  92. #endif /* __KERNEL__ */
  93. #endif