Changeset 216512 in webkit
- Timestamp:
- May 9, 2017, 10:11:27 AM (8 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r216497 r216512 1 2017-05-09 Mark Lam <mark.lam@apple.com> 2 3 Force StaticStringImpl constructor to use the constexpr versions of StringImplShape constructors. 4 https://bugs.webkit.org/show_bug.cgi?id=171861 5 6 Reviewed by Yusuke Suzuki. 7 8 This is strictly necessary for correctness of the StaticStringImpl implementation. 9 We force the constructor selection by adding an extra dummy argument to the 10 constexpr versions of the StringImplShape constructors to disambiguate them from 11 the non-constexpr versions. 12 13 * wtf/text/StringImpl.h: 14 (WTF::StringImplShape::StringImplShape): 15 (WTF::StringImpl::StaticStringImpl::StaticStringImpl): 16 1 17 2017-05-09 Zan Dobersek <zdobersek@igalia.com> 2 18 -
trunk/Source/WTF/wtf/text/StringImpl.h
r216217 r216512 147 147 { } 148 148 149 enum ConstructWithConstExprTag { ConstructWithConstExpr }; 150 149 151 template<unsigned charactersCount> 150 constexpr StringImplShape(unsigned refCount, unsigned length, const char (&characters)[charactersCount], unsigned hashAndFlags )152 constexpr StringImplShape(unsigned refCount, unsigned length, const char (&characters)[charactersCount], unsigned hashAndFlags, ConstructWithConstExprTag) 151 153 : m_refCount(refCount) 152 154 , m_length(length) … … 156 158 157 159 template<unsigned charactersCount> 158 constexpr StringImplShape(unsigned refCount, unsigned length, const char16_t (&characters)[charactersCount], unsigned hashAndFlags )160 constexpr StringImplShape(unsigned refCount, unsigned length, const char16_t (&characters)[charactersCount], unsigned hashAndFlags, ConstructWithConstExprTag) 159 161 : m_refCount(refCount) 160 162 , m_length(length) … … 594 596 constexpr StaticStringImpl(const char (&characters)[charactersCount], StringKind stringKind = StringNormal) 595 597 : StringImplShape(s_refCountFlagIsStaticString, charactersCount - 1, characters, 596 s_hashFlag8BitBuffer | s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount) )598 s_hashFlag8BitBuffer | s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount), ConstructWithConstExpr) 597 599 { 598 600 } … … 601 603 constexpr StaticStringImpl(const char16_t (&characters)[charactersCount], StringKind stringKind = StringNormal) 602 604 : StringImplShape(s_refCountFlagIsStaticString, charactersCount - 1, characters, 603 s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount) )605 s_hashFlagDidReportCost | stringKind | BufferInternal | (StringHasher::computeLiteralHashAndMaskTop8Bits(characters) << s_flagCount), ConstructWithConstExpr) 604 606 { 605 607 }
Note:
See TracChangeset
for help on using the changeset viewer.