Title: [165909] trunk/Source/_javascript_Core
Revision
165909
Author
mhahnenb...@apple.com
Date
2014-03-19 12:32:43 -0700 (Wed, 19 Mar 2014)

Log Message

Normalize some of the older JSC options
https://bugs.webkit.org/show_bug.cgi?id=128753

Reviewed by Michael Saboff.

* runtime/Options.cpp:
(JSC::Options::initialize):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (165908 => 165909)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-19 19:24:30 UTC (rev 165908)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-19 19:32:43 UTC (rev 165909)
@@ -1,3 +1,13 @@
+2014-03-19  Mark Hahnenberg  <mhahnenb...@apple.com>
+
+        Normalize some of the older JSC options
+        https://bugs.webkit.org/show_bug.cgi?id=128753
+
+        Reviewed by Michael Saboff.
+
+        * runtime/Options.cpp:
+        (JSC::Options::initialize):
+
 2014-03-12  Mark Lam  <mark....@apple.com>
 
         Update type of local vars to match the type of String length.

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (165908 => 165909)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2014-03-19 19:24:30 UTC (rev 165908)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2014-03-19 19:32:43 UTC (rev 165909)
@@ -242,15 +242,6 @@
     JSC_OPTIONS(FOR_EACH_OPTION)
 #undef FOR_EACH_OPTION
         
-#if USE(CF) || OS(UNIX)
-    objectsAreImmortal() = !!getenv("JSImmortalZombieEnabled");
-    useZombieMode() = !!getenv("JSImmortalZombieEnabled") || !!getenv("JSZombieEnabled");
-
-    gcMaxHeapSize() = getenv("GCMaxHeapSize") ? HeapStatistics::parseMemoryAmount(getenv("GCMaxHeapSize")) : 0;
-    recordGCPauseTimes() = !!getenv("JSRecordGCPauseTimes");
-    logHeapStatisticsAtExit() = gcMaxHeapSize() || recordGCPauseTimes();
-#endif
-
     // Allow environment vars to override options if applicable.
     // The evn var should be the name of the option prefixed with
     // "JSC_".
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to