Home
last modified time | relevance | path

Searched refs:SecIt (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp2114 for (const auto &SecIt : Sections) { in DWARFObjInMemory() local
2115 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory()
2116 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
2117 else if (SecIt.first() == "debug_info") in DWARFObjInMemory()
2120 InfoSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
2121 else if (SecIt.first() == "debug_info.dwo") in DWARFObjInMemory()
2122 InfoDWOSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
2123 else if (SecIt.first() == "debug_types") in DWARFObjInMemory()
2124 TypesSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
2125 else if (SecIt.first() == "debug_types.dwo") in DWARFObjInMemory()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h1087 auto SecIt = in findSection() local
1089 return SecIt == Sections.end() ? nullptr : SecIt->get(); in findSection()