Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: tools/clang/plugins/FindBadConstructsAction.cpp

Issue 1385193002: Bisect clang Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 246985 Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "FindBadConstructsAction.h"
6
7 #include "clang/AST/ASTConsumer.h"
8 #include "clang/Frontend/FrontendPluginRegistry.h"
9
10 #include "FindBadConstructsConsumer.h"
11
12 using namespace clang;
13
14 namespace chrome_checker {
15
16 namespace {
17
18 class PluginConsumer : public ASTConsumer {
19 public:
20 PluginConsumer(CompilerInstance* instance, const Options& options)
21 : visitor_(*instance, options) {}
22
23 void HandleTranslationUnit(clang::ASTContext& context) override {
24 visitor_.TraverseDecl(context.getTranslationUnitDecl());
25 }
26
27 private:
28 FindBadConstructsConsumer visitor_;
29 };
30
31 } // namespace
32
33 FindBadConstructsAction::FindBadConstructsAction() {
34 }
35
36 std::unique_ptr<ASTConsumer> FindBadConstructsAction::CreateASTConsumer(
37 CompilerInstance& instance,
38 llvm::StringRef ref) {
39 if (options_.with_ast_visitor)
40 return llvm::make_unique<PluginConsumer>(&instance, options_);
41 return llvm::make_unique<FindBadConstructsConsumer>(instance, options_);
42 }
43
44 bool FindBadConstructsAction::ParseArgs(const CompilerInstance& instance,
45 const std::vector<std::string>& args) {
46 bool parsed = true;
47
48 for (size_t i = 0; i < args.size() && parsed; ++i) {
49 if (args[i] == "check-base-classes") {
50 // TODO(rsleevi): Remove this once http://crbug.com/123295 is fixed.
51 options_.check_base_classes = true;
52 } else if (args[i] == "enforce-blink") {
53 options_.enforce_blink = true;
54 } else if (args[i] == "check-enum-last-value") {
55 // TODO(tsepez): Enable this by default once http://crbug.com/356815
56 // and http://crbug.com/356816 are fixed.
57 options_.check_enum_last_value = true;
58 } else if (args[i] == "with-ast-visitor") {
59 options_.with_ast_visitor = true;
60 } else if (args[i] == "check-templates") {
61 options_.check_templates = true;
62 } else if (args[i] == "warn-only") {
63 options_.warn_only = true;
64 } else {
65 parsed = false;
66 llvm::errs() << "Unknown clang plugin argument: " << args[i] << "\n";
67 }
68 }
69
70 return parsed;
71 }
72
73 } // namespace chrome_checker
74
75 static FrontendPluginRegistry::Add<chrome_checker::FindBadConstructsAction> X(
76 "find-bad-constructs",
77 "Finds bad C++ constructs");
OLDNEW
« no previous file with comments | « tools/clang/plugins/FindBadConstructsAction.h ('k') | tools/clang/plugins/FindBadConstructsConsumer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698