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/llint/LowLevelInterpreter.asm

    r252015 r252021  
    242242const ShadowChickenTailMarker = constexpr ShadowChicken::Packet::tailMarkerValue
    243243
    244 # UnaryArithProfile data
    245 const ArithProfileInt = constexpr (UnaryArithProfile::observedIntBits())
    246 const ArithProfileNumber = constexpr (UnaryArithProfile::observedNumberBits())
    247 
    248 # BinaryArithProfile data
    249 const ArithProfileIntInt = constexpr (BinaryArithProfile::observedIntIntBits())
    250 const ArithProfileNumberInt = constexpr (BinaryArithProfile::observedNumberIntBits())
    251 const ArithProfileIntNumber = constexpr (BinaryArithProfile::observedIntNumberBits())
    252 const ArithProfileNumberNumber = constexpr (BinaryArithProfile::observedNumberNumberBits())
     244# ArithProfile data
     245const ArithProfileInt = constexpr (ArithProfile::observedUnaryInt().bits())
     246const ArithProfileNumber = constexpr (ArithProfile::observedUnaryNumber().bits())
     247const ArithProfileIntInt = constexpr (ArithProfile::observedBinaryIntInt().bits())
     248const ArithProfileNumberInt = constexpr (ArithProfile::observedBinaryNumberInt().bits())
     249const ArithProfileIntNumber = constexpr (ArithProfile::observedBinaryIntNumber().bits())
     250const ArithProfileNumberNumber = constexpr (ArithProfile::observedBinaryNumberNumber().bits())
    253251
    254252# Pointer Tags
Note: See TracChangeset for help on using the changeset viewer.