Title: [288855] branches/safari-614.1.2-branch/Source/_javascript_Core
Revision
288855
Author
[email protected]
Date
2022-01-31 16:02:34 -0800 (Mon, 31 Jan 2022)

Log Message

Cherry-pick r288854. rdar://problem/88299213

    Try-reserving Structure heap after reserving all the other heaps including JIT heap
    https://bugs.webkit.org/show_bug.cgi?id=235922

    Reviewed by Saam Barati.

    Structure heap should be reserved after reserving all the other heaps including JIT heap.

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

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@288854 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-614.1.2-branch/Source/_javascript_Core/ChangeLog (288854 => 288855)


--- branches/safari-614.1.2-branch/Source/_javascript_Core/ChangeLog	2022-01-31 23:50:49 UTC (rev 288854)
+++ branches/safari-614.1.2-branch/Source/_javascript_Core/ChangeLog	2022-02-01 00:02:34 UTC (rev 288855)
@@ -1,3 +1,32 @@
+2022-01-31  Russell Epstein  <[email protected]>
+
+        Cherry-pick r288854. rdar://problem/88299213
+
+    Try-reserving Structure heap after reserving all the other heaps including JIT heap
+    https://bugs.webkit.org/show_bug.cgi?id=235922
+    
+    Reviewed by Saam Barati.
+    
+    Structure heap should be reserved after reserving all the other heaps including JIT heap.
+    
+    * runtime/InitializeThreading.cpp:
+    (JSC::initialize):
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@288854 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2022-01-31  Yusuke Suzuki  <[email protected]>
+
+            Try-reserving Structure heap after reserving all the other heaps including JIT heap
+            https://bugs.webkit.org/show_bug.cgi?id=235922
+
+            Reviewed by Saam Barati.
+
+            Structure heap should be reserved after reserving all the other heaps including JIT heap.
+
+            * runtime/InitializeThreading.cpp:
+            (JSC::initialize):
+
 2022-01-31  Keith Miller  <[email protected]>
 
         Reland StructureID overhaul

Modified: branches/safari-614.1.2-branch/Source/_javascript_Core/runtime/InitializeThreading.cpp (288854 => 288855)


--- branches/safari-614.1.2-branch/Source/_javascript_Core/runtime/InitializeThreading.cpp	2022-01-31 23:50:49 UTC (rev 288854)
+++ branches/safari-614.1.2-branch/Source/_javascript_Core/runtime/InitializeThreading.cpp	2022-02-01 00:02:34 UTC (rev 288855)
@@ -66,7 +66,6 @@
 #endif
         {
             Options::AllowUnfinalizedAccessScope scope;
-            StructureAlignedMemoryAllocator::initializeStructureAddressSpace();
             JITOperationList::initialize();
             ExecutableAllocator::initialize();
             VM::computeCanUseJIT();
@@ -78,6 +77,7 @@
                 g_jscConfig.arm64eHashPins.initializeAtStartup();
 #endif
             }
+            StructureAlignedMemoryAllocator::initializeStructureAddressSpace();
         }
         Options::finalize();
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to