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

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

Issue 2068983003: Revert of GC plugin: improve error reporting when tracing illegal fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « tools/clang/blink_gc_plugin/CheckFieldsVisitor.h ('k') | tools/clang/blink_gc_plugin/Config.h » ('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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "CheckFieldsVisitor.h" 5 #include "CheckFieldsVisitor.h"
6 6
7 #include <cassert> 7 #include <cassert>
8 8
9 #include "BlinkGCPluginOptions.h" 9 #include "BlinkGCPluginOptions.h"
10 #include "RecordInfo.h" 10 #include "RecordInfo.h"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 invalid_fields_.push_back(std::make_pair(current_, 79 invalid_fields_.push_back(std::make_pair(current_,
80 kMemberToGCUnmanaged)); 80 kMemberToGCUnmanaged));
81 return; 81 return;
82 } 82 }
83 83
84 if (!Parent() || !edge->value()->IsGCAllocated()) 84 if (!Parent() || !edge->value()->IsGCAllocated())
85 return; 85 return;
86 86
87 // Disallow OwnPtr<T>, RefPtr<T> and T* to stack-allocated types. 87 // Disallow OwnPtr<T>, RefPtr<T> and T* to stack-allocated types.
88 if (Parent()->IsOwnPtr() || 88 if (Parent()->IsOwnPtr() ||
89 Parent()->IsUniquePtr() ||
90 Parent()->IsRefPtr() || 89 Parent()->IsRefPtr() ||
91 (stack_allocated_host_ && Parent()->IsRawPtr())) { 90 (stack_allocated_host_ && Parent()->IsRawPtr())) {
92 invalid_fields_.push_back(std::make_pair( 91 invalid_fields_.push_back(std::make_pair(
93 current_, InvalidSmartPtr(Parent()))); 92 current_, InvalidSmartPtr(Parent())));
94 return; 93 return;
95 } 94 }
96 if (Parent()->IsRawPtr()) { 95 if (Parent()->IsRawPtr()) {
97 RawPtr* rawPtr = static_cast<RawPtr*>(Parent()); 96 RawPtr* rawPtr = static_cast<RawPtr*>(Parent());
98 Error error = rawPtr->HasReferenceType() ? 97 Error error = rawPtr->HasReferenceType() ?
99 kReferencePtrToGCManaged : kRawPtrToGCManaged; 98 kReferencePtrToGCManaged : kRawPtrToGCManaged;
100 invalid_fields_.push_back(std::make_pair(current_, error)); 99 invalid_fields_.push_back(std::make_pair(current_, error));
101 } 100 }
102 } 101 }
103 102
104 void CheckFieldsVisitor::AtCollection(Collection* edge) { 103 void CheckFieldsVisitor::AtCollection(Collection* edge) {
105 if (edge->on_heap() && Parent() && Parent()->IsOwnPtr()) 104 if (edge->on_heap() && Parent() && Parent()->IsOwnPtr())
106 invalid_fields_.push_back(std::make_pair(current_, kOwnPtrToGCManaged)); 105 invalid_fields_.push_back(std::make_pair(current_, kOwnPtrToGCManaged));
107 if (edge->on_heap() && Parent() && Parent()->IsUniquePtr())
108 invalid_fields_.push_back(std::make_pair(current_, kUniquePtrToGCManaged));
109 } 106 }
110 107
111 CheckFieldsVisitor::Error CheckFieldsVisitor::InvalidSmartPtr(Edge* ptr) { 108 CheckFieldsVisitor::Error CheckFieldsVisitor::InvalidSmartPtr(Edge* ptr) {
112 if (ptr->IsRawPtr()) { 109 if (ptr->IsRawPtr()) {
113 if (static_cast<RawPtr*>(ptr)->HasReferenceType()) 110 if (static_cast<RawPtr*>(ptr)->HasReferenceType())
114 return kReferencePtrToGCManaged; 111 return kReferencePtrToGCManaged;
115 else 112 else
116 return kRawPtrToGCManaged; 113 return kRawPtrToGCManaged;
117 } 114 }
118 if (ptr->IsRefPtr()) 115 if (ptr->IsRefPtr())
119 return kRefPtrToGCManaged; 116 return kRefPtrToGCManaged;
120 if (ptr->IsOwnPtr()) 117 if (ptr->IsOwnPtr())
121 return kOwnPtrToGCManaged; 118 return kOwnPtrToGCManaged;
122 if (ptr->IsUniquePtr())
123 return kUniquePtrToGCManaged;
124 assert(false && "Unknown smart pointer kind"); 119 assert(false && "Unknown smart pointer kind");
125 } 120 }
OLDNEW
« no previous file with comments | « tools/clang/blink_gc_plugin/CheckFieldsVisitor.h ('k') | tools/clang/blink_gc_plugin/Config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698