Home
last modified time | relevance | path

Searched refs:ModS (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DNativeInlineSiteSymbol.cpp44 findInlineeByTypeIndex(TypeIndex Id, ModuleDebugStreamRef &ModS) { in findInlineeByTypeIndex() argument
45 for (const auto &SS : ModS.getSubsectionsArray()) { in findInlineeByTypeIndex()
193 Expected<ModuleDebugStreamRef> ModS = Session.getModuleDebugStream(Modi); in findInlineeLinesByVA() local
194 if (!ModS) { in findInlineeLinesByVA()
195 consumeError(ModS.takeError()); in findInlineeLinesByVA()
200 ModS->findChecksumsSubsection(); in findInlineeLinesByVA()
213 findInlineeByTypeIndex(Sym.Inlinee, ModS.get()); in findInlineeLinesByVA()
H A DNativeFunctionSymbol.cpp102 Expected<ModuleDebugStreamRef> ModS = Session.getModuleDebugStream(Modi); in findInlineFramesByVA() local
103 if (!ModS) { in findInlineFramesByVA()
104 consumeError(ModS.takeError()); in findInlineFramesByVA()
107 CVSymbolArray Syms = ModS->getSymbolArray(); in findInlineFramesByVA()
H A DInputFile.cpp60 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
61 if (auto EC = ModS.reload()) in getModuleDebugStream()
65 return std::move(ModS); in getModuleDebugStream()
84 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
85 if (Error Err = ModS.reload()) in getModuleDebugStream()
89 return std::move(ModS); in getModuleDebugStream()
H A DNativeSession.cpp466 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
467 if (auto EC = ModS.reload()) in getModuleDebugStream()
470 return std::move(ModS); in getModuleDebugStream()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DYAMLOutputStyle.cpp235 pdb::ModuleDebugStreamRef ModS(MI, std::move(ModStreamData)); in dumpDbiStream() local
236 if (auto EC = ModS.reload()) in dumpDbiStream()
243 ModS.hasDebugSubsections()) { in dumpDbiStream()
244 auto ExpectedChecksums = ModS.findChecksumsSubsection(); in dumpDbiStream()
251 for (const auto &SS : ModS.subsections()) { in dumpDbiStream()
267 DMI.Modi->Signature = ModS.signature(); in dumpDbiStream()
269 for (auto &Sym : ModS.symbols(&HadError)) { in dumpDbiStream()
H A DDumpOutputStyle.cpp1477 ModuleDebugStreamRef &ModS = *ExpectedModS; in dumpModuleSymsForPdb() local
1487 auto SS = ModS.getSymbolsSubstream(); in dumpModuleSymsForPdb()
1493 if (auto EC = Visitor.visitSymbolStreamFiltered(ModS.getSymbolArray(), in dumpModuleSymsForPdb()
1499 } else if (auto EC = Visitor.visitSymbolStream(ModS.getSymbolArray(), in dumpModuleSymsForPdb()