Changeset 237024 in webkit


Ignore:
Timestamp:
Oct 10, 2018 6:39:27 PM (6 years ago)
Author:
msaboff@apple.com
Message:

Increase executable memory pool from 64MB to 128MB for ARM64
https://bugs.webkit.org/show_bug.cgi?id=190453

Reviewed by Saam Barati.

  • jit/ExecutableAllocator.cpp:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r237010 r237024  
     12018-10-10  Michael Saboff  <msaboff@apple.com>
     2
     3        Increase executable memory pool from 64MB to 128MB for ARM64
     4        https://bugs.webkit.org/show_bug.cgi?id=190453
     5
     6        Reviewed by Saam Barati.
     7
     8        * jit/ExecutableAllocator.cpp:
     9
    1102018-10-10  Devin Rousso  <drousso@apple.com>
    211
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.cpp

    r236883 r237024  
    9292static const size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024;
    9393#elif CPU(ARM64)
    94 static const size_t fixedExecutableMemoryPoolSize = 64 * 1024 * 1024;
     94static const size_t fixedExecutableMemoryPoolSize = 128 * 1024 * 1024;
    9595#elif CPU(X86_64)
    9696static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;
Note: See TracChangeset for help on using the changeset viewer.