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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ASM_IA64_ELF_H
  2. #define _ASM_IA64_ELF_H
  3. /*
  4.  * ELF archtecture specific definitions.
  5.  *
  6.  * Copyright (C) 1998, 1999, 2002 Hewlett-Packard Co
  7.  * David Mosberger-Tang <davidm@hpl.hp.com>
  8.  */
  9. #include <asm/fpu.h>
  10. #include <asm/page.h>
  11. /*
  12.  * This is used to ensure we don't load something for the wrong architecture.
  13.  */
  14. #define elf_check_arch(x) ((x)->e_machine == EM_IA_64)
  15. /*
  16.  * These are used to set parameters in the core dumps.
  17.  */
  18. #define ELF_CLASS ELFCLASS64
  19. #define ELF_DATA ELFDATA2LSB
  20. #define ELF_ARCH EM_IA_64
  21. #define USE_ELF_CORE_DUMP
  22. /* Least-significant four bits of ELF header's e_flags are OS-specific.  The bits are
  23.    interpreted as follows by Linux: */
  24. #define EF_IA_64_LINUX_EXECUTABLE_STACK 0x1 /* is stack (& heap) executable by default? */
  25. /* always align to 64KB to allow for future page sizes of up to 64KB: */
  26. #define ELF_EXEC_PAGESIZE PAGE_SIZE
  27. /*
  28.  * This is the location that an ET_DYN program is loaded if exec'ed.
  29.  * Typical use of this is to invoke "./ld.so someprog" to test out a
  30.  * new version of the loader.  We need to make sure that it is out of
  31.  * the way of the program that it will "exec", and that there is
  32.  * sufficient room for the brk.
  33.  */
  34. #define ELF_ET_DYN_BASE (TASK_UNMAPPED_BASE + 0x800000000)
  35. /*
  36.  * We use (abuse?) this macro to insert the (empty) vm_area that is
  37.  * used to map the register backing store.  I don't see any better
  38.  * place to do this, but we should discuss this with Linus once we can
  39.  * talk to him...
  40.  */
  41. extern void ia64_init_addr_space (void);
  42. #define ELF_PLAT_INIT(_r) ia64_init_addr_space()
  43. /* ELF register definitions.  This is needed for core dump support.  */
  44. /*
  45.  * elf_gregset_t contains the application-level state in the following order:
  46.  * r0-r31
  47.  * NaT bits (for r0-r31; bit N == 1 iff rN is a NaT)
  48.  * predicate registers (p0-p63)
  49.  * b0-b7
  50.  * ip cfm psr
  51.  * ar.rsc ar.bsp ar.bspstore ar.rnat
  52.  * ar.ccv ar.unat ar.fpsr ar.pfs ar.lc ar.ec
  53.  */
  54. #define ELF_NGREG 128 /* we really need just 72 but let's leave some headroom... */
  55. #define ELF_NFPREG 128 /* f0 and f1 could be omitted, but so what... */
  56. typedef unsigned long elf_greg_t;
  57. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  58. typedef struct ia64_fpreg elf_fpreg_t;
  59. typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  60. struct pt_regs; /* forward declaration... */
  61. extern void ia64_elf_core_copy_regs (struct pt_regs *src, elf_gregset_t dst);
  62. #define ELF_CORE_COPY_REGS(_dest,_regs) ia64_elf_core_copy_regs(_regs, _dest);
  63. /* This macro yields a bitmask that programs can use to figure out
  64.    what instruction set this CPU supports.  */
  65. #define ELF_HWCAP  0
  66. /* This macro yields a string that ld.so will use to load
  67.    implementation specific libraries for optimization.  Not terribly
  68.    relevant until we have real hardware to play with... */
  69. #define ELF_PLATFORM 0
  70. #ifdef __KERNEL__
  71. struct elf64_hdr;
  72. extern void ia64_set_personality (struct elf64_hdr *elf_ex, int ibcs2_interpreter);
  73. #define SET_PERSONALITY(ex, ibcs2) ia64_set_personality(&(ex), ibcs2)
  74. #endif
  75. #endif /* _ASM_IA64_ELF_H */