RESOLVED FIXED Bug 225840
StructureRareData::m_replacementWatchpointSets should not be a pointer to a pointer
https://bugs.webkit.org/show_bug.cgi?id=225840
Summary StructureRareData::m_replacementWatchpointSets should not be a pointer to a p...
Geoffrey Garen
Reported 2021-05-14 20:37:00 PDT
StructureRareData::m_replacementWatchpointSets should not be a pointer t o a pointer
Attachments
Patch (3.83 KB, patch)
2021-05-14 20:38 PDT, Geoffrey Garen
mark.lam: review+
ews-feeder: commit-queue-
Patch for landing (3.96 KB, patch)
2021-05-17 16:22 PDT, Geoffrey Garen
no flags
Geoffrey Garen
Comment 1 2021-05-14 20:38:49 PDT
Mark Lam
Comment 2 2021-05-14 20:47:28 PDT
Comment on attachment 428705 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=428705&action=review r=me > Source/JavaScriptCore/runtime/StructureRareData.h:130 > typedef HashMap<PropertyOffset, RefPtr<WatchpointSet>, WTF::IntHash<PropertyOffset>, WTF::UnsignedWithZeroKeyHashTraits<PropertyOffset>> PropertyWatchpointMap; nit: maybe add `static_assert(sizeof(PropertyWatchpointMap) == sizeof(void*));` after this line?
Geoffrey Garen
Comment 3 2021-05-17 16:22:40 PDT
Created attachment 428888 [details] Patch for landing
Geoffrey Garen
Comment 4 2021-05-17 16:23:11 PDT
Comment on attachment 428888 [details] Patch for landing CQ+
EWS
Comment 5 2021-05-17 17:42:08 PDT
Committed r277620 (237835@main): <https://commits.webkit.org/237835@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 428888 [details].
Radar WebKit Bug Importer
Comment 6 2021-05-17 17:43:25 PDT
Darin Adler
Comment 7 2021-05-17 18:54:35 PDT
Maybe HashMap should make itself allergic to allocation on the heap. It does WTF_MAKE_FAST_ALLOCATED, but it should be WTF_MAKE_DONT_DO_IT_DONT_PUT_ME_IN_A_HEAP_BLOCK_ALL_BY_MYSELF. Same for HashTableConstIterator, HashTableIterator, HashTable, HashSet, and ListHashSet. All of these are so small it is silly to put them on the heap, I think.
Darin Adler
Comment 8 2021-05-19 14:35:16 PDT
Working on this in bug 225984.
Note You need to log in before you can comment on or make changes to this bug.