11
votes
6answers
1k views
What’s a good C memory allocator for embedded systems?
I have an single threaded, embedded application that allocates and deallocates lots and lots of small blocks (32-64b). The perfect scenario for a cache based allocator. And althoug …
10
votes
8answers
482 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 …
9
votes
5answers
1k views
Multithreaded Memory Allocators for C/C++
Hi I currently have heavily multithreaded server application, and I'm shopping around for a good multithreaded memory allocator.
So far I'm torn between:
-Sun's umem
-Google's t …
7
votes
9answers
543 views
Getting a stack overflow exception when declaring a large array
The following code is generating a stack overflow error for me
int main(int argc, char* argv[])
{
int sieve[2000000];
return 0;
}
How do I get around this? I am using Tu …
6
votes
8answers
485 views
Possible NP-complete problem?
I'd just like someone to verify whether the following problem is NP-complete or if there is actually a better/easier solution to it than simple brute-force combination checking.
W …
5
votes
4answers
922 views
Why doesn’t this C++ STL allocator allocate?
I'm trying to write a custom STL allocator that is derived from std::allocator, but somehow all calls to allocate() go to the base class. I have narrowed it down to this code:
tem …
4
votes
3answers
98 views
Allocation latency seems high, why?
I have a (java) application that runs in a low latency environment, it typically processes initial instructions in ~600micros (+/- 100). Naturally as we've moved further into the m …
4
votes
8answers
212 views
Custom malloc() implementation header design
I am trying to write a custom allocator for debugging purposes (as an exercise) in C, where I will be using a single linked list to hold together the free list of memory using the …
4
votes
9answers
497 views
To “new” or not to “new”
Is there a rule of thumb to follow when to use the new keyword and when not to when declaring objects?
List<MyCustomClass> listCustClass = GetList();
OR
List<MyCustomC …
4
votes
2answers
398 views
std::allocator construct/destroy vs. placement new/p->~T()
For a project of mine, I am writing some STL containers from scratch (I have my reasons). Since I am mimicking the functionality and interfaces of the STL so closely I am doing my …
4
votes
11answers
3k views
C++ Multi-dimensional Arrays on the Heap
I went looking for this the other day, and thought it should probably be added to StackOverflow's reservoir of questions.
How would I go about dynamically allocating a multi-dime …
3
votes
4answers
182 views
Proof that Fowler’s money allocation algorithm is correct.
Martin Fowler has a Money class that has a money allocation routine. This routine allocates money according to a given list of ratios without losing any value through rounding. It …
3
votes
8answers
416 views
determine size of dynamically allocated memory in c
Is there a way in c to find out the size of dynamically allocated memory?
For e.g., Suppose I say
char* p = malloc(sizeof(char)*100);
Now is there a way to find out the size of …
3
votes
7answers
293 views
Returning stack data in C; Does it unallocate correctly?
I was reviewing a friend's code and got into an interesting debate on how C/C++ allocates memory on the stack and manages its release. If I were to create an array of 10 objects in …
3
votes
2answers
369 views
Escape analysis in Java
As far as I know the JVM uses escape analysis for some performance optimisations like lock coarsening and lock elision.
I'm interested if there is a possibility for the JVM to deci …
