search for: supend1

Displaying 2 results from an estimated 2 matches for "supend1".

Did you mean: suspend1
2016 Jun 12
2
[RFC] LLVM Coroutines
...r being patient with me. Two questions and one clarification: Q1: Do we have to have a load here? =================================== >> block1: >> %first_time = load... <--- What are we loading here? >> br i1 %first_time, label return, label suspend1 >> >> supend1: >> %0 = coro.suspend() >> switch %0 (resume1, destroy1) Can we use three way coro.suspend instead? Block1: %0 = call i8 coro.suspend() switch i8 %0, label suspend1 [i8 0 %return] ; or icmp + br i1 Suspend1: switch i8 %0, label %resume1 [i8 1 %destroy1] ; or icmp...
2016 Jun 11
4
[RFC] LLVM Coroutines
On Fri, Jun 10, 2016 at 5:25 PM, Gor Nishanov <gornishanov at gmail.com> wrote: > Hi Eli: > > >> Naively, you would expect that it would be legal to hoist the store... > >> but that breaks your coroutine semantics because the global could be > mutated > >> between the first return and the resume. > > Hmmm... I don't see the problem. I think