Changeset 216512 in webkit


Ignore:
Timestamp:
May 9, 2017, 10:11:27 AM (8 years ago)
Author:
mark.lam@apple.com
Message:

Force StaticStringImpl constructor to use the constexpr versions of StringImplShape constructors.
https://bugs.webkit.org/show_bug.cgi?id=171861

Reviewed by Yusuke Suzuki.

This is strictly necessary for correctness of the StaticStringImpl implementation.
We force the constructor selection by adding an extra dummy argument to the
constexpr versions of the StringImplShape constructors to disambiguate them from
the non-constexpr versions.

  • wtf/text/StringImpl.h:

(WTF::StringImplShape::StringImplShape):
(WTF::StringImpl::StaticStringImpl::StaticStringImpl):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r216497 r216512  
     12017-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
    1172017-05-09  Zan Dobersek  <zdobersek@igalia.com>
    218
  • trunk/Source/WTF/wtf/text/StringImpl.h

    r216217 r216512  
    147147    { }
    148148
     149    enum ConstructWithConstExprTag { ConstructWithConstExpr };
     150   
    149151    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)
    151153        : m_refCount(refCount)
    152154        , m_length(length)
     
    156158   
    157159    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)
    159161        : m_refCount(refCount)
    160162        , m_length(length)
     
    594596        constexpr StaticStringImpl(const char (&characters)[charactersCount], StringKind stringKind = StringNormal)
    595597            : 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)
    597599        {
    598600        }
     
    601603        constexpr StaticStringImpl(const char16_t (&characters)[charactersCount], StringKind stringKind = StringNormal)
    602604            : 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)
    604606        {
    605607        }
Note: See TracChangeset for help on using the changeset viewer.