Changeset 196672 in webkit


Ignore:
Timestamp:
Feb 16, 2016 4:45:51 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[JSC] Enable B3 on ARM64
https://bugs.webkit.org/show_bug.cgi?id=154275

Patch by Benjamin Poulain <bpoulain@apple.com> on 2016-02-16
Reviewed by Mark Lam.

The port passes more tests than LLVM now, let's use it by default.

  • dfg/DFGCommon.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r196668 r196672  
     12016-02-16  Benjamin Poulain  <bpoulain@apple.com>
     2
     3        [JSC] Enable B3 on ARM64
     4        https://bugs.webkit.org/show_bug.cgi?id=154275
     5
     6        Reviewed by Mark Lam.
     7
     8        The port passes more tests than LLVM now, let's use it by default.
     9
     10        * dfg/DFGCommon.h:
     11
    1122016-02-16  Commit Queue  <commit-queue@webkit.org>
    213
  • trunk/Source/JavaScriptCore/dfg/DFGCommon.h

    r196077 r196672  
    3838// We are in the middle of a transition from LLVM to B3 as the backend for the FTL. This flag will go
    3939// away once that transition is finished. For now, we enable B3 only on some platforms.
    40 #if CPU(X86_64) && ENABLE(FTL_JIT)
     40#if (CPU(X86_64) || CPU(ARM64)) && ENABLE(FTL_JIT)
    4141#define FTL_USES_B3 1
    4242#else
Note: See TracChangeset for help on using the changeset viewer.