Title: [127376] trunk/Source/_javascript_Core
- Revision
- 127376
- Author
- [email protected]
- Date
- 2012-09-01 10:49:29 -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 inspector tests on Windows.
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 (127375 => 127376)
--- trunk/Source/_javascript_Core/ChangeLog 2012-09-01 17:47:39 UTC (rev 127375)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-09-01 17:49:29 UTC (rev 127376)
@@ -1,3 +1,13 @@
+2012-09-01 Geoffrey Garen <[email protected]>
+
+ Rolled back out a piece of <http://trac.webkit.org/changeset/127293>
+ because it broke inspector tests on Windows.
+
+ Shrink activation objects by half
+ https://bugs.webkit.org/show_bug.cgi?id=95591
+
+ Reviewed by Sam Weinig.
+
2012-09-01 Mark Lam <[email protected]>
LLInt C loop backend.
Modified: trunk/Source/_javascript_Core/runtime/JSActivation.h (127375 => 127376)
--- trunk/Source/_javascript_Core/runtime/JSActivation.h 2012-09-01 17:47:39 UTC (rev 127375)
+++ trunk/Source/_javascript_Core/runtime/JSActivation.h 2012-09-01 17:49:29 UTC (rev 127376)
@@ -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 : 27;
- unsigned m_isTornOff : 1;
- unsigned m_requiresDynamicChecks : 1;
- int m_argumentsRegister : 3;
+ 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