Changeset 203272 in webkit


Ignore:
Timestamp:
Jul 15, 2016 2:43:33 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

[ARM] Disable Inline Caching on ARMv7 traditional until proper fix
https://bugs.webkit.org/show_bug.cgi?id=159759

Reviewed by Saam Barati.

  • jit/Repatch.cpp:

(JSC::forceICFailure):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r203270 r203272  
     12016-07-15  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [ARM] Disable Inline Caching on ARMv7 traditional until proper fix
     4        https://bugs.webkit.org/show_bug.cgi?id=159759
     5
     6        Reviewed by Saam Barati.
     7
     8        * jit/Repatch.cpp:
     9        (JSC::forceICFailure):
     10
    1112016-07-14  Keith Miller  <keith_miller@apple.com>
    212
  • trunk/Source/JavaScriptCore/jit/Repatch.cpp

    r202242 r203272  
    122122static bool forceICFailure(ExecState*)
    123123{
     124#if CPU(ARM_TRADITIONAL)
     125    // FIXME: Remove this workaround once the proper fixes are landed.
     126    // [ARM] Disable Inline Caching on ARMv7 traditional until proper fix
     127    // https://bugs.webkit.org/show_bug.cgi?id=159759
     128    return true;
     129#else
    124130    return Options::forceICFailure();
     131#endif
    125132}
    126133
Note: See TracChangeset for help on using the changeset viewer.