Changeset 161993 in webkit


Ignore:
Timestamp:
Jan 14, 2014 12:17:13 PM (10 years ago)
Author:
benjamin@webkit.org
Message:

Enable the experimental selector code generator by default
https://bugs.webkit.org/show_bug.cgi?id=126953

Reviewed by Gavin Barraclough.

  • wtf/Platform.h:

Enable CSS_SELECTOR_JIT on OS X x86_64 by default.
The feature is not ready to ship but it is stable enough to enable
for the bots and nightly.

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r161988 r161993  
     12014-01-14  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        Enable the experimental selector code generator by default
     4        https://bugs.webkit.org/show_bug.cgi?id=126953
     5
     6        Reviewed by Gavin Barraclough.
     7
     8        * wtf/Platform.h:
     9        Enable CSS_SELECTOR_JIT on OS X x86_64 by default.
     10        The feature is not ready to ship but it is stable enough to enable
     11        for the bots and nightly.
     12
    1132014-01-14  Brian J. Burg  <burg@cs.washington.edu>
    214
  • trunk/Source/WTF/wtf/Platform.h

    r161853 r161993  
    860860/* CSS Selector JIT Compiler */
    861861#if !defined(ENABLE_CSS_SELECTOR_JIT)
     862#if CPU(X86_64) && ENABLE(JIT) && PLATFORM(MAC)
     863#define ENABLE_CSS_SELECTOR_JIT 1
     864#else
    862865#define ENABLE_CSS_SELECTOR_JIT 0
     866#endif
    863867#endif
    864868
Note: See TracChangeset for help on using the changeset viewer.