gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
RubySystem.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 1999-2012 Mark D. Hill and David A. Wood
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 /*
30  * Contains all of the various parts of the system we are simulating.
31  * Performs allocation, deallocation, and setup of all the major
32  * components of the system
33  */
34 
35 #ifndef __MEM_RUBY_SYSTEM_RUBYSYSTEM_HH__
36 #define __MEM_RUBY_SYSTEM_RUBYSYSTEM_HH__
37 
38 #include <unordered_map>
39 
40 #include "base/callback.hh"
41 #include "base/output.hh"
42 #include "mem/packet.hh"
46 #include "params/RubySystem.hh"
47 #include "sim/clocked_object.hh"
48 
49 class Network;
50 class AbstractController;
51 
52 class RubySystem : public ClockedObject
53 {
54  public:
56  RubySystem(const Params &p);
57  ~RubySystem();
58 
59  // config accessors
60  static int getRandomization() { return m_randomization; }
61  static uint32_t getBlockSizeBytes() { return m_block_size_bytes; }
62  static uint32_t getBlockSizeBits() { return m_block_size_bits; }
63  static uint32_t getMemorySizeBits() { return m_memory_size_bits; }
64  static bool getWarmupEnabled() { return m_warmup_enabled; }
65  static bool getCooldownEnabled() { return m_cooldown_enabled; }
66 
70 
71  // Public Methods
72  Profiler*
74  {
75  assert(m_profiler != NULL);
76  return m_profiler;
77  }
78 
79  void regStats() override {
81  }
83  void resetStats() override;
84 
85  void memWriteback() override;
86  void serialize(CheckpointOut &cp) const override;
87  void unserialize(CheckpointIn &cp) override;
88  void drainResume() override;
89  void process();
90  void init() override;
91  void startup() override;
92  bool functionalRead(Packet *ptr);
93  bool functionalWrite(Packet *ptr);
94 
95  void registerNetwork(Network*);
97  void registerMachineID(const MachineID& mach_id, Network* network);
98  void registerRequestorIDs();
99 
100  bool eventQueueEmpty() { return eventq->empty(); }
102  {
103  auto e = new EventFunctionWrapper(
104  [this]{ processRubyEvent(); }, "RubyEvent");
105  schedule(e, tick);
106  }
107 
108  private:
109  // Private copy constructor and assignment operator
110  RubySystem(const RubySystem& obj);
111  RubySystem& operator=(const RubySystem& obj);
112 
113  void makeCacheRecorder(uint8_t *uncompressed_trace,
114  uint64_t cache_trace_size,
115  uint64_t block_size_bytes);
116 
117  static void readCompressedTrace(std::string filename,
118  uint8_t *&raw_data,
119  uint64_t &uncompressed_trace_size);
120  static void writeCompressedTrace(uint8_t *raw_data, std::string file,
121  uint64_t uncompressed_trace_size);
122 
123  void processRubyEvent();
124  private:
125  // configuration parameters
126  static bool m_randomization;
127  static uint32_t m_block_size_bytes;
128  static uint32_t m_block_size_bits;
129  static uint32_t m_memory_size_bits;
130 
131  static bool m_warmup_enabled;
132  static unsigned m_systems_to_warmup;
133  static bool m_cooldown_enabled;
136 
137  //std::vector<Network *> m_networks;
141 
142  std::unordered_map<MachineID, unsigned> machineToNetwork;
143  std::unordered_map<RequestorID, unsigned> requestorToNetwork;
144  std::unordered_map<unsigned, std::vector<AbstractController*>> netCntrls;
145 
146  public:
150 };
151 
152 #endif //__MEM_RUBY_SYSTEM_RUBYSYSTEM_HH__
Stats::Group::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:63
RubySystem::m_abstract_controls
std::vector< std::map< uint32_t, AbstractController * > > m_abstract_controls
Definition: RubySystem.hh:149
CacheRecorder
Definition: CacheRecorder.hh:66
RubySystem::functionalRead
bool functionalRead(Packet *ptr)
Definition: RubySystem.cc:477
Profiler.hh
RubySystem::getBlockSizeBytes
static uint32_t getBlockSizeBytes()
Definition: RubySystem.hh:61
RubySystem::registerAbstractController
void registerAbstractController(AbstractController *)
Definition: RubySystem.cc:100
RubySystem::m_phys_mem
SimpleMemory * m_phys_mem
Definition: RubySystem.hh:134
RubySystem::m_start_cycle
Cycles m_start_cycle
Definition: RubySystem.hh:140
RubySystem::getPhysMem
SimpleMemory * getPhysMem()
Definition: RubySystem.hh:67
RubySystem::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: RubySystem.cc:373
RubySystem::writeCompressedTrace
static void writeCompressedTrace(uint8_t *raw_data, std::string file, uint64_t uncompressed_trace_size)
Definition: RubySystem.cc:275
RubySystem::requestorToNetwork
std::unordered_map< RequestorID, unsigned > requestorToNetwork
Definition: RubySystem.hh:143
RubySystem::m_block_size_bytes
static uint32_t m_block_size_bytes
Definition: RubySystem.hh:127
Clocked::tick
Tick tick
Definition: clocked_object.hh:65
SimpleMemory
The simple memory is a basic single-ported memory controller with a configurable throughput and laten...
Definition: simple_mem.hh:61
RubySystem::resetStats
void resetStats() override
Callback to reset stats.
Definition: RubySystem.cc:467
RubySystem::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: RubySystem.cc:331
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
AbstractController.hh
RubySystem::registerMachineID
void registerMachineID(const MachineID &mach_id, Network *network)
Definition: RubySystem.cc:109
RubySystem::m_cooldown_enabled
static bool m_cooldown_enabled
Definition: RubySystem.hh:133
std::vector
STL vector class.
Definition: stl.hh:37
AbstractController
Definition: AbstractController.hh:76
RubySystem::netCntrls
std::unordered_map< unsigned, std::vector< AbstractController * > > netCntrls
Definition: RubySystem.hh:144
RubySystem::m_networks
std::vector< std::unique_ptr< Network > > m_networks
Definition: RubySystem.hh:138
RubySystem::registerRequestorIDs
void registerRequestorIDs()
Definition: RubySystem.cc:129
MachineID
Definition: MachineID.hh:50
output.hh
RubySystem::regStats
void regStats() override
Callback to set stat parameters.
Definition: RubySystem.hh:79
RubySystem::m_profiler
Profiler * m_profiler
Definition: RubySystem.hh:147
RubySystem::registerNetwork
void registerNetwork(Network *)
Definition: RubySystem.cc:94
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
packet.hh
EventFunctionWrapper
Definition: eventq.hh:1112
RubySystem::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: RubySystem.cc:400
RubySystem::collateStats
void collateStats()
Definition: RubySystem.hh:82
RubySystem::m_access_backing_store
const bool m_access_backing_store
Definition: RubySystem.hh:135
RubySystem::~RubySystem
~RubySystem()
Definition: RubySystem.cc:163
cp
Definition: cprintf.cc:37
RubySystem::getProfiler
Profiler * getProfiler()
Definition: RubySystem.hh:73
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1016
RubySystem::memWriteback
void memWriteback() override
Write back dirty buffers to memory using functional writes.
Definition: RubySystem.cc:202
ClockedObject::Params
ClockedObjectParams Params
Parameters of ClockedObject.
Definition: clocked_object.hh:237
Profiler
Definition: Profiler.hh:65
RubySystem::readCompressedTrace
static void readCompressedTrace(std::string filename, uint8_t *&raw_data, uint64_t &uncompressed_trace_size)
Definition: RubySystem.cc:342
RubySystem::m_abs_cntrl_vec
std::vector< AbstractController * > m_abs_cntrl_vec
Definition: RubySystem.hh:139
RubySystem
Definition: RubySystem.hh:52
RubySystem::eventQueueEmpty
bool eventQueueEmpty()
Definition: RubySystem.hh:100
RubySystem::getStartCycle
Cycles getStartCycle()
Definition: RubySystem.hh:68
EventQueue::empty
bool empty() const
Returns true if no events are queued.
Definition: eventq.hh:895
RubySystem::makeCacheRecorder
void makeCacheRecorder(uint8_t *uncompressed_trace, uint64_t cache_trace_size, uint64_t block_size_bytes)
Definition: RubySystem.cc:169
RubySystem::functionalWrite
bool functionalWrite(Packet *ptr)
Definition: RubySystem.cc:686
RubySystem::process
void process()
RubySystem::getAccessBackingStore
bool getAccessBackingStore()
Definition: RubySystem.hh:69
RubySystem::operator=
RubySystem & operator=(const RubySystem &obj)
RubySystem::machineToNetwork
std::unordered_map< MachineID, unsigned > machineToNetwork
Definition: RubySystem.hh:142
Network
Definition: Network.hh:76
RubySystem::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: RubySystem.cc:304
RubySystem::getCooldownEnabled
static bool getCooldownEnabled()
Definition: RubySystem.hh:65
RubySystem::getMemorySizeBits
static uint32_t getMemorySizeBits()
Definition: RubySystem.hh:63
RubySystem::m_memory_size_bits
static uint32_t m_memory_size_bits
Definition: RubySystem.hh:129
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
RubySystem::processRubyEvent
void processRubyEvent()
Definition: RubySystem.cc:457
RubySystem::m_randomization
static bool m_randomization
Definition: RubySystem.hh:126
RubySystem::startup
void startup() override
startup() is the final initialization call before simulation.
Definition: RubySystem.cc:406
RubySystem::getWarmupEnabled
static bool getWarmupEnabled()
Definition: RubySystem.hh:64
RubySystem::m_warmup_enabled
static bool m_warmup_enabled
Definition: RubySystem.hh:131
clocked_object.hh
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
EventManager::eventq
EventQueue * eventq
A pointer to this object's event queue.
Definition: eventq.hh:988
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
RubySystem::m_systems_to_warmup
static unsigned m_systems_to_warmup
Definition: RubySystem.hh:132
RubySystem::PARAMS
PARAMS(RubySystem)
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
RubySystem::getRandomization
static int getRandomization()
Definition: RubySystem.hh:60
RubySystem::enqueueRubyEvent
void enqueueRubyEvent(Tick tick)
Definition: RubySystem.hh:101
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
CacheRecorder.hh
CheckpointIn
Definition: serialize.hh:68
RubySystem::m_block_size_bits
static uint32_t m_block_size_bits
Definition: RubySystem.hh:128
Profiler::collateStats
void collateStats()
Definition: Profiler.cc:358
RubySystem::getBlockSizeBits
static uint32_t getBlockSizeBits()
Definition: RubySystem.hh:62
callback.hh
RubySystem::RubySystem
RubySystem(const Params &p)
Definition: RubySystem.cc:72
RubySystem::m_cache_recorder
CacheRecorder * m_cache_recorder
Definition: RubySystem.hh:148

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17