RESOLVED FIXED 110171
StringHasher functions require alignment that call sites do not all guarantee
https://bugs.webkit.org/show_bug.cgi?id=110171
Summary StringHasher functions require alignment that call sites do not all guarantee
Darin Adler
Reported 2013-02-18 18:10:19 PST
StringHasher functions require alignment that call sites do not all guarantee
Attachments
Patch (10.23 KB, patch)
2013-02-18 19:02 PST, Darin Adler
no flags
Patch (10.23 KB, patch)
2013-02-18 19:13 PST, Darin Adler
no flags
Patch (42.88 KB, patch)
2013-03-02 17:32 PST, Darin Adler
benjamin: review+
Darin Adler
Comment 1 2013-02-18 19:02:36 PST
Darin Adler
Comment 2 2013-02-18 19:09:42 PST
Comment on attachment 188973 [details] Patch Oops, looks like I uploaded something that doesn’t build.
Early Warning System Bot
Comment 3 2013-02-18 19:12:43 PST
Darin Adler
Comment 4 2013-02-18 19:13:35 PST
Benjamin Poulain
Comment 5 2013-02-19 00:09:25 PST
Comment on attachment 188974 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=188974&action=review The new methods addCharactersAssumingAligned() are public. Wouldn't it be better to have them private until they are needed to be public by client code? Exposing those low level functions increases the risk of misuses like the one you fix with this patch. If you keep the new methods public, it would be nice to have new test coverage for them. > Source/WTF/wtf/StringHasher.h:77 > - addCharactersToHash(m_pendingCharacter, Converter(*data++)); > - m_hasPendingCharacter = false; > - --length; > + addCharactersInternal(m_pendingCharacter, a); > + m_pendingCharacter = b; > + return; It would be nice to get rid of addCharactersInternal to simplify the class. Is there really any extra cost to?: m_hasPendingCharacter = false; addCharactersInternal(m_pendingCharacter, a); m_pendingCharacter = b; m_hasPendingCharacter = true;
Darin Adler
Comment 6 2013-02-26 09:39:36 PST
(In reply to comment #5) > The new methods addCharactersAssumingAligned() are public. Wouldn't it be better to have them private until they are needed to be public by client code? I suppose they could be private; my intention is that they are part of the public interface. > Exposing those low level functions increases the risk of misuses like the one you fix with this patch. Sure, but given their names it seems unlikely they’d be misused. The issue before was the hidden precondition that was not part of the name. I don’t think Geoff would have gotten it wrong if it was part of the name. > If you keep the new methods public, it would be nice to have new test coverage for them. That’s a good point. Whether public or not it would be good to have tests for the functions in this class. I don’t know exactly how to do unit tests; I’m sure it’s easy but I don’t know where to put them. > It would be nice to get rid of addCharactersInternal to simplify the class. Will do.
Darin Adler
Comment 7 2013-03-02 17:32:46 PST
Darin Adler
Comment 8 2013-03-02 17:33:34 PST
The patch was actually already reviewed by Ben Poulain. This new version makes most of the changes he suggested, except for the “make more private” one, which we could still do. And I added lots of tests.
Benjamin Poulain
Comment 9 2013-03-02 17:50:18 PST
Comment on attachment 191122 [details] Patch Thanks for doing all the tests! My only comment is it would be useful to have a comments for each group of test. E.g.: // addCharactersAssumingAligned with zero characters should produce an emptyStringHash. // addCharactersAssumingAligned with \0. // addCharactersAssumingAligned with 5 characters at once. etc. Otherwise it takes some reading to find what is tested in each paragraph.
Darin Adler
Comment 10 2013-03-02 21:49:23 PST
Thiago Marcos P. Santos
Comment 11 2013-03-07 15:09:22 PST
(In reply to comment #10) > Committed r144552: <http://trac.webkit.org/changeset/144552> This test is failing on the EFL Debug bots from the moment it was introduced (although it is passing on the Release bots): /home/buildslave-1/webkit-buildslave/efl-linux-64-debug-wk2/build/Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp:173: Failure Value of: hasher.hash() Actual: 2754808611 Expected: testBHash5 Which is: 2032145993 [ FAILED ] WTF.StringHasher_addCharacters (0 ms) [ RUN ] WTF.StringHasher_addCharactersAssumingAligned /home/buildslave-1/webkit-buildslave/efl-linux-64-debug-wk2/build/Tools/TestWebKitAPI/Tests/WTF/StringHasher.cpp:328: Failure Value of: hasher.hash() Actual: 2754808611 Expected: testBHash5 Which is: 2032145993 [ FAILED ] WTF.StringHasher_addCharactersAssumingAligned (0 ms http://build.webkit.org/builders/EFL%20Linux%2064-bit%20Debug%20WK2/builds/10028/steps/API%20tests/logs/stdio
Darin Adler
Comment 12 2013-03-08 17:24:09 PST
I see the problem. I forgot to null-terminate testBUChars!
Darin Adler
Comment 13 2013-03-11 15:23:41 PDT
Geoff Garen fixed the failing tests problem in r145412.
Note You need to log in before you can comment on or make changes to this bug.