reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/BinaryFormat/ELF.h
   80   unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
  106   unsigned char getFileClass() const { return e_ident[EI_CLASS]; }
include/llvm/Object/ELF.h
   43   return std::make_pair((uint8_t)Object[ELF::EI_CLASS],
include/llvm/Object/ELFObjectFile.h
 1056   switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
 1139     switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
 1154     switch (EF.getHeader()->e_ident[ELF::EI_CLASS]) {
include/llvm/Object/ELFTypes.h
  477   unsigned char getFileClass() const { return e_ident[ELF::EI_CLASS]; }
lib/ObjectYAML/ELFEmitter.cpp
  257   Header.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
tools/lld/ELF/SyntheticSections.cpp
 3496   eHdr->e_ident[EI_CLASS] = config->is64 ? ELFCLASS64 : ELFCLASS32;
tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
  164   switch (magic[EI_CLASS]) {
tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
   86     return e_ident[llvm::ELF::EI_CLASS] == llvm::ELF::ELFCLASS32;
   94     return e_ident[llvm::ELF::EI_CLASS] == llvm::ELF::ELFCLASS64;
tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  246   uint32_t fileclass = header.e_ident[EI_CLASS];
 1463             if (header.e_ident[EI_CLASS] == llvm::ELF::ELFCLASS64)
 2973   s->Printf("e_ident[EI_CLASS  ] = 0x%2.2x\n", header.e_ident[EI_CLASS]);
tools/llvm-objcopy/ELF/Object.cpp
 1693   Ehdr.e_ident[EI_CLASS] = ELFT::Is64Bits ? ELFCLASS64 : ELFCLASS32;
tools/llvm-readobj/ELFDumper.cpp
 2761   Str = printEnum(e->e_ident[ELF::EI_CLASS], makeArrayRef(ElfClass));
 5152       W.printEnum("Class", E->e_ident[ELF::EI_CLASS], makeArrayRef(ElfClass));