gem5  v20.0.0.3
RubyTester.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 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  * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
15  * Copyright (c) 2009 Advanced Micro Devices, Inc.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_RUBYTEST_RUBYTESTER_HH__
43 #define __CPU_RUBYTEST_RUBYTESTER_HH__
44 
45 #include <iostream>
46 #include <string>
47 #include <vector>
48 
50 #include "mem/packet.hh"
51 #include "mem/port.hh"
54 #include "params/RubyTester.hh"
55 #include "sim/clocked_object.hh"
56 
57 class RubyTester : public ClockedObject
58 {
59  public:
60  class CpuPort : public MasterPort
61  {
62  private:
64  // index for m_last_progress_vector and hitCallback
66 
67  public:
68  //
69  // Currently, each instatiation of the RubyTester::CpuPort supports
70  // only instruction or data requests, not both. However, for those
71  // RubyPorts that support both types of requests, separate InstOnly
72  // and DataOnly CpuPorts will map to that RubyPort
73 
74  CpuPort(const std::string &_name, RubyTester *_tester, PortID _id,
75  PortID _index)
76  : MasterPort(_name, _tester, _id), tester(_tester),
77  globalIdx(_index)
78  {}
79 
80  protected:
81  virtual bool recvTimingResp(PacketPtr pkt);
82  virtual void recvReqRetry()
83  { panic("%s does not expect a retry\n", name()); }
84  };
85 
87  {
89 
90  SenderState(Addr addr, int size) : subBlock(addr, size) {}
91 
92  };
93 
94  typedef RubyTesterParams Params;
95  RubyTester(const Params *p);
96  ~RubyTester();
97 
98  Port &getPort(const std::string &if_name,
99  PortID idx=InvalidPortID) override;
100 
101  bool isInstOnlyCpuPort(int idx);
102  bool isInstDataCpuPort(int idx);
103 
104  MasterPort* getReadableCpuPort(int idx);
105  MasterPort* getWritableCpuPort(int idx);
106 
107  void init() override;
108 
109  void wakeup();
110 
112 
113  void printStats(std::ostream& out) const {}
114  void clearStats() {}
115  void printConfig(std::ostream& out) const {}
116 
117  void print(std::ostream& out) const;
118  bool getCheckFlush() { return m_check_flush; }
119 
121  protected:
123 
125 
126  private:
127  void hitCallback(NodeID proc, SubBlock* data);
128 
129  void checkForDeadlock();
130 
131  // Private copy constructor and assignment operator
132  RubyTester(const RubyTester& obj);
133  RubyTester& operator=(const RubyTester& obj);
134 
137 
150 };
151 
152 inline std::ostream&
153 operator<<(std::ostream& out, const RubyTester& obj)
154 {
155  obj.print(out);
156  out << std::flush;
157  return out;
158 }
159 
160 #endif // __CPU_RUBYTEST_RUBYTESTER_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Ports are used to interface objects to each other.
Definition: port.hh:56
RubyTester * tester
Definition: RubyTester.hh:63
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: RubyTester.cc:132
void printConfig(std::ostream &out) const
Definition: RubyTester.hh:115
int m_num_inst_data_ports
Definition: RubyTester.hh:149
const PortID InvalidPortID
Definition: types.hh:236
void checkForDeadlock()
Definition: RubyTester.cc:261
int m_num_inst_only_ports
Definition: RubyTester.hh:148
MasterPort * getReadableCpuPort(int idx)
Definition: RubyTester.cc:207
EventFunctionWrapper checkStartEvent
Definition: RubyTester.hh:122
int m_num_readers
Definition: RubyTester.hh:145
bool isInstOnlyCpuPort(int idx)
Definition: RubyTester.cc:194
void print(std::ostream &out) const
Definition: RubyTester.cc:277
ip6_addr_t addr
Definition: inet.hh:330
std::vector< Cycles > m_last_progress_vector
Definition: RubyTester.hh:136
RubyTester(const Params *p)
Definition: RubyTester.cc:52
void clearStats()
Definition: RubyTester.hh:114
MasterID _masterId
Definition: RubyTester.hh:124
MasterID masterId()
Definition: RubyTester.hh:120
SenderState(Addr addr, int size)
Definition: RubyTester.hh:90
void printStats(std::ostream &out) const
Definition: RubyTester.hh:113
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: RubyTester.hh:82
uint64_t m_checks_completed
Definition: RubyTester.hh:139
unsigned int NodeID
Definition: TypeDefines.hh:34
bool isInstDataCpuPort(int idx)
Definition: RubyTester.cc:200
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
int m_num_cpus
Definition: RubyTester.hh:138
ClockedObject declaration and implementation.
int m_deadlock_threshold
Definition: RubyTester.hh:143
bool getCheckFlush()
Definition: RubyTester.hh:118
RubyTesterParams Params
Definition: RubyTester.hh:94
Port Object Declaration.
RubyTester & operator=(const RubyTester &obj)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
CheckTable * m_checkTable_ptr
Definition: RubyTester.hh:135
MasterPort * getWritableCpuPort(int idx)
Definition: RubyTester.cc:215
CpuPort(const std::string &_name, RubyTester *_tester, PortID _id, PortID _index)
Definition: RubyTester.hh:74
std::vector< MasterPort * > writePorts
Definition: RubyTester.hh:140
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
Definition: packet.hh:397
bool m_check_flush
Definition: RubyTester.hh:147
void hitCallback(NodeID proc, SubBlock *data)
Definition: RubyTester.cc:223
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: RubyTester.cc:115
Declaration of the Packet class.
std::ostream & operator<<(std::ostream &out, const RubyTester &obj)
Definition: RubyTester.hh:153
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:102
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: RubyTester.cc:177
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
std::vector< MasterPort * > readPorts
Definition: RubyTester.hh:141
uint64_t m_checks_to_complete
Definition: RubyTester.hh:142
Bitfield< 0 > p
const char data[]
int m_num_writers
Definition: RubyTester.hh:144
int m_wakeup_frequency
Definition: RubyTester.hh:146
void wakeup()
Definition: RubyTester.cc:244
void incrementCheckCompletions()
Definition: RubyTester.hh:111

Generated on Fri Jul 3 2020 15:53:01 for gem5 by doxygen 1.8.13