RESOLVED FIXED 117671
Initialize AtomicStringTable in WTFThreadData's constructor
https://bugs.webkit.org/show_bug.cgi?id=117671
Summary Initialize AtomicStringTable in WTFThreadData's constructor
Ryosuke Niwa
Reported 2013-06-14 22:44:58 PDT
Initialize AtomicStringTable in WTFThreadData's constructor
Attachments
Cleanup (12.71 KB, patch)
2013-06-14 22:46 PDT, Ryosuke Niwa
no flags
Fixed builds (15.78 KB, patch)
2013-06-14 23:14 PDT, Ryosuke Niwa
ggaren: review+
Ryosuke Niwa
Comment 1 2013-06-14 22:46:49 PDT
Ryosuke Niwa
Comment 2 2013-06-14 22:47:54 PDT
This addresses a comment added to stringTable() in http://trac.webkit.org/changeset/57829.
EFL EWS Bot
Comment 3 2013-06-14 22:50:49 PDT
Early Warning System Bot
Comment 4 2013-06-14 22:51:36 PDT
Early Warning System Bot
Comment 5 2013-06-14 22:53:21 PDT
kov's GTK+ EWS bot
Comment 6 2013-06-14 22:53:22 PDT
EFL EWS Bot
Comment 7 2013-06-14 22:53:49 PDT
Comment on attachment 204758 [details] Cleanup Attachment 204758 [details] did not pass efl-wk2-ews (efl-wk2): Output: http://webkit-queues.appspot.com/results/930052
Ryosuke Niwa
Comment 8 2013-06-14 23:14:35 PDT
Created attachment 204760 [details] Fixed builds
Darin Adler
Comment 9 2013-06-15 11:00:26 PDT
Comment on attachment 204760 [details] Fixed builds Why is this a class? We should just have HashSet<StringImpl*> in the thread data. We can have create and destroy functions, but no need to have this be a class.
Ryosuke Niwa
Comment 10 2013-06-15 11:14:07 PDT
(In reply to comment #9) > (From update of attachment 204760 [details]) > Why is this a class? We should just have HashSet<StringImpl*> in the thread data. We can have create and destroy functions, but no need to have this be a class. I think the idea is to add, remove, etc... to this class to eventually encapsulate m_table. IdentifierTable does this already: http://trac.webkit.org/browser/trunk/Source/WTF/wtf/WTFThreadData.h#L42
Geoffrey Garen
Comment 11 2013-06-17 13:53:40 PDT
Comment on attachment 204760 [details] Fixed builds View in context: https://bugs.webkit.org/attachment.cgi?id=204760&action=review r=me > Source/WTF/ChangeLog:8 > + Extracted AtomicStringTable from AtomicString.cpp into AtomicStringTable.h.cpp .h.cpp :(.
Ryosuke Niwa
Comment 12 2013-06-17 18:08:47 PDT
Note You need to log in before you can comment on or make changes to this bug.