gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
episode.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2021 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef CPU_TESTERS_PROTOCOL_TESTER_EPISODE_HH_
35 #define CPU_TESTERS_PROTOCOL_TESTER_EPISODE_HH_
36 
37 #include <vector>
38 
40 
41 class ProtocolTester;
42 class TesterThread;
43 
44 class Episode
45 {
46  public:
49 
50  class Action {
51  public:
52  enum class Type {
53  ACQUIRE,
54  RELEASE,
55  ATOMIC,
56  LOAD,
57  STORE,
58  };
59 
60  Action(Type t, int num_lanes);
61  ~Action() {}
62 
63  Type getType() const { return type; }
64  void setLocation(int lane, Location loc);
65  Location getLocation(int lane) const;
66  bool isAtomicAction() const;
67  bool isMemFenceAction() const;
68  const std::string printType() const;
69 
70  private:
72  int numLanes;
75  };
76 
78  int num_stores);
79  ~Episode();
80 
81  // return episode id
82  int getEpisodeId() const { return episodeId; }
83  // return the action at the head of the action queue
84  const Action* peekCurAction() const;
85  // pop the action at the head of the action queue
86  void popAction();
87  // check if there is more action to be issued in this episode
88  bool hasMoreActions() const { return nextActionIdx < actions.size();}
89  // complete this episode by releasing all locations & updating st effects
90  void completeEpisode();
91  // check if this episode is executing
92  bool isEpsActive() const { return isActive; }
93  // check if the input episode and this one have any data race
94  bool checkDRF(Location atomic_loc, Location loc, bool isStore,
95  int max_lane) const;
96 
97  private:
98  // pointers to tester, thread and address amanger structures
102 
103  // a unique episode id
105  // list of actions in this episode
108  // list of atomic locations picked for this episode
111 
112  // is a thread running this episode?
113  bool isActive;
114  // episode length = num_loads + num_stores
115  int numLoads;
117  // index of the next action in actions
119  // number of lanes in this thread
120  int numLanes;
121 
122  // randomly generate actions in this episode
123  void initActions();
124 };
125 
126 #endif /* CPU_TESTERS_PROTOCOL_TESTER_EPISODE_HH_ */
Episode::Action::getLocation
Location getLocation(int lane) const
Definition: episode.cc:288
Episode::ActionList
std::vector< Action * > ActionList
Definition: episode.hh:106
Episode::Action::isAtomicAction
bool isAtomicAction() const
Definition: episode.cc:295
Episode::Action::Type
Type
Definition: episode.hh:52
Episode::actions
ActionList actions
Definition: episode.hh:107
Episode::thread
TesterThread * thread
Definition: episode.hh:100
AddressManager::Location
int32_t Location
Definition: address_manager.hh:126
AddressManager::Value
int32_t Value
Definition: address_manager.hh:125
Episode::~Episode
~Episode()
Definition: episode.cc:67
TesterThread
Definition: tester_thread.hh:48
Episode::Action::Type::LOAD
@ LOAD
Episode::Value
AddressManager::Value Value
Definition: episode.hh:48
Episode::Action::type
Type type
Definition: episode.hh:71
std::vector< Location >
Episode::Action::getType
Type getType() const
Definition: episode.hh:63
Episode::initActions
void initActions()
Definition: episode.cc:92
Episode::atomicLocs
AtomicLocationList atomicLocs
Definition: episode.hh:110
Episode::Location
AddressManager::Location Location
Definition: episode.hh:47
Episode::Action::numLanes
int numLanes
Definition: episode.hh:72
Episode::numStores
int numStores
Definition: episode.hh:116
Episode::Action
Definition: episode.hh:50
Episode::tester
ProtocolTester * tester
Definition: episode.hh:99
AddressManager
Definition: address_manager.hh:119
Episode::checkDRF
bool checkDRF(Location atomic_loc, Location loc, bool isStore, int max_lane) const
Definition: episode.cc:239
Episode::AtomicLocationList
std::vector< Location > AtomicLocationList
Definition: episode.hh:109
Episode::Action::Type::RELEASE
@ RELEASE
Episode::addrManager
AddressManager * addrManager
Definition: episode.hh:101
Episode::Action::Type::ACQUIRE
@ ACQUIRE
Episode::numLanes
int numLanes
Definition: episode.hh:120
Episode::isEpsActive
bool isEpsActive() const
Definition: episode.hh:92
Episode
Definition: episode.hh:44
Episode::episodeId
int episodeId
Definition: episode.hh:104
ProtocolTester
Definition: protocol_tester.hh:68
Episode::popAction
void popAction()
Definition: episode.cc:85
Episode::Action::printType
const std::string printType() const
Definition: episode.cc:307
Episode::Action::locations
LocationList locations
Definition: episode.hh:74
Episode::hasMoreActions
bool hasMoreActions() const
Definition: episode.hh:88
Episode::completeEpisode
void completeEpisode()
Definition: episode.cc:199
Episode::Action::setLocation
void setLocation(int lane, Location loc)
Definition: episode.cc:281
Episode::isActive
bool isActive
Definition: episode.hh:113
Episode::Action::Type::STORE
@ STORE
ArmISA::t
Bitfield< 5 > t
Definition: miscregs_types.hh:67
Episode::numLoads
int numLoads
Definition: episode.hh:115
address_manager.hh
Episode::Episode
Episode(ProtocolTester *tester, TesterThread *thread, int num_loads, int num_stores)
Definition: episode.cc:42
Episode::Action::LocationList
std::vector< Location > LocationList
Definition: episode.hh:73
Episode::Action::~Action
~Action()
Definition: episode.hh:61
Episode::peekCurAction
const Action * peekCurAction() const
Definition: episode.cc:76
Episode::getEpisodeId
int getEpisodeId() const
Definition: episode.hh:82
Episode::Action::isMemFenceAction
bool isMemFenceAction() const
Definition: episode.cc:301
Episode::Action::Action
Action(Type t, int num_lanes)
Definition: episode.cc:271
Episode::nextActionIdx
int nextActionIdx
Definition: episode.hh:118
Episode::Action::Type::ATOMIC
@ ATOMIC

Generated on Tue Jun 22 2021 15:28:27 for gem5 by doxygen 1.8.17