2013-07-29 16:19:24 +08:00
|
|
|
//===--- tools/extra/clang-tidy/ClangTidyMain.cpp - Clang tidy tool -------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file This file implements a clang-tidy tool.
|
|
|
|
///
|
|
|
|
/// This tool uses the Clang Tooling infrastructure, see
|
|
|
|
/// http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
|
|
|
|
/// for details on setting it up with LLVM source tree.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "../ClangTidy.h"
|
2013-11-14 23:49:44 +08:00
|
|
|
#include "clang/Tooling/CommonOptionsParser.h"
|
2013-07-29 16:19:24 +08:00
|
|
|
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
using namespace clang::driver;
|
|
|
|
using namespace clang::tooling;
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-02-05 21:43:27 +08:00
|
|
|
static cl::OptionCategory ClangTidyCategory("clang-tidy options");
|
2013-07-29 16:19:24 +08:00
|
|
|
|
2013-11-14 23:49:44 +08:00
|
|
|
static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
|
2013-07-29 16:19:24 +08:00
|
|
|
|
|
|
|
static cl::opt<std::string> Checks(
|
|
|
|
"checks",
|
|
|
|
cl::desc("Regular expression matching the names of the checks to be run."),
|
|
|
|
cl::init(".*"), cl::cat(ClangTidyCategory));
|
Clang-tidy: added --disable-checks, --list-checks options.
Summary:
Allow disabling checks by regex. By default, disable alpha.* checks,
that are not particularly good tested (e.g. IdempotentOperationChecker, see
http://llvm-reviews.chandlerc.com/D2427).
Fixed a bug, that would disable all analyzer checks, when using a regex more
strict, than 'clang-analyzer-', for example --checks='clang-analyzer-deadcode-'.
Added --list-checks to list all enabled checks. This is useful to test specific
values in --checks/--disable-checks.
Reviewers: djasper, klimek
Reviewed By: klimek
CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D2444
llvm-svn: 197717
2013-12-20 03:57:05 +08:00
|
|
|
static cl::opt<std::string> DisableChecks(
|
|
|
|
"disable-checks",
|
|
|
|
cl::desc("Regular expression matching the names of the checks to disable."),
|
2014-04-29 10:33:58 +08:00
|
|
|
cl::init("(clang-analyzer-alpha.*" // Too many false positives.
|
2014-04-02 16:27:12 +08:00
|
|
|
"|llvm-include-order" // Not implemented yet.
|
|
|
|
"|llvm-namespace-comment" // Not complete.
|
2014-04-02 16:52:06 +08:00
|
|
|
"|google-.*)"), // Doesn't apply to LLVM.
|
2014-04-02 16:27:12 +08:00
|
|
|
cl::cat(ClangTidyCategory));
|
2014-05-05 22:54:47 +08:00
|
|
|
static cl::opt<std::string> HeaderFilter(
|
|
|
|
"header-filter",
|
|
|
|
cl::desc("Regular expression matching the names of the headers to output\n"
|
|
|
|
"diagnostics from. Diagnostics from the main file of each\n"
|
|
|
|
"translation unit are always displayed."),
|
|
|
|
cl::init(""), cl::cat(ClangTidyCategory));
|
2013-07-29 16:19:24 +08:00
|
|
|
static cl::opt<bool> Fix("fix", cl::desc("Fix detected errors if possible."),
|
|
|
|
cl::init(false), cl::cat(ClangTidyCategory));
|
|
|
|
|
Clang-tidy: added --disable-checks, --list-checks options.
Summary:
Allow disabling checks by regex. By default, disable alpha.* checks,
that are not particularly good tested (e.g. IdempotentOperationChecker, see
http://llvm-reviews.chandlerc.com/D2427).
Fixed a bug, that would disable all analyzer checks, when using a regex more
strict, than 'clang-analyzer-', for example --checks='clang-analyzer-deadcode-'.
Added --list-checks to list all enabled checks. This is useful to test specific
values in --checks/--disable-checks.
Reviewers: djasper, klimek
Reviewed By: klimek
CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D2444
llvm-svn: 197717
2013-12-20 03:57:05 +08:00
|
|
|
static cl::opt<bool> ListChecks("list-checks",
|
|
|
|
cl::desc("List all enabled checks and exit."),
|
|
|
|
cl::init(false), cl::cat(ClangTidyCategory));
|
2013-07-29 16:19:24 +08:00
|
|
|
|
2014-04-30 22:09:24 +08:00
|
|
|
static cl::opt<bool> AnalyzeTemporaryDtors(
|
|
|
|
"analyze-temporary-dtors",
|
|
|
|
cl::desc("Enable temporary destructor-aware analysis in clang-analyzer- "
|
|
|
|
"checks."),
|
|
|
|
cl::init(false),
|
|
|
|
cl::cat(ClangTidyCategory));
|
|
|
|
|
2013-07-29 16:19:24 +08:00
|
|
|
int main(int argc, const char **argv) {
|
2013-12-12 18:01:39 +08:00
|
|
|
CommonOptionsParser OptionsParser(argc, argv, ClangTidyCategory);
|
2013-07-29 16:19:24 +08:00
|
|
|
|
2014-04-29 23:20:10 +08:00
|
|
|
clang::tidy::ClangTidyOptions Options;
|
|
|
|
Options.EnableChecksRegex = Checks;
|
|
|
|
Options.DisableChecksRegex = DisableChecks;
|
2014-05-05 22:54:47 +08:00
|
|
|
Options.HeaderFilterRegex = HeaderFilter;
|
2014-04-30 22:09:24 +08:00
|
|
|
Options.AnalyzeTemporaryDtors = AnalyzeTemporaryDtors;
|
2014-04-29 23:20:10 +08:00
|
|
|
|
Clang-tidy: added --disable-checks, --list-checks options.
Summary:
Allow disabling checks by regex. By default, disable alpha.* checks,
that are not particularly good tested (e.g. IdempotentOperationChecker, see
http://llvm-reviews.chandlerc.com/D2427).
Fixed a bug, that would disable all analyzer checks, when using a regex more
strict, than 'clang-analyzer-', for example --checks='clang-analyzer-deadcode-'.
Added --list-checks to list all enabled checks. This is useful to test specific
values in --checks/--disable-checks.
Reviewers: djasper, klimek
Reviewed By: klimek
CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D2444
llvm-svn: 197717
2013-12-20 03:57:05 +08:00
|
|
|
// FIXME: Allow using --list-checks without positional arguments.
|
|
|
|
if (ListChecks) {
|
|
|
|
llvm::outs() << "Enabled checks:";
|
2014-04-29 23:20:10 +08:00
|
|
|
for (auto CheckName : clang::tidy::getCheckNames(Options))
|
2014-03-05 21:14:32 +08:00
|
|
|
llvm::outs() << "\n " << CheckName;
|
Clang-tidy: added --disable-checks, --list-checks options.
Summary:
Allow disabling checks by regex. By default, disable alpha.* checks,
that are not particularly good tested (e.g. IdempotentOperationChecker, see
http://llvm-reviews.chandlerc.com/D2427).
Fixed a bug, that would disable all analyzer checks, when using a regex more
strict, than 'clang-analyzer-', for example --checks='clang-analyzer-deadcode-'.
Added --list-checks to list all enabled checks. This is useful to test specific
values in --checks/--disable-checks.
Reviewers: djasper, klimek
Reviewed By: klimek
CC: cfe-commits, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D2444
llvm-svn: 197717
2013-12-20 03:57:05 +08:00
|
|
|
llvm::outs() << "\n\n";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-29 16:19:24 +08:00
|
|
|
SmallVector<clang::tidy::ClangTidyError, 16> Errors;
|
2014-04-29 23:20:10 +08:00
|
|
|
clang::tidy::runClangTidy(Options, OptionsParser.getCompilations(),
|
2013-11-14 23:49:44 +08:00
|
|
|
OptionsParser.getSourcePathList(), &Errors);
|
2013-07-29 16:19:24 +08:00
|
|
|
clang::tidy::handleErrors(Errors, Fix);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-08-04 23:56:30 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
|
|
|
|
|
|
|
// This anchor is used to force the linker to link the LLVMModule.
|
|
|
|
extern volatile int LLVMModuleAnchorSource;
|
|
|
|
static int LLVMModuleAnchorDestination = LLVMModuleAnchorSource;
|
|
|
|
|
|
|
|
// This anchor is used to force the linker to link the GoogleModule.
|
|
|
|
extern volatile int GoogleModuleAnchorSource;
|
|
|
|
static int GoogleModuleAnchorDestination = GoogleModuleAnchorSource;
|
|
|
|
|
2014-03-05 21:14:32 +08:00
|
|
|
// This anchor is used to force the linker to link the MiscModule.
|
|
|
|
extern volatile int MiscModuleAnchorSource;
|
|
|
|
static int MiscModuleAnchorDestination = MiscModuleAnchorSource;
|
|
|
|
|
2013-08-04 23:56:30 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|