Tagged Questions
6
votes
3answers
254 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 ...
4
votes
2answers
1k views
2
votes
5answers
88 views
Stack allocation in function wrapper / alloca in function
I'm looking for a way to wrap stack allocations in abstract data types. For example, I'd like to have a vector which can work strictly via allocations on the stack. My biggest hurdle of course is that ...
1
vote
2answers
75 views
When is memory allocated using alloca freed for class members?
class MyString
{
public:
MyString(int length):_ptr(alloca(length))
{
}
//Copy Constructor, destructor, other member functions.
private:
void* _ptr;
};
int main()
{
MyString str(44);
...
1
vote
2answers
133 views
How to replace alloca in an implementation of execvp()?
Take a look at the NetBSD implementation of execvp here:
http://cvsweb.netbsd.se/cgi-bin/bsdweb.cgi/src/lib/libc/gen/execvp.c?rev=1.30.16.2;content-type=text%2Fplain
Note the comment at line 130, in ...
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...
1
vote
1answer
170 views
alloca() of a templated array of types: how to do this?
I have a smart pointer type, and would like to construct an object that takes a pointer of that type and a count (dynamically calculated at runtime) and allocates enough memory from the stack to hold ...
0
votes
8answers
962 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 ...