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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/elf.h
  3.  *
  4.  *  S390 version
  5.  *
  6.  *  Derived from "include/asm-i386/elf.h"
  7.  */
  8. #ifndef __ASMS390_ELF_H
  9. #define __ASMS390_ELF_H
  10. /*
  11.  * ELF register definitions..
  12.  */
  13. #include <asm/ptrace.h>
  14. #include <asm/user.h>
  15. typedef s390_fp_regs elf_fpregset_t;
  16. typedef s390_regs elf_gregset_t;
  17. /*
  18.  * These are used to set parameters in the core dumps.
  19.  */
  20. #define ELF_CLASS ELFCLASS64
  21. #define ELF_DATA ELFDATA2MSB
  22. #define ELF_ARCH EM_S390
  23. /*
  24.  * This is used to ensure we don't load something for the wrong architecture.
  25.  */
  26. #define elf_check_arch(x) 
  27.         (((x)->e_machine == EM_S390 || (x)->e_machine == EM_S390_OLD) 
  28.          && (x)->e_ident[EI_CLASS] == ELF_CLASS)
  29. /* For SVR4/S390 the function pointer to be registered with `atexit` is
  30.    passed in R14. */
  31. #define ELF_PLAT_INIT(_r) 
  32. do { 
  33. _r->gprs[14] = 0; 
  34. current->thread.flags = 0; 
  35. } while(0)
  36. #define USE_ELF_CORE_DUMP
  37. #define ELF_EXEC_PAGESIZE 4096
  38. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  39.    use of this is to invoke "./ld.so someprog" to test out a new version of
  40.    the loader.  We need to make sure that it is out of the way of the program
  41.    that it will "exec", and that there is sufficient room for the brk.  */
  42. #define ELF_ET_DYN_BASE         (TASK_SIZE / 3 * 2)
  43. /* Wow, the "main" arch needs arch dependent functions too.. :) */
  44. /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is
  45.    now struct_user_regs, they are different) */
  46. #define ELF_CORE_COPY_REGS(pr_reg, regs)
  47. memcpy(&pr_reg,regs,sizeof(elf_gregset_t)); 
  48. /* This yields a mask that user programs can use to figure out what
  49.    instruction set this CPU supports. */
  50. #define ELF_HWCAP (0)
  51. /* This yields a string that ld.so will use to load implementation
  52.    specific libraries for optimization.  This is more specific in
  53.    intent than poking at uname or /proc/cpuinfo.
  54.    For the moment, we have only optimizations for the Intel generations,
  55.    but that could change... */
  56. #define ELF_PLATFORM (NULL)
  57. #ifdef __KERNEL__
  58. #define SET_PERSONALITY(ex, ibcs2)
  59. do {
  60. if (ibcs2)
  61. set_personality(PER_SVR4);
  62. else if (current->personality != PER_LINUX32)
  63. set_personality(PER_LINUX);
  64. } while (0)
  65. #endif
  66. #endif