mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-18 17:55:18 +00:00
Add the ClangSACheckersEmitter tablegen backend which will be used for the clang static analyzer.
llvm-svn: 125493
This commit is contained in:
parent
a667a598aa
commit
c5c3ca71c0
@ -12,6 +12,7 @@ add_executable(tblgen
|
||||
ClangASTNodesEmitter.cpp
|
||||
ClangAttrEmitter.cpp
|
||||
ClangDiagnosticsEmitter.cpp
|
||||
ClangSACheckersEmitter.cpp
|
||||
CodeEmitterGen.cpp
|
||||
CodeGenDAGPatterns.cpp
|
||||
CodeGenInstruction.cpp
|
||||
|
194
utils/TableGen/ClangSACheckersEmitter.cpp
Normal file
194
utils/TableGen/ClangSACheckersEmitter.cpp
Normal file
@ -0,0 +1,194 @@
|
||||
//=- ClangSACheckersEmitter.cpp - Generate Clang SA checkers tables -*- C++ -*-
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This tablegen backend emits Clang Static Analyzer checkers tables.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "ClangSACheckersEmitter.h"
|
||||
#include "Record.h"
|
||||
#include "llvm/ADT/DenseSet.h"
|
||||
#include <map>
|
||||
#include <string>
|
||||
using namespace llvm;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Static Analyzer Checkers Tables generation
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
/// \brief True if it is specified hidden or a parent package is specified
|
||||
/// as hidden, otherwise false.
|
||||
static bool isHidden(const Record &R) {
|
||||
if (R.getValueAsBit("Hidden"))
|
||||
return true;
|
||||
// Not declared as hidden, check the parent package if it is hidden.
|
||||
if (DefInit *DI = dynamic_cast<DefInit*>(R.getValueInit("ParentPackage")))
|
||||
return isHidden(*DI->getDef());
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
static std::string getPackageFullName(Record *R);
|
||||
|
||||
static std::string getParentPackageFullName(Record *R) {
|
||||
std::string name;
|
||||
if (DefInit *DI = dynamic_cast<DefInit*>(R->getValueInit("ParentPackage")))
|
||||
name = getPackageFullName(DI->getDef());
|
||||
return name;
|
||||
}
|
||||
|
||||
static std::string getPackageFullName(Record *R) {
|
||||
std::string name = getParentPackageFullName(R);
|
||||
if (!name.empty()) name += ".";
|
||||
return name + R->getValueAsString("PackageName");
|
||||
}
|
||||
|
||||
static std::string getCheckerFullName(Record *R) {
|
||||
std::string name = getParentPackageFullName(R);
|
||||
if (!name.empty()) name += ".";
|
||||
return name + R->getValueAsString("CheckerName");
|
||||
}
|
||||
|
||||
namespace {
|
||||
struct GroupInfo {
|
||||
std::vector<const Record*> Checkers;
|
||||
llvm::DenseSet<const Record *> SubGroups;
|
||||
unsigned Index;
|
||||
};
|
||||
}
|
||||
|
||||
void ClangSACheckersEmitter::run(raw_ostream &OS) {
|
||||
std::vector<Record*> checkers = Records.getAllDerivedDefinitions("Checker");
|
||||
llvm::DenseMap<const Record *, unsigned> checkerRecIndexMap;
|
||||
for (unsigned i = 0, e = checkers.size(); i != e; ++i)
|
||||
checkerRecIndexMap[checkers[i]] = i;
|
||||
|
||||
OS << "\n#ifdef GET_CHECKERS\n";
|
||||
for (unsigned i = 0, e = checkers.size(); i != e; ++i) {
|
||||
const Record &R = *checkers[i];
|
||||
|
||||
OS << "CHECKER(" << "\"";
|
||||
OS.write_escaped(R.getValueAsString("CheckerName")) << "\", ";
|
||||
OS << R.getValueAsString("ClassName") << ", ";
|
||||
OS << R.getValueAsString("DescFile") << ", ";
|
||||
OS << "\"";
|
||||
OS.write_escaped(R.getValueAsString("HelpText")) << "\", ";
|
||||
// Hidden bit
|
||||
if (isHidden(R))
|
||||
OS << "true";
|
||||
else
|
||||
OS << "false";
|
||||
OS << ")\n";
|
||||
}
|
||||
OS << "#endif // GET_CHECKERS\n\n";
|
||||
|
||||
// Invert the mapping of checkers to package/group into a one to many
|
||||
// mapping of packages/groups to checkers.
|
||||
std::map<std::string, GroupInfo> groupInfoByName;
|
||||
llvm::DenseMap<const Record *, GroupInfo *> recordGroupMap;
|
||||
|
||||
std::vector<Record*> packages = Records.getAllDerivedDefinitions("Package");
|
||||
for (unsigned i = 0, e = packages.size(); i != e; ++i) {
|
||||
Record *R = packages[i];
|
||||
std::string fullName = getPackageFullName(R);
|
||||
if (!fullName.empty()) {
|
||||
GroupInfo &info = groupInfoByName[fullName];
|
||||
recordGroupMap[R] = &info;
|
||||
}
|
||||
}
|
||||
|
||||
std::vector<Record*>
|
||||
checkerGroups = Records.getAllDerivedDefinitions("CheckerGroup");
|
||||
for (unsigned i = 0, e = checkerGroups.size(); i != e; ++i) {
|
||||
Record *R = checkerGroups[i];
|
||||
std::string name = R->getValueAsString("GroupName");
|
||||
if (!name.empty()) {
|
||||
GroupInfo &info = groupInfoByName[name];
|
||||
recordGroupMap[R] = &info;
|
||||
}
|
||||
}
|
||||
|
||||
for (unsigned i = 0, e = checkers.size(); i != e; ++i) {
|
||||
Record *R = checkers[i];
|
||||
std::string fullName = getCheckerFullName(R);
|
||||
if (!fullName.empty()) {
|
||||
GroupInfo &info = groupInfoByName[fullName];
|
||||
recordGroupMap[R] = &info;
|
||||
info.Checkers.push_back(R);
|
||||
Record *currR = R;
|
||||
// Insert the checker and its parent packages into the set of the
|
||||
// corresponding parent package.
|
||||
while (DefInit *DI
|
||||
= dynamic_cast<DefInit*>(currR->getValueInit("ParentPackage"))) {
|
||||
Record *parentPackage = DI->getDef();
|
||||
recordGroupMap[parentPackage]->SubGroups.insert(currR);
|
||||
currR = parentPackage;
|
||||
}
|
||||
// Insert the checker into the set of its group.
|
||||
if (DefInit *DI = dynamic_cast<DefInit*>(R->getValueInit("Group")))
|
||||
recordGroupMap[DI->getDef()]->SubGroups.insert(R);
|
||||
}
|
||||
}
|
||||
|
||||
unsigned index = 0;
|
||||
for (std::map<std::string, GroupInfo>::iterator
|
||||
I = groupInfoByName.begin(), E = groupInfoByName.end(); I != E; ++I)
|
||||
I->second.Index = index++;
|
||||
|
||||
// Walk through the packages/groups/checkers emitting an array for each
|
||||
// set of checkers and an array for each set of subpackages.
|
||||
|
||||
OS << "\n#ifdef GET_MEMBER_ARRAYS\n";
|
||||
unsigned maxLen = 0;
|
||||
for (std::map<std::string, GroupInfo>::iterator
|
||||
I = groupInfoByName.begin(), E = groupInfoByName.end(); I != E; ++I) {
|
||||
maxLen = std::max(maxLen, (unsigned)I->first.size());
|
||||
|
||||
std::vector<const Record*> &V = I->second.Checkers;
|
||||
if (!V.empty()) {
|
||||
OS << "static const short CheckerArray" << I->second.Index << "[] = { ";
|
||||
for (unsigned i = 0, e = V.size(); i != e; ++i)
|
||||
OS << checkerRecIndexMap[V[i]] << ", ";
|
||||
OS << "-1 };\n";
|
||||
}
|
||||
|
||||
llvm::DenseSet<const Record *> &subGroups = I->second.SubGroups;
|
||||
if (!subGroups.empty()) {
|
||||
OS << "static const short SubPackageArray" << I->second.Index << "[] = { ";
|
||||
for (llvm::DenseSet<const Record *>::iterator
|
||||
I = subGroups.begin(), E = subGroups.end(); I != E; ++I) {
|
||||
OS << recordGroupMap[*I]->Index << ", ";
|
||||
}
|
||||
OS << "-1 };\n";
|
||||
}
|
||||
}
|
||||
OS << "#endif // GET_MEMBER_ARRAYS\n\n";
|
||||
|
||||
OS << "\n#ifdef GET_CHECKNAME_TABLE\n";
|
||||
for (std::map<std::string, GroupInfo>::iterator
|
||||
I = groupInfoByName.begin(), E = groupInfoByName.end(); I != E; ++I) {
|
||||
// Group option string.
|
||||
OS << " { \"";
|
||||
OS.write_escaped(I->first) << "\","
|
||||
<< std::string(maxLen-I->first.size()+1, ' ');
|
||||
|
||||
if (I->second.Checkers.empty())
|
||||
OS << "0, ";
|
||||
else
|
||||
OS << "CheckerArray" << I->second.Index << ", ";
|
||||
|
||||
// Subgroups.
|
||||
if (I->second.SubGroups.empty())
|
||||
OS << 0;
|
||||
else
|
||||
OS << "SubPackageArray" << I->second.Index;
|
||||
OS << " },\n";
|
||||
}
|
||||
OS << "#endif // GET_CHECKNAME_TABLE\n\n";
|
||||
}
|
31
utils/TableGen/ClangSACheckersEmitter.h
Normal file
31
utils/TableGen/ClangSACheckersEmitter.h
Normal file
@ -0,0 +1,31 @@
|
||||
//===- ClangSACheckersEmitter.h - Generate Clang SA checkers tables -*- C++ -*-
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This tablegen backend emits Clang Static Analyzer checkers tables.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef CLANGSACHECKERS_EMITTER_H
|
||||
#define CLANGSACHECKERS_EMITTER_H
|
||||
|
||||
#include "TableGenBackend.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class ClangSACheckersEmitter : public TableGenBackend {
|
||||
RecordKeeper &Records;
|
||||
public:
|
||||
explicit ClangSACheckersEmitter(RecordKeeper &R) : Records(R) {}
|
||||
|
||||
void run(raw_ostream &OS);
|
||||
};
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
@ -21,6 +21,7 @@
|
||||
#include "ClangASTNodesEmitter.h"
|
||||
#include "ClangAttrEmitter.h"
|
||||
#include "ClangDiagnosticsEmitter.h"
|
||||
#include "ClangSACheckersEmitter.h"
|
||||
#include "CodeEmitterGen.h"
|
||||
#include "DAGISelEmitter.h"
|
||||
#include "DisassemblerEmitter.h"
|
||||
@ -66,6 +67,7 @@ enum ActionType {
|
||||
GenClangDiagGroups,
|
||||
GenClangDeclNodes,
|
||||
GenClangStmtNodes,
|
||||
GenClangSACheckers,
|
||||
GenDAGISel,
|
||||
GenFastISel,
|
||||
GenOptParserDefs, GenOptParserImpl,
|
||||
@ -141,6 +143,8 @@ namespace {
|
||||
"Generate Clang AST declaration nodes"),
|
||||
clEnumValN(GenClangStmtNodes, "gen-clang-stmt-nodes",
|
||||
"Generate Clang AST statement nodes"),
|
||||
clEnumValN(GenClangSACheckers, "gen-clang-sa-checkers",
|
||||
"Generate Clang Static Analyzer checkers"),
|
||||
clEnumValN(GenLLVMCConf, "gen-llvmc",
|
||||
"Generate LLVMC configuration library"),
|
||||
clEnumValN(GenEDInfo, "gen-enhanced-disassembly-info",
|
||||
@ -298,6 +302,9 @@ int main(int argc, char **argv) {
|
||||
case GenClangStmtNodes:
|
||||
ClangASTNodesEmitter(Records, "Stmt", "").run(Out.os());
|
||||
break;
|
||||
case GenClangSACheckers:
|
||||
ClangSACheckersEmitter(Records).run(Out.os());
|
||||
break;
|
||||
case GenDisassembler:
|
||||
DisassemblerEmitter(Records).run(Out.os());
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user