Lines Matching refs:abi_ulong
66 static abi_ulong target_create_elf_tables(abi_ulong p, int argc, int envc, in target_create_elf_tables()
67 abi_ulong stringp, in target_create_elf_tables()
69 abi_ulong load_addr, in target_create_elf_tables()
70 abi_ulong load_bias, in target_create_elf_tables()
71 abi_ulong interp_load_addr, in target_create_elf_tables()
74 abi_ulong sp; in target_create_elf_tables()
76 abi_ulong u_platform; in target_create_elf_tables()
93 sp = sp & ~(abi_ulong)15; in target_create_elf_tables()
119 NEW_AUX_ENT(AT_PHDR, (abi_ulong)(load_addr + exec->e_phoff)); in target_create_elf_tables()
120 NEW_AUX_ENT(AT_PHENT, (abi_ulong)(sizeof(struct elf_phdr))); in target_create_elf_tables()
121 NEW_AUX_ENT(AT_PHNUM, (abi_ulong)(exec->e_phnum)); in target_create_elf_tables()
122 NEW_AUX_ENT(AT_PAGESZ, (abi_ulong)(TARGET_PAGE_SIZE)); in target_create_elf_tables()
123 NEW_AUX_ENT(AT_BASE, (abi_ulong)(interp_load_addr)); in target_create_elf_tables()
124 NEW_AUX_ENT(AT_FLAGS, (abi_ulong)0); in target_create_elf_tables()
126 NEW_AUX_ENT(AT_UID, (abi_ulong)getuid()); in target_create_elf_tables()
127 NEW_AUX_ENT(AT_EUID, (abi_ulong)geteuid()); in target_create_elf_tables()
128 NEW_AUX_ENT(AT_GID, (abi_ulong)getgid()); in target_create_elf_tables()
129 NEW_AUX_ENT(AT_EGID, (abi_ulong)getegid()); in target_create_elf_tables()
130 NEW_AUX_ENT(AT_HWCAP, (abi_ulong)ELF_HWCAP); in target_create_elf_tables()
131 NEW_AUX_ENT(AT_CLKTCK, (abi_ulong)sysconf(_SC_CLK_TCK)); in target_create_elf_tables()