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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: elf.h,v 1.30.2.1 2002/02/04 22:37:47 davem Exp $ */
  2. #ifndef __ASM_SPARC64_ELF_H
  3. #define __ASM_SPARC64_ELF_H
  4. /*
  5.  * ELF register definitions..
  6.  */
  7. #include <asm/ptrace.h>
  8. #ifdef __KERNEL__
  9. #include <asm/processor.h>
  10. #endif
  11. /*
  12.  * These are used to set parameters in the core dumps.
  13.  */
  14. #ifndef ELF_ARCH
  15. #define ELF_ARCH EM_SPARCV9
  16. #define ELF_CLASS ELFCLASS64
  17. #define ELF_DATA ELFDATA2MSB
  18. typedef unsigned long elf_greg_t;
  19. #define ELF_NGREG 36
  20. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  21. /* Format of 64-bit elf_gregset_t is:
  22.  *  G0 --> G7
  23.  *  O0 --> O7
  24.  *  L0 --> L7
  25.  *  I0 --> I7
  26.  * TSTATE
  27.  * TPC
  28.  * TNPC
  29.  * Y
  30.  */
  31. #include <asm/psrcompat.h>
  32. #define ELF_CORE_COPY_REGS(__elf_regs, __pt_regs)
  33. do { unsigned long *dest = &(__elf_regs[0]);
  34. struct pt_regs *src = (__pt_regs);
  35. unsigned long *sp;
  36. int i;
  37. for(i = 0; i < 16; i++)
  38. dest[i] = src->u_regs[i];
  39. /* Don't try this at home kids... */
  40. set_fs(USER_DS);
  41. sp = (unsigned long *)
  42.  ((src->u_regs[14] + STACK_BIAS)
  43.   & 0xfffffffffffffff8UL);
  44. for(i = 0; i < 16; i++)
  45. __get_user(dest[i+16], &sp[i]);
  46. set_fs(KERNEL_DS);
  47. dest[32] = src->tstate;
  48. dest[33] = src->tpc;
  49. dest[34] = src->tnpc;
  50. dest[35] = src->y;
  51. } while (0);
  52. typedef struct {
  53. unsigned long pr_regs[32];
  54. unsigned long pr_fsr;
  55. unsigned long pr_gsr;
  56. unsigned long pr_fprs;
  57. } elf_fpregset_t;
  58. #endif
  59. /*
  60.  * This is used to ensure we don't load something for the wrong architecture.
  61.  */
  62. #ifndef elf_check_arch
  63. #define elf_check_arch(x) ((x)->e_machine == ELF_ARCH) /* Might be EM_SPARCV9 or EM_SPARC */
  64. #endif
  65. #define USE_ELF_CORE_DUMP
  66. #define ELF_EXEC_PAGESIZE PAGE_SIZE
  67. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  68.    use of this is to invoke "./ld.so someprog" to test out a new version of
  69.    the loader.  We need to make sure that it is out of the way of the program
  70.    that it will "exec", and that there is sufficient room for the brk.  */
  71. #ifndef ELF_ET_DYN_BASE
  72. #define ELF_ET_DYN_BASE         0x0000010000000000UL
  73. #endif
  74. /* This yields a mask that user programs can use to figure out what
  75.    instruction set this cpu supports.  */
  76. /* On Ultra, we support all of the v8 capabilities. */
  77. #define ELF_HWCAP ((HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | 
  78.   HWCAP_SPARC_SWAP | HWCAP_SPARC_MULDIV | 
  79.   HWCAP_SPARC_V9) | 
  80.  ((tlb_type == cheetah || tlb_type == cheetah_plus) ? 
  81.   HWCAP_SPARC_ULTRA3 : 0))
  82. /* This yields a string that ld.so will use to load implementation
  83.    specific libraries for optimization.  This is more specific in
  84.    intent than poking at uname or /proc/cpuinfo.  */
  85. #define ELF_PLATFORM (NULL)
  86. #ifdef __KERNEL__
  87. #define SET_PERSONALITY(ex, ibcs2)
  88. do { unsigned char flags = current->thread.flags;
  89. if ((ex).e_ident[EI_CLASS] == ELFCLASS32)
  90. flags |= SPARC_FLAG_32BIT;
  91. else
  92. flags &= ~SPARC_FLAG_32BIT;
  93. if (flags != current->thread.flags) {
  94. /* flush_thread will update pgd cache */
  95. current->thread.flags |= SPARC_FLAG_ABI_PENDING; 
  96. }
  97. if (ibcs2)
  98. set_personality(PER_SVR4);
  99. else if (current->personality != PER_LINUX32)
  100. set_personality(PER_LINUX);
  101. } while (0)
  102. #endif
  103. #endif /* !(__ASM_SPARC64_ELF_H) */