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

Unified Diff: third_party/WebKit/Source/willbe.pl

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/willbe.pl
diff --git a/third_party/WebKit/Source/willbe.pl b/third_party/WebKit/Source/willbe.pl
new file mode 100644
index 0000000000000000000000000000000000000000..1ef4a83b2ee2e320e057c2cd16f3ba397cd40599
--- /dev/null
+++ b/third_party/WebKit/Source/willbe.pl
@@ -0,0 +1,173 @@
+use strict;
sof 2016/02/09 15:45:45 Intentional inclusion of this file?
+
+my %willbe_types1 = (
+ PassRefPtrWillBeRawPtr => "RawPtr",
+ PassOwnPtrWillBeRawPtr => "RawPtr",
+ WillBeGarbageCollectedObject => "XXXXXX",
+ );
+
+my %willbe_types2 = (
+ RefCountedWillBeGarbageCollected => "GarbageCollected",
+ RefCountedWillBeGarbageCollectedFinalized => "GarbageCollectedFinalized",
+ RefCountedWillBeRefCountedGarbageCollected => "RefCountedGarbageCollected",
+ RefCountedGarbageCollectedWillBeGarbageCollectedFinalized => "GarbageCollectedFinalized",
+ RefCountedWillBeNoBase => "DummyBase",
+ RefCountedGarbageCollectedWillBeNoBase => "DummyBase",
+ ThreadSafeRefCountedWillBeGarbageCollected => "GarbageCollected",
+ ThreadSafeRefCountedWillBeGarbageCollectedFinalized => "GarbageCollectedFinalized",
+ PersistentWillBeMember => "Member",
+ CrossThreadPersistentWillBeMember => "Member",
+ RefPtrWillBePersistent => "Persistent",
+ RefPtrWillBeRawPtr => "RawPtr",
+ RefPtrWillBeMember => "Member",
+ RefPtrWillBeWeakMember => "WeakMember",
+ RefPtrWillBeWeakPersistent => "WeakPersistent",
+ RefPtrWillBeCrossThreadPersistent => "CrossThreadPersistent",
+ RawPtrWillBeMember => "Member",
+ RawPtrWillBePersistent => "Persistent",
+ RawPtrWillBeWeakMember => "WeakMember",
+ RawPtrWillBeWeakPersistent => "WeakPersistent",
+ RawPtrWillBeUntracedMember => "UntracedMember",
+ OwnPtrWillBeCrossThreadPersistent => "CrossThreadPersistent",
+ OwnPtrWillBeMember => "Member",
+ OwnPtrWillBePersistent => "Persistent",
+ OwnPtrWillBeRawPtr => "RawPtr",
+ WeakPtrWillBeCrossThreadWeakPersistent => "CrossThreadWeakPersistent",
+ WeakPtrWillBeMember => "Member",
+ WeakPtrWillBeRawPtr => "RawPtr",
+ WeakPtrWillBeWeakMember => "WeakMember",
+ WeakPtrWillBeWeakPersistent => "WeakPersistent",
+ NoBaseWillBeGarbageCollected => "GarbageCollected",
+ NoBaseWillBeGarbageCollectedFinalized => "GarbageCollectedFinalized",
+ NoBaseWillBeRefCountedGarbageCollected => "RefCountedGarbageCollected",
+ PersistentHeapHashMapWillBeHeapHashMap => "HeapHashMap",
+ PersistentHeapHashSetWillBeHeapHashSet => "HeapHashSet",
+ PersistentHeapDequeWillBeHeapDeque => "HeapDeque",
+ PersistentHeapVectorWillBeHeapVector => "HeapVector",
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN => "USING_GARBAGE_COLLECTED_MIXIN",
+ WILL_BE_USING_PRE_FINALIZER => "USING_PRE_FINALIZER",
+ );
+
+my %willbe_types3 = (
+ WillBeGarbageCollected => "GarbageCollected",
+ WillBeHeapHashMap => "HeapHashMap",
+ WillBePersistentHeapHashMap => "PersistentHeapHashMap",
+ WillBeHeapHashSet => "HeapHashSet",
+ WillBePersistentHeapHashSet => "PersistentHeapHashSet",
+ WillBeHeapLinkedHashSet => "HeapLinkedHashSet",
+ WillBePersistentHeapLinkedHashSet => "PersistentHeapLinkedHashSet",
+ WillBeHeapListHashSet => "HeapListHashSet",
+ WillBePersistentHeapListHashSet => "PersistentHeapListHashSet",
+ WillBeHeapVector => "HeapVector",
+ WillBePersistentHeapVector => "PersistentHeapVector",
+ WillBeHeapDeque => "HeapDeque",
+ WillBePersistentHeapDeque => "PersistentHeapDeque",
+ WillBeHeapHashCountedSet => "HeapHashCountedSet",
+ WillBePersistentHeapHashCountedSet => "PersistentHeapHashCountedSet",
+ WillBeGarbageCollectedMixin => "GarbageCollectedMixin",
+ WillBeHeapSupplement => "HeapSupplement",
+ WillBeHeapSupplementable => "HeapSupplementable",
+ WillBeHeapTerminatedArray => "HeapTerminatedArray",
+ WillBeHeapTerminatedArrayBuilder => "HeapTerminatedArrayBuilder",
+ WillBeHeapLinkedStack => "HeapLinkedStack",
+ );
+
+my %willbe_types4 = (
+ XXXXXX => "WillBeGarbageCollectedObject",
+ );
+
+my @removed_macros = qw(
+ USING_FAST_MALLOC_WILL_BE_REMOVED
+ USING_FAST_MALLOC_WITH_TYPE_NAME_WILL_BE_REMOVED
+ DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED
+ DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED
+ DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED
+ EAGERLY_FINALIZE_WILL_BE_REMOVED
+ );
+
+my @adoptref_types = qw(
+ adoptRefWillBeNoop
+ adoptPtrWillBeNoop
+ );
+
+for my $key (keys %willbe_types1) {
+ my $command = "grep -rl '" . $key . "' * | grep -v '\\.pl' | grep -v 'platform/heap/' | xargs sed -i 's/" . $key . "/" . $willbe_types1{$key} . "/g'";
+ print $command , $/;
+ system $command;
+}
+
+for my $key (keys %willbe_types2) {
+ my $command = "grep -rl '" . $key . "' * | grep -v '\\.pl' | grep -v 'platform/heap/' | xargs sed -i 's/" . $key . "/" . $willbe_types2{$key} . "/g'";
+ print $command , $/;
+ system $command;
+}
+
+for my $key (keys %willbe_types3) {
+ my $command = "grep -rl '" . $key . "' * | grep -v '\\.pl' | grep -v 'platform/heap/' | xargs sed -i 's/" . $key . "/" . $willbe_types3{$key} . "/g'";
+ print $command , $/;
+ system $command;
+}
+
+for my $key (keys %willbe_types4) {
+ my $command = "grep -rl '" . $key . "' * | grep -v '\\.pl' | grep -v 'platform/heap/' | xargs sed -i 's/" . $key . "/" . $willbe_types4{$key} . "/g'";
+ print $command , $/;
+ system $command;
+}
+
+my $command = "grep -rl DummyBase | grep -v '\\.pl' | grep -v 'platform/heap/' | xargs sed -i 's/public\\s\\+DummyBase<\\([^>]\\+\\)>,\\?\\s\\+//g'";
+print $command, $/;
+system $command;
+my @files = `grep -rl 'DummyBase<' | grep -v '\\.pl' | grep -v 'platform/heap/'`;
+die if @files;
+
+for my $macro (@removed_macros) {
+ my $command = "grep -rl '" . $macro . "' * | grep -v '\\.pl' | grep -v 'platform/heap/'";
+ print $command, $/;
+ my @files = `$command`;
+ for my $file (@files) {
+ my $str = "";
+ my $skipped = 0;
+ print $file;
+ chomp $file;
+ open FH, "<", $file or die;
+ while (my $line = <FH>) {
+ if ($skipped && $line =~ /^[\s\t]*\n$/) {
+ next;
+ }
+ $skipped = 0;
+ if ($line =~ /${macro}/) {
+ if ($line =~ /^[\s\t]*${macro}(\([^()]*\))?;?\s*\n$/) {
+ $skipped = 1;
+ next;
+ } else {
+ $line =~ s/[\s\t]*${macro}(\([^()]*\))?;?//;
+ }
+ }
+ $str .= $line;
+ }
+ close FH;
+ open FH, ">", $file or die;
+ print FH $str;
+ close FH;
+ }
+}
+
+my $openclose;
+$openclose = qr/\([^()]*(?:(??{$openclose})[^()]*)*\)/;
+for my $type (@adoptref_types) {
+ my $command = "grep -rl '" . $type . "' * | grep -v '\\.pl' | grep -v 'platform/heap/'";
+ print $command, $/;
+ my @files = `$command`;
+ for my $file (@files) {
+ print $file;
+ chomp $file;
+ open FH, "<", $file or die;
+ my @lines = <FH>;
+ my $str = join "", @lines;
+ $str =~ s/${type}\s*($openclose)/\1/mg;
+ close FH;
+ open FH, ">", $file or die;
+ print FH $str;
+ close FH;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698