Home
last modified time | relevance | path

Searched refs:SecRef (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELF_riscv.cpp178 for (auto &SecRef : Base::Sections) { in addRelocations() local
179 if (SecRef.sh_type != ELF::SHT_RELA && SecRef.sh_type != ELF::SHT_REL) in addRelocations()
181 auto RelSectName = Base::Obj.getSectionName(SecRef); in addRelocations()
189 auto UpdateSection = Base::Obj.getSection(SecRef.sh_info); in addRelocations()
215 auto Relocations = Base::Obj.relas(SecRef); in addRelocations()
H A DELF_x86_64.cpp263 for (auto &SecRef : Sections) { in addRelocations() local
264 if (SecRef.sh_type != ELF::SHT_RELA && SecRef.sh_type != ELF::SHT_REL) in addRelocations()
267 if (SecRef.sh_type == ELF::SHT_REL) in addRelocations()
271 auto RelSectName = Obj.getSectionName(SecRef); in addRelocations()
279 auto UpdateSection = Obj.getSection(SecRef.sh_info); in addRelocations()
306 auto Relocations = Obj.relas(SecRef); in addRelocations()
H A DMachOLinkGraphBuilder.cpp124 for (auto &SecRef : Obj.sections()) { in createNormalizedSections() local
128 auto SecIndex = Obj.getSectionIndex(SecRef.getRawDataRefImpl()); in createNormalizedSections()
132 Obj.getSection64(SecRef.getRawDataRefImpl()); in createNormalizedSections()
145 const MachO::section &Sec32 = Obj.getSection(SecRef.getRawDataRefImpl()); in createNormalizedSections()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOReader.cpp80 Expected<object::SectionRef> SecRef = in extractSections() local
82 if (!SecRef) in extractSections()
83 return SecRef.takeError(); in extractSections()
86 MachOObj.getSectionContents(SecRef->getRawDataRefImpl()); in extractSections()
95 for (auto RI = MachOObj.section_rel_begin(SecRef->getRawDataRefImpl()), in extractSections()
96 RE = MachOObj.section_rel_end(SecRef->getRawDataRefImpl()); in extractSections()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp89 for (object::SectionRef SecRef : Obj.sections()) { in getSectionRefsByNameOrIndex() local
90 StringRef SecName = unwrapOrError(Obj.getFileName(), SecRef.getName()); in getSectionRefsByNameOrIndex()
98 Ret.push_back(SecRef); in getSectionRefsByNameOrIndex()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFFormValue.cpp396 const auto &SecRef = SectionNames[SectionIndex]; in dumpAddressSection() local
398 OS << " \"" << SecRef.Name << '\"'; in dumpAddressSection()
401 if (!SecRef.IsNameUnique) in dumpAddressSection()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DXCOFFObjectFile.cpp517 Expected<DataRefImpl> SecRef = getSectionByNum(SectionNum); in getSymbolSectionName()
518 if (SecRef) in getSymbolSectionName()
520 getSectionNameInternal(SecRef.get())); in getSymbolSectionName()
521 return SecRef.takeError(); in getSymbolSectionName()