Changeset 192527 in webkit


Ignore:
Timestamp:
Nov 17, 2015 1:30:01 PM (8 years ago)
Author:
msaboff@apple.com
Message:

Reserved VM pool established in r187125 is likely too conservative
https://bugs.webkit.org/show_bug.cgi?id=151351

Reviewed by Filip Pizlo.

Reduce the VM allocation reserved pool from 25% to 15% for ARM32.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r192525 r192527  
     12015-11-17  Michael Saboff  <msaboff@apple.com>
     2
     3        Reserved VM pool established in r187125 is likely too conservative
     4        https://bugs.webkit.org/show_bug.cgi?id=151351
     5
     6        Reviewed by Filip Pizlo.
     7
     8        Reduce the VM allocation reserved pool from 25% to 15% for ARM32.
     9
     10        * jit/ExecutableAllocator.h:
     11
    1122015-11-17  Saam barati  <sbarati@apple.com>
    213
  • trunk/Source/JavaScriptCore/jit/ExecutableAllocator.h

    r189278 r192527  
    8383static const size_t fixedExecutableMemoryPoolSize = 32 * 1024 * 1024;
    8484#endif
     85#if CPU(ARM)
     86static const double executablePoolReservationFraction = 0.15;
     87#else
    8588static const double executablePoolReservationFraction = 0.25;
     89#endif
    8690
    8791extern uintptr_t startOfFixedExecutableMemoryPool;
Note: See TracChangeset for help on using the changeset viewer.