Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 1 | //=- ClangDiagnosticsEmitter.cpp - Generate Clang diagnostics tables -*- 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 | // These tablegen backends emit Clang diagnostics tables. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/DenseSet.h" |
Chandler Carruth | 59ff16c | 2012-12-04 09:53:39 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/Optional.h" |
| 16 | #include "llvm/ADT/PointerUnion.h" |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SetVector.h" |
| 18 | #include "llvm/ADT/SmallPtrSet.h" |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/SmallString.h" |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/SmallVector.h" |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/StringMap.h" |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 22 | #include "llvm/ADT/Twine.h" |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Compiler.h" |
| 24 | #include "llvm/Support/Debug.h" |
Joerg Sonnenberger | 691a16b | 2012-10-25 16:37:08 +0000 | [diff] [blame] | 25 | #include "llvm/TableGen/Error.h" |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 26 | #include "llvm/TableGen/Record.h" |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 27 | #include "llvm/TableGen/StringToOffsetTable.h" |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 28 | #include "llvm/TableGen/TableGenBackend.h" |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 29 | #include <algorithm> |
Joerg Sonnenberger | 42cf268 | 2012-08-10 10:58:18 +0000 | [diff] [blame] | 30 | #include <cctype> |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 31 | #include <functional> |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 32 | #include <map> |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 33 | #include <set> |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 34 | using namespace llvm; |
| 35 | |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | // Diagnostic category computation code. |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
| 40 | namespace { |
| 41 | class DiagGroupParentMap { |
| 42 | RecordKeeper &Records; |
| 43 | std::map<const Record*, std::vector<Record*> > Mapping; |
| 44 | public: |
| 45 | DiagGroupParentMap(RecordKeeper &records) : Records(records) { |
| 46 | std::vector<Record*> DiagGroups |
| 47 | = Records.getAllDerivedDefinitions("DiagGroup"); |
| 48 | for (unsigned i = 0, e = DiagGroups.size(); i != e; ++i) { |
| 49 | std::vector<Record*> SubGroups = |
| 50 | DiagGroups[i]->getValueAsListOfDefs("SubGroups"); |
| 51 | for (unsigned j = 0, e = SubGroups.size(); j != e; ++j) |
| 52 | Mapping[SubGroups[j]].push_back(DiagGroups[i]); |
| 53 | } |
| 54 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 55 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 56 | const std::vector<Record*> &getParents(const Record *Group) { |
| 57 | return Mapping[Group]; |
| 58 | } |
| 59 | }; |
| 60 | } // end anonymous namespace. |
| 61 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 62 | static std::string |
| 63 | getCategoryFromDiagGroup(const Record *Group, |
| 64 | DiagGroupParentMap &DiagGroupParents) { |
| 65 | // If the DiagGroup has a category, return it. |
| 66 | std::string CatName = Group->getValueAsString("CategoryName"); |
| 67 | if (!CatName.empty()) return CatName; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 68 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 69 | // The diag group may the subgroup of one or more other diagnostic groups, |
| 70 | // check these for a category as well. |
| 71 | const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); |
| 72 | for (unsigned i = 0, e = Parents.size(); i != e; ++i) { |
| 73 | CatName = getCategoryFromDiagGroup(Parents[i], DiagGroupParents); |
| 74 | if (!CatName.empty()) return CatName; |
| 75 | } |
| 76 | return ""; |
| 77 | } |
| 78 | |
| 79 | /// getDiagnosticCategory - Return the category that the specified diagnostic |
| 80 | /// lives in. |
| 81 | static std::string getDiagnosticCategory(const Record *R, |
| 82 | DiagGroupParentMap &DiagGroupParents) { |
| 83 | // If the diagnostic is in a group, and that group has a category, use it. |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 84 | if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) { |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 85 | // Check the diagnostic's diag group for a category. |
| 86 | std::string CatName = getCategoryFromDiagGroup(Group->getDef(), |
| 87 | DiagGroupParents); |
| 88 | if (!CatName.empty()) return CatName; |
| 89 | } |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 90 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 91 | // If the diagnostic itself has a category, get it. |
| 92 | return R->getValueAsString("CategoryName"); |
| 93 | } |
| 94 | |
| 95 | namespace { |
| 96 | class DiagCategoryIDMap { |
| 97 | RecordKeeper &Records; |
| 98 | StringMap<unsigned> CategoryIDs; |
| 99 | std::vector<std::string> CategoryStrings; |
| 100 | public: |
| 101 | DiagCategoryIDMap(RecordKeeper &records) : Records(records) { |
| 102 | DiagGroupParentMap ParentInfo(Records); |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 103 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 104 | // The zero'th category is "". |
| 105 | CategoryStrings.push_back(""); |
| 106 | CategoryIDs[""] = 0; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 107 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 108 | std::vector<Record*> Diags = |
| 109 | Records.getAllDerivedDefinitions("Diagnostic"); |
| 110 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
| 111 | std::string Category = getDiagnosticCategory(Diags[i], ParentInfo); |
| 112 | if (Category.empty()) continue; // Skip diags with no category. |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 113 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 114 | unsigned &ID = CategoryIDs[Category]; |
| 115 | if (ID != 0) continue; // Already seen. |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 116 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 117 | ID = CategoryStrings.size(); |
| 118 | CategoryStrings.push_back(Category); |
| 119 | } |
| 120 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 121 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 122 | unsigned getID(StringRef CategoryString) { |
| 123 | return CategoryIDs[CategoryString]; |
| 124 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 125 | |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 126 | typedef std::vector<std::string>::const_iterator const_iterator; |
| 127 | const_iterator begin() const { return CategoryStrings.begin(); } |
| 128 | const_iterator end() const { return CategoryStrings.end(); } |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 129 | }; |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 130 | |
| 131 | struct GroupInfo { |
| 132 | std::vector<const Record*> DiagsInGroup; |
| 133 | std::vector<std::string> SubGroups; |
| 134 | unsigned IDNo; |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 135 | |
| 136 | const Record *ExplicitDef; |
| 137 | |
| 138 | GroupInfo() : ExplicitDef(0) {} |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 139 | }; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 140 | } // end anonymous namespace. |
| 141 | |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 142 | static bool beforeThanCompare(const Record *LHS, const Record *RHS) { |
| 143 | assert(!LHS->getLoc().empty() && !RHS->getLoc().empty()); |
| 144 | return |
| 145 | LHS->getLoc().front().getPointer() < RHS->getLoc().front().getPointer(); |
| 146 | } |
| 147 | |
| 148 | static bool beforeThanCompareGroups(const GroupInfo *LHS, const GroupInfo *RHS){ |
| 149 | assert(!LHS->DiagsInGroup.empty() && !RHS->DiagsInGroup.empty()); |
| 150 | return beforeThanCompare(LHS->DiagsInGroup.front(), |
| 151 | RHS->DiagsInGroup.front()); |
| 152 | } |
| 153 | |
| 154 | static SMRange findSuperClassRange(const Record *R, StringRef SuperName) { |
| 155 | ArrayRef<Record *> Supers = R->getSuperClasses(); |
| 156 | |
| 157 | for (size_t i = 0, e = Supers.size(); i < e; ++i) |
| 158 | if (Supers[i]->getName() == SuperName) |
| 159 | return R->getSuperClassRanges()[i]; |
| 160 | |
| 161 | return SMRange(); |
| 162 | } |
| 163 | |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 164 | /// \brief Invert the 1-[0/1] mapping of diags to group into a one to many |
| 165 | /// mapping of groups to diags in the group. |
| 166 | static void groupDiagnostics(const std::vector<Record*> &Diags, |
| 167 | const std::vector<Record*> &DiagGroups, |
| 168 | std::map<std::string, GroupInfo> &DiagsInGroup) { |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 169 | |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 170 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
| 171 | const Record *R = Diags[i]; |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 172 | DefInit *DI = dyn_cast<DefInit>(R->getValueInit("Group")); |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 173 | if (DI == 0) continue; |
Richard Smith | ce52ca1 | 2012-05-04 19:05:50 +0000 | [diff] [blame] | 174 | assert(R->getValueAsDef("Class")->getName() != "CLASS_NOTE" && |
| 175 | "Note can't be in a DiagGroup"); |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 176 | std::string GroupName = DI->getDef()->getValueAsString("GroupName"); |
| 177 | DiagsInGroup[GroupName].DiagsInGroup.push_back(R); |
| 178 | } |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 179 | |
| 180 | typedef SmallPtrSet<GroupInfo *, 16> GroupSetTy; |
| 181 | GroupSetTy ImplicitGroups; |
| 182 | |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 183 | // Add all DiagGroup's to the DiagsInGroup list to make sure we pick up empty |
| 184 | // groups (these are warnings that GCC supports that clang never produces). |
| 185 | for (unsigned i = 0, e = DiagGroups.size(); i != e; ++i) { |
| 186 | Record *Group = DiagGroups[i]; |
| 187 | GroupInfo &GI = DiagsInGroup[Group->getValueAsString("GroupName")]; |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 188 | if (Group->isAnonymous()) { |
| 189 | if (GI.DiagsInGroup.size() > 1) |
| 190 | ImplicitGroups.insert(&GI); |
| 191 | } else { |
| 192 | if (GI.ExplicitDef) |
| 193 | assert(GI.ExplicitDef == Group); |
| 194 | else |
| 195 | GI.ExplicitDef = Group; |
| 196 | } |
| 197 | |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 198 | std::vector<Record*> SubGroups = Group->getValueAsListOfDefs("SubGroups"); |
| 199 | for (unsigned j = 0, e = SubGroups.size(); j != e; ++j) |
| 200 | GI.SubGroups.push_back(SubGroups[j]->getValueAsString("GroupName")); |
| 201 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 202 | |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 203 | // Assign unique ID numbers to the groups. |
| 204 | unsigned IDNo = 0; |
| 205 | for (std::map<std::string, GroupInfo>::iterator |
| 206 | I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I, ++IDNo) |
| 207 | I->second.IDNo = IDNo; |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 208 | |
| 209 | // Sort the implicit groups, so we can warn about them deterministically. |
| 210 | SmallVector<GroupInfo *, 16> SortedGroups(ImplicitGroups.begin(), |
| 211 | ImplicitGroups.end()); |
| 212 | for (SmallVectorImpl<GroupInfo *>::iterator I = SortedGroups.begin(), |
| 213 | E = SortedGroups.end(); |
| 214 | I != E; ++I) { |
| 215 | MutableArrayRef<const Record *> GroupDiags = (*I)->DiagsInGroup; |
| 216 | std::sort(GroupDiags.begin(), GroupDiags.end(), beforeThanCompare); |
| 217 | } |
| 218 | std::sort(SortedGroups.begin(), SortedGroups.end(), beforeThanCompareGroups); |
| 219 | |
| 220 | // Warn about the same group being used anonymously in multiple places. |
| 221 | for (SmallVectorImpl<GroupInfo *>::const_iterator I = SortedGroups.begin(), |
| 222 | E = SortedGroups.end(); |
| 223 | I != E; ++I) { |
| 224 | ArrayRef<const Record *> GroupDiags = (*I)->DiagsInGroup; |
| 225 | |
| 226 | if ((*I)->ExplicitDef) { |
| 227 | std::string Name = (*I)->ExplicitDef->getValueAsString("GroupName"); |
| 228 | for (ArrayRef<const Record *>::const_iterator DI = GroupDiags.begin(), |
| 229 | DE = GroupDiags.end(); |
| 230 | DI != DE; ++DI) { |
| 231 | const DefInit *GroupInit = cast<DefInit>((*DI)->getValueInit("Group")); |
| 232 | const Record *NextDiagGroup = GroupInit->getDef(); |
| 233 | if (NextDiagGroup == (*I)->ExplicitDef) |
| 234 | continue; |
| 235 | |
| 236 | SMRange InGroupRange = findSuperClassRange(*DI, "InGroup"); |
| 237 | SmallString<64> Replacement; |
| 238 | if (InGroupRange.isValid()) { |
| 239 | Replacement += "InGroup<"; |
| 240 | Replacement += (*I)->ExplicitDef->getName(); |
| 241 | Replacement += ">"; |
| 242 | } |
| 243 | SMFixIt FixIt(InGroupRange, Replacement.str()); |
| 244 | |
| 245 | SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(), |
| 246 | SourceMgr::DK_Error, |
| 247 | Twine("group '") + Name + |
| 248 | "' is referred to anonymously", |
Dmitri Gribenko | 010316c | 2013-05-05 01:03:47 +0000 | [diff] [blame] | 249 | None, |
Jordan Rose | c3b23aa | 2013-01-10 18:50:46 +0000 | [diff] [blame] | 250 | InGroupRange.isValid() ? FixIt |
| 251 | : ArrayRef<SMFixIt>()); |
| 252 | SrcMgr.PrintMessage((*I)->ExplicitDef->getLoc().front(), |
| 253 | SourceMgr::DK_Note, "group defined here"); |
| 254 | } |
| 255 | } else { |
| 256 | // If there's no existing named group, we should just warn once and use |
| 257 | // notes to list all the other cases. |
| 258 | ArrayRef<const Record *>::const_iterator DI = GroupDiags.begin(), |
| 259 | DE = GroupDiags.end(); |
| 260 | assert(DI != DE && "We only care about groups with multiple uses!"); |
| 261 | |
| 262 | const DefInit *GroupInit = cast<DefInit>((*DI)->getValueInit("Group")); |
| 263 | const Record *NextDiagGroup = GroupInit->getDef(); |
| 264 | std::string Name = NextDiagGroup->getValueAsString("GroupName"); |
| 265 | |
| 266 | SMRange InGroupRange = findSuperClassRange(*DI, "InGroup"); |
| 267 | SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(), |
| 268 | SourceMgr::DK_Error, |
| 269 | Twine("group '") + Name + |
| 270 | "' is referred to anonymously", |
| 271 | InGroupRange); |
| 272 | |
| 273 | for (++DI; DI != DE; ++DI) { |
| 274 | GroupInit = cast<DefInit>((*DI)->getValueInit("Group")); |
| 275 | InGroupRange = findSuperClassRange(*DI, "InGroup"); |
| 276 | SrcMgr.PrintMessage(GroupInit->getDef()->getLoc().front(), |
| 277 | SourceMgr::DK_Note, "also referenced here", |
| 278 | InGroupRange); |
| 279 | } |
| 280 | } |
| 281 | } |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 282 | } |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 283 | |
| 284 | //===----------------------------------------------------------------------===// |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 285 | // Infer members of -Wpedantic. |
| 286 | //===----------------------------------------------------------------------===// |
| 287 | |
| 288 | typedef std::vector<const Record *> RecordVec; |
| 289 | typedef llvm::DenseSet<const Record *> RecordSet; |
| 290 | typedef llvm::PointerUnion<RecordVec*, RecordSet*> VecOrSet; |
| 291 | |
| 292 | namespace { |
| 293 | class InferPedantic { |
| 294 | typedef llvm::DenseMap<const Record*, |
Ted Kremenek | 0332558 | 2013-02-21 01:29:01 +0000 | [diff] [blame] | 295 | std::pair<unsigned, Optional<unsigned> > > GMap; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 296 | |
| 297 | DiagGroupParentMap &DiagGroupParents; |
| 298 | const std::vector<Record*> &Diags; |
| 299 | const std::vector<Record*> DiagGroups; |
| 300 | std::map<std::string, GroupInfo> &DiagsInGroup; |
| 301 | llvm::DenseSet<const Record*> DiagsSet; |
| 302 | GMap GroupCount; |
| 303 | public: |
| 304 | InferPedantic(DiagGroupParentMap &DiagGroupParents, |
| 305 | const std::vector<Record*> &Diags, |
| 306 | const std::vector<Record*> &DiagGroups, |
| 307 | std::map<std::string, GroupInfo> &DiagsInGroup) |
| 308 | : DiagGroupParents(DiagGroupParents), |
| 309 | Diags(Diags), |
| 310 | DiagGroups(DiagGroups), |
| 311 | DiagsInGroup(DiagsInGroup) {} |
| 312 | |
| 313 | /// Compute the set of diagnostics and groups that are immediately |
| 314 | /// in -Wpedantic. |
| 315 | void compute(VecOrSet DiagsInPedantic, |
| 316 | VecOrSet GroupsInPedantic); |
| 317 | |
| 318 | private: |
| 319 | /// Determine whether a group is a subgroup of another group. |
| 320 | bool isSubGroupOfGroup(const Record *Group, |
| 321 | llvm::StringRef RootGroupName); |
| 322 | |
| 323 | /// Determine if the diagnostic is an extension. |
| 324 | bool isExtension(const Record *Diag); |
| 325 | |
Ted Kremenek | 5d858cb | 2012-08-10 20:50:00 +0000 | [diff] [blame] | 326 | /// Determine if the diagnostic is off by default. |
| 327 | bool isOffByDefault(const Record *Diag); |
| 328 | |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 329 | /// Increment the count for a group, and transitively marked |
| 330 | /// parent groups when appropriate. |
| 331 | void markGroup(const Record *Group); |
| 332 | |
| 333 | /// Return true if the diagnostic is in a pedantic group. |
| 334 | bool groupInPedantic(const Record *Group, bool increment = false); |
| 335 | }; |
| 336 | } // end anonymous namespace |
| 337 | |
| 338 | bool InferPedantic::isSubGroupOfGroup(const Record *Group, |
| 339 | llvm::StringRef GName) { |
| 340 | |
| 341 | const std::string &GroupName = Group->getValueAsString("GroupName"); |
| 342 | if (GName == GroupName) |
| 343 | return true; |
| 344 | |
| 345 | const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); |
| 346 | for (unsigned i = 0, e = Parents.size(); i != e; ++i) |
| 347 | if (isSubGroupOfGroup(Parents[i], GName)) |
| 348 | return true; |
| 349 | |
| 350 | return false; |
| 351 | } |
| 352 | |
| 353 | /// Determine if the diagnostic is an extension. |
| 354 | bool InferPedantic::isExtension(const Record *Diag) { |
| 355 | const std::string &ClsName = Diag->getValueAsDef("Class")->getName(); |
| 356 | return ClsName == "CLASS_EXTENSION"; |
| 357 | } |
| 358 | |
Ted Kremenek | 5d858cb | 2012-08-10 20:50:00 +0000 | [diff] [blame] | 359 | bool InferPedantic::isOffByDefault(const Record *Diag) { |
| 360 | const std::string &DefMap = Diag->getValueAsDef("DefaultMapping")->getName(); |
| 361 | return DefMap == "MAP_IGNORE"; |
| 362 | } |
| 363 | |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 364 | bool InferPedantic::groupInPedantic(const Record *Group, bool increment) { |
| 365 | GMap::mapped_type &V = GroupCount[Group]; |
| 366 | // Lazily compute the threshold value for the group count. |
| 367 | if (!V.second.hasValue()) { |
| 368 | const GroupInfo &GI = DiagsInGroup[Group->getValueAsString("GroupName")]; |
| 369 | V.second = GI.SubGroups.size() + GI.DiagsInGroup.size(); |
| 370 | } |
| 371 | |
| 372 | if (increment) |
| 373 | ++V.first; |
| 374 | |
| 375 | // Consider a group in -Wpendatic IFF if has at least one diagnostic |
| 376 | // or subgroup AND all of those diagnostics and subgroups are covered |
| 377 | // by -Wpedantic via our computation. |
| 378 | return V.first != 0 && V.first == V.second.getValue(); |
| 379 | } |
| 380 | |
| 381 | void InferPedantic::markGroup(const Record *Group) { |
| 382 | // If all the diagnostics and subgroups have been marked as being |
| 383 | // covered by -Wpedantic, increment the count of parent groups. Once the |
| 384 | // group's count is equal to the number of subgroups and diagnostics in |
| 385 | // that group, we can safely add this group to -Wpedantic. |
| 386 | if (groupInPedantic(Group, /* increment */ true)) { |
| 387 | const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); |
| 388 | for (unsigned i = 0, e = Parents.size(); i != e; ++i) |
| 389 | markGroup(Parents[i]); |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | void InferPedantic::compute(VecOrSet DiagsInPedantic, |
| 394 | VecOrSet GroupsInPedantic) { |
Ted Kremenek | 5d858cb | 2012-08-10 20:50:00 +0000 | [diff] [blame] | 395 | // All extensions that are not on by default are implicitly in the |
| 396 | // "pedantic" group. For those that aren't explicitly included in -Wpedantic, |
| 397 | // mark them for consideration to be included in -Wpedantic directly. |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 398 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
| 399 | Record *R = Diags[i]; |
Ted Kremenek | 5d858cb | 2012-08-10 20:50:00 +0000 | [diff] [blame] | 400 | if (isExtension(R) && isOffByDefault(R)) { |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 401 | DiagsSet.insert(R); |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 402 | if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) { |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 403 | const Record *GroupRec = Group->getDef(); |
| 404 | if (!isSubGroupOfGroup(GroupRec, "pedantic")) { |
| 405 | markGroup(GroupRec); |
| 406 | } |
| 407 | } |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | // Compute the set of diagnostics that are directly in -Wpedantic. We |
| 412 | // march through Diags a second time to ensure the results are emitted |
| 413 | // in deterministic order. |
| 414 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
| 415 | Record *R = Diags[i]; |
| 416 | if (!DiagsSet.count(R)) |
| 417 | continue; |
| 418 | // Check if the group is implicitly in -Wpedantic. If so, |
| 419 | // the diagnostic should not be directly included in the -Wpedantic |
| 420 | // diagnostic group. |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 421 | if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 422 | if (groupInPedantic(Group->getDef())) |
| 423 | continue; |
| 424 | |
| 425 | // The diagnostic is not included in a group that is (transitively) in |
| 426 | // -Wpedantic. Include it in -Wpedantic directly. |
| 427 | if (RecordVec *V = DiagsInPedantic.dyn_cast<RecordVec*>()) |
| 428 | V->push_back(R); |
| 429 | else { |
| 430 | DiagsInPedantic.get<RecordSet*>()->insert(R); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | if (!GroupsInPedantic) |
| 435 | return; |
| 436 | |
| 437 | // Compute the set of groups that are directly in -Wpedantic. We |
| 438 | // march through the groups to ensure the results are emitted |
| 439 | /// in a deterministc order. |
| 440 | for (unsigned i = 0, ei = DiagGroups.size(); i != ei; ++i) { |
| 441 | Record *Group = DiagGroups[i]; |
| 442 | if (!groupInPedantic(Group)) |
| 443 | continue; |
| 444 | |
| 445 | unsigned ParentsInPedantic = 0; |
| 446 | const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); |
| 447 | for (unsigned j = 0, ej = Parents.size(); j != ej; ++j) { |
| 448 | if (groupInPedantic(Parents[j])) |
| 449 | ++ParentsInPedantic; |
| 450 | } |
| 451 | // If all the parents are in -Wpedantic, this means that this diagnostic |
| 452 | // group will be indirectly included by -Wpedantic already. In that |
| 453 | // case, do not add it directly to -Wpedantic. If the group has no |
| 454 | // parents, obviously it should go into -Wpedantic. |
| 455 | if (Parents.size() > 0 && ParentsInPedantic == Parents.size()) |
| 456 | continue; |
| 457 | |
| 458 | if (RecordVec *V = GroupsInPedantic.dyn_cast<RecordVec*>()) |
| 459 | V->push_back(Group); |
| 460 | else { |
| 461 | GroupsInPedantic.get<RecordSet*>()->insert(Group); |
| 462 | } |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | //===----------------------------------------------------------------------===// |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 467 | // Warning Tables (.inc file) generation. |
| 468 | //===----------------------------------------------------------------------===// |
| 469 | |
Ted Kremenek | 7249239 | 2012-08-07 05:01:49 +0000 | [diff] [blame] | 470 | static bool isError(const Record &Diag) { |
| 471 | const std::string &ClsName = Diag.getValueAsDef("Class")->getName(); |
| 472 | return ClsName == "CLASS_ERROR"; |
| 473 | } |
| 474 | |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 475 | /// ClangDiagsDefsEmitter - The top-level class emits .def files containing |
| 476 | /// declarations of Clang diagnostics. |
| 477 | namespace clang { |
| 478 | void EmitClangDiagsDefs(RecordKeeper &Records, raw_ostream &OS, |
| 479 | const std::string &Component) { |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 480 | // Write the #if guard |
| 481 | if (!Component.empty()) { |
Benjamin Kramer | 44f91da | 2011-11-06 20:36:48 +0000 | [diff] [blame] | 482 | std::string ComponentName = StringRef(Component).upper(); |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 483 | OS << "#ifdef " << ComponentName << "START\n"; |
| 484 | OS << "__" << ComponentName << "START = DIAG_START_" << ComponentName |
| 485 | << ",\n"; |
| 486 | OS << "#undef " << ComponentName << "START\n"; |
| 487 | OS << "#endif\n\n"; |
| 488 | } |
| 489 | |
| 490 | const std::vector<Record*> &Diags = |
| 491 | Records.getAllDerivedDefinitions("Diagnostic"); |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 492 | |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 493 | std::vector<Record*> DiagGroups |
| 494 | = Records.getAllDerivedDefinitions("DiagGroup"); |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 495 | |
| 496 | std::map<std::string, GroupInfo> DiagsInGroup; |
| 497 | groupDiagnostics(Diags, DiagGroups, DiagsInGroup); |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 498 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 499 | DiagCategoryIDMap CategoryIDs(Records); |
| 500 | DiagGroupParentMap DGParentMap(Records); |
| 501 | |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 502 | // Compute the set of diagnostics that are in -Wpedantic. |
| 503 | RecordSet DiagsInPedantic; |
| 504 | InferPedantic inferPedantic(DGParentMap, Diags, DiagGroups, DiagsInGroup); |
| 505 | inferPedantic.compute(&DiagsInPedantic, (RecordVec*)0); |
| 506 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 507 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
| 508 | const Record &R = *Diags[i]; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 509 | |
Ted Kremenek | 7249239 | 2012-08-07 05:01:49 +0000 | [diff] [blame] | 510 | // Check if this is an error that is accidentally in a warning |
| 511 | // group. |
| 512 | if (isError(R)) { |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 513 | if (DefInit *Group = dyn_cast<DefInit>(R.getValueInit("Group"))) { |
Ted Kremenek | 7249239 | 2012-08-07 05:01:49 +0000 | [diff] [blame] | 514 | const Record *GroupRec = Group->getDef(); |
| 515 | const std::string &GroupName = GroupRec->getValueAsString("GroupName"); |
Joerg Sonnenberger | 691a16b | 2012-10-25 16:37:08 +0000 | [diff] [blame] | 516 | PrintFatalError(R.getLoc(), "Error " + R.getName() + |
| 517 | " cannot be in a warning group [" + GroupName + "]"); |
Ted Kremenek | 7249239 | 2012-08-07 05:01:49 +0000 | [diff] [blame] | 518 | } |
| 519 | } |
| 520 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 521 | // Filter by component. |
| 522 | if (!Component.empty() && Component != R.getValueAsString("Component")) |
| 523 | continue; |
| 524 | |
| 525 | OS << "DIAG(" << R.getName() << ", "; |
| 526 | OS << R.getValueAsDef("Class")->getName(); |
| 527 | OS << ", diag::" << R.getValueAsDef("DefaultMapping")->getName(); |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 528 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 529 | // Description string. |
| 530 | OS << ", \""; |
| 531 | OS.write_escaped(R.getValueAsString("Text")) << '"'; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 532 | |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 533 | // Warning associated with the diagnostic. This is stored as an index into |
| 534 | // the alphabetically sorted warning table. |
Sean Silva | 1c4aaa8 | 2012-10-10 20:25:43 +0000 | [diff] [blame] | 535 | if (DefInit *DI = dyn_cast<DefInit>(R.getValueInit("Group"))) { |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 536 | std::map<std::string, GroupInfo>::iterator I = |
| 537 | DiagsInGroup.find(DI->getDef()->getValueAsString("GroupName")); |
| 538 | assert(I != DiagsInGroup.end()); |
| 539 | OS << ", " << I->second.IDNo; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 540 | } else if (DiagsInPedantic.count(&R)) { |
| 541 | std::map<std::string, GroupInfo>::iterator I = |
| 542 | DiagsInGroup.find("pedantic"); |
| 543 | assert(I != DiagsInGroup.end() && "pedantic group not defined"); |
| 544 | OS << ", " << I->second.IDNo; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 545 | } else { |
Benjamin Kramer | a8cafe2 | 2012-02-15 20:57:03 +0000 | [diff] [blame] | 546 | OS << ", 0"; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Richard Smith | 16e1b07 | 2013-11-12 02:41:45 +0000 | [diff] [blame^] | 549 | // SFINAE response. |
| 550 | OS << ", " << R.getValueAsDef("SFINAE")->getName(); |
| 551 | |
| 552 | // Default warning has no Werror bit. |
| 553 | if (R.getValueAsBit("WarningNoWerror")) |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 554 | OS << ", true"; |
| 555 | else |
| 556 | OS << ", false"; |
| 557 | |
Richard Smith | 16e1b07 | 2013-11-12 02:41:45 +0000 | [diff] [blame^] | 558 | // Default warning show in system header bit. |
| 559 | if (R.getValueAsBit("WarningShowInSystemHeader")) |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 560 | OS << ", true"; |
| 561 | else |
| 562 | OS << ", false"; |
| 563 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 564 | // Category number. |
| 565 | OS << ", " << CategoryIDs.getID(getDiagnosticCategory(&R, DGParentMap)); |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 566 | OS << ")\n"; |
| 567 | } |
| 568 | } |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 569 | } // end namespace clang |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 570 | |
| 571 | //===----------------------------------------------------------------------===// |
| 572 | // Warning Group Tables generation |
| 573 | //===----------------------------------------------------------------------===// |
| 574 | |
| 575 | static std::string getDiagCategoryEnum(llvm::StringRef name) { |
| 576 | if (name.empty()) |
| 577 | return "DiagCat_None"; |
Dylan Noblesmith | f1a13f2 | 2012-02-13 12:32:26 +0000 | [diff] [blame] | 578 | SmallString<256> enumName = llvm::StringRef("DiagCat_"); |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 579 | for (llvm::StringRef::iterator I = name.begin(), E = name.end(); I != E; ++I) |
| 580 | enumName += isalnum(*I) ? *I : '_'; |
| 581 | return enumName.str(); |
| 582 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 583 | |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 584 | namespace clang { |
| 585 | void EmitClangDiagGroups(RecordKeeper &Records, raw_ostream &OS) { |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 586 | // Compute a mapping from a DiagGroup to all of its parents. |
| 587 | DiagGroupParentMap DGParentMap(Records); |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 588 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 589 | std::vector<Record*> Diags = |
| 590 | Records.getAllDerivedDefinitions("Diagnostic"); |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 591 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 592 | std::vector<Record*> DiagGroups |
| 593 | = Records.getAllDerivedDefinitions("DiagGroup"); |
Argyrios Kyrtzidis | 87acf19 | 2012-03-06 00:00:38 +0000 | [diff] [blame] | 594 | |
| 595 | std::map<std::string, GroupInfo> DiagsInGroup; |
| 596 | groupDiagnostics(Diags, DiagGroups, DiagsInGroup); |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 597 | |
| 598 | // All extensions are implicitly in the "pedantic" group. Record the |
| 599 | // implicit set of groups in the "pedantic" group, and use this information |
| 600 | // later when emitting the group information for Pedantic. |
| 601 | RecordVec DiagsInPedantic; |
| 602 | RecordVec GroupsInPedantic; |
| 603 | InferPedantic inferPedantic(DGParentMap, Diags, DiagGroups, DiagsInGroup); |
| 604 | inferPedantic.compute(&DiagsInPedantic, &GroupsInPedantic); |
| 605 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 606 | // Walk through the groups emitting an array for each diagnostic of the diags |
| 607 | // that are mapped to. |
| 608 | OS << "\n#ifdef GET_DIAG_ARRAYS\n"; |
| 609 | unsigned MaxLen = 0; |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 610 | OS << "static const int16_t DiagArrays[] = {\n" |
| 611 | << " /* Empty */ -1,\n"; |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 612 | for (std::map<std::string, GroupInfo>::const_iterator |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 613 | I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) { |
| 614 | MaxLen = std::max(MaxLen, (unsigned)I->first.size()); |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 615 | const bool IsPedantic = I->first == "pedantic"; |
| 616 | |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 617 | const std::vector<const Record*> &V = I->second.DiagsInGroup; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 618 | if (!V.empty() || (IsPedantic && !DiagsInPedantic.empty())) { |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 619 | OS << " /* DiagArray" << I->second.IDNo << " */ "; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 620 | for (unsigned i = 0, e = V.size(); i != e; ++i) |
| 621 | OS << "diag::" << V[i]->getName() << ", "; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 622 | // Emit the diagnostics implicitly in "pedantic". |
| 623 | if (IsPedantic) { |
| 624 | for (unsigned i = 0, e = DiagsInPedantic.size(); i != e; ++i) |
| 625 | OS << "diag::" << DiagsInPedantic[i]->getName() << ", "; |
| 626 | } |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 627 | OS << "-1,\n"; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 628 | } |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 629 | } |
| 630 | OS << "};\n\n"; |
| 631 | |
| 632 | OS << "static const int16_t DiagSubGroups[] = {\n" |
| 633 | << " /* Empty */ -1,\n"; |
| 634 | for (std::map<std::string, GroupInfo>::const_iterator |
| 635 | I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) { |
| 636 | const bool IsPedantic = I->first == "pedantic"; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 637 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 638 | const std::vector<std::string> &SubGroups = I->second.SubGroups; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 639 | if (!SubGroups.empty() || (IsPedantic && !GroupsInPedantic.empty())) { |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 640 | OS << " /* DiagSubGroup" << I->second.IDNo << " */ "; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 641 | for (unsigned i = 0, e = SubGroups.size(); i != e; ++i) { |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 642 | std::map<std::string, GroupInfo>::const_iterator RI = |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 643 | DiagsInGroup.find(SubGroups[i]); |
| 644 | assert(RI != DiagsInGroup.end() && "Referenced without existing?"); |
| 645 | OS << RI->second.IDNo << ", "; |
| 646 | } |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 647 | // Emit the groups implicitly in "pedantic". |
| 648 | if (IsPedantic) { |
| 649 | for (unsigned i = 0, e = GroupsInPedantic.size(); i != e; ++i) { |
| 650 | const std::string &GroupName = |
| 651 | GroupsInPedantic[i]->getValueAsString("GroupName"); |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 652 | std::map<std::string, GroupInfo>::const_iterator RI = |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 653 | DiagsInGroup.find(GroupName); |
| 654 | assert(RI != DiagsInGroup.end() && "Referenced without existing?"); |
| 655 | OS << RI->second.IDNo << ", "; |
| 656 | } |
| 657 | } |
| 658 | |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 659 | OS << "-1,\n"; |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 660 | } |
| 661 | } |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 662 | OS << "};\n\n"; |
| 663 | |
| 664 | StringToOffsetTable GroupNames; |
| 665 | for (std::map<std::string, GroupInfo>::const_iterator |
| 666 | I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) { |
| 667 | // Store a pascal-style length byte at the beginning of the string. |
| 668 | std::string Name = char(I->first.size()) + I->first; |
| 669 | GroupNames.GetOrAddStringOffset(Name, false); |
| 670 | } |
| 671 | |
| 672 | OS << "static const char DiagGroupNames[] = {\n"; |
| 673 | GroupNames.EmitString(OS); |
| 674 | OS << "};\n\n"; |
| 675 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 676 | OS << "#endif // GET_DIAG_ARRAYS\n\n"; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 677 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 678 | // Emit the table now. |
| 679 | OS << "\n#ifdef GET_DIAG_TABLE\n"; |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 680 | unsigned SubGroupIndex = 1, DiagArrayIndex = 1; |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 681 | for (std::map<std::string, GroupInfo>::const_iterator |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 682 | I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) { |
| 683 | // Group option string. |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 684 | OS << " { /* "; |
Benjamin Kramer | fee467a | 2011-11-15 12:54:53 +0000 | [diff] [blame] | 685 | if (I->first.find_first_not_of("abcdefghijklmnopqrstuvwxyz" |
| 686 | "ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 687 | "0123456789!@#$%^*-+=:?")!=std::string::npos) |
Joerg Sonnenberger | 691a16b | 2012-10-25 16:37:08 +0000 | [diff] [blame] | 688 | PrintFatalError("Invalid character in diagnostic group '" + |
| 689 | I->first + "'"); |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 690 | OS << I->first << " */ " << std::string(MaxLen-I->first.size(), ' '); |
| 691 | // Store a pascal-style length byte at the beginning of the string. |
| 692 | std::string Name = char(I->first.size()) + I->first; |
| 693 | OS << GroupNames.GetOrAddStringOffset(Name, false) << ", "; |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 694 | |
| 695 | // Special handling for 'pedantic'. |
| 696 | const bool IsPedantic = I->first == "pedantic"; |
| 697 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 698 | // Diagnostics in the group. |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 699 | const std::vector<const Record*> &V = I->second.DiagsInGroup; |
| 700 | const bool hasDiags = !V.empty() || |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 701 | (IsPedantic && !DiagsInPedantic.empty()); |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 702 | if (hasDiags) { |
| 703 | OS << "/* DiagArray" << I->second.IDNo << " */ " |
| 704 | << DiagArrayIndex << ", "; |
| 705 | if (IsPedantic) |
| 706 | DiagArrayIndex += DiagsInPedantic.size(); |
| 707 | DiagArrayIndex += V.size() + 1; |
| 708 | } else { |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 709 | OS << "/* Empty */ 0, "; |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 710 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 711 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 712 | // Subgroups. |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 713 | const std::vector<std::string> &SubGroups = I->second.SubGroups; |
| 714 | const bool hasSubGroups = !SubGroups.empty() || |
Ted Kremenek | b22ea2a | 2012-07-07 05:53:30 +0000 | [diff] [blame] | 715 | (IsPedantic && !GroupsInPedantic.empty()); |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 716 | if (hasSubGroups) { |
| 717 | OS << "/* DiagSubGroup" << I->second.IDNo << " */ " << SubGroupIndex; |
| 718 | if (IsPedantic) |
| 719 | SubGroupIndex += GroupsInPedantic.size(); |
| 720 | SubGroupIndex += SubGroups.size() + 1; |
| 721 | } else { |
Craig Topper | da7cf8a | 2013-08-29 05:18:04 +0000 | [diff] [blame] | 722 | OS << "/* Empty */ 0"; |
Craig Topper | d80c17e | 2013-08-28 04:02:50 +0000 | [diff] [blame] | 723 | } |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 724 | OS << " },\n"; |
| 725 | } |
| 726 | OS << "#endif // GET_DIAG_TABLE\n\n"; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 727 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 728 | // Emit the category table next. |
| 729 | DiagCategoryIDMap CategoriesByID(Records); |
| 730 | OS << "\n#ifdef GET_CATEGORY_TABLE\n"; |
Craig Topper | a9bcac5 | 2013-07-21 22:20:10 +0000 | [diff] [blame] | 731 | for (DiagCategoryIDMap::const_iterator I = CategoriesByID.begin(), |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 732 | E = CategoriesByID.end(); I != E; ++I) |
| 733 | OS << "CATEGORY(\"" << *I << "\", " << getDiagCategoryEnum(*I) << ")\n"; |
| 734 | OS << "#endif // GET_CATEGORY_TABLE\n\n"; |
| 735 | } |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 736 | } // end namespace clang |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 737 | |
| 738 | //===----------------------------------------------------------------------===// |
| 739 | // Diagnostic name index generation |
| 740 | //===----------------------------------------------------------------------===// |
| 741 | |
| 742 | namespace { |
| 743 | struct RecordIndexElement |
| 744 | { |
| 745 | RecordIndexElement() {} |
| 746 | explicit RecordIndexElement(Record const &R): |
| 747 | Name(R.getName()) {} |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 748 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 749 | std::string Name; |
| 750 | }; |
| 751 | |
| 752 | struct RecordIndexElementSorter : |
| 753 | public std::binary_function<RecordIndexElement, RecordIndexElement, bool> { |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 754 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 755 | bool operator()(RecordIndexElement const &Lhs, |
| 756 | RecordIndexElement const &Rhs) const { |
| 757 | return Lhs.Name < Rhs.Name; |
| 758 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 759 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 760 | }; |
| 761 | |
| 762 | } // end anonymous namespace. |
| 763 | |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 764 | namespace clang { |
| 765 | void EmitClangDiagsIndexName(RecordKeeper &Records, raw_ostream &OS) { |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 766 | const std::vector<Record*> &Diags = |
| 767 | Records.getAllDerivedDefinitions("Diagnostic"); |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 768 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 769 | std::vector<RecordIndexElement> Index; |
| 770 | Index.reserve(Diags.size()); |
| 771 | for (unsigned i = 0, e = Diags.size(); i != e; ++i) { |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 772 | const Record &R = *(Diags[i]); |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 773 | Index.push_back(RecordIndexElement(R)); |
| 774 | } |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 775 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 776 | std::sort(Index.begin(), Index.end(), RecordIndexElementSorter()); |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 777 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 778 | for (unsigned i = 0, e = Index.size(); i != e; ++i) { |
| 779 | const RecordIndexElement &R = Index[i]; |
Craig Topper | f3932e3 | 2013-07-19 21:43:59 +0000 | [diff] [blame] | 780 | |
Peter Collingbourne | bee583f | 2011-10-06 13:03:08 +0000 | [diff] [blame] | 781 | OS << "DIAG_NAME_INDEX(" << R.Name << ")\n"; |
| 782 | } |
| 783 | } |
Jakob Stoklund Olesen | 995e0e1 | 2012-06-13 05:12:41 +0000 | [diff] [blame] | 784 | } // end namespace clang |