Changeset 252021 in webkit for trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm
- Timestamp:
- Nov 4, 2019, 3:47:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm
r252015 r252021 242 242 const ShadowChickenTailMarker = constexpr ShadowChicken::Packet::tailMarkerValue 243 243 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 245 const ArithProfileInt = constexpr (ArithProfile::observedUnaryInt().bits()) 246 const ArithProfileNumber = constexpr (ArithProfile::observedUnaryNumber().bits()) 247 const ArithProfileIntInt = constexpr (ArithProfile::observedBinaryIntInt().bits()) 248 const ArithProfileNumberInt = constexpr (ArithProfile::observedBinaryNumberInt().bits()) 249 const ArithProfileIntNumber = constexpr (ArithProfile::observedBinaryIntNumber().bits()) 250 const ArithProfileNumberNumber = constexpr (ArithProfile::observedBinaryNumberNumber().bits()) 253 251 254 252 # Pointer Tags
Note:
See TracChangeset
for help on using the changeset viewer.