⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 181501 in webkit


Ignore:
Timestamp:
Mar 14, 2015, 2:42:20 PM (11 years ago)
Author:
msaboff@apple.com
Message:

Disable Yarr JIT for ARMv7k
https://bugs.webkit.org/show_bug.cgi?id=142645

Rubber stamped by Geoffrey Garen.

Changed the setting of ENABLE_YARR_JIT to be predicated on ENABLED_JIT.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r181497 r181501  
     12015-03-14  Michael Saboff  <msaboff@apple.com>
     2
     3        Disable Yarr JIT for ARMv7k
     4        https://bugs.webkit.org/show_bug.cgi?id=142645
     5
     6        Rubber stamped by Geoffrey Garen.
     7
     8        Changed the setting of ENABLE_YARR_JIT to be predicated on ENABLED_JIT.
     9
     10        * wtf/Platform.h:
     11
    1122015-03-14  Michael Saboff  <msaboff@apple.com>
    213
  • trunk/Source/WTF/wtf/Platform.h

    r181462 r181501  
    664664#endif
    665665
    666 /* Disable the YARR JIT for ARMv7k */
    667 #if !defined(ENABLE_YARR_JIT) && CPU(APPLE_ARMV7K)
    668 #define ENABLE_YARR_JIT 0
    669 #endif
    670 
    671666/* Do we have LLVM? */
    672667#if !defined(HAVE_LLVM) && OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK) && ENABLE(FTL_JIT) && (CPU(X86_64) || CPU(ARM64))
     
    826821
    827822/* Yet Another Regex Runtime - turned on by default for JIT enabled ports. */
    828 #if !defined(ENABLE_YARR_JIT)
     823#if !defined(ENABLE_YARR_JIT) && ENABLE(JIT)
    829824#define ENABLE_YARR_JIT 1
    830825
Note: See TracChangeset for help on using the changeset viewer.