Displaying 1 result from an estimated 1 matches for "90ca8ce7".
2014 Feb 17
2
[LLVMdev] GC in multithreaded (but with no shared state) environment
Hi all,
I would like to implement GC for a language supporting multiple threads.
There will be no shared state between threads as communication will be
based on message passing. I do not care much about performance. The
priority for me is to get things working.
I have read LLVM guide on writing GC:
http://llvm.org/docs/GarbageCollection.html. Shadow stack approach looks
very promising. The