Title: [204600] trunk/Source/_javascript_Core
Revision
204600
Author
[email protected]
Date
2016-08-18 10:54:27 -0700 (Thu, 18 Aug 2016)

Log Message

Remove unused SlotVisitor::append() variant.
https://bugs.webkit.org/show_bug.cgi?id=160961

Reviewed by Saam Barati.

* heap/SlotVisitor.h:
* jit/JITWriteBarrier.h:
(JSC::JITWriteBarrier::get):
(JSC::SlotVisitor::append): Deleted.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (204599 => 204600)


--- trunk/Source/_javascript_Core/ChangeLog	2016-08-18 17:26:28 UTC (rev 204599)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-08-18 17:54:27 UTC (rev 204600)
@@ -1,3 +1,15 @@
+2016-08-18  Mark Lam  <[email protected]>
+
+        Remove unused SlotVisitor::append() variant.
+        https://bugs.webkit.org/show_bug.cgi?id=160961
+
+        Reviewed by Saam Barati.
+
+        * heap/SlotVisitor.h:
+        * jit/JITWriteBarrier.h:
+        (JSC::JITWriteBarrier::get):
+        (JSC::SlotVisitor::append): Deleted.
+
 2016-08-18  Saam Barati  <[email protected]>
 
         Make @Array(size) a bytecode intrinsic

Modified: trunk/Source/_javascript_Core/heap/SlotVisitor.h (204599 => 204600)


--- trunk/Source/_javascript_Core/heap/SlotVisitor.h	2016-08-18 17:26:28 UTC (rev 204599)
+++ trunk/Source/_javascript_Core/heap/SlotVisitor.h	2016-08-18 17:54:27 UTC (rev 204600)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2013, 2015 Apple Inc. All rights reserved.
+ * Copyright (C) 2011-2013, 2015-2016 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -65,7 +65,6 @@
 
     void append(ConservativeRoots&);
     
-    template<typename T> void append(JITWriteBarrier<T>*);
     template<typename T> void append(WriteBarrierBase<T>*);
     template<typename T> void appendHidden(WriteBarrierBase<T>*);
     template<typename Iterator> void append(Iterator begin , Iterator end);

Modified: trunk/Source/_javascript_Core/jit/JITWriteBarrier.h (204599 => 204600)


--- trunk/Source/_javascript_Core/jit/JITWriteBarrier.h	2016-08-18 17:26:28 UTC (rev 204599)
+++ trunk/Source/_javascript_Core/jit/JITWriteBarrier.h	2016-08-18 17:54:27 UTC (rev 204600)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011 Apple Inc. All rights reserved.
+ * Copyright (C) 2011, 2016 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -135,13 +135,8 @@
     }
 };
 
-template<typename T> inline void SlotVisitor::append(JITWriteBarrier<T>* slot)
-{
-    internalAppend(0, slot->get());
-}
+} // namespace JSC
 
-}
-
 #endif // ENABLE(JIT)
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to