libc++: First cut at <dynarray>

Chandler Carruth chandlerc at google.com
Thu Sep 12 20:38:47 PDT 2013


On Thu, Sep 12, 2013 at 8:33 PM, Marshall Clow <mclow.lists at gmail.com>wrote:

>
>         {
>         return new dArray ( 6 );
>         }
>
> These six longs cannot be put on the stack. When would they be deallocated?
>

Sorry, yes, I always forget about the heap-allocated-dynarray case.

This just seems so fundamentally broken. How is it reasonable to heap
allocate a class whose only purpose is to optimize through use of the
stack? It just doesn't work.

(There's a third case, where a dynamic array is a member variable in a
> class or struct, but I think these two cover it well enough)
>
> In the discussion with Nick and Richard, we came up with the idea of a
> compiler intrinsic that is a hint, (i.e try to put this allocation on the
> stack), and then, if during the compiler's optimization pass, it decides
> that it has enough information (i,e can see the whole lifetime of the
> dynarray, etc), then it can change the allocation (call to ::operator new)
> to a call to something like alloca. [ Same, obviously for deallocation ]


Yes, this is one way we can do things. And yet, I contend the *correct* way
to do this is without any hint at all and instead having the compiler
simply do this for boring old std::vector *IF* it can prove a constant
upper-bound on size. Otherwise, we're still stuck in the pit of having
dynamic allocas which are simply not well supported in LLVM today.


Now, it is possible we could go through and build the necessary
infrastructure to fully optimize even in the presence of dynamic allocas,
but that is not the compiler we have today and I'm not convinced it is the
compiler anyone has today.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130912/bb610e85/attachment.html>


More information about the cfe-commits mailing list