Title: [143168] trunk/Source/_javascript_Core
- Revision
- 143168
- Author
- [email protected]
- Date
- 2013-02-18 01:16:01 -0800 (Mon, 18 Feb 2013)
Log Message
Remove DFG::SpeculativeJIT::isKnownNumeric(), since it's not called from anywhere.
Rubber stamped by Andy Estes.
* dfg/DFGSpeculativeJIT.cpp:
(DFG):
* dfg/DFGSpeculativeJIT.h:
(SpeculativeJIT):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (143167 => 143168)
--- trunk/Source/_javascript_Core/ChangeLog 2013-02-18 09:11:43 UTC (rev 143167)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-02-18 09:16:01 UTC (rev 143168)
@@ -1,5 +1,16 @@
2013-02-18 Filip Pizlo <[email protected]>
+ Remove DFG::SpeculativeJIT::isKnownNumeric(), since it's not called from anywhere.
+
+ Rubber stamped by Andy Estes.
+
+ * dfg/DFGSpeculativeJIT.cpp:
+ (DFG):
+ * dfg/DFGSpeculativeJIT.h:
+ (SpeculativeJIT):
+
+2013-02-18 Filip Pizlo <[email protected]>
+
Remove DFG::SpeculativeJIT::isStrictInt32(), since it's not called from anywhere.
Rubber stampted by Andy Estes.
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp (143167 => 143168)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp 2013-02-18 09:11:43 UTC (rev 143167)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.cpp 2013-02-18 09:16:01 UTC (rev 143168)
@@ -944,19 +944,6 @@
return info.isJSInteger();
}
-bool SpeculativeJIT::isKnownNumeric(Node* node)
-{
- if (isInt32Constant(node) || isNumberConstant(node))
- return true;
-
- if (node->hasNumberResult())
- return true;
-
- GenerationInfo& info = m_generationInfo[node->virtualRegister()];
-
- return info.isJSInteger() || info.isJSDouble();
-}
-
bool SpeculativeJIT::isKnownCell(Node* node)
{
return m_generationInfo[node->virtualRegister()].isJSCell();
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h (143167 => 143168)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h 2013-02-18 09:11:43 UTC (rev 143167)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT.h 2013-02-18 09:16:01 UTC (rev 143168)
@@ -525,7 +525,6 @@
}
bool isKnownInteger(Node*);
- bool isKnownNumeric(Node*);
bool isKnownCell(Node*);
bool isKnownNotInteger(Node*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes