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

Side by Side Diff: tools/clang/blink_gc_plugin/BlinkGCPlugin.cpp

Issue 2902563002: blink_gc_plugin: disallow WeakMember<> fields in off-heap objects. (Closed)
Patch Set: add missing file from ps#3 Created 3 years, 7 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
« no previous file with comments | « no previous file | tools/clang/blink_gc_plugin/BlinkGCPluginConsumer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
(...skipping 17 matching lines...) Expand all
28 return llvm::make_unique<BlinkGCPluginConsumer>(instance, options_); 28 return llvm::make_unique<BlinkGCPluginConsumer>(instance, options_);
29 } 29 }
30 30
31 bool ParseArgs(const CompilerInstance&, 31 bool ParseArgs(const CompilerInstance&,
32 const std::vector<std::string>& args) override { 32 const std::vector<std::string>& args) override {
33 for (const auto& arg : args) { 33 for (const auto& arg : args) {
34 if (arg == "dump-graph") { 34 if (arg == "dump-graph") {
35 options_.dump_graph = true; 35 options_.dump_graph = true;
36 } else if (arg == "warn-unneeded-finalizer") { 36 } else if (arg == "warn-unneeded-finalizer") {
37 options_.warn_unneeded_finalizer = true; 37 options_.warn_unneeded_finalizer = true;
38 } else if (arg == "enable-weak-members-in-unmanaged-classes") {
39 options_.enable_weak_members_in_unmanaged_classes = true;
38 } else if (arg == "use-chromium-style-naming") { 40 } else if (arg == "use-chromium-style-naming") {
39 // TODO(dcheng): Remove this once the build no longer passes this flag. 41 // TODO(dcheng): Remove this once the build no longer passes this flag.
40 } else { 42 } else {
41 llvm::errs() << "Unknown blink-gc-plugin argument: " << arg << "\n"; 43 llvm::errs() << "Unknown blink-gc-plugin argument: " << arg << "\n";
42 return false; 44 return false;
43 } 45 }
44 } 46 }
45 return true; 47 return true;
46 } 48 }
47 49
48 private: 50 private:
49 BlinkGCPluginOptions options_; 51 BlinkGCPluginOptions options_;
50 }; 52 };
51 53
52 static FrontendPluginRegistry::Add<BlinkGCPluginAction> X( 54 static FrontendPluginRegistry::Add<BlinkGCPluginAction> X(
53 "blink-gc-plugin", 55 "blink-gc-plugin",
54 "Check Blink GC invariants"); 56 "Check Blink GC invariants");
OLDNEW
« no previous file with comments | « no previous file | tools/clang/blink_gc_plugin/BlinkGCPluginConsumer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698