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

References

include/llvm/Object/ELFObjectFile.h
  855   Expected<const Elf_Shdr *> SecOrErr = EF.getSection(EShdr->sh_info);
lib/ObjectYAML/ELFEmitter.cpp
  414           SHeader.sh_info = *RawSec->Info;
  581   SHeader.sh_info = (RawSec && RawSec->Info) ? (unsigned)(*RawSec->Info)
  627     SHeader.sh_info = *RawSec->Info;
  723     SHeader.sh_info = *Section.Info;
  749     SHeader.sh_info = toSectionIndex(Section.RelocatableSec, Section.Name);
  796   SHeader.sh_info =
  912   SHeader.sh_info = Section.Info;
  958   SHeader.sh_info = Section.Info;
tools/lld/ELF/InputFiles.cpp
  354   firstGlobal = symtabSec->sh_info;
  400   if (sec.sh_info >= symbols.size())
  402   const typename ELFT::Sym &sym = symbols[sec.sh_info];
  766   uint32_t idx = sec.sh_info;
  848       this->sections[sec.sh_info] = target;
 1120   unsigned verdefCount = sec->sh_info;
 1531     uint32_t firstGlobal = sec.sh_info;
tools/lld/ELF/InputSection.cpp
  127                        hdr.sh_info, hdr.sh_addralign,
tools/lld/ELF/OutputSections.cpp
   62   shdr->sh_info = info;
tools/llvm-objcopy/ELF/Object.cpp
   79   Shdr.sh_info = Sec.Info;
 1520     Sec.Info = Shdr.sh_info;
 1769   Shdr.sh_info = 0;
tools/llvm-objdump/ELFDump.cpp
  287   uint16_t VerdefIndexWidth = std::to_string(Shdr.sh_info).size();
tools/llvm-readobj/ELFDumper.cpp
  648   unsigned VerneedEntries = Sec->sh_info; // Number of Verneed entries
  687   unsigned VerdefEntries = Sec->sh_info; // Number of Verdef entries
 2850         FileName, Obj->template getEntry<Elf_Sym>(Symtab, Sec.sh_info));
 2861                    Sec.sh_info,
 3223     Fields[9].Str = to_string(Sec.sh_info);
 3861   unsigned VerDefsNum = Sec->sh_info;
 3906   unsigned VerneedNum = Sec->sh_info;
 5391     W.printNumber("Info", Sec.sh_info);
 5653   unsigned VerDefsNum = Sec->sh_info;
 5700   unsigned VerneedNum = Sec->sh_info;
tools/obj2yaml/elf2yaml.cpp
  498   auto InfoSection = Obj.getSection(Shdr->sh_info);
  657   if (Shdr->sh_info)
  658     S->Info = static_cast<llvm::yaml::Hex64>(Shdr->sh_info);
  775   S->Info = Shdr->sh_info;
  843   S->Info = Shdr->sh_info;
  915   Expected<StringRef> SymbolName = getSymbolName(Shdr->sh_link, Shdr->sh_info);