gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups 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/mem_object.hh"
38 #include "mem/port.hh"
39 #include "params/GarnetSyntheticTraffic.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;
61 
62  virtual void init();
63 
64  // main simulation loop (one cycle)
65  void tick();
66 
67  virtual BaseMasterPort &getMasterPort(const std::string &if_name,
68  PortID idx = InvalidPortID);
69 
74  void printAddr(Addr a);
75 
76  protected:
77  class TickEvent : public Event
78  {
79  private:
81 
82  public:
84  void process() { cpu->tick(); }
85  virtual const char *description() const
86  {
87  return "GarnetSyntheticTraffic tick";
88  }
89  };
90 
92 
93  class CpuPort : public MasterPort
94  {
96 
97  public:
98 
99  CpuPort(const std::string &_name, GarnetSyntheticTraffic *_tester)
100  : MasterPort(_name, _tester), tester(_tester)
101  { }
102 
103  protected:
104 
105  virtual bool recvTimingResp(PacketPtr pkt);
106 
107  virtual void recvReqRetry();
108  };
109 
111 
113  {
114  public:
117  : data(_data)
118  { }
119 
120  // Hold onto data pointer
121  uint8_t *data;
122  };
123 
125  unsigned size;
126  int id;
127 
128  std::map<std::string, TrafficType> trafficStringToEnum;
129 
130  unsigned blockSizeBits;
131 
133 
140 
141  std::string trafficType; // string
142  TrafficType traffic; // enum from string
143  double injRate;
144  int injVnet;
146 
148 
150 
151  void completeRequest(PacketPtr pkt);
152 
153  void generatePkt();
154  void sendPkt(PacketPtr pkt);
155  void initTrafficType();
156 
157  void doRetry();
158 
159  friend class MemCompleteEvent;
160 };
161 
162 #endif // __CPU_GARNET_SYNTHETIC_TRAFFIC_HH__
163 
164 
165 
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:167
TickEvent(GarnetSyntheticTraffic *c)
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
const PortID InvalidPortID
Definition: types.hh:182
static const Priority CPU_Tick_Pri
CPU ticks must come after other associated CPU events (such as writebacks).
Definition: eventq.hh:161
Bitfield< 8 > a
Definition: miscregs.hh:1377
MemObject declaration.
void completeRequest(PacketPtr pkt)
Port Object Declaration.
GarnetSyntheticTraffic(const Params *p)
Declaration of Statistics objects.
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the slave port.
virtual const char * description() const
Return a C string describing the event.
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)
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:85
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:245
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a MemObject that sees the packet.
Definition: packet.hh:377
Bitfield< 29 > c
Definition: miscregs.hh:1365
Definition: eventq.hh:185
virtual BaseMasterPort & getMasterPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a master port with a given name and index.
The MemObject class extends the ClockedObject with accessor functions to get its master and slave por...
Definition: mem_object.hh:60
A BaseMasterPort is a protocol-agnostic master port, responsible only for the structural connection t...
Definition: port.hh:115
virtual void recvReqRetry()
Called by the slave port if sendTimingReq was called on this master port (causing recvTimingReq to be...
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:181
Bitfield< 0 > p

Generated on Fri Jun 9 2017 13:03:44 for gem5 by doxygen 1.8.6