Allocating on the Stack
go.dev - 92 poäng - 38 kommentarer - 23200 sekunder sedan
Kommentarer (9)
- OptionOfT - 6366 sekunder sedan> ... > 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 - csjh - 8766 sekunder sedanOptimizations like these are so cool. I love seeing higher level languages take advantage of their high level-ness
- nasretdinov - 15532 sekunder sedanNice 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 :)
- HarHarVeryFunny - 16744 sekunder sedanThis 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.
- anematode - 15312 sekunder sedanAwesome 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.
- bertylicious - 15987 sekunder sedanNice! That's (seems) so simple yet also so very effective. Shouldn't other memory-managed languages be able to profit from this as well?
- lstodd - 12097 sekunder sedanI read that as "Allocating on the Slack" and immediately came up with three ways how to do that.
- zabzonk - 14855 sekunder sedanalloca() is not part of the C++ standard, and I can't imagine how it could used safely in a C++ environment
- mwkaufma - 13913 sekunder sedanIf I had a nickel for every article about avoiding implicit boxing in gc-heap languages...
Nördnytt! 🤓