Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DStackMapPrinter.h19 void prettyPrintStackMap(ScopedPrinter &W, const StackMapParserT &SMP) { in prettyPrintStackMap() argument
21 W.printNumber("LLVM StackMap Version", SMP.getVersion()); in prettyPrintStackMap()
22 W.printNumber("Num Functions", SMP.getNumFunctions()); in prettyPrintStackMap()
25 for (const auto &F : SMP.functions()) in prettyPrintStackMap()
31 W.printNumber("Num Constants", SMP.getNumConstants()); in prettyPrintStackMap()
33 for (const auto &C : SMP.constants()) in prettyPrintStackMap()
37 W.printNumber("Num Records", SMP.getNumRecords()); in prettyPrintStackMap()
38 for (const auto &R : SMP.records()) { in prettyPrintStackMap()
64 << SMP.getConstant(Loc.getConstantIndex()).getValue() << ")"; in prettyPrintStackMap()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCContext.cpp982 const SourceMgr *SMP = nullptr; in diagnose() local
984 SMP = SrcMgr; in diagnose()
986 SMP = InlineSrcMgr.get(); in diagnose()
990 DiagHandler(SMD, UseInlineSrcMgr, *SMP, LocInfos); in diagnose()
1002 const SourceMgr *SMP = &SM; in reportCommon() local
1011 SMP = SrcMgr; in reportCommon()
1013 SMP = InlineSrcMgr.get(); in reportCommon()
1020 GetMessage(D, SMP); in reportCommon()
1021 DiagHandler(D, UseInlineSrcMgr, *SMP, LocInfos); in reportCommon()
1027 D = SMP->GetMessage(Loc, SourceMgr::DK_Error, Msg); in reportError()
[all …]
/llvm-project-15.0.7/lldb/test/Shell/Minidump/Inputs/
H A Dlinux-x86_64.yaml15 CSD Version: 'Linux 3.13.0-91-generic #138-Ubuntu SMP Fri Jun 24 17:00:34 UTC 2016 x86_64'
/llvm-project-15.0.7/llvm/docs/HistoricalNotes/
H A D2000-11-18-EarlyDesignIdeasResp.txt158 2. SMP is becoming much more common, especially in the server space.
/llvm-project-15.0.7/llvm/docs/
H A DAtomics.rst579 compare-and-swap support are uniprocessor (no SMP). This is almost always the
580 case. The only common architecture without that property is SPARC -- SPARCV8 SMP
H A DWritingAnLLVMPass.rst1043 :ref:`interesting enhancements <writing-an-llvm-pass-SMP>` in the future.
1425 .. _writing-an-llvm-pass-SMP:
1442 Despite that, we have kept the LLVM passes SMP ready, and you should too.