Displaying 3 results from an estimated 3 matches for "r215176".
2014 Sep 25
5
[LLVMdev] New type of smart pointer for LLVM
Hello everyone,
I bring to discussion the necessity/design of a new type of smart
pointer. r215176 and r217791 rise the problem, D5443
<http://reviews.llvm.org/D5443> is devoted to the solution.
r215176 applies several temporary ugly fixes of memory leaks in
TGParser.cpp which would be great to be refactored using smart pointers.
D5443 <http://reviews.llvm.org/D5443> demonstrates...
2014 Oct 01
4
[LLVMdev] New type of smart pointer for LLVM
...generic data structure (and such a structure would also be appliable to the
TGParser use case where this came up).
I'd love to hear some more opinions, but maybe we're not going to get
them...
>
> The main goal of the wrapper is to eliminate leaks like those in TGParser.cpp
> - r215176
> <http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/TableGen/TGParser.cpp?r1=215176&r2=215175&pathrev=215176&diff_format=f>.
> With the wrapper the fixes applied at r215176
> <http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/TableGen/TGParser.cpp?r1=215176&r2=2...
2014 Sep 25
2
[LLVMdev] New type of smart pointer for LLVM
On Wed, Sep 24, 2014 at 7:50 PM, Justin Bogner <mail at justinbogner.com>
wrote:
> Anton Yartsev <anton.yartsev at gmail.com> writes:
> > Hello everyone,
> >
> > I bring to discussion the necessity/design of a new type of smart
> pointer.
> > r215176 and r217791 rise the problem, D5443 is devoted to the solution.
> > r215176 applies several temporary ugly fixes of memory leaks in
> TGParser.cpp
> > which would be great to be refactored using smart pointers. D5443
> demonstrates
> > how the solution with a certain type of...