Home | History | Annotate | Download | only in clang-check

Lines Matching full:clang

1 //===--- tools/clang-check/ClangCheck.cpp - Clang check tool --------------===//
10 // This file implements a clang-check tool that runs clang based on the info
13 // This tool uses the Clang Tooling infrastructure, see
14 // http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html
19 #include "clang/AST/ASTConsumer.h"
20 #include "clang/CodeGen/ObjectFilePCHContainerOperations.h"
21 #include "clang/Driver/Options.h"
22 #include "clang/Frontend/ASTConsumers.h"
23 #include "clang/Frontend/CompilerInstance.h"
24 #include "clang/Rewrite/Frontend/FixItRewriter.h"
25 #include "clang/Rewrite/Frontend/FrontendActions.h"
26 #include "clang/StaticAnalyzer/Frontend/FrontendActions.h"
27 #include "clang/Tooling/CommonOptionsParser.h"
28 #include "clang/Tooling/Tooling.h"
35 using namespace clang::driver;
36 using namespace clang::tooling;
41 "\tFor example, to run clang-check on all files in a subtree of the\n"
44 "\t find path/in/subtree -name '*.cpp'|xargs clang-check\n"
48 "\t find path/in/subtree -name '*.cpp'|xargs clang-check -p build/path\n"
55 static cl::OptionCategory ClangCheckCategory("clang-check options");
87 class FixItOptions : public clang::FixItOptions {
95 "clang-fixit expects absolute paths only.");
97 // We don't need to do permission checking here since clang will diagnose
106 /// \brief Subclasses \c clang::FixItRewriter to not count fixed errors/warnings
109 /// This has the side-effect that clang-check -fixit exits with code 0 on
111 class FixItRewriter : public clang::FixItRewriter {
113 FixItRewriter(clang::DiagnosticsEngine& Diags,
114 clang::SourceManager& SourceMgr,
115 const clang::LangOptions& LangOpts,
116 clang::FixItOptions* FixItOpts)
117 : clang::FixItRewriter(Diags, SourceMgr, LangOpts, FixItOpts) {
123 /// \brief Subclasses \c clang::FixItAction so that we can install the custom
125 class FixItAction : public clang::FixItAction {
127 bool BeginSourceFileAction(clang::CompilerInstance& CI,
138 std::unique_ptr<clang::ASTConsumer> newASTConsumer() {
140 return clang::CreateASTDeclNodeLister();
142 return clang::CreateASTDumper(ASTDumpFilter, /*DumpDecls=*/true,
145 return clang::CreateASTPrinter(&llvm::outs(), ASTDumpFilter);
146 return llvm::make_unique<clang::ASTConsumer>();
155 // Initialize targets for clang module support.
179 FrontendFactory = newFrontendActionFactory<clang::ento::AnalysisAction>();