]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/TableGen/Error.cpp
MFV r316872: 7502 ztest should run zdb with -G (debug mode)
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / TableGen / Error.cpp
1 //===- Error.cpp - tblgen error handling helper routines --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains error handling helper routines to pretty-print diagnostic
11 // messages from tblgen.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/TableGen/Error.h"
16 #include "llvm/ADT/Twine.h"
17 #include "llvm/Support/Signals.h"
18 #include "llvm/Support/raw_ostream.h"
19 #include <cstdlib>
20
21 namespace llvm {
22
23 SourceMgr SrcMgr;
24 unsigned ErrorsPrinted = 0;
25
26 static void PrintMessage(ArrayRef<SMLoc> Loc, SourceMgr::DiagKind Kind,
27                          const Twine &Msg) {
28   // Count the total number of errors printed.
29   // This is used to exit with an error code if there were any errors.
30   if (Kind == SourceMgr::DK_Error)
31     ++ErrorsPrinted;
32
33   SMLoc NullLoc;
34   if (Loc.empty())
35     Loc = NullLoc;
36   SrcMgr.PrintMessage(Loc.front(), Kind, Msg);
37   for (unsigned i = 1; i < Loc.size(); ++i)
38     SrcMgr.PrintMessage(Loc[i], SourceMgr::DK_Note,
39                         "instantiated from multiclass");
40 }
41
42 void PrintNote(ArrayRef<SMLoc> NoteLoc, const Twine &Msg) {
43   PrintMessage(NoteLoc, SourceMgr::DK_Note, Msg);
44 }
45
46 void PrintWarning(ArrayRef<SMLoc> WarningLoc, const Twine &Msg) {
47   PrintMessage(WarningLoc, SourceMgr::DK_Warning, Msg);
48 }
49
50 void PrintWarning(const char *Loc, const Twine &Msg) {
51   SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Warning, Msg);
52 }
53
54 void PrintWarning(const Twine &Msg) {
55   errs() << "warning:" << Msg << "\n";
56 }
57
58 void PrintError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
59   PrintMessage(ErrorLoc, SourceMgr::DK_Error, Msg);
60 }
61
62 void PrintError(const char *Loc, const Twine &Msg) {
63   SrcMgr.PrintMessage(SMLoc::getFromPointer(Loc), SourceMgr::DK_Error, Msg);
64 }
65
66 void PrintError(const Twine &Msg) {
67   errs() << "error:" << Msg << "\n";
68 }
69
70 void PrintFatalError(const Twine &Msg) {
71   PrintError(Msg);
72   // The following call runs the file cleanup handlers.
73   sys::RunInterruptHandlers();
74   std::exit(1);
75 }
76
77 void PrintFatalError(ArrayRef<SMLoc> ErrorLoc, const Twine &Msg) {
78   PrintError(ErrorLoc, Msg);
79   // The following call runs the file cleanup handlers.
80   sys::RunInterruptHandlers();
81   std::exit(1);
82 }
83
84 } // end namespace llvm