search for: young_heap_limit

Displaying 1 result from an estimated 1 matches for "young_heap_limit".

2008 Feb 05
2
[LLVMdev] Advice on implementing fast per-thread data
...ds) allocation rate. What I'd like is something similiar to the Ocaml garbage collector, but with a unique young heap for each thread (so I don't have to acquire a lock to allocate). But this requires me to have two words of thread-local storage for every thread (young_heap_pointer and young_heap_limit). So this is the question I have: what is the best way to implement this, given exceedingly tight constraints on performance? I'd like something that could be implemented on both Unix/Mac and Windows, just to make it more of a problem. By far the best way I can think of is to play games...