Go to the documentation of this file.
38 #ifndef __BASE_COROUTINE_HH__
39 #define __BASE_COROUTINE_HH__
63 template <
typename Arg,
typename Ret>
71 using ArgChannel =
typename std::conditional_t<
72 std::is_same<Arg, void>::value,
Empty, std::stack<Arg>>;
74 using RetChannel =
typename std::conditional_t<
75 std::is_same<Ret, void>::value,
Empty, std::stack<Ret>>;
101 template <
typename T = Ret>
104 !std::is_same<T, void>::value, T> param)
119 template <
typename T = Ret>
120 typename std::enable_if_t<std::is_same<T, void>::value,
140 template <
typename T = Arg>
141 typename std::enable_if_t<!std::is_same<T, void>::value, T>
145 while (args_channel.empty()) {
149 auto ret = args_channel.top();
211 template <
typename T = Arg>
214 !std::is_same<T, void>::value, T> param)
229 template <
typename T = Arg>
230 typename std::enable_if_t<std::is_same<T, void>::value,
Coroutine> &
249 template <
typename T = Ret>
250 typename std::enable_if_t<!std::is_same<T, void>::value, T>
254 while (ret_channel.empty()) {
258 auto ret = ret_channel.top();
268 operator bool()
const {
return !this->
finished(); }
299 #endif // __BASE_COROUTINE_HH__
Coroutine & operator()(typename std::enable_if_t< !std::is_same< T, void >::value, T > param)
Coroutine interface.
void run()
Start executing the fiber represented by this object.
GEM5_DEPRECATED_NAMESPACE(m5, gem5)
std::enable_if_t<!std::is_same< T, void >::value, T > get()
get() is the way we can extrapolate arguments from the coroutine caller.
Coroutine(std::function< void(CallerType &)> f, bool run_coroutine=true)
Coroutine constructor.
typename std::conditional_t< std::is_same< Arg, void >::value, Empty, std::stack< Arg > > ArgChannel
std::enable_if_t<!std::is_same< T, void >::value, T > get()
get() is the way we can extrapolate return values (yielded) from the coroutine.
static Fiber * currentFiber()
Get a pointer to the current running Fiber.
std::enable_if_t< std::is_same< T, void >::value, Coroutine > & operator()()
operator() is the way we can jump inside the coroutine.
std::enable_if_t< std::is_same< T, void >::value, CallerType > & operator()()
operator() is the way we can jump outside the coroutine
CallerType & operator()(typename std::enable_if_t< !std::is_same< T, void >::value, T > param)
operator() is the way we can jump outside the coroutine and return a value to the caller.
Coroutine & operator=(const Coroutine &rhs)=delete
This class represents a fiber, which is a light weight sort of thread which is cooperatively schedule...
CallerType caller
Coroutine caller.
CallerType(Coroutine &_coro)
This template defines a Coroutine wrapper type with a Boost-like interface.
typename std::conditional_t< std::is_same< Ret, void >::value, Empty, std::stack< Ret > > RetChannel
bool finished() const
Returns whether the "main" function of this fiber has finished.
CallerType: A reference to an object of this class will be passed to the coroutine task.
std::function< void(CallerType &)> task
Coroutine task.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
void main() override
Overriding base (Fiber) main.
ArgChannel argsChannel
Arguments for the coroutine.
Generated on Wed Jul 28 2021 12:10:22 for gem5 by doxygen 1.8.17