search for: 6c07a73a

Displaying 2 results from an estimated 2 matches for "6c07a73a".

2009 Jun 23
0
[LLVMdev] Adding safe-point code generation
...a call instruction, which is precisely what's required to call the stack. This is NOT the location where you want to add a call to your runtime. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090623/6c07a73a/attachment.html>
2009 Jun 22
4
[LLVMdev] Adding safe-point code generation
Hi all, I need to add thread-switching support to Unladen Swallow's JIT, and LLVM's safe point support looks like a good way to get code into all the right places. However, http://llvm.org/docs/GarbageCollection.html#collector-algos points out that there's no way to emit code at safe points yet, and there are no loop safe points at all. So I'll be trying to implement them. Is