gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
coroutine.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __BASE_COROUTINE_HH__
39 #define __BASE_COROUTINE_HH__
40 
41 #include <functional>
42 #include <stack>
43 
44 #include "base/compiler.hh"
45 #include "base/fiber.hh"
46 
47 namespace gem5
48 {
49 
62 template <typename Arg, typename Ret>
63 class Coroutine : public Fiber
64 {
65 
66  // This empty struct type is meant to replace coroutine channels
67  // in case the channel should be void (Coroutine template parameters
68  // are void. (See following ArgChannel, RetChannel typedef)
69  struct Empty {};
70  using ArgChannel = typename std::conditional_t<
71  std::is_same_v<Arg, void>, Empty, std::stack<Arg>>;
72 
73  using RetChannel = typename std::conditional_t<
74  std::is_same_v<Ret, void>, Empty, std::stack<Ret>>;
75 
76  public:
84  class CallerType
85  {
86  friend class Coroutine;
87  protected:
88  CallerType(Coroutine& _coro) : coro(_coro), callerFiber(nullptr) {}
89 
90  public:
100  template <typename T = Ret>
101  CallerType&
102  operator()(typename std::enable_if_t<
103  !std::is_same_v<T, void>, T> param)
104  {
105  retChannel.push(param);
106  callerFiber->run();
107  return *this;
108  }
109 
118  template <typename T = Ret>
119  typename std::enable_if_t<std::is_same_v<T, void>,
120  CallerType> &
122  {
123  callerFiber->run();
124  return *this;
125  }
126 
139  template <typename T = Arg>
140  typename std::enable_if_t<!std::is_same_v<T, void>, T>
141  get()
142  {
143  auto& args_channel = coro.argsChannel;
144  while (args_channel.empty()) {
145  callerFiber->run();
146  }
147 
148  auto ret = args_channel.top();
149  args_channel.pop();
150  return ret;
151  }
152 
153  private:
157  };
158 
163  Coroutine() = delete;
164  Coroutine(const Coroutine& rhs) = delete;
165  Coroutine& operator=(const Coroutine& rhs) = delete; // end of api_coroutine
167 
185  Coroutine(std::function<void(CallerType&)> f, bool run_coroutine = true)
186  : Fiber(), task(f), caller(*this)
187  {
188  // When desired, run the Coroutine after it is created
189  if (run_coroutine)
190  this->call();
191  }
192 
196  virtual ~Coroutine() {}
197 
198  public:
210  template <typename T = Arg>
211  Coroutine&
212  operator()(typename std::enable_if_t<!std::is_same_v<T, void>, T> param)
213  {
214  argsChannel.push(param);
215  this->call();
216  return *this;
217  }
218 
227  template <typename T = Arg>
228  typename std::enable_if_t<std::is_same_v<T, void>, Coroutine> &
230  {
231  this->call();
232  return *this;
233  }
234 
247  template <typename T = Ret>
248  typename std::enable_if_t<!std::is_same_v<T, void>, T>
249  get()
250  {
251  auto& ret_channel = caller.retChannel;
252  while (ret_channel.empty()) {
253  this->call();
254  }
255 
256  auto ret = ret_channel.top();
257  ret_channel.pop();
258  return ret;
259  }
260 
266  operator bool() const { return !this->finished(); }
267 
268  private:
275  void main() override { this->task(caller); }
276 
277  void
279  {
281  run();
282  }
283 
284  private:
287 
289  std::function<void(CallerType&)> task;
290 
293 };
294 
295 } //namespace gem5
296 
297 #endif // __BASE_COROUTINE_HH__
gem5::Coroutine::CallerType::coro
Coroutine & coro
Definition: coroutine.hh:154
gem5::VegaISA::f
Bitfield< 56 > f
Definition: pagetable.hh:53
gem5::Coroutine::get
std::enable_if_t<!std::is_same_v< T, void >, T > get()
get() is the way we can extrapolate return values (yielded) from the coroutine.
Definition: coroutine.hh:249
gem5::Coroutine::Coroutine
Coroutine()=delete
gem5::Fiber::run
void run()
Start executing the fiber represented by this object.
Definition: fiber.cc:166
gem5::Coroutine::Coroutine
Coroutine(std::function< void(CallerType &)> f, bool run_coroutine=true)
Coroutine constructor.
Definition: coroutine.hh:185
gem5::Fiber::currentFiber
static Fiber * currentFiber()
Get a pointer to the current running Fiber.
Definition: fiber.cc:185
gem5::Coroutine::operator()
Coroutine & operator()(typename std::enable_if_t<!std::is_same_v< T, void >, T > param)
Coroutine interface.
Definition: coroutine.hh:212
gem5::Coroutine::CallerType::operator()
CallerType & operator()(typename std::enable_if_t< !std::is_same_v< T, void >, T > param)
operator() is the way we can jump outside the coroutine and return a value to the caller.
Definition: coroutine.hh:102
gem5::Coroutine::operator()
std::enable_if_t< std::is_same_v< T, void >, Coroutine > & operator()()
operator() is the way we can jump inside the coroutine.
Definition: coroutine.hh:229
gem5::Coroutine::operator=
Coroutine & operator=(const Coroutine &rhs)=delete
gem5::Coroutine::CallerType::get
std::enable_if_t<!std::is_same_v< T, void >, T > get()
get() is the way we can extrapolate arguments from the coroutine caller.
Definition: coroutine.hh:141
gem5::Coroutine::call
void call()
Definition: coroutine.hh:278
gem5::Fiber
This class represents a fiber, which is a light weight sort of thread which is cooperatively schedule...
Definition: fiber.hh:71
gem5::Coroutine::CallerType::operator()
std::enable_if_t< std::is_same_v< T, void >, CallerType > & operator()()
operator() is the way we can jump outside the coroutine
Definition: coroutine.hh:121
gem5::Coroutine::caller
CallerType caller
Coroutine caller.
Definition: coroutine.hh:292
gem5::Coroutine::CallerType::CallerType
CallerType(Coroutine &_coro)
Definition: coroutine.hh:88
compiler.hh
gem5::Coroutine::ArgChannel
typename std::conditional_t< std::is_same_v< Arg, void >, Empty, std::stack< Arg > > ArgChannel
Definition: coroutine.hh:71
gem5::Coroutine
This template defines a Coroutine wrapper type with a Boost-like interface.
Definition: coroutine.hh:63
gem5::Coroutine::~Coroutine
virtual ~Coroutine()
Definition: coroutine.hh:196
gem5::Coroutine::CallerType::retChannel
RetChannel retChannel
Definition: coroutine.hh:156
gem5::Coroutine::RetChannel
typename std::conditional_t< std::is_same_v< Ret, void >, Empty, std::stack< Ret > > RetChannel
Definition: coroutine.hh:74
gem5::Fiber::finished
bool finished() const
Returns whether the "main" function of this fiber has finished.
Definition: fiber.hh:109
gem5::Coroutine::CallerType
CallerType: A reference to an object of this class will be passed to the coroutine task.
Definition: coroutine.hh:84
gem5::Coroutine::CallerType::callerFiber
Fiber * callerFiber
Definition: coroutine.hh:155
gem5::Coroutine::Empty
Definition: coroutine.hh:69
gem5::Coroutine::task
std::function< void(CallerType &)> task
Coroutine task.
Definition: coroutine.hh:289
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
fiber.hh
gem5::Coroutine::main
void main() override
Overriding base (Fiber) main.
Definition: coroutine.hh:275
gem5::Coroutine::argsChannel
ArgChannel argsChannel
Arguments for the coroutine.
Definition: coroutine.hh:286

Generated on Sun Jul 30 2023 01:56:50 for gem5 by doxygen 1.8.17