<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Sep 24, 2014 at 7:50 PM, Justin Bogner <span dir="ltr"><<a href="mailto:mail@justinbogner.com" target="_blank">mail@justinbogner.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">Anton Yartsev <<a href="mailto:anton.yartsev@gmail.com">anton.yartsev@gmail.com</a>> writes:<br>
> Hello everyone,<br>
><br>
> I bring to discussion the necessity/design of a new type of smart pointer.<br>
> r215176 and r217791 rise the problem, D5443 is devoted to the solution.<br>
> r215176 applies several temporary ugly fixes of memory leaks in TGParser.cpp<br>
> which would be great to be refactored using smart pointers. D5443 demonstrates<br>
> how the solution with a certain type of smart pointer would look like (see<br>
> changes in TGParser::ParseDef(), TGParser::InstantiateMulticlassDef() and<br>
> TGParser::ParseSimpleValue()).<br>
><br>
> Briefly:<br>
> consider a leaky example:<br>
> {<br>
>   T* p = new T;<br>
>   if (condition1) {<br>
>     f(p); // takes ownership of p<br>
>   }<br>
>   p->SomeMethod();<br>
><br>
>   if (condition2) {<br>
>     return nullptr; // Leak!<br>
>   }<br>
><br>
>   g(p); // don't take ownership of p<br>
>   return p;<br>
> }<br>
><br>
> The preferred solution would look like:<br>
> {<br>
>   smart_ptr<T> p(new T);<br>
>   if (condition1) {<br>
>     f(p.StopOwn()); // takes ownership of p<br>
<br>
</span>So this takes ownership, but promises not to destroy the pointee in some<br>
way?<br>
<span class=""><br>
>   }<br>
>   p->SomeMethod();<br>
><br>
>   if (condition2) {<br>
>     return nullptr; //<br>
<br>
</span>I guess p is sometimes destroyed here, depending on condition1?<br>
<span class=""><br>
>   }<br>
><br>
>   g(p.Get());  // don't take ownership of p<br>
>   return p.StopOwn();<br>
> }<br>
<br>
</span>What does it mean to stop owning the pointer twice? Doesn't this leak p<br>
in the case where condition1 was false?<br>
<span class=""><br>
> Neither unique_ptr nor shared_ptr can be used in the place of smart_ptr as<br>
> unique_ptr sets the raw pointer to nullptr after release() (StopOwn() in the<br>
> example above) whereas shared_ptr is unable to release.<br>
<br>
</span>I don't understand why shared_ptr wouldn't suffice for the example<br>
above. There are two cases in your example where you try to release the<br>
pointer - in one of them it seems you don't actually want to release it,<br>
because you continue using it after, and in the other the scope ends<br>
immediately after the release. The shared_ptr releases when it goes out<br>
of scope, so it seems to be exactly what you want here.<br>
<br>
Maybe I'm just misunderstanding the use case here, but I fear that a<br>
type like this one would just serve to paper over problems where the<br>
ownership is very unclear, without really helping much.<br></blockquote><div><br></div><div>Perhaps this is a case of poor examples, I'm not sure. I certainly share your concern that this might not be the right path forward, but it's something that I've seen come up repeatedly when doing unique_ptr migrations, perhaps moreso in Clang's frontend code.<br><br>Essentially there are a variety of data structures that "sometimes" own their underlying data. Often implemented as a raw pointer and a boolean. (sometimes I've migrated this to a raw pointer and a unique_ptr - the raw pointer always points to the thing of interest, the unique_ptr is sometimes non-null and points to the same thing to keep it alive (or destroy it when it's no longer needed, more specifically))<br><br>I can go & dredge up some examples if we want to discuss the particular merits & whether each of those cases would be better solved in some other way, but it seemed pervasive enough in the current codebase that some incremental improvement could be gained by replacing these cases with a more specific tool for the job. We might still consider this tool to be "not ideal".<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
> Attached is a scratch that illustrates how the minimal<br>
> API/implementation of a desired smart pointer sufficient for<br>
> refactoring would look like. Any ideas and suggestions are<br>
> appreciated.<br>
><br>
</span>> //===-- CondOwnershipPtr.h - Smart ptr with conditional release -*- C++ -*-===//<br>
> //<br>
> //                     The LLVM Compiler Infrastructure<br>
> //<br>
> // This file is distributed under the University of Illinois Open Source<br>
> // License. See LICENSE.TXT for details.<br>
> //===----------------------------------------------------------------------===//<br>
><br>
> #ifndef LLVM_ADT_CONDOWNERSHIPPTR_H<br>
> #define LLVM_ADT_CONDOWNERSHIPPTR_H<br>
><br>
> namespace llvm {<br>
><br>
> template<class T><br>
> class CondOwnershipPtr {<br>
>   T* Ptr;<br>
>   bool Own;<br>
><br>
>   void Delete() {<br>
>     if (Ptr && !Own)<br>
>       delete Ptr;<br>
>   }<br>
<br>
This seems to delete the pointer iff we *don't* own it. I think you have<br>
that backwards...<br>
<br>
> public:<br>
>   CondOwnershipPtr() : Ptr(nullptr), Own(true) {}<br>
>   explicit CondOwnershipPtr(T* p) : Ptr(p), Own(true) {}<br>
><br>
>   ~CondOwnershipPtr() {<br>
>     Delete();<br>
>   }<br>
><br>
>   T* Get() const {<br>
>     return Ptr;<br>
>   }<br>
><br>
>   T* StopOwn() const {<br>
>     Own = false;<br>
>     return Ptr;<br>
>   }<br>
><br>
>   void Reset(T* P = nullptr) {<br>
>     if (P != Ptr) {<br>
>       Delete();<br>
>       Ptr = P;<br>
>       Own = true;<br>
>     }<br>
>   }<br>
><br>
>   bool Owns() const {<br>
>     return Own;<br>
>   }<br>
><br>
>   operator bool() const {<br>
>     return Ptr != nullptr;<br>
>   }<br>
><br>
>   T& operator*() const {<br>
>     return *Ptr;<br>
>   }<br>
><br>
>   T* operator->() const {<br>
>     return Ptr;<br>
>   }<br>
> };<br>
><br>
> } // end namespace llvm<br>
><br>
> #endif<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</blockquote></div><br></div></div>