Searched refs:SectionMap (Results 1 - 19 of 19) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DXCOFFObjectWriter.cpp165 DenseMap<const MCSectionXCOFF *, ControlSection *> SectionMap; member in class:__anon2032::XCOFFObjectWriter
266 SectionMap.clear();
352 assert(SectionMap.find(MCSec) == SectionMap.end() &&
364 SectionMap[MCSec] = &Group.back();
378 SectionMap[ContainingCsect] = &UndefinedCsects.back();
393 assert(SectionMap.find(ContainingCsect) != SectionMap.end() &&
396 SectionMap[ContainingCsect]->Syms.emplace_back(XSym);
428 return SectionMap[ContainingCsec
[all...]
H A DWinCOFFObjectWriter.cpp146 section_map SectionMap; member in class:__anon2031::WinCOFFObjectWriter
168 SectionMap.clear();
331 SectionMap[&MCSec] = Section;
371 Sec = SectionMap[Base->getFragment()->getParent()];
638 COFFSection *Sec = SectionMap[&MCSec];
738 assert(SectionMap.find(MCSec) != SectionMap.end() &&
741 COFFSection *Sec = SectionMap[MCSec];
775 SectionMap.find(TargetSection) != SectionMap
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DObject.cpp77 SectionMap = DenseMap<ssize_t, Section *>(Sections.size());
80 SectionMap[S.UniqueId] = &S;
86 return SectionMap.lookup(UniqueId);
H A DObject.h145 DenseMap<ssize_t, Section *> SectionMap; member in struct:llvm::objcopy::coff::Object
152 // Update SectionMap and Index in each Section.
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp149 if (SectionMap.empty())
151 return sizeof(SecMapHeader) + sizeof(SecMapEntry) * SectionMap.size();
358 SectionMap.emplace_back();
359 auto &Entry = SectionMap.back();
416 if (!SectionMap.empty()) {
417 ulittle16_t Size = static_cast<ulittle16_t>(SectionMap.size());
421 if (auto EC = Writer.writeArray(makeArrayRef(SectionMap)))
H A DDbiStream.cpp220 return SectionMap;
373 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp229 ObjSectionToIDMap &SectionMap) {
245 if (auto TextSIDOrErr = findOrEmitSection(Obj, Section, true, SectionMap))
251 SectionMap))
257 SectionMap))
262 auto I = SectionMap.find(Section);
263 if (I != SectionMap.end())
228 finalizeLoad(const ObjectFile &Obj, ObjSectionToIDMap &SectionMap) argument
H A DRuntimeDyldMachO.h159 ObjSectionToIDMap &SectionMap) override;
H A DRuntimeDyldELF.h185 ObjSectionToIDMap &SectionMap) override;
H A DRuntimeDyldImpl.h577 ObjSectionToIDMap &SectionMap) {
576 finalizeLoad(const ObjectFile &ObjImg, ObjSectionToIDMap &SectionMap) argument
H A DRuntimeDyldELF.cpp1924 ObjSectionToIDMap &SectionMap) {
1956 ObjSectionToIDMap::iterator i = SectionMap.find(*RelocatedSection);
1957 assert (i != SectionMap.end());
1967 for (i = SectionMap.begin(), e = SectionMap.end(); i != e; ++i) {
1923 finalizeLoad(const ObjectFile &Obj, ObjSectionToIDMap &SectionMap) argument
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h122 FixedStreamArray<SecMapEntry> SectionMap; member in class:llvm::pdb::DbiStream
H A DDbiStreamBuilder.h134 std::vector<SecMapEntry> SectionMap; member in class:llvm::pdb::DbiStreamBuilder
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h293 ObjSectionToIDMap &SectionMap) override {
295 for (const auto &SectionPair : SectionMap) {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h121 extern llvm::cl::opt<bool> SectionMap;
H A DBytesOutputStyle.cpp143 if (opts::bytes::SectionMap) {
H A Dllvm-pdbutil.cpp399 cl::opt<bool> SectionMap("sm", cl::desc("Dump section map"),
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1226 std::map<std::string, unsigned> SectionMap; local
1239 unsigned &Entry = SectionMap[std::string(GV.getSection())];
1243 Entry = SectionMap.size();
1251 unsigned &Entry = SectionMap[std::string(F.getSection())];
1255 Entry = SectionMap.size();
1291 if (SectionMap.empty()) // Section.
1295 Log2_32_Ceil(SectionMap.size()+1)));
1341 Vals.push_back(GV.hasSection() ? SectionMap[std::string(GV.getSection())]
1387 Vals.push_back(F.hasSection() ? SectionMap[std::string(F.getSection())]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp2843 MapVector<MCSection *, SmallVector<SymbolCU, 8>> SectionMap;
2851 SectionMap[Section].push_back(SCU);
2856 SectionMap[nullptr].push_back(SCU);
2862 for (auto &I : SectionMap) {

Completed in 405 milliseconds