Tagged Questions

59
votes
14answers
12k views

Why is alloca not considered good practice?

Alloca allocates memory from Stack rather then heap which is case in malloc. So, when I return from the routine the memory is freed. So, actually this solves my problem of freeing up of dynamically ...
6
votes
3answers
253 views

Is there an allocator that uses alloca and is otherwise C++ STL compliant?

I have two questions: 1) Is it possible to implement an allocator that uses alloca to allocate memory on the stack and is otherwise C++ STL compliant? If there is code out there, you can make me ...
1
vote
5answers
271 views

In which cases is alloca() useful?

Why would you ever want to use alloca() when you could always allocate a fixed size buffer on the stack large enough to fit all uses? This is not a rhetorical question...
0
votes
6answers
92 views

returning alloca pointer

Does this code return an invalid reference to a variable allocated on the stack? Or what: void *f(size_t sz) { return alloca(sz); } Or is it a special case that is handled by the alloca ...
0
votes
1answer
77 views

how does stack growing work on windows and linux?

I just read that windows programs call _alloca on function entry to grow the stack if they need more than 4k on the stack. I guss that every time the guard page is hit windows allocates a new page for ...
0
votes
8answers
961 views

Resizing dynamic stack allocations in C++

I'm writing a small ray tracer using bounding volume hierarchies to accelerate ray tracing. Long story short, I have a binary tree and I might need to visit multiple leafs. Current I have a node with ...