Hacker News

96

Allocating on the Stack

by spacey177221004541 comments
> ... > On the third loop iteration, the backing store of size 2 is full. append again has to allocate a new backing store, this time of size 4. The old backing store of size 2 is now garbage.

Correct me if I'm wrong, but isn't this a worst-case scenario? realloc can, iirc, extend in place. Your original pointer is still invalid then, but no copy is needed then.

Unless I'm missing something?

Equally, what happens to the ordering of variables on the stack? Is this new one pushed as the last one? Or is there space kept open?

E.g.:

    var tasks []task
    var other_var int
by OptionOfT1772226879
Nice to see common and natural patterns to have their performance improved. Theoretically appending to a slice would be possible to handle with just stack growth, but that would require having large gaps between goroutine stacks and mapping them lazily upon access instead of moving goroutines to the new contiguous blocks as it's implemented right now. But given how many questionable changes it requires from runtime it's certainly not going to happen :)
by nasretdinov1772217713
This article is about Go, but I wonder how many C/C++ developers realize that you've always had the ability to allocate on the stack using alloca() rather than malloc().

Of course use cases are limited (variable length buffers/strings, etc) since the lifetime of anything on the stack has to match the lifetime of the stack frame (i.e the calling function), but it's super fast since it's just bumping up the stack pointer.

by HarHarVeryFunny1772216501
Optimizations like these are so cool. I love seeing higher level languages take advantage of their high level-ness
by csjh1772224479
Awesome stuff! Does Go have profile-guided optimization? I'm wondering whether a profile could hint to the compiler how large to make the pre-reserved stack space.
by anematode1772217933
Nice! That's (seems) so simple yet also so very effective. Shouldn't other memory-managed languages be able to profit from this as well?
by bertylicious1772217258
I read that as "Allocating on the Slack" and immediately came up with three ways how to do that.
by lstodd1772221148
alloca() is not part of the C++ standard, and I can't imagine how it could used safely in a C++ environment
by zabzonk1772218390
If I had a nickel for every article about avoiding implicit boxing in gc-heap languages...
by mwkaufma1772219332