Title: [127373] trunk/Source/_javascript_Core
Revision
127373
Author
[email protected]
Date
2012-09-01 10:22:02 -0700 (Sat, 01 Sep 2012)

Log Message

        Rolled back in a piece of <http://trac.webkit.org/changeset/127293>.

            Shrink activation objects by half
            https://bugs.webkit.org/show_bug.cgi?id=95591

            Reviewed by Sam Weinig.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (127372 => 127373)


--- trunk/Source/_javascript_Core/ChangeLog	2012-09-01 16:14:12 UTC (rev 127372)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-09-01 17:22:02 UTC (rev 127373)
@@ -7,6 +7,18 @@
 
             Reviewed by Sam Weinig.
 
+        * runtime/JSActivation.h:
+        (JSActivation):
+
+2012-09-01  Geoffrey Garen  <[email protected]>
+
+        Rolled back in a piece of <http://trac.webkit.org/changeset/127293>.
+
+            Shrink activation objects by half
+            https://bugs.webkit.org/show_bug.cgi?id=95591
+
+            Reviewed by Sam Weinig.
+
         * runtime/JSActivation.cpp:
         (JSC::JSActivation::JSActivation):
         * runtime/JSGlobalObject.cpp:

Modified: trunk/Source/_javascript_Core/runtime/JSActivation.h (127372 => 127373)


--- trunk/Source/_javascript_Core/runtime/JSActivation.h	2012-09-01 16:14:12 UTC (rev 127372)
+++ trunk/Source/_javascript_Core/runtime/JSActivation.h	2012-09-01 17:22:02 UTC (rev 127373)
@@ -96,11 +96,11 @@
         size_t registerArraySizeInBytes();
 
         StorageBarrier m_registerArray; // Independent copy of registers, used when a variable object copies its registers out of the register file.
-        int m_numCapturedArgs;
-        int m_numCapturedVars : 30;
-        bool m_isTornOff : 1;
-        bool m_requiresDynamicChecks : 1;
-        int m_argumentsRegister;
+        unsigned m_numCapturedArgs;
+        unsigned m_numCapturedVars : 27;
+        unsigned m_isTornOff : 1;
+        unsigned m_requiresDynamicChecks : 1;
+        int m_argumentsRegister : 3;
     };
 
     JSActivation* asActivation(JSValue);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to