<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Aug 10, 2015 at 4:54 AM, Joerg Sonnenberger via llvm-commits <span dir="ltr"><<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, Jul 30, 2015 at 04:21:13AM -0000, Adam Nemet wrote:<br>
> Author: anemet<br>
> Date: Wed Jul 29 23:21:13 2015<br>
> New Revision: 243616<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=243616&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=243616&view=rev</a><br>
> Log:<br>
> [LoopVer] Add missing std::move<br>
><br>
> The reason I was passing this vector by value in the constructor so that<br>
> I wouldn't have to copy when initializing the corresponding member but<br>
> then I forgot the std::move.<br>
><br>
> The use-case is LoopDistribution which filters the checks then<br>
> std::moves it to LoopVersioning's constructor.  With this interface we<br>
> can avoid any copies.<br>
<br>
</span>I don't understand this. Why is it preferable to have the copy<br>
constructor in the caller and move the result compared to using a<br>
reference and copy construct in place?<br></blockquote><div><br></div><div>If the caller passes a temporary, this is two moves, zero copies. As in:<br><br>std::unique_ptr<int> u;<br>void func(std::unique_ptr<int> f) {<br>  u = std::move(f);<br>}<br>...<br>func(std::move(some_other_unique_ptr));<br><br>(just using a unique_ptr to demonstrate that this idiom allows callers to choose between copies and moves (passing by const ref does not allow the caller to choose - there will always be a copy (in the case of the unique_ptr example, that means it's not possible, of course)))</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Joerg<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@lists.llvm.org">llvm-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div></div>