reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
44 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader()->e_flags;
tools/lld/ELF/Arch/Hexagon.cpp 66 uint32_t eflags = cast<ObjFile<ELF32LE>>(f)->getObj().getHeader()->e_flags;
tools/lld/ELF/Arch/Mips.cpp361 if (f->getObj().getHeader()->e_flags & EF_MIPS_PIC) 736 return file->getObj().getHeader()->e_flags & EF_MIPS_PIC;tools/lld/ELF/Arch/MipsArchTree.cpp
300 v.push_back({f, cast<ObjFile<ELFT>>(f)->getObj().getHeader()->e_flags});
tools/lld/ELF/Arch/PPC64.cpp345 return cast<ObjFile<ELF64BE>>(file)->getObj().getHeader()->e_flags; 346 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader()->e_flags;tools/lld/ELF/Arch/RISCV.cpp
104 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader()->e_flags; 105 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader()->e_flags;tools/lld/ELF/Driver.cpp
1491 check(obj->getObj().getSectionContents(obj->addrsigSec));
tools/lld/ELF/InputFiles.cpp368 this->getObj().getSectionIndex(&sym, getELFSyms<ELFT>(), shndxTable), 474 ArrayRef<Elf_Shdr> sections = CHECK(this->getObj().sections(), this); 501 const ELFFile<ELFT> &obj = this->getObj(); 798 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(&sec)); 816 CHECK(this->getObj().template getSectionContentsAsArray<char>(&sec), this); 870 ArrayRef<Elf_Rela> rels = CHECK(getObj().relas(&sec), this); 875 ArrayRef<Elf_Rel> rels = CHECK(getObj().rels(&sec), this); 921 ArrayRef<uint8_t> contents = check(this->getObj().getSectionContents(&sec)); 977 return CHECK(getObj().getSectionName(&sec, sectionStringTable), this);tools/lld/ELF/InputSection.cpp
54 return check(file.getObj().getSectionContents(&hdr)); 449 CHECK(file->getObj().sections(), file)[secIdx]; 451 CHECK(file->getObj().getSectionName(&sec), file) +tools/lld/ELF/Relocations.cpp
658 CHECK(file->getObj().sections(), file); 664 file->getObj().getSectionName(&objSections[sym.discardedSecIdx]), file);