RESOLVED FIXED 176432
Vector should be able to easily create from a list of movable only items
https://bugs.webkit.org/show_bug.cgi?id=176432
Summary Vector should be able to easily create from a list of movable only items
youenn fablet
Reported 2017-09-05 16:31:26 PDT
Vector should be able to easily create from a list of movable only items
Attachments
Patch (3.65 KB, patch)
2017-09-05 16:33 PDT, youenn fablet
no flags
Patch (6.70 KB, patch)
2017-09-06 10:27 PDT, youenn fablet
no flags
Patch (6.87 KB, patch)
2017-09-12 12:44 PDT, youenn fablet
no flags
Patch (5.39 KB, patch)
2017-09-15 13:41 PDT, youenn fablet
no flags
Patch for landing (6.44 KB, patch)
2017-10-09 21:01 PDT, youenn fablet
no flags
youenn fablet
Comment 1 2017-09-05 16:33:37 PDT
Daniel Bates
Comment 2 2017-09-05 17:14:04 PDT
Comment on attachment 319953 [details] Patch The code change looks good. We just need to add unit tests.
Darin Adler
Comment 3 2017-09-05 18:37:06 PDT
Comment on attachment 319953 [details] Patch Why does this have to be a named function rather than a constructor?
Darin Adler
Comment 4 2017-09-05 18:38:30 PDT
Comment on attachment 319953 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=319953&action=review > Source/WTF/wtf/Vector.h:632 > + result.asanSetInitialBufferSizeTo(size); I don’t understand why this is needed. The reserveInitialCapacity call should take care of this. > Source/WTF/wtf/Vector.h:810 > + uncheckedAppend(std::forward<U>(item)); > + uncheckedAppend(std::forward<Items>(items)...); Seems like we miss an opportunity here to optimize so we bump the size only once. This is going to increment the size over and over again, I think. Need to look at the generated code I guess.
youenn fablet
Comment 5 2017-09-06 10:27:14 PDT
youenn fablet
Comment 6 2017-09-06 10:31:20 PDT
Thanks for the review. (In reply to Daniel Bates from comment #2) > Comment on attachment 319953 [details] > Patch > > The code change looks good. We just need to add unit tests. Added some. (In reply to Darin Adler from comment #3) > Comment on attachment 319953 [details] > Patch > > Why does this have to be a named function rather than a constructor? It would be a bit nicer to use but it conflicts with other constructors. There might be ways to disambiguate or restrict this constructor but I am not sure this is worth it. I wonder whether latest C++ progress might help. (In reply to Darin Adler from comment #4) > Comment on attachment 319953 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=319953&action=review > > > Source/WTF/wtf/Vector.h:632 > > + result.asanSetInitialBufferSizeTo(size); > > I don’t understand why this is needed. The reserveInitialCapacity call > should take care of this. Right, changed here and in initializer list constructor. > > > Source/WTF/wtf/Vector.h:810 > > + uncheckedAppend(std::forward<U>(item)); > > + uncheckedAppend(std::forward<Items>(items)...); > > Seems like we miss an opportunity here to optimize so we bump the size only > once. This is going to increment the size over and over again, I think. Need > to look at the generated code I guess. Added the optimization
Sam Weinig
Comment 7 2017-09-06 11:54:34 PDT
Comment on attachment 320037 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=320037&action=review > Tools/ChangeLog:8 > + fix-176432 This could be a better comment. :)
Saam Barati
Comment 8 2017-09-06 14:44:15 PDT
Comment on attachment 320037 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=320037&action=review > Source/WTF/wtf/Vector.h:817 > + auto ptr = std::addressof(value); > + new (NotNull, begin() + position) T(std::forward<U>(*ptr)); Why is this needed instead of just: new (NotNull, begin() + position) T(std::forward<U>(value));
youenn fablet
Comment 9 2017-09-06 16:33:00 PDT
(In reply to Saam Barati from comment #8) > Comment on attachment 320037 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=320037&action=review > > > Source/WTF/wtf/Vector.h:817 > > + auto ptr = std::addressof(value); > > + new (NotNull, begin() + position) T(std::forward<U>(*ptr)); > > Why is this needed instead of just: > new (NotNull, begin() + position) T(std::forward<U>(value)); I am not sure WebKit is using Vector of classes with overloaded &. Anders might know more about this since he added it.
Anders Carlsson
Comment 10 2017-09-07 11:48:21 PDT
(In reply to youenn fablet from comment #9) > (In reply to Saam Barati from comment #8) > > Comment on attachment 320037 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=320037&action=review > > > > > Source/WTF/wtf/Vector.h:817 > > > + auto ptr = std::addressof(value); > > > + new (NotNull, begin() + position) T(std::forward<U>(*ptr)); > > > > Why is this needed instead of just: > > new (NotNull, begin() + position) T(std::forward<U>(value)); > > I am not sure WebKit is using Vector of classes with overloaded &. > Anders might know more about this since he added it. COMPtr has an overloaded & operator, and I had planned to add one to RetainPtr as well, since a lot of the CF APIs use out-pointers.
Saam Barati
Comment 11 2017-09-07 15:29:37 PDT
(In reply to youenn fablet from comment #9) > (In reply to Saam Barati from comment #8) > > Comment on attachment 320037 [details] > > Patch > > > > View in context: > > https://bugs.webkit.org/attachment.cgi?id=320037&action=review > > > > > Source/WTF/wtf/Vector.h:817 > > > + auto ptr = std::addressof(value); > > > + new (NotNull, begin() + position) T(std::forward<U>(*ptr)); > > > > Why is this needed instead of just: > > new (NotNull, begin() + position) T(std::forward<U>(value)); > > I am not sure WebKit is using Vector of classes with overloaded &. > Anders might know more about this since he added it. Right, that makes sense. But why do we even bother getting the address then dereferencing it? Why can't we just forward it along? Maybe I'm missing something
youenn fablet
Comment 12 2017-09-12 08:17:43 PDT
> Right, that makes sense. But why do we even bother getting the address then > dereferencing it? Why can't we just forward it along? Maybe I'm missing > something I read too fast, you are right, I will simplify uncheckedAppend and uncheckedInitialize accordingly.
youenn fablet
Comment 13 2017-09-12 12:44:34 PDT
Saam Barati
Comment 14 2017-09-13 18:10:56 PDT
Comment on attachment 320563 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=320563&action=review > Source/WebKit/ChangeLog:3 > + Vector should be able to easily create from a list of movable only items I think the name of this bug is slightly misleading. At least I misread it in my head. I don't think you're not requiring things that are rvalue references here. It looks like you're just using normal forwarding semantics. > Source/WTF/wtf/Vector.h:1185 > + asanSetInitialBufferSizeTo(initialCapacity); This seems wrong if the above branch is not taken. Also, I think this would break asan finding bugs like: ``` Vector<T, 0> v; v.reserveInitialCapacity(10); v[0] = T(); ```
Saam Barati
Comment 15 2017-09-13 18:11:31 PDT
Comment on attachment 320563 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=320563&action=review > Tools/TestWebKitAPI/Tests/WTF/Vector.cpp:111 > +TEST(WTF_Vector, ConstructWithFromMoveOnly) I think it's worth adding tests for non rvalue references.
youenn fablet
Comment 16 2017-09-15 13:41:42 PDT
youenn fablet
Comment 17 2017-09-15 13:44:22 PDT
Thanks Saam, I updated the patch according your comments. As of the name of the bug, the issue was brought up for Movable only types although you are right this routine is applicable to more than that.
Saam Barati
Comment 18 2017-10-03 13:08:46 PDT
(In reply to youenn fablet from comment #16) > Created attachment 320959 [details] > Patch Did you want this patch reviewed?
youenn fablet
Comment 19 2017-10-04 05:41:30 PDT
(In reply to Saam Barati from comment #18) > (In reply to youenn fablet from comment #16) > > Created attachment 320959 [details] > > Patch > > Did you want this patch reviewed? After some refactoring, I no longer need this. It makes sense to have it in bugzilla if somebody in the future needs that but I am not sure we should land it.
youenn fablet
Comment 20 2017-10-09 12:38:01 PDT
I have a use case for it.
youenn fablet
Comment 21 2017-10-09 21:01:36 PDT
Created attachment 323282 [details] Patch for landing
WebKit Commit Bot
Comment 22 2017-10-09 21:44:54 PDT
Comment on attachment 323282 [details] Patch for landing Clearing flags on attachment: 323282 Committed r223122: <http://trac.webkit.org/changeset/223122>
WebKit Commit Bot
Comment 23 2017-10-09 21:44:56 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 24 2017-10-09 21:45:56 PDT
Note You need to log in before you can comment on or make changes to this bug.