Title: [203213] trunk/Source/_javascript_Core
Revision
203213
Author
[email protected]
Date
2016-07-13 22:24:43 -0700 (Wed, 13 Jul 2016)

Log Message

Fix the magic numbers for ARM traditional in InlineAccess.h
https://bugs.webkit.org/show_bug.cgi?id=159708

Reviewed by Saam Barati.

* bytecode/InlineAccess.h:
(JSC::InlineAccess::sizeForPropertyAccess):
(JSC::InlineAccess::sizeForPropertyReplace):
(JSC::InlineAccess::sizeForLengthAccess):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (203212 => 203213)


--- trunk/Source/_javascript_Core/ChangeLog	2016-07-14 04:55:27 UTC (rev 203212)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-07-14 05:24:43 UTC (rev 203213)
@@ -1,3 +1,15 @@
+2016-07-13  Csaba Osztrogonác  <[email protected]>
+
+        Fix the magic numbers for ARM traditional in InlineAccess.h
+        https://bugs.webkit.org/show_bug.cgi?id=159708
+
+        Reviewed by Saam Barati.
+
+        * bytecode/InlineAccess.h:
+        (JSC::InlineAccess::sizeForPropertyAccess):
+        (JSC::InlineAccess::sizeForPropertyReplace):
+        (JSC::InlineAccess::sizeForLengthAccess):
+
 2016-07-13  Michael Saboff  <[email protected]>
 
         YARR uses mixture of int and unsigned values to index into subject string

Modified: trunk/Source/_javascript_Core/bytecode/InlineAccess.h (203212 => 203213)


--- trunk/Source/_javascript_Core/bytecode/InlineAccess.h	2016-07-14 04:55:27 UTC (rev 203212)
+++ trunk/Source/_javascript_Core/bytecode/InlineAccess.h	2016-07-14 05:24:43 UTC (rev 203213)
@@ -54,7 +54,7 @@
 #if CPU(ARM_THUMB2)
         return 48;
 #else
-        return 50;
+        return 52;
 #endif
 #else
 #error "unsupported platform"
@@ -74,7 +74,7 @@
 #if CPU(ARM_THUMB2)
         return 48;
 #else
-        return 50;
+        return 48;
 #endif
 #else
 #error "unsupported platform"
@@ -97,7 +97,7 @@
 #if CPU(ARM_THUMB2)
         size_t size = 30;
 #else
-        size_t size = 50;
+        size_t size = 32;
 #endif
 #else
 #error "unsupported platform"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to