Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1670 for (const auto &SecIt : Sections) { in DWARFObjInMemory() local
1671 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory()
1672 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory()
1673 else if (SecIt.first() == "debug_info") in DWARFObjInMemory()
1676 InfoSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1677 else if (SecIt.first() == "debug_info.dwo") in DWARFObjInMemory()
1678 InfoDWOSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1679 else if (SecIt.first() == "debug_types") in DWARFObjInMemory()
1680 TypesSections[SectionRef()].Data = SecIt.second->getBuffer(); in DWARFObjInMemory()
1681 else if (SecIt.first() == "debug_types.dwo") in DWARFObjInMemory()
[all …]
/llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/
H A DELFObject.h1074 auto SecIt = in findSection() local
1076 return SecIt == Sections.end() ? nullptr : SecIt->get(); in findSection()