⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 elf.h

📁 ARM 嵌入式 系统 设计与实例开发 实验教材 二源码
💻 H
字号:
/* $Id: elf.h,v 1.30.2.1 2002/02/04 22:37:47 davem Exp $ */#ifndef __ASM_SPARC64_ELF_H#define __ASM_SPARC64_ELF_H/* * ELF register definitions.. */#include <asm/ptrace.h>#ifdef __KERNEL__#include <asm/processor.h>#endif/* * These are used to set parameters in the core dumps. */#ifndef ELF_ARCH#define ELF_ARCH		EM_SPARCV9#define ELF_CLASS		ELFCLASS64#define ELF_DATA		ELFDATA2MSBtypedef unsigned long elf_greg_t;#define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))typedef elf_greg_t elf_gregset_t[ELF_NGREG];typedef struct {	unsigned long	pr_regs[32];	unsigned long	pr_fsr;	unsigned long	pr_gsr;	unsigned long	pr_fprs;} elf_fpregset_t;#endif/* * This is used to ensure we don't load something for the wrong architecture. */#ifndef elf_check_arch#define elf_check_arch(x) ((x)->e_machine == ELF_ARCH)	/* Might be EM_SPARCV9 or EM_SPARC */#endif#define USE_ELF_CORE_DUMP#define ELF_EXEC_PAGESIZE	PAGE_SIZE/* This is the location that an ET_DYN program is loaded if exec'ed.  Typical   use of this is to invoke "./ld.so someprog" to test out a new version of   the loader.  We need to make sure that it is out of the way of the program   that it will "exec", and that there is sufficient room for the brk.  */#ifndef ELF_ET_DYN_BASE#define ELF_ET_DYN_BASE         0x0000010000000000UL#endif/* This yields a mask that user programs can use to figure out what   instruction set this cpu supports.  *//* On Ultra, we support all of the v8 capabilities. */#define ELF_HWCAP	((HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | \			  HWCAP_SPARC_SWAP | HWCAP_SPARC_MULDIV | \			  HWCAP_SPARC_V9) | \			 ((tlb_type == cheetah) ? HWCAP_SPARC_ULTRA3 : 0))/* This yields a string that ld.so will use to load implementation   specific libraries for optimization.  This is more specific in   intent than poking at uname or /proc/cpuinfo.  */#define ELF_PLATFORM	(NULL)#ifdef __KERNEL__#define SET_PERSONALITY(ex, ibcs2)			\do {	unsigned char flags = current->thread.flags;	\	if ((ex).e_ident[EI_CLASS] == ELFCLASS32)	\		flags |= SPARC_FLAG_32BIT;		\	else						\		flags &= ~SPARC_FLAG_32BIT;		\	if (flags != current->thread.flags) {		\		/* flush_thread will update pgd cache */\		current->thread.flags = flags;		\	}						\							\	if (ibcs2)					\		set_personality(PER_SVR4);		\	else if (current->personality != PER_LINUX32)	\		set_personality(PER_LINUX);		\} while (0)#endif#endif /* !(__ASM_SPARC64_ELF_H) */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -