Changeset 244994 in webkit


Ignore:
Timestamp:
May 6, 2019 5:20:01 PM (5 years ago)
Author:
chris.reid@sony.com
Message:

[JSC] Respect already defined USE_LLINT_EMBEDDED_OPCODE_ID compiler variable.
https://bugs.webkit.org/show_bug.cgi?id=197633

Reviewed by Don Olmstead.

When the variable USE_LLINT_EMBEDDED_OPCODE_ID is defined, stop defining
its value with platform default one.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r244921 r244994  
     12019-05-06  Christopher Reid  <chris.reid@sony.com>
     2
     3        [JSC] Respect already defined USE_LLINT_EMBEDDED_OPCODE_ID compiler variable.
     4        https://bugs.webkit.org/show_bug.cgi?id=197633
     5
     6        Reviewed by Don Olmstead.
     7
     8        When the variable `USE_LLINT_EMBEDDED_OPCODE_ID` is defined, stop defining
     9        its value with platform default one.
     10
     11        * wtf/Platform.h:
     12
    1132019-05-03  Sihui Liu  <sihui_liu@apple.com>
    214
  • trunk/Source/WTF/wtf/Platform.h

    r244635 r244994  
    983983#endif
    984984
    985 #if !ENABLE(C_LOOP) && !COMPILER(MSVC) && \
     985#if !defined(USE_LLINT_EMBEDDED_OPCODE_ID) && !ENABLE(C_LOOP) && !COMPILER(MSVC) && \
    986986    (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && OS(DARWIN)))
    987987/* This feature works by embedding the OpcodeID in the 32 bit just before the generated LLint code
Note: See TracChangeset for help on using the changeset viewer.