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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_ALPHA_ELF_H
  2. #define __ASM_ALPHA_ELF_H
  3. /*
  4.  * ELF register definitions..
  5.  */
  6. /*
  7.  * The OSF/1 version of <sys/procfs.h> makes gregset_t 46 entries long.
  8.  * I have no idea why that is so.  For now, we just leave it at 33
  9.  * (32 general regs + processor status word). 
  10.  */
  11. #define ELF_NGREG 33
  12. #define ELF_NFPREG 32
  13. typedef unsigned long elf_greg_t;
  14. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  15. typedef double elf_fpreg_t;
  16. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  17. /*
  18.  * This is used to ensure we don't load something for the wrong architecture.
  19.  */
  20. #define elf_check_arch(x) ((x)->e_machine == EM_ALPHA)
  21. /*
  22.  * These are used to set parameters in the core dumps.
  23.  */
  24. #define ELF_CLASS ELFCLASS64
  25. #define ELF_DATA ELFDATA2LSB
  26. #define ELF_ARCH EM_ALPHA
  27. #define USE_ELF_CORE_DUMP
  28. #define ELF_EXEC_PAGESIZE 8192
  29. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  30.    use of this is to invoke "./ld.so someprog" to test out a new version of
  31.    the loader.  We need to make sure that it is out of the way of the program
  32.    that it will "exec", and that there is sufficient room for the brk.  */
  33. #define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE + 0x1000000)
  34. /* $0 is set by ld.so to a pointer to a function which might be 
  35.    registered using atexit.  This provides a mean for the dynamic
  36.    linker to call DT_FINI functions for shared libraries that have
  37.    been loaded before the code runs.
  38.    So that we can use the same startup file with static executables,
  39.    we start programs with a value of 0 to indicate that there is no
  40.    such function.  */
  41. #define ELF_PLAT_INIT(_r)       _r->r0 = 0
  42. /* Use the same format as the OSF/1 procfs interface.  The register
  43.    layout is sane.  However, since dump_thread() creates the funky
  44.    layout that ECOFF coredumps want, we need to undo that layout here.
  45.    Eventually, it would be nice if the ECOFF core-dump had to do the
  46.    translation, then ELF_CORE_COPY_REGS() would become trivial and
  47.    faster.  */
  48. #define ELF_CORE_COPY_REGS(_dest,_regs)
  49. {
  50. struct user _dump;
  51. dump_thread(_regs, &_dump);
  52. _dest[ 0] = _dump.regs[EF_V0];
  53. _dest[ 1] = _dump.regs[EF_T0];
  54. _dest[ 2] = _dump.regs[EF_T1];
  55. _dest[ 3] = _dump.regs[EF_T2];
  56. _dest[ 4] = _dump.regs[EF_T3];
  57. _dest[ 5] = _dump.regs[EF_T4];
  58. _dest[ 6] = _dump.regs[EF_T5];
  59. _dest[ 7] = _dump.regs[EF_T6];
  60. _dest[ 8] = _dump.regs[EF_T7];
  61. _dest[ 9] = _dump.regs[EF_S0];
  62. _dest[10] = _dump.regs[EF_S1];
  63. _dest[11] = _dump.regs[EF_S2];
  64. _dest[12] = _dump.regs[EF_S3];
  65. _dest[13] = _dump.regs[EF_S4];
  66. _dest[14] = _dump.regs[EF_S5];
  67. _dest[15] = _dump.regs[EF_S6];
  68. _dest[16] = _dump.regs[EF_A0];
  69. _dest[17] = _dump.regs[EF_A1];
  70. _dest[18] = _dump.regs[EF_A2];
  71. _dest[19] = _dump.regs[EF_A3];
  72. _dest[20] = _dump.regs[EF_A4];
  73. _dest[21] = _dump.regs[EF_A5];
  74. _dest[22] = _dump.regs[EF_T8];
  75. _dest[23] = _dump.regs[EF_T9];
  76. _dest[24] = _dump.regs[EF_T10];
  77. _dest[25] = _dump.regs[EF_T11];
  78. _dest[26] = _dump.regs[EF_RA];
  79. _dest[27] = _dump.regs[EF_T12];
  80. _dest[28] = _dump.regs[EF_AT];
  81. _dest[29] = _dump.regs[EF_GP];
  82. _dest[30] = _dump.regs[EF_SP];
  83. _dest[31] = _dump.regs[EF_PC]; /* store PC here */
  84. _dest[32] = _dump.regs[EF_PS];
  85. }
  86. /* This yields a mask that user programs can use to figure out what
  87.    instruction set this CPU supports.  This is trivial on Alpha, 
  88.    but not so on other machines. */
  89. #define ELF_HWCAP
  90. ({
  91. /* Sadly, most folks don't yet have assemblers that know about
  92.    amask.  This is "amask v0, v0" */
  93. register long _v0 __asm("$0") = -1;
  94. __asm(".long 0x47e00c20" : "=r"(_v0) : "0"(_v0));
  95. ~_v0;
  96. })
  97. /* This yields a string that ld.so will use to load implementation
  98.    specific libraries for optimization.  This is more specific in
  99.    intent than poking at uname or /proc/cpuinfo.  
  100.    This might do with checking bwx simultaneously...  */
  101. #define ELF_PLATFORM
  102. ({
  103. /* Or "implver v0" ... */
  104. register long _v0 __asm("$0");
  105. __asm(".long 0x47e03d80" : "=r"(_v0));
  106. _v0 == 0 ? "ev4" : "ev5";
  107. })
  108. #ifdef __KERNEL__
  109. #define SET_PERSONALITY(EX, IBCS2)
  110. set_personality(((EX).e_flags & EF_ALPHA_32BIT)
  111.    ? PER_LINUX_32BIT : (IBCS2) ? PER_SVR4 : PER_LINUX)
  112. #endif
  113. #endif