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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: elf.h,v 1.22 2000/07/12 01:27:08 davem Exp $ */
  2. #ifndef __ASMSPARC_ELF_H
  3. #define __ASMSPARC_ELF_H
  4. /*
  5.  * ELF register definitions..
  6.  */
  7. #include <linux/config.h>
  8. #include <asm/ptrace.h>
  9. #include <asm/mbus.h>
  10. /* For the most part we present code dumps in the format
  11.  * Solaris does.
  12.  */
  13. typedef unsigned long elf_greg_t;
  14. #define ELF_NGREG 38
  15. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  16. /* Format is:
  17.  *  G0 --> G7
  18.  * O0 --> O7
  19.  * L0 --> L7
  20.  * I0 --> I7
  21.  * PSR, PC, nPC, Y, WIM, TBR
  22.  */
  23. #define ELF_CORE_COPY_REGS(__elf_regs, __pt_regs)
  24. do { unsigned long *dest = &(__elf_regs[0]);
  25. struct pt_regs *src = (__pt_regs);
  26. unsigned long *sp;
  27. memcpy(&dest[0], &src->u_regs[0],
  28.        sizeof(unsigned long) * 16);
  29. /* Don't try this at home kids... */
  30. set_fs(USER_DS);
  31. sp = (unsigned long *) src->u_regs[14];
  32. copy_from_user(&dest[16], sp,
  33.        sizeof(unsigned long) * 16);
  34. set_fs(KERNEL_DS);
  35. dest[32] = src->psr;
  36. dest[33] = src->pc;
  37. dest[34] = src->npc;
  38. dest[35] = src->y;
  39. dest[36] = dest[37] = 0; /* XXX */
  40. } while(0);
  41. typedef struct {
  42. union {
  43. unsigned long pr_regs[32];
  44. double pr_dregs[16];
  45. } pr_fr;
  46. unsigned long __unused;
  47. unsigned long pr_fsr;
  48. unsigned char pr_qcnt;
  49. unsigned char pr_q_entrysize;
  50. unsigned char pr_en;
  51. unsigned int pr_q[64];
  52. } elf_fpregset_t;
  53. /*
  54.  * This is used to ensure we don't load something for the wrong architecture.
  55.  */
  56. #define elf_check_arch(x) ((x)->e_machine == EM_SPARC)
  57. /*
  58.  * These are used to set parameters in the core dumps.
  59.  */
  60. #define ELF_ARCH EM_SPARC
  61. #define ELF_CLASS ELFCLASS32
  62. #define ELF_DATA ELFDATA2MSB
  63. #define USE_ELF_CORE_DUMP
  64. #ifndef CONFIG_SUN4
  65. #define ELF_EXEC_PAGESIZE 4096
  66. #else
  67. #define ELF_EXEC_PAGESIZE 8192
  68. #endif
  69. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  70.    use of this is to invoke "./ld.so someprog" to test out a new version of
  71.    the loader.  We need to make sure that it is out of the way of the program
  72.    that it will "exec", and that there is sufficient room for the brk.  */
  73. #define ELF_ET_DYN_BASE         (0x08000000)
  74. /* This yields a mask that user programs can use to figure out what
  75.    instruction set this cpu supports.  This can NOT be done in userspace
  76.    on Sparc.  */
  77. /* Sun4c has none of the capabilities, most sun4m's have them all.
  78.  * XXX This is gross, set some global variable at boot time. -DaveM
  79.  */
  80. #define ELF_HWCAP ((ARCH_SUN4C_SUN4) ? 0 : 
  81.  (HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | 
  82.   HWCAP_SPARC_SWAP | 
  83.   ((srmmu_modtype != Cypress && 
  84.     srmmu_modtype != Cypress_vE && 
  85.     srmmu_modtype != Cypress_vD) ? 
  86.    HWCAP_SPARC_MULDIV : 0)))
  87. /* This yields a string that ld.so will use to load implementation
  88.    specific libraries for optimization.  This is more specific in
  89.    intent than poking at uname or /proc/cpuinfo. */
  90. #define ELF_PLATFORM (NULL)
  91. #ifdef __KERNEL__
  92. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  93. #endif
  94. #endif /* !(__ASMSPARC_ELF_H) */