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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASMm68k_ELF_H
  2. #define __ASMm68k_ELF_H
  3. /*
  4.  * ELF register definitions..
  5.  */
  6. #include <linux/config.h>
  7. #include <asm/ptrace.h>
  8. #include <asm/user.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_m68kfp_struct elf_fpregset_t;
  13. /*
  14.  * This is used to ensure we don't load something for the wrong architecture.
  15.  */
  16. #define elf_check_arch(x) ((x)->e_machine == EM_68K)
  17. /*
  18.  * These are used to set parameters in the core dumps.
  19.  */
  20. #define ELF_CLASS ELFCLASS32
  21. #define ELF_DATA ELFDATA2MSB
  22. #define ELF_ARCH EM_68K
  23. /* For SVR4/m68k the function pointer to be registered with `atexit' is
  24.    passed in %a1.  Although my copy of the ABI has no such statement, it
  25.    is actually used on ASV.  */
  26. #define ELF_PLAT_INIT(_r) _r->a1 = 0
  27. #define USE_ELF_CORE_DUMP
  28. #ifndef CONFIG_SUN3
  29. #define ELF_EXEC_PAGESIZE 4096
  30. #else
  31. #define ELF_EXEC_PAGESIZE 8192
  32. #endif
  33. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  34.    use of this is to invoke "./ld.so someprog" to test out a new version of
  35.    the loader.  We need to make sure that it is out of the way of the program
  36.    that it will "exec", and that there is sufficient room for the brk.  */
  37. #ifndef CONFIG_SUN3
  38. #define ELF_ET_DYN_BASE         0xD0000000UL
  39. #else
  40. #define ELF_ET_DYN_BASE         0x0D800000UL
  41. #endif
  42. #define ELF_CORE_COPY_REGS(pr_reg, regs)
  43. /* Bleech. */
  44. pr_reg[0] = regs->d1;
  45. pr_reg[1] = regs->d2;
  46. pr_reg[2] = regs->d3;
  47. pr_reg[3] = regs->d4;
  48. pr_reg[4] = regs->d5;
  49. pr_reg[7] = regs->a0;
  50. pr_reg[8] = regs->a1;
  51. pr_reg[9] = regs->a2;
  52. pr_reg[14] = regs->d0;
  53. pr_reg[15] = rdusp();
  54. pr_reg[16] = regs->orig_d0;
  55. pr_reg[17] = regs->sr;
  56. pr_reg[18] = regs->pc;
  57. pr_reg[19] = (regs->format << 12) | regs->vector;
  58. {
  59.   struct switch_stack *sw = ((struct switch_stack *)regs) - 1;
  60.   pr_reg[5] = sw->d6;
  61.   pr_reg[6] = sw->d7;
  62.   pr_reg[10] = sw->a3;
  63.   pr_reg[11] = sw->a4;
  64.   pr_reg[12] = sw->a5;
  65.   pr_reg[13] = sw->a6;
  66. }
  67. /* This yields a mask that user programs can use to figure out what
  68.    instruction set this cpu supports.  */
  69. #define ELF_HWCAP (0)
  70. /* This yields a string that ld.so will use to load implementation
  71.    specific libraries for optimization.  This is more specific in
  72.    intent than poking at uname or /proc/cpuinfo.  */
  73. #define ELF_PLATFORM  (NULL)
  74. #ifdef __KERNEL__
  75. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  76. #endif
  77. #endif