blob: b1938023adc64b68d3e4708feafaa4a8433e4482 [file] [log] [blame]
Jordan Rose0832f822012-06-04 16:57:50 +00001//===- DiagnosticNames.cpp - Defines a table of all builtin diagnostics ----==//
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#include "DiagnosticNames.h"
11#include "clang/Basic/AllDiagnostics.h"
Jordan Rosee7427632012-06-24 00:07:45 +000012#include "llvm/ADT/STLExtras.h"
Jordan Rose0832f822012-06-04 16:57:50 +000013
14using namespace clang;
Jordan Rosee7427632012-06-24 00:07:45 +000015using namespace diagtool;
Jordan Rose0832f822012-06-04 16:57:50 +000016
Jordan Rosee7427632012-06-24 00:07:45 +000017static const DiagnosticRecord BuiltinDiagnosticsByName[] = {
Jordan Rose0832f822012-06-04 16:57:50 +000018#define DIAG_NAME_INDEX(ENUM) { #ENUM, diag::ENUM, STR_SIZE(#ENUM, uint8_t) },
19#include "clang/Basic/DiagnosticIndexName.inc"
20#undef DIAG_NAME_INDEX
Jordan Rose0832f822012-06-04 16:57:50 +000021};
22
Jordan Rosee7427632012-06-24 00:07:45 +000023llvm::ArrayRef<DiagnosticRecord> diagtool::getBuiltinDiagnosticsByName() {
Jordan Rose19bf6622012-06-24 00:27:36 +000024 return llvm::makeArrayRef(BuiltinDiagnosticsByName);
Jordan Rosee7427632012-06-24 00:07:45 +000025}
Jordan Rose0832f822012-06-04 16:57:50 +000026
Jordan Rosee7427632012-06-24 00:07:45 +000027
28// FIXME: Is it worth having two tables, especially when this one can get
29// out of sync easily?
30static const DiagnosticRecord BuiltinDiagnosticsByID[] = {
31#define DIAG(ENUM,CLASS,DEFAULT_MAPPING,DESC,GROUP, \
32 SFINAE,ACCESS,NOWERROR,SHOWINSYSHEADER, \
33 CATEGORY) \
34 { #ENUM, diag::ENUM, STR_SIZE(#ENUM, uint8_t) },
35#include "clang/Basic/DiagnosticCommonKinds.inc"
36#include "clang/Basic/DiagnosticDriverKinds.inc"
37#include "clang/Basic/DiagnosticFrontendKinds.inc"
38#include "clang/Basic/DiagnosticSerializationKinds.inc"
39#include "clang/Basic/DiagnosticLexKinds.inc"
40#include "clang/Basic/DiagnosticParseKinds.inc"
41#include "clang/Basic/DiagnosticASTKinds.inc"
42#include "clang/Basic/DiagnosticSemaKinds.inc"
43#include "clang/Basic/DiagnosticAnalysisKinds.inc"
44#undef DIAG
45};
46
47static bool orderByID(const DiagnosticRecord &Left,
48 const DiagnosticRecord &Right) {
49 return Left.DiagID < Right.DiagID;
50}
51
52const DiagnosticRecord &diagtool::getDiagnosticForID(short DiagID) {
53 DiagnosticRecord Key = {0, DiagID, 0};
54
55 const DiagnosticRecord *Result =
56 std::lower_bound(BuiltinDiagnosticsByID,
57 llvm::array_endof(BuiltinDiagnosticsByID),
58 Key, orderByID);
59 assert(Result && "diagnostic not found; table may be out of date");
60 return *Result;
61}
62
63
64#define GET_DIAG_ARRAYS
65#include "clang/Basic/DiagnosticGroups.inc"
66#undef GET_DIAG_ARRAYS
67
68// Second the table of options, sorted by name for fast binary lookup.
69static const GroupRecord OptionTable[] = {
70#define GET_DIAG_TABLE
71#include "clang/Basic/DiagnosticGroups.inc"
72#undef GET_DIAG_TABLE
73};
74
75llvm::ArrayRef<GroupRecord> diagtool::getDiagnosticGroups() {
Jordan Rose19bf6622012-06-24 00:27:36 +000076 return llvm::makeArrayRef(OptionTable);
Jordan Rosee7427632012-06-24 00:07:45 +000077}