Title: [90443] trunk/Source/_javascript_Core
- Revision
- 90443
- Author
- [email protected]
- Date
- 2011-07-06 00:44:05 -0700 (Wed, 06 Jul 2011)
Log Message
Calls on 32 bit machines are failed after r90423
https://bugs.webkit.org/show_bug.cgi?id=63980
Patch by Zoltan Herczeg <[email protected]> on 2011-07-06
Reviewed by Gavin Barraclough.
Copy the necessary lines from JITCall.cpp.
* jit/JITCall32_64.cpp:
(JSC::JIT::compileOpCall):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (90442 => 90443)
--- trunk/Source/_javascript_Core/ChangeLog 2011-07-06 07:39:30 UTC (rev 90442)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-07-06 07:44:05 UTC (rev 90443)
@@ -1,3 +1,15 @@
+2011-07-06 Zoltan Herczeg <[email protected]>
+
+ Calls on 32 bit machines are failed after r90423
+ https://bugs.webkit.org/show_bug.cgi?id=63980
+
+ Reviewed by Gavin Barraclough.
+
+ Copy the necessary lines from JITCall.cpp.
+
+ * jit/JITCall32_64.cpp:
+ (JSC::JIT::compileOpCall):
+
2011-07-05 Filip Pizlo <[email protected]>
DFG JIT virtual call implementation is inefficient.
Modified: trunk/Source/_javascript_Core/jit/JITCall32_64.cpp (90442 => 90443)
--- trunk/Source/_javascript_Core/jit/JITCall32_64.cpp 2011-07-06 07:39:30 UTC (rev 90442)
+++ trunk/Source/_javascript_Core/jit/JITCall32_64.cpp 2011-07-06 07:44:05 UTC (rev 90443)
@@ -211,7 +211,10 @@
addSlowCase(jumpToSlow);
ASSERT_JIT_OFFSET(differenceBetween(addressOfLinkedFunctionCheck, jumpToSlow), patchOffsetOpCallCompareToJump);
+ ASSERT(m_callStructureStubCompilationInfo.size() == callLinkInfoIndex);
+ m_callStructureStubCompilationInfo.append(StructureStubCompilationInfo());
m_callStructureStubCompilationInfo[callLinkInfoIndex].hotPathBegin = addressOfLinkedFunctionCheck;
+ m_callStructureStubCompilationInfo[callLinkInfoIndex].isCall = opcodeID != op_construct;
addSlowCase(branch32(NotEqual, regT1, TrustedImm32(JSValue::CellTag)));
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes