gem5
v19.0.0.0
|
This template defines a Coroutine wrapper type with a Boost-like interface. More...
#include <coroutine.hh>
Classes | |
class | CallerType |
CallerType: A reference to an object of this class will be passed to the coroutine task. More... | |
struct | Empty |
Public Member Functions | |
Coroutine ()=delete | |
Coroutine (const Coroutine &rhs)=delete | |
Coroutine & | operator= (const Coroutine &rhs)=delete |
Coroutine (std::function< void(CallerType &)> f, bool run_coroutine=true) | |
Coroutine constructor. More... | |
virtual | ~Coroutine () |
template<typename T = Arg> | |
Coroutine & | operator() (typename std::enable_if< !std::is_same< T, void >::value, T >::type param) |
Coroutine interface. More... | |
template<typename T = Arg> | |
std::enable_if< std::is_same< T, void >::value, Coroutine >::type & | operator() () |
operator() is the way we can jump inside the coroutine. More... | |
template<typename T = Ret> | |
std::enable_if<!std::is_same< T, void >::value, T >::type | get () |
get() is the way we can extrapolate return values (yielded) from the coroutine. More... | |
operator bool () const | |
Check if coroutine is still running. More... | |
![]() | |
Fiber (size_t stack_size=DefaultStackSize) | |
stack_size is the size of the stack available to this fiber. More... | |
Fiber (Fiber *link, size_t stack_size=DefaultStackSize) | |
virtual | ~Fiber () |
void | run () |
Start executing the fiber represented by this object. More... | |
bool | finished () const |
Returns whether the "main" function of this fiber has finished. More... | |
bool | started () const |
Returns whether the "main" function of this fiber has started. More... | |
Private Types | |
using | ArgChannel = typename std::conditional< std::is_same< Arg, void >::value, Empty, std::stack< Arg > >::type |
using | RetChannel = typename std::conditional< std::is_same< Ret, void >::value, Empty, std::stack< Ret > >::type |
Private Member Functions | |
void | main () override |
Overriding base (Fiber) main. More... | |
void | call () |
Private Attributes | |
ArgChannel | argsChannel |
Arguments for the coroutine. More... | |
std::function< void(CallerType &)> | task |
Coroutine task. More... | |
CallerType | caller |
Coroutine caller. More... | |
Additional Inherited Members | |
![]() | |
static Fiber * | currentFiber () |
Get a pointer to the current running Fiber. More... | |
static Fiber * | primaryFiber () |
Get a pointer to the primary Fiber. More... | |
![]() | |
static const size_t | DefaultStackSize = 0x50000 |
![]() | |
void | setStarted () |
This template defines a Coroutine wrapper type with a Boost-like interface.
It is built on top of the gem5 fiber class. The two template parameters (Arg and Ret) are the coroutine argument and coroutine return types which are passed between the coroutine and the caller via operator() and get() method. This implementation doesn't support passing multiple values, so a tuple must be used in that scenario.
Most methods are templatized since it is relevant to distinguish the cases where one or both of the template parameters are void
Definition at line 64 of file coroutine.hh.
|
private |
Definition at line 72 of file coroutine.hh.
|
private |
Definition at line 75 of file coroutine.hh.
|
delete |
|
delete |
|
inline |
Coroutine constructor.
The only way to construct a coroutine is to pass it the routine it needs to run. The first argument of the function should be a reference to the Coroutine<Arg,Ret>::caller_type which the routine will use as a way for yielding to the caller. The optional second boolean argument controls if the Coroutine should be run on creation, which mimics Boost's Coroutine semantics by default. This can be disabled as an optimization to avoid unnecessary context switches on Coroutine creation.
f | task run by the coroutine |
run_coroutine | set to false to disable running the coroutine immediately after it is created |
Definition at line 173 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::call().
|
inlinevirtual |
Definition at line 181 of file coroutine.hh.
|
inlineprivate |
Definition at line 254 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::caller, m5::Coroutine< Arg, Ret >::CallerType::callerFiber, Fiber::currentFiber(), and Fiber::run().
Referenced by m5::Coroutine< Arg, Ret >::Coroutine(), m5::Coroutine< Arg, Ret >::get(), and m5::Coroutine< Arg, Ret >::operator()().
|
inline |
get() is the way we can extrapolate return values (yielded) from the coroutine.
The caller blocks, waiting for the value, unless it is already available; otherwise coroutine execution is resumed, and caller won't execute until a value is yielded back from the coroutine.
Definition at line 229 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::call(), m5::Coroutine< Arg, Ret >::caller, and m5::Coroutine< Arg, Ret >::CallerType::retChannel.
Referenced by TEST().
|
inlineoverrideprivatevirtual |
Overriding base (Fiber) main.
This method will be automatically called by the Fiber running engine and it is a simple wrapper for the task that the coroutine is supposed to run.
Implements Fiber.
Definition at line 251 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::caller, and m5::Coroutine< Arg, Ret >::task.
|
inline |
Check if coroutine is still running.
Definition at line 242 of file coroutine.hh.
References Fiber::finished().
|
inline |
Coroutine interface.
operator() is the way we can jump inside the coroutine and passing arguments.
This method is generated only if the coroutine takes arguments (Arg != void)
Definition at line 195 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::argsChannel, and m5::Coroutine< Arg, Ret >::call().
|
inline |
operator() is the way we can jump inside the coroutine.
This method is generated only if the coroutine takes no arguments. (Arg = void)
Definition at line 211 of file coroutine.hh.
References m5::Coroutine< Arg, Ret >::call().
|
delete |
|
private |
Arguments for the coroutine.
Definition at line 262 of file coroutine.hh.
Referenced by m5::Coroutine< Arg, Ret >::operator()().
|
private |
Coroutine caller.
Definition at line 268 of file coroutine.hh.
Referenced by m5::Coroutine< Arg, Ret >::call(), m5::Coroutine< Arg, Ret >::get(), and m5::Coroutine< Arg, Ret >::main().
|
private |
Coroutine task.
Definition at line 265 of file coroutine.hh.
Referenced by m5::Coroutine< Arg, Ret >::main().