elf.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

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 ELFCLASS32
  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. _r->gprs[14] = 0
  33. #define USE_ELF_CORE_DUMP
  34. #define ELF_EXEC_PAGESIZE 4096
  35. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  36.    use of this is to invoke "./ld.so someprog" to test out a new version of
  37.    the loader.  We need to make sure that it is out of the way of the program
  38.    that it will "exec", and that there is sufficient room for the brk.  */
  39. #define ELF_ET_DYN_BASE         ((TASK_SIZE & 0x80000000) 
  40.                                 ? TASK_SIZE / 3 * 2 
  41.                                 : 2 * TASK_SIZE / 3)
  42. /* Wow, the "main" arch needs arch dependent functions too.. :) */
  43. /* regs is struct pt_regs, pr_reg is elf_gregset_t (which is
  44.    now struct_user_regs, they are different) */
  45. #define ELF_CORE_COPY_REGS(pr_reg, regs)
  46. memcpy(&pr_reg,regs,sizeof(elf_gregset_t)); 
  47. /* This yields a mask that user programs can use to figure out what
  48.    instruction set this CPU supports. */
  49. #define ELF_HWCAP (0)
  50. /* This yields a string that ld.so will use to load implementation
  51.    specific libraries for optimization.  This is more specific in
  52.    intent than poking at uname or /proc/cpuinfo.
  53.    For the moment, we have only optimizations for the Intel generations,
  54.    but that could change... */
  55. #define ELF_PLATFORM (NULL)
  56. #ifdef __KERNEL__
  57. #define SET_PERSONALITY(ex, ibcs2) set_personality((ibcs2)?PER_SVR4:PER_LINUX)
  58. #endif
  59. #endif