Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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.cpp61 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
62 if (auto EC = ModS.reload()) in getModuleDebugStream()
66 return std::move(ModS); in getModuleDebugStream()
85 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
86 if (Error Err = ModS.reload()) in getModuleDebugStream()
90 return std::move(ModS); in getModuleDebugStream()
H A DNativeSession.cpp467 ModuleDebugStreamRef ModS(Modi, std::move(ModStreamData)); in getModuleDebugStream() local
468 if (auto EC = ModS.reload()) in getModuleDebugStream()
471 return std::move(ModS); in getModuleDebugStream()
/freebsd/contrib/llvm-project/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.cpp1478 ModuleDebugStreamRef &ModS = *ExpectedModS; in dumpModuleSymsForPdb() local
1488 auto SS = ModS.getSymbolsSubstream(); in dumpModuleSymsForPdb()
1494 if (auto EC = Visitor.visitSymbolStreamFiltered(ModS.getSymbolArray(), in dumpModuleSymsForPdb()
1500 } else if (auto EC = Visitor.visitSymbolStream(ModS.getSymbolArray(), in dumpModuleSymsForPdb()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp1035 ModuleDebugStreamRef &ModS = *ExpectedModS; in createScopes()
1049 BinarySubstreamRef SS = ModS.getSymbolsSubstream(); in createScopes()
1051 Visitor.visitSymbolStream(ModS.getSymbolArray(), SS.Offset)) in createScopes()
1036 ModuleDebugStreamRef &ModS = *ExpectedModS; createScopes() local
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLoweringHVX.cpp2099 SDValue ModS = in LowerHvxFunnelShift()
2104 {DAG.getConstant(ElemWidth, dl, MVT::i32), ModS}); in LowerHvxFunnelShift()
2106 DAG.getSetCC(dl, MVT::i1, ModS, getZero(dl, MVT::i32, DAG), ISD::SETEQ); in LowerHvxFunnelShift()
2110 DAG.getNode(HexagonISD::VASL, dl, InpTy, {A, IsLeft ? ModS : NegS}); in LowerHvxFunnelShift()
2112 DAG.getNode(HexagonISD::VLSR, dl, InpTy, {B, IsLeft ? NegS : ModS}); in LowerHvxFunnelShift()
2100 SDValue ModS = LowerHvxFunnelShift() local