OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This clang plugin checks various invariants of the Blink garbage | 5 // This clang plugin checks various invariants of the Blink garbage |
6 // collection infrastructure. | 6 // collection infrastructure. |
7 // | 7 // |
8 // Errors are described at: | 8 // Errors are described at: |
9 // http://www.chromium.org/developers/blink-gc-plugin-errors | 9 // http://www.chromium.org/developers/blink-gc-plugin-errors |
10 | 10 |
11 #include "BlinkGCPluginConsumer.h" | 11 #include "BlinkGCPluginConsumer.h" |
12 #include "BlinkGCPluginOptions.h" | 12 #include "BlinkGCPluginOptions.h" |
13 #include "Config.h" | 13 #include "Config.h" |
14 | 14 |
15 #include "clang/Frontend/CompilerInstance.h" | 15 #include "clang/Frontend/CompilerInstance.h" |
16 #include "clang/Frontend/FrontendPluginRegistry.h" | 16 #include "clang/Frontend/FrontendPluginRegistry.h" |
17 | 17 |
18 using namespace clang; | 18 using namespace clang; |
19 | 19 |
20 class BlinkGCPluginAction : public PluginASTAction { | 20 class BlinkGCPluginAction : public PluginASTAction { |
21 public: | 21 public: |
22 BlinkGCPluginAction() {} | 22 BlinkGCPluginAction() {} |
23 | 23 |
24 protected: | 24 protected: |
25 // Overridden from PluginASTAction: | 25 // Overridden from PluginASTAction: |
26 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer( | 26 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance& instance, |
27 CompilerInstance& instance, | 27 llvm::StringRef ref) override { |
28 llvm::StringRef ref) { | |
29 return llvm::make_unique<BlinkGCPluginConsumer>(instance, options_); | 28 return llvm::make_unique<BlinkGCPluginConsumer>(instance, options_); |
30 } | 29 } |
31 | 30 |
32 virtual bool ParseArgs(const CompilerInstance&, | 31 bool ParseArgs(const CompilerInstance&, |
33 const std::vector<std::string>& args) { | 32 const std::vector<std::string>& args) override { |
34 for (const auto& arg : args) { | 33 for (const auto& arg : args) { |
35 if (arg == "dump-graph") { | 34 if (arg == "dump-graph") { |
36 options_.dump_graph = true; | 35 options_.dump_graph = true; |
37 } else if (arg == "warn-unneeded-finalizer") { | 36 } else if (arg == "warn-unneeded-finalizer") { |
38 options_.warn_unneeded_finalizer = true; | 37 options_.warn_unneeded_finalizer = true; |
| 38 } else if (arg == "use-chromium-style-naming") { |
| 39 options_.use_chromium_style_naming = true; |
39 } else { | 40 } else { |
40 llvm::errs() << "Unknown blink-gc-plugin argument: " << arg << "\n"; | 41 llvm::errs() << "Unknown blink-gc-plugin argument: " << arg << "\n"; |
41 return false; | 42 return false; |
42 } | 43 } |
43 } | 44 } |
44 return true; | 45 return true; |
45 } | 46 } |
46 | 47 |
47 private: | 48 private: |
48 BlinkGCPluginOptions options_; | 49 BlinkGCPluginOptions options_; |
49 }; | 50 }; |
50 | 51 |
51 static FrontendPluginRegistry::Add<BlinkGCPluginAction> X( | 52 static FrontendPluginRegistry::Add<BlinkGCPluginAction> X( |
52 "blink-gc-plugin", | 53 "blink-gc-plugin", |
53 "Check Blink GC invariants"); | 54 "Check Blink GC invariants"); |
OLD | NEW |