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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ASM_SH_ELF_H
  2. #define __ASM_SH_ELF_H
  3. /*
  4.  * ELF register definitions..
  5.  */
  6. #include <asm/ptrace.h>
  7. #include <asm/user.h>
  8. typedef unsigned long elf_greg_t;
  9. #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
  10. typedef elf_greg_t elf_gregset_t[ELF_NGREG];
  11. typedef struct user_fpu_struct elf_fpregset_t;
  12. /*
  13.  * This is used to ensure we don't load something for the wrong architecture.
  14.  */
  15. #define elf_check_arch(x) ( (x)->e_machine == EM_SH )
  16. /*
  17.  * These are used to set parameters in the core dumps.
  18.  */
  19. #define ELF_CLASS ELFCLASS32
  20. #ifdef __LITTLE_ENDIAN__
  21. #define ELF_DATA ELFDATA2LSB
  22. #else
  23. #define ELF_DATA ELFDATA2MSB
  24. #endif
  25. #define ELF_ARCH EM_SH
  26. #define USE_ELF_CORE_DUMP
  27. #define ELF_EXEC_PAGESIZE 4096
  28. /* This is the location that an ET_DYN program is loaded if exec'ed.  Typical
  29.    use of this is to invoke "./ld.so someprog" to test out a new version of
  30.    the loader.  We need to make sure that it is out of the way of the program
  31.    that it will "exec", and that there is sufficient room for the brk.  */
  32. #define ELF_ET_DYN_BASE         (2 * TASK_SIZE / 3)
  33. #define ELF_CORE_COPY_REGS(_dest,_regs)
  34. memcpy((char *) &_dest, (char *) _regs,
  35.        sizeof(struct pt_regs));
  36. /* This yields a mask that user programs can use to figure out what
  37.    instruction set this CPU supports.  This could be done in user space,
  38.    but it's not easy, and we've already done it here.  */
  39. #define ELF_HWCAP (0)
  40. /* This yields a string that ld.so will use to load implementation
  41.    specific libraries for optimization.  This is more specific in
  42.    intent than poking at uname or /proc/cpuinfo.
  43.    For the moment, we have only optimizations for the Intel generations,
  44.    but that could change... */
  45. #define ELF_PLATFORM  (NULL)
  46. #define ELF_PLAT_INIT(_r) 
  47.   do { _r->regs[0]=0; _r->regs[1]=0; _r->regs[2]=0; _r->regs[3]=0; 
  48.        _r->regs[4]=0; _r->regs[5]=0; _r->regs[6]=0; _r->regs[7]=0; 
  49.        _r->regs[8]=0; _r->regs[9]=0; _r->regs[10]=0; _r->regs[11]=0; 
  50.        _r->regs[12]=0; _r->regs[13]=0; _r->regs[14]=0; 
  51.        _r->sr = SR_FD; } while (0)
  52. #ifdef __KERNEL__
  53. #define SET_PERSONALITY(ex, ibcs2) set_personality(PER_LINUX_32BIT)
  54. #endif
  55. #endif /* __ASM_SH_ELF_H */