search for: 1581eeab

Displaying 2 results from an estimated 2 matches for "1581eeab".

2013 Jun 30
0
[LLVMdev] Implementing closures and continuations
...g up with answers to most of your questions. If you need completely general continuations, yes, you'll want to explicitly allocate your stack. -Eli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130629/1581eeab/attachment.html>
2013 Jun 30
2
[LLVMdev] Implementing closures and continuations
Hi all, In getting to know the LLVM infrastructure, I'm having a hard time finding implementation details for closures and continuations. For closures, I've read comments such as "using a struct" as an environment to hold references to free variables, linked lists to dictionaries for various scope levels, and even things like "it's just like virtual methods". I