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

References

include/llvm/BinaryFormat/ELF.h
   64   Elf32_Word e_version;   // Must be equal to 1
   68   Elf32_Word e_flags;     // Processor-specific flags
  774   Elf32_Word sh_name;      // Section name (index into string table)
  775   Elf32_Word sh_type;      // Section type (SHT_*)
  776   Elf32_Word sh_flags;     // Section flags (SHF_*)
  779   Elf32_Word sh_size;      // Size of section, in bytes
  780   Elf32_Word sh_link;      // Section type-specific header table index link
  781   Elf32_Word sh_info;      // Section type-specific extra information
  782   Elf32_Word sh_addralign; // Section address alignment
  783   Elf32_Word sh_entsize;   // Size of records contained within the section
  992   Elf32_Word st_name;     // Symbol name (index into string table)
  994   Elf32_Word st_size;     // Size of the symbol
 1088   Elf32_Word r_info;   // Symbol table index and type of relocation to apply
 1092   Elf32_Word getSymbol() const { return (r_info >> 8); }
 1094   void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); }
 1096   void setSymbolAndType(Elf32_Word s, unsigned char t) {
 1104   Elf32_Word r_info;    // Symbol table index and type of relocation to apply
 1109   Elf32_Word getSymbol() const { return (r_info >> 8); }
 1111   void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); }
 1113   void setSymbolAndType(Elf32_Word s, unsigned char t) {
 1119 typedef Elf32_Word Elf32_Relr; // offset/bitmap for relative relocations
 1159   Elf32_Word p_type;   // Type of segment
 1163   Elf32_Word p_filesz; // Num. of bytes in file image of segment (may be zero)
 1164   Elf32_Word p_memsz;  // Num. of bytes in mem image of segment (may be zero)
 1165   Elf32_Word p_flags;  // Segment flags
 1166   Elf32_Word p_align;  // Segment alignment constraint
 1235     Elf32_Word d_val; // Integer value of entry.
 1534   Elf32_Word ch_type;
 1535   Elf32_Word ch_size;
 1536   Elf32_Word ch_addralign;
 1549   Elf32_Word n_namesz;
 1550   Elf32_Word n_descsz;
 1551   Elf32_Word n_type;
lib/Object/Decompressor.cpp
   61                                              : sizeof(Elf32_Word)) !=
   70       &Offset, Is64Bit ? sizeof(Elf64_Xword) : sizeof(Elf32_Word));
tools/llvm-objcopy/ELF/Object.cpp
 1042   ELF::Elf32_Word *Buf =
 1326   if (GroupSec->Align % sizeof(ELF::Elf32_Word) != 0)
 1342   if (GroupSec->Contents.size() % sizeof(ELF::Elf32_Word) ||
 1345   const ELF::Elf32_Word *Word =
 1347   const ELF::Elf32_Word *End =
 1348       Word + GroupSec->Contents.size() / sizeof(ELF::Elf32_Word);
tools/llvm-objcopy/ELF/Object.h
  778   ELF::Elf32_Word FlagWord;
  790   void setFlagWord(ELF::Elf32_Word W) { FlagWord = W; }