Ignore:
Timestamp:
Nov 4, 2019, 3:47:07 PM (6 years ago)
Author:
Truitt Savell
Message:

Unreviewed, rolling out r252015.

Broke the Windows build

Reverted changeset:

"Split ArithProfile into a Unary and a Binary version"
https://bugs.webkit.org/show_bug.cgi?id=202832
https://trac.webkit.org/changeset/252015

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JITInlines.h

    r252015 r252021  
    717717
    718718template<typename BinaryOp>
    719 ALWAYS_INLINE BinaryArithProfile JIT::copiedArithProfile(BinaryOp bytecode)
     719ALWAYS_INLINE ArithProfile JIT::copiedArithProfile(BinaryOp bytecode)
    720720{
    721721    uint64_t key = (static_cast<uint64_t>(BinaryOp::opcodeID) + 1) << 32 | static_cast<uint64_t>(bytecode.m_metadataID);
     
    723723    if (iterator != m_copiedArithProfiles.end())
    724724        return iterator->value;
    725     BinaryArithProfile arithProfile = bytecode.metadata(m_codeBlock).m_arithProfile;
     725    ArithProfile arithProfile = bytecode.metadata(m_codeBlock).m_arithProfile;
    726726    m_copiedArithProfiles.add(key, arithProfile);
    727727    return arithProfile;
Note: See TracChangeset for help on using the changeset viewer.