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.cpp162 for (const SectionRef &Section : getObj().sections()) { in cacheRelocations()
163 const coff_section *CoffSection = getObj().getCOFFSection(Section); in cacheRelocations()
180 basic_symbol_iterator SymI = getObj().symbol_end(); in resolveSymbol()
189 if (SymI == getObj().symbol_end()) in resolveSymbol()
531 W.printNumber("Section", SectionName, getObj().getSectionID(Section)); in traverseTypeSection()
614 LVSymbolVisitorDelegate VisitorDelegate(this, Section, &getObj(), in traverseSymbolsSubsection()
641 W.printNumber("Section", SectionName, getObj().getSectionID(Section)); in traverseSymbolSection()
717 if (Error Err = resolveSymbolName(getObj().getCOFFSection(Section), in traverseSymbolSection()
1167 if (Error Err = createScopes(getObj())) in createScopes()
/freebsd/contrib/llvm-project/lld/ELF/
H A DInputFiles.h185 template <typename ELFT> llvm::object::ELFFile<ELFT> getObj() const { in getObj() function
254 llvm::object::ELFFile<ELFT> getObj() const { in getObj() function
255 return this->ELFFileBase::getObj<ELFT>(); in getObj()
H A DInputFiles.cpp506 const ELFFile<ELFT> &obj = getObj<ELFT>(); in init()
537 this->getObj().getSectionIndex(sym, getELFSyms<ELFT>(), shndxTable), in getSectionIndex()
542 object::ELFFile<ELFT> obj = this->getObj(); in parse()
594 this->getObj().template getSectionContentsAsArray<char>(sec), this); in parse()
616 check(this->getObj().getSectionContents(sec)); in parse()
1202 initializeSections(ignoreComdats, getObj()); in initSectionsAndLocalSyms()
1510 const ELFFile<ELFT> obj = this->getObj<ELFT>(); in parse()
H A DInputSection.cpp51 return check(file.getObj().getSectionContents(hdr)); in getSectionContents()
514 << CHECK2(file->getObj().getSectionName(sec), file) in copyRelocations()
H A DRelocations.cpp262 check(file.template getObj<ELFT>().program_headers())) in isReadOnly()
527 file->getObj().getSectionName(objSections[sym.discardedSecIdx]), file); in maybeReportDiscarded()
H A DDriver.cpp1056 const ELFFile<ELFT> &obj = inputObj->getObj(); in processCallGraphRelocations()
2581 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.cpp297 v.push_back({f, cast<ObjFile<ELFT>>(f)->getObj().getHeader().e_flags}); in calcMipsEFlags()
363 return ef->template getObj<ELFT>().getHeader().e_flags & EF_MIPS_ABI2; in isN32Abi()
H A DAVR.cpp272 return cast<ObjFile<ELF32LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
H A DMips.cpp374 if (f->getObj().getHeader().e_flags & EF_MIPS_PIC) in needsThunk()
780 return cast<ObjFile<ELFT>>(file)->getObj().getHeader().e_flags & EF_MIPS_PIC; in isMipsPIC()
H A DHexagon.cpp80 uint32_t eflags = cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in calcEFlags()
H A DPPC64.cpp633 return cast<ObjFile<ELF64BE>>(file)->getObj().getHeader().e_flags; in getEFlags()
634 return cast<ObjFile<ELF64LE>>(file)->getObj().getHeader().e_flags; in getEFlags()
H A DLoongArch.cpp240 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
241 return cast<ObjFile<ELF32LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
H A DRISCV.cpp145 return cast<ObjFile<ELF64LE>>(f)->getObj().getHeader().e_flags; in getEFlags()
146 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(); }