10
votes
8answers
480 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 …
6
votes
2answers
148 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: …
1
vote
1answer
100 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 fro …
0
votes
8answers
357 views
Resizing dynamic stack allocations in C++
Hi,
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.
C …
3
votes
11answers
556 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. …
