search for: niebuhr

Displaying 6 results from an estimated 6 matches for "niebuhr".

Did you mean: ziebuhr
2011 May 02
1
[LLVMdev] status: llvm-stack-switch
...e machines. This way, no system calls would be needed and everything would be with little memory usage. Obviously this could blow up the stack but it would be efficient in out use case. (Every coroutines pauses and returns to the scheduler, this scheduler then activates the next coroutine) Toralf Niebuhr [1]http://code.google.com/p/llvm-stack-switch/
2011 Aug 04
0
[LLVMdev] [RFC] Coroutines
On 07/28/2011 05:31 PM, Sanjoy Das wrote: > Hi llvmdev! > > I've been working on adding coroutines to LLVM. Mentioned below is the > implementation plan I'm following, for suggestions, flames and other > input. Using segmented stacks is a prerequisite. I think my only comment is that, while this would probably work, implementing it in C with a bit of assembly for
2011 Jul 28
4
[LLVMdev] [RFC] Coroutines
Hi llvmdev! I've been working on adding coroutines to LLVM. Mentioned below is the implementation plan I'm following, for suggestions, flames and other input. Using segmented stacks is a prerequisite. The idea is to associate every coroutine with a coroutine descriptor. A coroutine descriptor consists of four words: w0, w1, w2 and w3. w0 always contains the _launcher_, and invoking a
2011 May 02
0
[LLVMdev] status: llvm-stack-switch
Hello Toralf, > I wanted to ask what the current status of llvm-stack-switch[1] is. Given that this project never appeared in this mailing list - have you tried to ask its author? -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
2011 May 04
0
[LLVMdev] exception cleanup examples (was: status: llvm-stack-switch)
...ever appeared in this mailing list - have you >> tried to ask its author? > >It is on the mailing list. This is how I found this project. >http://lists.cs.uiuc.edu/pipermail/llvmdev/2010-April/030787.html > >But I couldn't find any updates after this thread. > >Toralf Niebuhr I am trying to implement something like this using boost.context library; in my case, the scope of usage is more limited, in the sense that i don't want to spawn coroutines from the language, but actually just embed the compiled code inside coroutines/user space threads/or how we want to call...
2011 May 01
2
[LLVMdev] LoopInfo are not able to identify some natural loops?
Thanks for the reply. The LoopInfo pass can actually identify the loop I mentioned. My former question is due to a bug in my pass. What I worried is that LoopInfo can not identify all the natural loops for the benchmarks I use, but now I haven't found any such cases. Bo On Sun, May 1, 2011 at 4:24 PM, John Criswell <criswell at illinois.edu> wrote: > On 4/30/11 8:52 AM, Bo Wu