Title: [112011] trunk/Source/_javascript_Core
Revision
112011
Author
[email protected]
Date
2012-03-24 12:13:27 -0700 (Sat, 24 Mar 2012)

Log Message

Increase getByIdSlowCase ConstantSpace/InstructionSpace for CPU(ARM_TRADITIONAL)
https://bugs.webkit.org/show_bug.cgi?id=81521

Increase sequenceGetByIdSlowCaseConstantSpace and sequenceGetByIdSlowCaseInstructionSpace
for CPU(ARM_TRADITIONAL) to fit actual need.

Patch by Yong Li <[email protected]> on 2012-03-24
Reviewed by Oliver Hunt.

* jit/JIT.h:
(JIT):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (112010 => 112011)


--- trunk/Source/_javascript_Core/ChangeLog	2012-03-24 17:06:17 UTC (rev 112010)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-03-24 19:13:27 UTC (rev 112011)
@@ -1,3 +1,16 @@
+2012-03-24  Yong Li  <[email protected]>
+
+        Increase getByIdSlowCase ConstantSpace/InstructionSpace for CPU(ARM_TRADITIONAL)
+        https://bugs.webkit.org/show_bug.cgi?id=81521
+
+        Increase sequenceGetByIdSlowCaseConstantSpace and sequenceGetByIdSlowCaseInstructionSpace
+        for CPU(ARM_TRADITIONAL) to fit actual need.
+
+        Reviewed by Oliver Hunt.
+
+        * jit/JIT.h:
+        (JIT):
+
 2012-03-23  Filip Pizlo  <[email protected]>
 
         DFG Fixup should be able to short-circuit trivial ValueToInt32's

Modified: trunk/Source/_javascript_Core/jit/JIT.h (112010 => 112011)


--- trunk/Source/_javascript_Core/jit/JIT.h	2012-03-24 17:06:17 UTC (rev 112010)
+++ trunk/Source/_javascript_Core/jit/JIT.h	2012-03-24 19:13:27 UTC (rev 112011)
@@ -452,8 +452,8 @@
         static const int sequenceGetByIdHotPathInstructionSpace = 36;
         static const int sequenceGetByIdHotPathConstantSpace = 4;
         // sequenceGetByIdSlowCase
-        static const int sequenceGetByIdSlowCaseInstructionSpace = 56;
-        static const int sequenceGetByIdSlowCaseConstantSpace = 3;
+        static const int sequenceGetByIdSlowCaseInstructionSpace = 64;
+        static const int sequenceGetByIdSlowCaseConstantSpace = 4;
         // sequencePutById
         static const int sequencePutByIdInstructionSpace = 36;
         static const int sequencePutByIdConstantSpace = 4;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to