Home
last modified time | relevance | path

Searched refs:PrintMessage (Results 1 – 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/
HDError.cpp26 static void PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind, in PrintMessage() function
36 SrcMgr.PrintMessage(Loc.front(), Kind, Msg); in PrintMessage()
38 SrcMgr.PrintMessage(Loc[i], SourceMgr::DK_Note, in PrintMessage()
45 PrintMessage(NoteLoc, SourceMgr::DK_Note, Msg); in PrintNote()
49 PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg); in PrintWarning()
53 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg); in PrintWarning()
59 PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg); in PrintError()
63 SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg); in PrintError()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
HDCodeRegion.cpp47 SM.PrintMessage(Loc, SourceMgr::DK_Error, in beginRegion()
49 SM.PrintMessage(R.startLoc(), SourceMgr::DK_Note, in beginRegion()
55 SM.PrintMessage(Loc, SourceMgr::DK_Error, in beginRegion()
57 SM.PrintMessage(R.startLoc(), SourceMgr::DK_Note, in beginRegion()
98 SM.PrintMessage(Loc, SourceMgr::DK_Error, in endRegion()
101 SM.PrintMessage(Loc, SourceMgr::DK_Note, in endRegion()
104 SM.PrintMessage(Loc, SourceMgr::DK_Note, in endRegion()
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
HDDisassembler.cpp52 SM.PrintMessage(SMLoc::getFromPointer(Bytes.second[Index]), in PrintInsts()
65 SM.PrintMessage(SMLoc::getFromPointer(Bytes.second[Index]), in PrintInsts()
116 SM.PrintMessage(SMLoc::getFromPointer(Value.data()), SourceMgr::DK_Error, in ByteArrayFromString()
174 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
183 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
201 SM.PrintMessage(SMLoc::getFromPointer(Str.data()), SourceMgr::DK_Error, in disassemble()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDFileCheck.cpp324 SM.PrintMessage(PatternLoc, SourceMgr::DK_Error, in parsePattern()
330 SM.PrintMessage( in parsePattern()
368 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()), in parsePattern()
407 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()), in parsePattern()
432 SM.PrintMessage(SMLoc::getFromPointer(MatchStr.data() + SpacePos), in parsePattern()
452 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), in parsePattern()
462 SM.PrintMessage( in parsePattern()
545 SM.PrintMessage(SMLoc::getFromPointer(SubstStr.data()), in parsePattern()
586 SM.PrintMessage(SMLoc::getFromPointer(RS.data()), SourceMgr::DK_Error, in AddRegExToRegEx()
743 SM.PrintMessage(MatchRange.Start, SourceMgr::DK_Note, OS.str(), in printSubstitutions()
[all …]
HDSourceMgr.cpp225 void SourceMgr::PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic, in PrintMessage() function in SourceMgr
242 void SourceMgr::PrintMessage(raw_ostream &OS, SMLoc Loc, in PrintMessage() function in SourceMgr
246 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors); in PrintMessage()
249 void SourceMgr::PrintMessage(SMLoc Loc, SourceMgr::DiagKind Kind, in PrintMessage() function in SourceMgr
252 PrintMessage(errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); in PrintMessage()
HDYAMLParser.cpp267 SM.PrintMessage(Loc, Kind, Message, Ranges, /* FixIts= */ None, ShowColors); in printError()
HDVirtualFileSystem.cpp1616 SM.PrintMessage(SMLoc(), SourceMgr::DK_Error, "expected root node"); in create()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDSourceMgr.h191 void PrintMessage(raw_ostream &OS, SMLoc Loc, DiagKind Kind,
198 void PrintMessage(SMLoc Loc, DiagKind Kind, const Twine &Msg,
207 void PrintMessage(raw_ostream &OS, const SMDiagnostic &Diagnostic,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
HDMCContext.cpp697 SrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg); in reportError()
699 InlineSrcMgr->PrintMessage(Loc, SourceMgr::DK_Error, Msg); in reportError()
713 SrcMgr->PrintMessage(Loc, SourceMgr::DK_Warning, Msg); in reportWarning()
715 InlineSrcMgr->PrintMessage(Loc, SourceMgr::DK_Warning, Msg); in reportWarning()
HDMCObjectStreamer.cpp717 getContext().getSourceManager()->PrintMessage( in emitFill()
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
HDClangCommentHTMLNamedCharacterReferenceEmitter.cpp62 SrcMgr.PrintMessage(Tag.getLoc().front(), in EmitClangCommentHTMLNamedCharacterReferences()
HDClangDiagnosticsEmitter.cpp231 SrcMgr.PrintMessage((*DI)->getLoc().front(), in groupDiagnostics()
235 SrcMgr.PrintMessage((*I)->ExplicitDef->getLoc().front(), in groupDiagnostics()
249 SrcMgr.PrintMessage((*DI)->getLoc().front(), in groupDiagnostics()
255 SrcMgr.PrintMessage((*DI)->getLoc().front(), in groupDiagnostics()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinterInlineAsm.cpp583 SrcMgr.PrintMessage(Loc, SourceMgr::DK_Warning, Msg); in EmitInlineAsm()
584 SrcMgr.PrintMessage(Loc, SourceMgr::DK_Note, Note); in EmitInlineAsm()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
HDHexagonShuffler.cpp674 SM->PrintMessage(I.first, SourceMgr::DK_Note, I.second); in reportError()
HDHexagonMCChecker.cpp724 SM->PrintMessage(Loc, SourceMgr::DK_Note, Msg); in reportNote()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/AsmParser/
HDLLLexer.cpp34 SM.PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg); in Warning()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
HDAsmParser.cpp309 SrcMgr.PrintMessage(Loc, Kind, Msg, Ranges); in printMessage()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
HDMipsAsmParser.cpp5957 getSourceManager().PrintMessage(Range.Start, SourceMgr::DK_Warning, Msg, in printWarningWithFixIt()