Changeset 251106 in webkit for trunk/Source/JavaScriptCore/jit/JITInlines.h
- Timestamp:
- Oct 14, 2019, 3:52:11 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITInlines.h
r251090 r251106 718 718 719 719 template<typename BinaryOp> 720 ALWAYS_INLINE BinaryArithProfile JIT::copiedArithProfile(BinaryOp bytecode)720 ALWAYS_INLINE ArithProfile JIT::copiedArithProfile(BinaryOp bytecode) 721 721 { 722 722 uint64_t key = (static_cast<uint64_t>(BinaryOp::opcodeID) + 1) << 32 | static_cast<uint64_t>(bytecode.m_metadataID); … … 724 724 if (iterator != m_copiedArithProfiles.end()) 725 725 return iterator->value; 726 BinaryArithProfile arithProfile = bytecode.metadata(m_codeBlock).m_arithProfile;726 ArithProfile arithProfile = bytecode.metadata(m_codeBlock).m_arithProfile; 727 727 m_copiedArithProfiles.add(key, arithProfile); 728 728 return arithProfile;
Note:
See TracChangeset
for help on using the changeset viewer.