Home
last modified time | relevance | path

Searched refs:getObj (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp167 for (const SectionRef &Section : getObj().sections()) { in cacheRelocations()
168 const coff_section *CoffSection = getObj().getCOFFSection(Section); in cacheRelocations()
185 basic_symbol_iterator SymI = getObj().symbol_end(); in resolveSymbol()
194 if (SymI == getObj().symbol_end()) in resolveSymbol()
536 W.printNumber("Section", SectionName, getObj().getSectionID(Section)); in traverseTypeSection()
619 LVSymbolVisitorDelegate VisitorDelegate(this, Section, &getObj(), in traverseSymbolsSubsection()
646 W.printNumber("Section", SectionName, getObj().getSectionID(Section)); in traverseSymbolSection()
722 if (Error Err = resolveSymbolName(getObj().getCOFFSection(Section), in traverseSymbolSection()
1173 if (Error Err = createScopes(getObj())) in createScopes()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputFiles.h188 template <typename ELFT> llvm::object::ELFFile<ELFT> getObj() const { in getObj() function
244 llvm::object::ELFFile<ELFT> getObj() const { in getObj() function
245 return this->ELFFileBase::getObj<ELFT>(); in getObj()
H A DInputFiles.cpp553 const ELFFile<ELFT> &obj = getObj<ELFT>(); in init()
584 this->getObj().getSectionIndex(sym, getELFSyms<ELFT>(), shndxTable), in getSectionIndex()
589 object::ELFFile<ELFT> obj = this->getObj(); in parse()
608 this->getObj().template getSectionContentsAsArray<char>(sec), this); in parse()
628 check(this->getObj().getSectionContents(sec)); in parse()
1190 initializeSections(ignoreComdats, getObj()); in initSectionsAndLocalSyms()
1462 const ELFFile<ELFT> obj = this->getObj<ELFT>(); in parse()
H A DInputSection.cpp49 return check(file.getObj().getSectionContents(hdr)); in getSectionContents()
479 CHECK(file->getObj().getSectionName(sec), file) + in copyRelocations()
H A DRelocations.cpp273 check(file.template getObj<ELFT>().program_headers())) in isReadOnly()
534 file->getObj().getSectionName(objSections[sym.discardedSecIdx]), file); in maybeReportDiscarded()
H A DDriver.cpp986 const ELFFile<ELFT> &obj = inputObj->getObj(); in processCallGraphRelocations()
2403 check(obj->getObj().getSectionContents(*obj->addrsigSec)); in findKeepUniqueSections()
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DAMDGPU.cpp49 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
133 ->getObj() in calcEFlags()
H A DMipsArchTree.cpp299 v.push_back({f, cast<ObjFile<ELFT>>(f)->getObj().getHeader().e_flags}); in calcMipsEFlags()
365 return ef->template getObj<ELFT>().getHeader().e_flags & EF_MIPS_ABI2; in isN32Abi()
H A DAVR.cpp276 return cast<ObjFile<ELF32LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
H A DLoongArch.cpp217 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
218 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
H A DMips.cpp373 if (f->getObj().getHeader().e_flags & EF_MIPS_PIC) in needsThunk()
778 return cast<ObjFile<ELFT>>(file)->getObj().getHeader().e_flags & EF_MIPS_PIC; in isMipsPIC()
H A DHexagon.cpp67 uint32_t eflags = cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in calcEFlags()
H A DPPC64.cpp635 return cast<ObjFile<ELF64BE>>(file)->getObj().getHeader().e_flags; in getEFlags()
636 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
H A DRISCV.cpp142 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
143 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h67 object::COFFObjectFile &getObj();
H A DDumpOutputStyle.cpp74 object::COFFObjectFile &DumpOutputStyle::getObj() { return File.obj(); } in getObj() function in DumpOutputStyle
1268 for (const auto &S : getObj().sections()) { in dumpTypesFromObjectFile()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h107 llvm::object::COFFObjectFile &getObj() { return Input.obj(); }