vote up 3 vote down star
1

I doubt it can be done portably, but are there any solutions out there? I think it could be done by creating an alternate stack and reseting SP,BP, and IP on function entry, and having yield save IP and restore SP+BP. Destructors and exception safety seem tricky but solvable.

Has it been done? Is it impossible?

flag

7 Answers

vote up 7 vote down check

Yes it can be done with out a problem. All you need is a little asm to move the call stack to a newly allocated stack on the heap.

I would look at the experimental Boost.Coroutine library.

The one thing that you should watch out for is a stackoverflow. On most operating systems overflowing the stack will cause a SEGFAULT because virtual memory page is not mapped. However if you allocate the stack on the heap you don't get any guarantee. Just keep that in mind

link|flag
2  
I think there should be a badge for being able to mention thze work "stackoverflow" in a valid technical context on SO! – Torsten Marek Sep 23 '08 at 15:51
Here's a nice standard C++ solution that doesn't require involving Boost : akira.ruc.dk/~keld/research/COROUTINE – Dan Sep 26 '08 at 15:59
Unfortunately Boost.Coroutine is not supported for x86_64 :( – pachanga Jul 21 at 11:09
vote up 4 vote down

On POSIX, you can use makecontext()/swapcontext() routines to portably switch execution contexts. On Windows, you can use the fiber API. Otherwise, all you need is a bit of glue assembly code that switches the machine context. I have implemented coroutines both with ASM (for AMD64) and with swapcontext(); neither is very hard.

link|flag
vote up 1 vote down

You might be better off with an iterator than a coroutine if possible. That way you can keep calling next() to get the next value, but you can keep your state as member variables instead of local variables.

It might make things more maintainable. Another c++ developer might not immediately understand the coroutine whereas they might be more familiar with an iterator.

link|flag
vote up 1 vote down

I dont think there are many full-blown, clean implementations in C++. One try that I like is protothread library.

link|flag
vote up 1 vote down

You should always consider using threads instead; especially in modern hardware. If you have work that can be logically separated in Co-routines, using threads means the work might actually be done concurrently, by separate execution units (processor cores).

But, maybe you do want to use coroutines, perhaps because you have an well tested algorithm that has already been written and tested that way, or because you are porting code written that way.

If you work within Windows, you should take a look at fibers. Fibers will give you a coroutine-like framework with support from the OS.

I am not familiar with other OS's to recommend alternatives there.

link|flag
I disagree about blindly favoring threads over fibers. In an optimal system the number of threads trying to run is equal to then number of cores (more if hyper threading). In a solution with LOTS of threads(100s), a thread pool running fibers can be far more efficient. – Caspin Oct 15 at 14:24
Thanks for commenting. However, I didn't say "blindly favor"; I said "always consider". I agree that there are circumstances where fibers or other coroutine methodologies might be more appropriate, but they can be even harder to "get right" than threads -- and that's saying a lot. Basically, I'm suggesting that for most circumstances you should use threads by default, unless you can convince yourself that there are good reasons to go for something else. – Euro Micelli Oct 27 at 2:25
Threading means locking, whereas coroutines are naturally executed in order. Boom half your work is already done for you. Threads are good if you want to compute multiple heavy algorithms in parallel, I can't really think of any other reason to use them. I guess if there's some blocking API that has no non-blocking mode? – Longpoke Nov 23 at 15:39
vote up 0 vote down

WvCont is a part of WvStreams that implements so-called semi-coroutines. These are a little easier to handle than full-on coroutines: you call into it, and it yields back to the person who called it.

It's implemented using the more flexible WvTask, which supports full-on coroutines; you can find it in the same library.

Works on win32 and Linux, at least, and probably any other Unix system.

link|flag
vote up 0 vote down

Does this point you in the right direction? It seems like an elegant solution that has lasted the test of time.....it's 9 years old!

[update] I'm actually making successful use of it myself. Curiousity got the better of me, so I looked into this solution, and found it was a good fit for a problem I've been working on for some time!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.