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

Declarations

include/llvm/Object/ELF.h
  164   Expected<Elf_Shdr_Range> sections() const;

References

include/llvm/Object/ELF.h
   56   auto TableOrErr = Obj->sections();
  583   auto TableOrErr = sections();
  618   auto SectionsOrErr = sections();
  656   auto SectionsOrErr = sections();
  681   auto SectionsOrErr = sections();
include/llvm/Object/ELFObjectFile.h
  324     auto SectionsOrErr = EF.sections();
  369     auto SectionsOrErr = EF.sections();
  708   auto SectionsOrErr = EF.sections();
  770   auto SectionsOrErr = EF.sections();
  816   auto SectionsOrErr = EF.sections();
  952   auto SectionsOrErr = EF.sections();
 1034   auto SectionsOrErr = EF.sections();
 1042   auto SectionsOrErr = EF.sections();
lib/Object/ELF.cpp
  521     auto SectionsOrError = sections();
tools/lld/ELF/InputFiles.cpp
  342   ArrayRef<Elf_Shdr> sections = CHECK(obj.sections(), this);
  474   ArrayRef<Elf_Shdr> sections = CHECK(this->getObj().sections(), this);
  503   ArrayRef<Elf_Shdr> objSections = CHECK(obj.sections(), this);
 1175   ArrayRef<Elf_Shdr> sections = CHECK(obj.sections(), this);
 1523   ArrayRef<typename ELFT::Shdr> sections = CHECK(obj.sections(), this);
tools/lld/ELF/InputSection.cpp
  449               CHECK(file->getObj().sections(), file)[secIdx];
tools/lld/ELF/Relocations.cpp
  658       CHECK(file->getObj().sections(), file);
tools/llvm-objcopy/ELF/Object.cpp
 1506   for (const auto &Shdr : unwrapOrError(ElfFile.sections())) {
 1574       auto Shdr = unwrapOrError(ElfFile.sections()).begin() + RelSec->Index;
tools/llvm-objdump/ELFDump.cpp
   40   auto SectionsOrError = Elf->sections();
  311       unwrapOrError(Elf->sections(), FileName);
tools/llvm-readobj/ARMEHABIPrinter.h
  402   for (const Elf_Shdr &Sec : unwrapOrError(FileName, ELF->sections())) {
  574   for (const Elf_Shdr &Sec : unwrapOrError(FileName, ELF->sections())) {
tools/llvm-readobj/DwarfCFIEHPrinter.h
   50   auto Sections = ObjF->getELFFile()->sections();
   84   auto Sections = Obj->sections();
tools/llvm-readobj/ELFDumper.cpp
  870   for (const auto &Shdr : unwrapOrError(FileName, Obj->sections()))
  879   for (const auto &Shdr : unwrapOrError(FileName, Obj.sections()))
 1445        unwrapOrError(ObjF->getFileName(), Obj->sections())) {
 1569        unwrapOrError(ObjF->getFileName(), Obj->sections())) {
 2260        unwrapOrError(ObjF->getFileName(), Obj->sections())) {
 2690   for (const auto &Sec : unwrapOrError(ObjF->getFileName(), Obj->sections())) {
 2733   ArrayRef<typename ELFT::Shdr> Arr = unwrapOrError(FileName, Obj->sections());
 2746   ArrayRef<typename ELFT::Shdr> Arr = unwrapOrError(FileName, Obj->sections());
 2840   for (const Elf_Shdr &Sec : unwrapOrError(FileName, Obj->sections())) {
 2996   for (const Elf_Shdr &Sec : unwrapOrError(this->FileName, Obj->sections())) {
 3194   ArrayRef<Elf_Shdr> Sections = unwrapOrError(this->FileName, Obj->sections());
 3595     for (const Elf_Shdr &Sec : unwrapOrError(this->FileName, Obj->sections())) {
 3618   for (const Elf_Shdr &Sec : unwrapOrError(this->FileName, Obj->sections())) {
 4663   ArrayRef<Elf_Shdr> Sections = unwrapOrError(this->FileName, Obj->sections());
 5243   for (const Elf_Shdr &Sec : unwrapOrError(this->FileName, Obj->sections())) {
 5346   ArrayRef<Elf_Shdr> Sections = unwrapOrError(this->FileName, Obj->sections());
 5906   ArrayRef<Elf_Shdr> Sections = unwrapOrError(this->FileName, Obj->sections());
 5939   for (const Elf_Shdr &Shdr : unwrapOrError(this->FileName, Obj->sections())) {
tools/obj2yaml/elf2yaml.cpp
  166   auto SectionsOrErr = Obj.sections();