Tagged Questions
The alloca tag has no wiki summary.
60
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 ...
8
votes
2answers
514 views
What is the purpose of the %“alloca point” line which occurs in llvm code?
I've been looking at some LLVM assembly produced by llvm-gcc lately and I've noticed a recurring statement of which I'm not sure its purpose.
For example, the following C program:
int main(void)
{
...
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 ...
6
votes
6answers
308 views
What's the difference between alloca(n) and char x[n]?
What is the difference between
void *bytes = alloca(size);
and
char bytes[size]; //Or to be more precise, char x[size]; void *bytes = x;
...where size is a variable whose value is unknown at ...
5
votes
4answers
934 views
How to GCC compile without _alloca?
For some reason, I should use gcc to compile a C file, then link against Visual C++ 2008 project.
(I used the current latest gcc version: cygwin gcc 4.3.4 20090804.)
But there is one problem: gcc ...
4
votes
2answers
1k views
4
votes
11answers
1k views
Is it possible to predict a stack overflow in C on Linux?
There are certain conditions that can cause stack overflows on an x86 Linux system:
struct my_big_object[HUGE_NUMBER] on the stack. Walking through it eventually causes SIGSEGV.
The alloca() ...
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 ...
2
votes
2answers
231 views
Is alloca completely replaceable?
I've read quite a few places that alloca is obsolete and should not be used and Variable Length Arrays should be used instead.
My question is this: Is alloca completely replaceable by variable ...
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
183 views
alloca and ObjectiveC Garbage Collector
In an objective C project with GC enabled, I am allocating an array of variable size on the stack like this:
MaValue *myStack = alloca((sizeof(id) * someLength));
(The reason why I want to do this ...
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
2answers
72 views
What does alloca(0) do and return on various platforms?
Does alloca() returns NULL if the size given is 0?
A quick search reveals that alloca(0) force garbage collection in some cases! but I am mostly interested by return value.
thanks
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
2answers
107 views
How to use alloca to allocate C function pointers?
C is a mystery all the time!
I am implementing a work-crew thread execution model in which I am trying to use alloca as a faster memory allocation option. I have a strange segmentation fault while ...
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
2answers
280 views
C sprintf function that uses malloc or the stack
I've heard there is a version of sprintf(), possibly a GNU/gcc extension which either allocates its own buffer which I must free() or perhaps works using the stack like alloca().
Either method is ...
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 ...