Title: [143167] trunk/Source/_javascript_Core
Revision
143167
Author
[email protected]
Date
2013-02-18 01:11:43 -0800 (Mon, 18 Feb 2013)

Log Message

Remove DFG::SpeculativeJIT::isStrictInt32(), since it's not called from anywhere.

Rubber stampted by Andy Estes.

* dfg/DFGSpeculativeJIT.cpp:
(DFG):
* dfg/DFGSpeculativeJIT.h:
(SpeculativeJIT):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (143166 => 143167)


--- trunk/Source/_javascript_Core/ChangeLog	2013-02-18 09:00:56 UTC (rev 143166)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-02-18 09:11:43 UTC (rev 143167)
@@ -1,5 +1,16 @@
 2013-02-18  Filip Pizlo  <[email protected]>
 
+        Remove DFG::SpeculativeJIT::isStrictInt32(), since it's not called from anywhere.
+
+        Rubber stampted by Andy Estes.
+
+        * dfg/DFGSpeculativeJIT.cpp:
+        (DFG):
+        * dfg/DFGSpeculativeJIT.h:
+        (SpeculativeJIT):
+
+2013-02-18  Filip Pizlo  <[email protected]>
+
         Remove dead code for ValueToNumber from the DFG.
 
         Rubber stamped by Andy Estes.

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp (143166 => 143167)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2013-02-18 09:00:56 UTC (rev 143166)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp	2013-02-18 09:11:43 UTC (rev 143167)
@@ -931,16 +931,6 @@
     }
 }
 
-bool SpeculativeJIT::isStrictInt32(Node* node)
-{
-    if (isInt32Constant(node))
-        return true;
-    
-    GenerationInfo& info = m_generationInfo[node->virtualRegister()];
-    
-    return info.registerFormat() == DataFormatInteger;
-}
-
 bool SpeculativeJIT::isKnownInteger(Node* node)
 {
     if (isInt32Constant(node))

Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h (143166 => 143167)


--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2013-02-18 09:00:56 UTC (rev 143166)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h	2013-02-18 09:11:43 UTC (rev 143167)
@@ -524,8 +524,6 @@
         }
     }
     
-    bool isStrictInt32(Node*);
-    
     bool isKnownInteger(Node*);
     bool isKnownNumeric(Node*);
     bool isKnownCell(Node*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to