gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fiber.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2018 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __BASE_FIBER_HH__
29 #define __BASE_FIBER_HH__
30 
31 // ucontext functions (like getcontext, setcontext etc) have been marked
32 // as deprecated and are hence hidden in latest macOS releases.
33 // By defining _XOPEN_SOURCE we make them available at compilation time.
34 #if defined(__APPLE__) && defined(__MACH__)
35 #define _XOPEN_SOURCE 600
36 #include <ucontext.h>
37 #undef _XOPEN_SOURCE
38 #else
39 #include <ucontext.h>
40 #endif
41 
42 #include <cstddef>
43 #include <cstdint>
44 
45 #include "config/have_valgrind.hh"
46 
62 class Fiber
63 {
64  public:
65  const static size_t DefaultStackSize = 0x50000;
66 
70  Fiber(size_t stack_size=DefaultStackSize);
71  Fiber(Fiber *link, size_t stack_size=DefaultStackSize);
72 
73  virtual ~Fiber();
74 
77  void run();
78 
81  bool finished() const { return _finished; };
82 
85  bool started() const { return _started; };
86 
89  static Fiber *currentFiber();
93  static Fiber *primaryFiber();
94 
95  protected:
99  virtual void main() = 0;
100 
101  void setStarted() { _started = true; }
102 
103  private:
104  static void entryTrampoline();
105  void start();
106 
107  ucontext_t ctx;
109 
110  // The stack for this context, or a nullptr if allocated elsewhere.
111  void *stack;
112  size_t stackSize;
113  void *guardPage;
115 #if HAVE_VALGRIND
116  unsigned valgrindStackId;
117 #endif
118 
119  bool _started;
120  bool _finished;
121  void createContext();
122 };
123 
124 #endif // __BASE_FIBER_HH__
void run()
Start executing the fiber represented by this object.
Definition: fiber.cc:163
bool finished() const
Returns whether the "main" function of this fiber has finished.
Definition: fiber.hh:81
void * guardPage
Definition: fiber.hh:113
void createContext()
Definition: fiber.cc:122
ucontext_t ctx
Definition: fiber.hh:107
void start()
Definition: fiber.cc:141
static void entryTrampoline()
Definition: fiber.cc:79
static Fiber * primaryFiber()
Get a pointer to the primary Fiber.
Definition: fiber.cc:182
void * stack
Definition: fiber.hh:111
bool _started
Definition: fiber.hh:119
static const size_t DefaultStackSize
Definition: fiber.hh:65
size_t guardPageSize
Definition: fiber.hh:114
size_t stackSize
Definition: fiber.hh:112
This class represents a fiber, which is a light weight sort of thread which is cooperatively schedule...
Definition: fiber.hh:62
void setStarted()
Definition: fiber.hh:101
bool started() const
Returns whether the "main" function of this fiber has started.
Definition: fiber.hh:85
Fiber(size_t stack_size=DefaultStackSize)
stack_size is the size of the stack available to this fiber.
Definition: fiber.cc:84
bool _finished
Definition: fiber.hh:120
static Fiber * currentFiber()
Get a pointer to the current running Fiber.
Definition: fiber.cc:181
virtual void main()=0
This method is called when this fiber is first run.
Fiber * link
Definition: fiber.hh:108
virtual ~Fiber()
Definition: fiber.cc:111

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13