2009-03-13 22:21:17 +00:00
|
|
|
//=- ClangDiagnosticsEmitter.cpp - Generate Clang diagnostics tables -*- C++ -*-
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// These tablegen backends emit Clang diagnostics tables.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ClangDiagnosticsEmitter.h"
|
|
|
|
#include "Record.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
2009-03-18 21:36:46 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2009-03-18 21:16:16 +00:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2009-04-15 20:13:18 +00:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/ADT/VectorExtras.h"
|
2009-03-18 21:16:16 +00:00
|
|
|
#include <set>
|
|
|
|
#include <map>
|
2009-03-13 22:21:17 +00:00
|
|
|
using namespace llvm;
|
2009-03-18 21:16:16 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Warning Tables (.inc file) generation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-03 00:10:29 +00:00
|
|
|
void ClangDiagsDefsEmitter::run(raw_ostream &OS) {
|
2009-03-13 22:53:41 +00:00
|
|
|
// Write the #if guard
|
|
|
|
if (!Component.empty()) {
|
2009-04-15 20:16:12 +00:00
|
|
|
std::string ComponentName = UppercaseString(Component);
|
|
|
|
OS << "#ifdef " << ComponentName << "START\n";
|
|
|
|
OS << "__" << ComponentName << "START = DIAG_START_" << ComponentName
|
|
|
|
<< ",\n";
|
|
|
|
OS << "#undef " << ComponentName << "START\n";
|
|
|
|
OS << "#endif\n";
|
2009-03-13 22:53:41 +00:00
|
|
|
}
|
2009-04-15 20:55:08 +00:00
|
|
|
|
|
|
|
const std::vector<Record*> &Diags =
|
|
|
|
Records.getAllDerivedDefinitions("Diagnostic");
|
2009-03-13 22:53:41 +00:00
|
|
|
|
2009-04-15 20:55:08 +00:00
|
|
|
for (unsigned i = 0, e = Diags.size(); i != e; ++i) {
|
|
|
|
const Record &R = *Diags[i];
|
2009-04-15 06:26:49 +00:00
|
|
|
// Filter by component.
|
|
|
|
if (!Component.empty() && Component != R.getValueAsString("Component"))
|
|
|
|
continue;
|
2009-03-13 22:53:41 +00:00
|
|
|
|
2009-04-15 20:55:08 +00:00
|
|
|
OS << "DIAG(" << R.getName() << ", ";
|
|
|
|
OS << R.getValueAsDef("Class")->getName();
|
|
|
|
OS << ", diag::" << R.getValueAsDef("DefaultMapping")->getName();
|
2009-04-16 05:52:18 +00:00
|
|
|
|
|
|
|
// Description string.
|
2009-04-15 20:55:08 +00:00
|
|
|
OS << ", \"";
|
2009-10-17 20:43:19 +00:00
|
|
|
OS.write_escaped(R.getValueAsString("Text")) << '"';
|
2009-04-16 05:52:18 +00:00
|
|
|
|
|
|
|
// Warning associated with the diagnostic.
|
|
|
|
if (DefInit *DI = dynamic_cast<DefInit*>(R.getValueInit("Group"))) {
|
2009-10-17 20:43:19 +00:00
|
|
|
OS << ", \"";
|
|
|
|
OS.write_escaped(DI->getDef()->getValueAsString("GroupName")) << '"';
|
2009-04-16 05:52:18 +00:00
|
|
|
} else {
|
|
|
|
OS << ", 0";
|
|
|
|
}
|
2009-06-14 07:24:49 +00:00
|
|
|
|
|
|
|
// SFINAE bit
|
|
|
|
if (R.getValueAsBit("SFINAE"))
|
|
|
|
OS << ", true";
|
|
|
|
else
|
|
|
|
OS << ", false";
|
2009-04-16 05:52:18 +00:00
|
|
|
OS << ")\n";
|
2009-03-13 22:21:17 +00:00
|
|
|
}
|
2009-03-13 22:53:41 +00:00
|
|
|
}
|
2009-03-18 21:16:16 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-04-15 20:55:08 +00:00
|
|
|
// Warning Group Tables generation
|
2009-03-18 21:16:16 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-04-16 00:53:25 +00:00
|
|
|
struct GroupInfo {
|
|
|
|
std::vector<const Record*> DiagsInGroup;
|
|
|
|
std::vector<std::string> SubGroups;
|
2009-04-16 03:16:12 +00:00
|
|
|
unsigned IDNo;
|
2009-04-16 00:53:25 +00:00
|
|
|
};
|
|
|
|
|
2009-07-03 00:10:29 +00:00
|
|
|
void ClangDiagGroupsEmitter::run(raw_ostream &OS) {
|
2009-04-15 20:55:08 +00:00
|
|
|
// Invert the 1-[0/1] mapping of diags to group into a one to many mapping of
|
|
|
|
// groups to diags in the group.
|
2009-04-16 00:53:25 +00:00
|
|
|
std::map<std::string, GroupInfo> DiagsInGroup;
|
2009-03-18 21:16:16 +00:00
|
|
|
|
2009-04-15 22:33:02 +00:00
|
|
|
std::vector<Record*> Diags =
|
2009-04-15 20:55:08 +00:00
|
|
|
Records.getAllDerivedDefinitions("Diagnostic");
|
|
|
|
for (unsigned i = 0, e = Diags.size(); i != e; ++i) {
|
|
|
|
const Record *R = Diags[i];
|
|
|
|
DefInit *DI = dynamic_cast<DefInit*>(R->getValueInit("Group"));
|
|
|
|
if (DI == 0) continue;
|
2009-04-16 00:53:25 +00:00
|
|
|
std::string GroupName = DI->getDef()->getValueAsString("GroupName");
|
|
|
|
DiagsInGroup[GroupName].DiagsInGroup.push_back(R);
|
2009-03-18 21:16:16 +00:00
|
|
|
}
|
|
|
|
|
2009-04-15 22:33:02 +00:00
|
|
|
// Add all DiagGroup's to the DiagsInGroup list to make sure we pick up empty
|
|
|
|
// groups (these are warnings that GCC supports that clang never produces).
|
|
|
|
Diags = Records.getAllDerivedDefinitions("DiagGroup");
|
|
|
|
for (unsigned i = 0, e = Diags.size(); i != e; ++i) {
|
2009-04-16 00:53:25 +00:00
|
|
|
Record *Group = Diags[i];
|
|
|
|
GroupInfo &GI = DiagsInGroup[Group->getValueAsString("GroupName")];
|
|
|
|
|
|
|
|
std::vector<Record*> SubGroups = Group->getValueAsListOfDefs("SubGroups");
|
|
|
|
for (unsigned j = 0, e = SubGroups.size(); j != e; ++j)
|
|
|
|
GI.SubGroups.push_back(SubGroups[j]->getValueAsString("GroupName"));
|
2009-04-15 22:33:02 +00:00
|
|
|
}
|
|
|
|
|
2009-04-16 03:16:12 +00:00
|
|
|
// Assign unique ID numbers to the groups.
|
|
|
|
unsigned IDNo = 0;
|
|
|
|
for (std::map<std::string, GroupInfo>::iterator
|
|
|
|
I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I, ++IDNo)
|
|
|
|
I->second.IDNo = IDNo;
|
|
|
|
|
2009-04-15 20:55:08 +00:00
|
|
|
// Walk through the groups emitting an array for each diagnostic of the diags
|
|
|
|
// that are mapped to.
|
|
|
|
OS << "\n#ifdef GET_DIAG_ARRAYS\n";
|
|
|
|
unsigned MaxLen = 0;
|
2009-04-16 00:53:25 +00:00
|
|
|
for (std::map<std::string, GroupInfo>::iterator
|
2009-04-15 20:55:08 +00:00
|
|
|
I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) {
|
|
|
|
MaxLen = std::max(MaxLen, (unsigned)I->first.size());
|
2009-03-18 21:16:16 +00:00
|
|
|
|
2009-04-16 00:53:25 +00:00
|
|
|
std::vector<const Record*> &V = I->second.DiagsInGroup;
|
2009-04-16 03:16:12 +00:00
|
|
|
if (!V.empty()) {
|
|
|
|
OS << "static const short DiagArray" << I->second.IDNo << "[] = { ";
|
|
|
|
for (unsigned i = 0, e = V.size(); i != e; ++i)
|
|
|
|
OS << "diag::" << V[i]->getName() << ", ";
|
|
|
|
OS << "-1 };\n";
|
|
|
|
}
|
2009-04-16 00:53:25 +00:00
|
|
|
|
2009-04-16 03:16:12 +00:00
|
|
|
const std::vector<std::string> &SubGroups = I->second.SubGroups;
|
|
|
|
if (!SubGroups.empty()) {
|
|
|
|
OS << "static const char DiagSubGroup" << I->second.IDNo << "[] = { ";
|
|
|
|
for (unsigned i = 0, e = SubGroups.size(); i != e; ++i) {
|
|
|
|
std::map<std::string, GroupInfo>::iterator RI =
|
|
|
|
DiagsInGroup.find(SubGroups[i]);
|
|
|
|
assert(RI != DiagsInGroup.end() && "Referenced without existing?");
|
|
|
|
OS << RI->second.IDNo << ", ";
|
|
|
|
}
|
|
|
|
OS << "-1 };\n";
|
|
|
|
}
|
2009-03-18 21:16:16 +00:00
|
|
|
}
|
2009-04-15 20:55:08 +00:00
|
|
|
OS << "#endif // GET_DIAG_ARRAYS\n\n";
|
|
|
|
|
|
|
|
// Emit the table now.
|
|
|
|
OS << "\n#ifdef GET_DIAG_TABLE\n";
|
2009-04-16 00:53:25 +00:00
|
|
|
for (std::map<std::string, GroupInfo>::iterator
|
2009-04-15 20:55:08 +00:00
|
|
|
I = DiagsInGroup.begin(), E = DiagsInGroup.end(); I != E; ++I) {
|
2009-04-16 00:53:25 +00:00
|
|
|
// Group option string.
|
2009-10-17 20:43:19 +00:00
|
|
|
OS << " { \"";
|
|
|
|
OS.write_escaped(I->first) << "\","
|
|
|
|
<< std::string(MaxLen-I->first.size()+1, ' ');
|
2009-04-16 00:53:25 +00:00
|
|
|
|
|
|
|
// Diagnostics in the group.
|
|
|
|
if (I->second.DiagsInGroup.empty())
|
|
|
|
OS << "0, ";
|
|
|
|
else
|
2009-04-16 03:16:12 +00:00
|
|
|
OS << "DiagArray" << I->second.IDNo << ", ";
|
2009-04-16 00:53:25 +00:00
|
|
|
|
2009-04-16 03:16:12 +00:00
|
|
|
// Subgroups.
|
|
|
|
if (I->second.SubGroups.empty())
|
|
|
|
OS << 0;
|
|
|
|
else
|
|
|
|
OS << "DiagSubGroup" << I->second.IDNo;
|
2009-04-16 00:53:25 +00:00
|
|
|
OS << " },\n";
|
2009-03-18 21:28:47 +00:00
|
|
|
}
|
2009-04-15 20:55:08 +00:00
|
|
|
OS << "#endif // GET_DIAG_TABLE\n\n";
|
2009-03-18 21:16:16 +00:00
|
|
|
}
|