Changeset 204025 in webkit


Ignore:
Timestamp:
Aug 2, 2016 8:37:23 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/JITMathIC.h:

(JSC::JITMathIC::generateInline):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r204010 r204025  
     12016-08-02  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/JITMathIC.h:
     9        (JSC::JITMathIC::generateInline):
     10
    1112016-08-01  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/JavaScriptCore/jit/JITMathIC.h

    r203979 r204025  
    6565    bool generateInline(CCallHelpers& jit, MathICGenerationState& state, bool shouldEmitProfiling = true)
    6666    {
     67#if CPU(ARM_TRADITIONAL)
     68        // FIXME: Remove this workaround once the proper fixes are landed.
     69        // [ARM] Disable Inline Caching on ARMv7 traditional until proper fix
     70        // https://bugs.webkit.org/show_bug.cgi?id=159759
     71        return false;
     72#endif
     73
    6774        state.fastPathStart = jit.label();
    6875        size_t startSize = jit.m_assembler.buffer().codeSize();
Note: See TracChangeset for help on using the changeset viewer.