2009-03-13 23:21:17 +01: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 22:36:46 +01:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2009-03-13 23:21:17 +01:00
|
|
|
#include "llvm/Support/Streams.h"
|
2009-03-18 22:16:16 +01:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2009-04-15 22:13:18 +02:00
|
|
|
#include "llvm/ADT/StringExtras.h"
|
|
|
|
#include "llvm/ADT/VectorExtras.h"
|
2009-03-18 22:16:16 +01:00
|
|
|
#include <set>
|
|
|
|
#include <map>
|
2009-03-13 23:21:17 +01:00
|
|
|
using namespace llvm;
|
2009-03-18 22:16:16 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-03-26 17:17:51 +01:00
|
|
|
// Generic routines for all Clang TableGen backends.
|
2009-03-18 22:16:16 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-03-13 23:21:17 +01:00
|
|
|
typedef std::vector<Record*> RecordVector;
|
|
|
|
|
2009-03-13 23:53:41 +01:00
|
|
|
static const RecordVal* findRecordVal(const Record& R, const std::string &key) {
|
2009-04-15 22:16:12 +02:00
|
|
|
typedef std::vector<RecordVal> RecordValVector;
|
2009-03-13 23:53:41 +01:00
|
|
|
const RecordValVector &Vals = R.getValues();
|
2009-03-13 23:21:17 +01:00
|
|
|
for (RecordValVector::const_iterator I=Vals.begin(), E=Vals.end(); I!=E; ++I)
|
|
|
|
if ((*I).getName() == key)
|
|
|
|
return &*I;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-03-18 22:16:16 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Warning Tables (.inc file) generation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-04-15 08:26:49 +02:00
|
|
|
static void ProcessDiag(std::ostream &OS, const Record *DiagClass,
|
|
|
|
const Record &R) {
|
2009-03-13 23:21:17 +01:00
|
|
|
OS << "DIAG(" << R.getName() << ", ";
|
2009-04-15 18:55:46 +02:00
|
|
|
OS << R.getValueAsDef("Class")->getName();
|
2009-04-15 18:43:18 +02:00
|
|
|
OS << ", diag::" << R.getValueAsDef("DefaultMapping")->getName();
|
2009-03-13 23:21:17 +01:00
|
|
|
OS << ", \"";
|
2009-04-15 22:13:18 +02:00
|
|
|
std::string S = R.getValueAsString("Text");
|
|
|
|
EscapeString(S);
|
|
|
|
OS << S << "\")\n";
|
2009-03-13 23:21:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClangDiagsDefsEmitter::run(std::ostream &OS) {
|
|
|
|
const RecordVector &Diags = Records.getAllDerivedDefinitions("Diagnostic");
|
|
|
|
|
|
|
|
const Record* DiagClass = Records.getClass("Diagnostic");
|
|
|
|
assert(DiagClass && "No Diagnostic class defined.");
|
|
|
|
|
2009-03-13 23:53:41 +01:00
|
|
|
// Write the #if guard
|
|
|
|
if (!Component.empty()) {
|
2009-04-15 22:16:12 +02: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 23:53:41 +01:00
|
|
|
}
|
|
|
|
|
2009-03-13 23:21:17 +01:00
|
|
|
for (RecordVector::const_iterator I=Diags.begin(), E=Diags.end(); I!=E; ++I) {
|
2009-04-15 08:26:49 +02:00
|
|
|
const Record &R = **I;
|
|
|
|
// Filter by component.
|
|
|
|
if (!Component.empty() && Component != R.getValueAsString("Component"))
|
|
|
|
continue;
|
2009-03-13 23:53:41 +01:00
|
|
|
|
2009-04-15 08:26:49 +02:00
|
|
|
ProcessDiag(OS, DiagClass, R);
|
2009-03-13 23:21:17 +01:00
|
|
|
}
|
2009-03-13 23:53:41 +01:00
|
|
|
}
|
2009-03-18 22:16:16 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Warning Group Tables generation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-03-18 22:36:46 +01:00
|
|
|
static const std::string &getOptName(const Record *R) {
|
|
|
|
const RecordVal *V = findRecordVal(*R, "Name");
|
|
|
|
assert(V && "Options must have a 'Name' value.");
|
|
|
|
const StringInit* SV = dynamic_cast<const StringInit*>(V->getValue());
|
|
|
|
assert(SV && "'Name' entry must be a string.");
|
|
|
|
return SV->getValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct VISIBILITY_HIDDEN CompareOptName {
|
2009-04-01 20:24:22 +02:00
|
|
|
bool operator()(const Record* A, const Record* B) const {
|
|
|
|
return getOptName(A) < getOptName(B);
|
2009-03-18 22:36:46 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-03-18 22:16:16 +01:00
|
|
|
typedef std::set<const Record*> DiagnosticSet;
|
2009-03-18 22:36:46 +01:00
|
|
|
typedef std::map<const Record*, DiagnosticSet, CompareOptName> OptionMap;
|
2009-03-18 22:16:16 +01:00
|
|
|
typedef llvm::DenseSet<const ListInit*> VisitedLists;
|
|
|
|
|
|
|
|
static void BuildGroup(DiagnosticSet& DS, VisitedLists &Visited, const Init* X);
|
|
|
|
|
|
|
|
static void BuildGroup(DiagnosticSet &DS, VisitedLists &Visited,
|
|
|
|
const ListInit* LV) {
|
|
|
|
|
|
|
|
// Simple hack to prevent including a list multiple times. This may be useful
|
|
|
|
// if one declares an Option by including a bunch of other Options that
|
|
|
|
// include other Options, etc.
|
|
|
|
if (Visited.count(LV))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Visited.insert(LV);
|
|
|
|
|
|
|
|
// Iterate through the list and grab all DiagnosticControlled.
|
|
|
|
for (ListInit::const_iterator I = LV->begin(), E = LV->end(); I!=E; ++I)
|
|
|
|
BuildGroup(DS, Visited, *I);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BuildGroup(DiagnosticSet& DS, VisitedLists &Visited,
|
|
|
|
const Record *Def) {
|
|
|
|
|
|
|
|
// If an Option includes another Option, inline the Diagnostics of the
|
|
|
|
// included Option.
|
|
|
|
if (Def->isSubClassOf("Option")) {
|
2009-04-15 08:26:49 +02:00
|
|
|
if (const RecordVal *V = findRecordVal(*Def, "Members"))
|
|
|
|
if (const ListInit *LV = dynamic_cast<const ListInit*>(V->getValue()))
|
2009-03-18 22:16:16 +01:00
|
|
|
BuildGroup(DS, Visited, LV);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Def->isSubClassOf("DiagnosticControlled"))
|
|
|
|
DS.insert(Def);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BuildGroup(DiagnosticSet& DS, VisitedLists &Visited,
|
|
|
|
const Init* X) {
|
|
|
|
|
|
|
|
if (const DefInit *D = dynamic_cast<const DefInit*>(X))
|
|
|
|
BuildGroup(DS, Visited, D->getDef());
|
|
|
|
|
|
|
|
// We may have some other cases here in the future.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-15 22:02:32 +02:00
|
|
|
void ClangDiagGroupsEmitter::run(std::ostream &OS) {
|
2009-03-18 22:16:16 +01:00
|
|
|
// Build up a map from options to controlled diagnostics.
|
2009-04-15 08:26:49 +02:00
|
|
|
OptionMap OM;
|
2009-04-15 22:13:18 +02:00
|
|
|
|
2009-03-18 22:16:16 +01:00
|
|
|
const RecordVector &Opts = Records.getAllDerivedDefinitions("Option");
|
2009-04-15 08:26:49 +02:00
|
|
|
for (RecordVector::const_iterator I=Opts.begin(), E=Opts.end(); I != E; ++I)
|
2009-03-18 22:16:16 +01:00
|
|
|
if (const RecordVal* V = findRecordVal(**I, "Members"))
|
|
|
|
if (const ListInit* LV = dynamic_cast<const ListInit*>(V->getValue())) {
|
|
|
|
VisitedLists Visited;
|
|
|
|
BuildGroup(OM[*I], Visited, LV);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate through the OptionMap and emit the declarations.
|
|
|
|
for (OptionMap::iterator I = OM.begin(), E = OM.end(); I!=E; ++I) {
|
|
|
|
// Output the option.
|
|
|
|
OS << "static const diag::kind " << I->first->getName() << "[] = { ";
|
|
|
|
|
|
|
|
DiagnosticSet &DS = I->second;
|
|
|
|
bool first = true;
|
|
|
|
for (DiagnosticSet::iterator I2 = DS.begin(), E2 = DS.end(); I2!=E2; ++I2) {
|
|
|
|
if (first)
|
|
|
|
first = false;
|
|
|
|
else
|
|
|
|
OS << ", ";
|
|
|
|
|
|
|
|
OS << "diag::" << (*I2)->getName();
|
|
|
|
}
|
|
|
|
OS << " };\n";
|
|
|
|
}
|
2009-03-18 22:28:47 +01:00
|
|
|
|
|
|
|
// Now emit the OptionTable table.
|
|
|
|
OS << "\nstatic const WarningOption OptionTable[] = {";
|
|
|
|
bool first = true;
|
|
|
|
for (OptionMap::iterator I = OM.begin(), E = OM.end(); I!=E; ++I) {
|
|
|
|
if (first)
|
|
|
|
first = false;
|
|
|
|
else
|
|
|
|
OS << ',';
|
|
|
|
|
2009-03-18 22:36:46 +01:00
|
|
|
OS << "\n {\"" << getOptName(I->first)
|
2009-03-18 22:28:47 +01:00
|
|
|
<< "\", DIAGS(" << I->first->getName() << ")}";
|
|
|
|
}
|
|
|
|
OS << "\n};\n";
|
2009-03-18 22:16:16 +01:00
|
|
|
}
|