Home
last modified time | relevance | path

Searched refs:e_flags (Results 1 – 6 of 6) sorted by relevance

/art/runtime/arch/
Dinstruction_set.cc68 InstructionSet GetInstructionSetFromELF(uint16_t e_machine, uint32_t e_flags) { in GetInstructionSetFromELF() argument
79 if ((e_flags & EF_MIPS_ARCH) == EF_MIPS_ARCH_32R2 || in GetInstructionSetFromELF()
80 (e_flags & EF_MIPS_ARCH) == EF_MIPS_ARCH_32R6) { in GetInstructionSetFromELF()
82 } else if ((e_flags & EF_MIPS_ARCH) == EF_MIPS_ARCH_64R6) { in GetInstructionSetFromELF()
Dinstruction_set.h83 InstructionSet GetInstructionSetFromELF(uint16_t e_machine, uint32_t e_flags);
/art/compiler/
Delf_builder.h835 elf_header.e_flags = EF_ARM_EABI_VER5; in MakeElfHeader()
840 elf_header.e_flags = 0; in MakeElfHeader()
845 elf_header.e_flags = 0; in MakeElfHeader()
850 elf_header.e_flags = 0; in MakeElfHeader()
855 elf_header.e_flags = (EF_MIPS_NOREORDER | in MakeElfHeader()
864 elf_header.e_flags = (EF_MIPS_NOREORDER | in MakeElfHeader()
/art/runtime/
Delf.h77 Elf32_Word e_flags; // Processor-specific flags member
101 Elf64_Word e_flags; member
Delf_file.cc1131 InstructionSet elf_ISA = GetInstructionSetFromELF(GetHeader().e_machine, GetHeader().e_flags); in Load()
/art/patchoat/
Dpatchoat.cc200 isa = GetInstructionSetFromELF(elf_hdr.e_machine, elf_hdr.e_flags); in Patch()