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

Changeset 181462 in webkit


Ignore:
Timestamp:
Mar 12, 2015, 5:40:46 PM (11 years ago)
Author:
msaboff@apple.com
Message:

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

Reviewed by Oliver Hunt.

Make the setting of ENABLE_YARR_JIT match ENABLE_JIT for ARMv7k.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r181461 r181462  
     12015-03-12  Michael Saboff  <msaboff@apple.com>
     2
     3        Disable Yarr JIT for ARMv7k
     4        https://bugs.webkit.org/show_bug.cgi?id=142645
     5
     6        Reviewed by Oliver Hunt.
     7
     8        Make the setting of ENABLE_YARR_JIT match ENABLE_JIT for ARMv7k.
     9
     10        * wtf/Platform.h:
     11
    1122015-03-12  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/WTF/wtf/Platform.h

    r181436 r181462  
    657657#endif /* !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32_64) */
    658658
    659 /* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k and Windows. */
     659/* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k. */
    660660#if !defined(ENABLE_JIT) \
    661661    && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)) \
    662662    && !CPU(APPLE_ARMV7K)
    663663#define ENABLE_JIT 1
     664#endif
     665
     666/* Disable the YARR JIT for ARMv7k */
     667#if !defined(ENABLE_YARR_JIT) && CPU(APPLE_ARMV7K)
     668#define ENABLE_YARR_JIT 0
    664669#endif
    665670
Note: See TracChangeset for help on using the changeset viewer.