Lines Matching refs:elf64
93 Elf64_Ehdr *elf64; in start() local
156 elf64 = (Elf64_Ehdr *)vmlinux.addr; in start()
157 if ( elf64->e_ident[EI_MAG0] != ELFMAG0 || in start()
158 elf64->e_ident[EI_MAG1] != ELFMAG1 || in start()
159 elf64->e_ident[EI_MAG2] != ELFMAG2 || in start()
160 elf64->e_ident[EI_MAG3] != ELFMAG3 || in start()
161 elf64->e_ident[EI_CLASS] != ELFCLASS64 || in start()
162 elf64->e_ident[EI_DATA] != ELFDATA2MSB || in start()
163 elf64->e_type != ET_EXEC || in start()
164 elf64->e_machine != EM_PPC64 ) in start()
170 elf64ph = (Elf64_Phdr *)((unsigned long)elf64 + in start()
171 (unsigned long)elf64->e_phoff); in start()
172 for(i=0; i < (unsigned int)elf64->e_phnum ;i++,elf64ph++) { in start()