gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GarnetSyntheticTraffic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Georgia Institute of Technology
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  * Authors: Tushar Krishna
29  */
30 
31 #ifndef __CPU_GARNET_SYNTHETIC_TRAFFIC_HH__
32 #define __CPU_GARNET_SYNTHETIC_TRAFFIC_HH__
33 
34 #include <set>
35 
36 #include "base/statistics.hh"
37 #include "mem/port.hh"
38 #include "params/GarnetSyntheticTraffic.hh"
39 #include "sim/clocked_object.hh"
40 #include "sim/eventq.hh"
41 #include "sim/sim_exit.hh"
42 #include "sim/sim_object.hh"
43 #include "sim/stats.hh"
44 
48  NEIGHBOR_ = 3,
49  SHUFFLE_ = 4,
50  TORNADO_ = 5,
54 
55 class Packet;
57 {
58  public:
59  typedef GarnetSyntheticTrafficParams Params;
60  GarnetSyntheticTraffic(const Params *p);
61 
62  void init() override;
63 
64  // main simulation loop (one cycle)
65  void tick();
66 
67  Port &getPort(const std::string &if_name,
68  PortID idx=InvalidPortID) override;
69 
74  void printAddr(Addr a);
75 
76  protected:
78 
79  class CpuPort : public MasterPort
80  {
82 
83  public:
84 
85  CpuPort(const std::string &_name, GarnetSyntheticTraffic *_tester)
86  : MasterPort(_name, _tester), tester(_tester)
87  { }
88 
89  protected:
90 
91  virtual bool recvTimingResp(PacketPtr pkt);
92 
93  virtual void recvReqRetry();
94  };
95 
97 
99  {
100  public:
103  : data(_data)
104  { }
105 
106  // Hold onto data pointer
107  uint8_t *data;
108  };
109 
111  unsigned size;
112  int id;
113 
114  std::map<std::string, TrafficType> trafficStringToEnum;
115 
116  unsigned blockSizeBits;
117 
119 
126 
127  std::string trafficType; // string
128  TrafficType traffic; // enum from string
129  double injRate;
130  int injVnet;
132 
134 
136 
137  void completeRequest(PacketPtr pkt);
138 
139  void generatePkt();
140  void sendPkt(PacketPtr pkt);
141  void initTrafficType();
142 
143  void doRetry();
144 
145  friend class MemCompleteEvent;
146 };
147 
148 #endif // __CPU_GARNET_SYNTHETIC_TRAFFIC_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:75
Ports are used to interface objects to each other.
Definition: port.hh:60
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
const PortID InvalidPortID
Definition: types.hh:238
Bitfield< 8 > a
void completeRequest(PacketPtr pkt)
GarnetSyntheticTraffic(const Params *p)
Declaration of Statistics objects.
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
void printAddr(Addr a)
Print state of address in memory system via PrintReq (for debugging).
uint64_t Tick
Tick count type.
Definition: types.hh:63
CpuPort(const std::string &_name, GarnetSyntheticTraffic *_tester)
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
Port Object Declaration.
GarnetSyntheticTrafficParams Params
std::map< std::string, TrafficType > trafficStringToEnum
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
uint16_t MasterID
Definition: request.hh:86
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
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:403
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
Bitfield< 0 > p
const char data[]
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
EventFunctionWrapper tickEvent

Generated on Fri Feb 28 2020 16:27:00 for gem5 by doxygen 1.8.13