Title: [127360] trunk/Source/_javascript_Core
- Revision
- 127360
- Author
- [email protected]
- Date
- 2012-09-01 00:15:24 -0700 (Sat, 01 Sep 2012)
Log Message
2012-09-01 Geoffrey Garen <[email protected]>
Rolled back out a piece of <http://trac.webkit.org/changeset/127293>
because it broke Window inspector tests.
Shrink activation objects by half
https://bugs.webkit.org/show_bug.cgi?id=95591
Reviewed by Sam Weinig.
* runtime/JSActivation.h:
(JSActivation):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (127359 => 127360)
--- trunk/Source/_javascript_Core/ChangeLog 2012-09-01 05:38:03 UTC (rev 127359)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-09-01 07:15:24 UTC (rev 127360)
@@ -1,3 +1,16 @@
+2012-09-01 Geoffrey Garen <[email protected]>
+
+ Rolled back out a piece of <http://trac.webkit.org/changeset/127293>
+ because it broke Window inspector tests.
+
+ Shrink activation objects by half
+ https://bugs.webkit.org/show_bug.cgi?id=95591
+
+ Reviewed by Sam Weinig.
+
+ * runtime/JSActivation.h:
+ (JSActivation):
+
2012-08-31 Filip Pizlo <[email protected]>
Unreviewed, attempt to fix Windows, take two.
Modified: trunk/Source/_javascript_Core/runtime/JSActivation.h (127359 => 127360)
--- trunk/Source/_javascript_Core/runtime/JSActivation.h 2012-09-01 05:38:03 UTC (rev 127359)
+++ trunk/Source/_javascript_Core/runtime/JSActivation.h 2012-09-01 07:15:24 UTC (rev 127360)
@@ -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.
- unsigned m_numCapturedArgs;
- unsigned m_numCapturedVars : 28;
- unsigned m_isTornOff : 1;
- unsigned m_requiresDynamicChecks : 1;
- unsigned m_argumentsRegister : 2;
+ int m_numCapturedArgs;
+ int m_numCapturedVars : 30;
+ bool m_isTornOff : 1;
+ bool m_requiresDynamicChecks : 1;
+ int m_argumentsRegister;
};
JSActivation* asActivation(JSValue);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes