gem5  v20.1.0.0
GarnetSyntheticTraffic.cc
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 
30 
31 #include <cmath>
32 #include <iomanip>
33 #include <set>
34 #include <string>
35 #include <vector>
36 
37 #include "base/logging.hh"
38 #include "base/random.hh"
39 #include "base/statistics.hh"
40 #include "debug/GarnetSyntheticTraffic.hh"
41 #include "mem/packet.hh"
42 #include "mem/port.hh"
43 #include "mem/request.hh"
44 #include "sim/sim_events.hh"
45 #include "sim/stats.hh"
46 #include "sim/system.hh"
47 
48 using namespace std;
49 
51 
52 bool
54 {
55  tester->completeRequest(pkt);
56  return true;
57 }
58 
59 void
61 {
62  tester->doRetry();
63 }
64 
65 void
67 {
68  if (!cachePort.sendTimingReq(pkt)) {
69  retryPkt = pkt; // RubyPort will retry sending
70  }
71  numPacketsSent++;
72 }
73 
75  : ClockedObject(p),
76  tickEvent([this]{ tick(); }, "GarnetSyntheticTraffic tick",
77  false, Event::CPU_Tick_Pri),
78  cachePort("GarnetSyntheticTraffic", this),
79  retryPkt(NULL),
80  size(p->memory_size),
81  blockSizeBits(p->block_offset),
82  numDestinations(p->num_dest),
83  simCycles(p->sim_cycles),
84  numPacketsMax(p->num_packets_max),
85  numPacketsSent(0),
86  singleSender(p->single_sender),
87  singleDest(p->single_dest),
88  trafficType(p->traffic_type),
89  injRate(p->inj_rate),
90  injVnet(p->inj_vnet),
91  precision(p->precision),
92  responseLimit(p->response_limit),
93  requestorId(p->system->getRequestorId(this))
94 {
95  // set up counters
96  noResponseCycles = 0;
97  schedule(tickEvent, 0);
98 
99  initTrafficType();
100  if (trafficStringToEnum.count(trafficType) == 0) {
101  fatal("Unknown Traffic Type: %s!\n", traffic);
102  }
103  traffic = trafficStringToEnum[trafficType];
104 
105  id = TESTER_NETWORK++;
106  DPRINTF(GarnetSyntheticTraffic,"Config Created: Name = %s , and id = %d\n",
107  name(), id);
108 }
109 
110 Port &
111 GarnetSyntheticTraffic::getPort(const std::string &if_name, PortID idx)
112 {
113  if (if_name == "test")
114  return cachePort;
115  else
116  return ClockedObject::getPort(if_name, idx);
117 }
118 
119 void
121 {
122  numPacketsSent = 0;
123 }
124 
125 
126 void
128 {
130  "Completed injection of %s packet for address %x\n",
131  pkt->isWrite() ? "write" : "read\n",
132  pkt->req->getPaddr());
133 
134  assert(pkt->isResponse());
135  noResponseCycles = 0;
136  delete pkt;
137 }
138 
139 
140 void
142 {
143  if (++noResponseCycles >= responseLimit) {
144  fatal("%s deadlocked at cycle %d\n", name(), curTick());
145  }
146 
147  // make new request based on injection rate
148  // (injection rate's range depends on precision)
149  // - generate a random number between 0 and 10^precision
150  // - send pkt if this number is < injRate*(10^precision)
151  bool sendAllowedThisCycle;
152  double injRange = pow((double) 10, (double) precision);
153  unsigned trySending = random_mt.random<unsigned>(0, (int) injRange);
154  if (trySending < injRate*injRange)
155  sendAllowedThisCycle = true;
156  else
157  sendAllowedThisCycle = false;
158 
159  // always generatePkt unless fixedPkts or singleSender is enabled
160  if (sendAllowedThisCycle) {
161  bool senderEnable = true;
162 
164  senderEnable = false;
165 
166  if (singleSender >= 0 && id != singleSender)
167  senderEnable = false;
168 
169  if (senderEnable)
170  generatePkt();
171  }
172 
173  // Schedule wakeup
174  if (curTick() >= simCycles)
175  exitSimLoop("Network Tester completed simCycles");
176  else {
177  if (!tickEvent.scheduled())
179  }
180 }
181 
182 void
184 {
185  int num_destinations = numDestinations;
186  int radix = (int) sqrt(num_destinations);
187  unsigned destination = id;
188  int dest_x = -1;
189  int dest_y = -1;
190  int source = id;
191  int src_x = id%radix;
192  int src_y = id/radix;
193 
194  if (singleDest >= 0)
195  {
197  } else if (traffic == UNIFORM_RANDOM_) {
198  destination = random_mt.random<unsigned>(0, num_destinations - 1);
199  } else if (traffic == BIT_COMPLEMENT_) {
200  dest_x = radix - src_x - 1;
201  dest_y = radix - src_y - 1;
202  destination = dest_y*radix + dest_x;
203  } else if (traffic == BIT_REVERSE_) {
204  unsigned int straight = source;
205  unsigned int reverse = source & 1; // LSB
206 
207  int num_bits = (int) log2(num_destinations);
208 
209  for (int i = 1; i < num_bits; i++)
210  {
211  reverse <<= 1;
212  straight >>= 1;
213  reverse |= (straight & 1); // LSB
214  }
216  } else if (traffic == BIT_ROTATION_) {
217  if (source%2 == 0)
218  destination = source/2;
219  else // (source%2 == 1)
220  destination = ((source/2) + (num_destinations/2));
221  } else if (traffic == NEIGHBOR_) {
222  dest_x = (src_x + 1) % radix;
223  dest_y = src_y;
224  destination = dest_y*radix + dest_x;
225  } else if (traffic == SHUFFLE_) {
226  if (source < num_destinations/2)
227  destination = source*2;
228  else
229  destination = (source*2 - num_destinations + 1);
230  } else if (traffic == TRANSPOSE_) {
231  dest_x = src_y;
232  dest_y = src_x;
233  destination = dest_y*radix + dest_x;
234  } else if (traffic == TORNADO_) {
235  dest_x = (src_x + (int) ceil(radix/2) - 1) % radix;
236  dest_y = src_y;
237  destination = dest_y*radix + dest_x;
238  }
239  else {
240  fatal("Unknown Traffic Type: %s!\n", traffic);
241  }
242 
243  // The source of the packets is a cache.
244  // The destination of the packets is a directory.
245  // The destination bits are embedded in the address after byte-offset.
246  Addr paddr = destination;
247  paddr <<= blockSizeBits;
248  unsigned access_size = 1; // Does not affect Ruby simulation
249 
250  // Modeling different coherence msg types over different msg classes.
251  //
252  // GarnetSyntheticTraffic assumes the Garnet_standalone coherence protocol
253  // which models three message classes/virtual networks.
254  // These are: request, forward, response.
255  // requests and forwards are "control" packets (typically 8 bytes),
256  // while responses are "data" packets (typically 72 bytes).
257  //
258  // Life of a packet from the tester into the network:
259  // (1) This function generatePkt() generates packets of one of the
260  // following 3 types (randomly) : ReadReq, INST_FETCH, WriteReq
261  // (2) mem/ruby/system/RubyPort.cc converts these to RubyRequestType_LD,
262  // RubyRequestType_IFETCH, RubyRequestType_ST respectively
263  // (3) mem/ruby/system/Sequencer.cc sends these to the cache controllers
264  // in the coherence protocol.
265  // (4) Network_test-cache.sm tags RubyRequestType:LD,
266  // RubyRequestType:IFETCH and RubyRequestType:ST as
267  // Request, Forward, and Response events respectively;
268  // and injects them into virtual networks 0, 1 and 2 respectively.
269  // It immediately calls back the sequencer.
270  // (5) The packet traverses the network (simple/garnet) and reaches its
271  // destination (Directory), and network stats are updated.
272  // (6) Network_test-dir.sm simply drops the packet.
273  //
274  MemCmd::Command requestType;
275 
276  RequestPtr req = nullptr;
277  Request::Flags flags;
278 
279  // Inject in specific Vnet
280  // Vnet 0 and 1 are for control packets (1-flit)
281  // Vnet 2 is for data packets (5-flit)
282  int injReqType = injVnet;
283 
284  if (injReqType < 0 || injReqType > 2)
285  {
286  // randomly inject in any vnet
287  injReqType = random_mt.random(0, 2);
288  }
289 
290  if (injReqType == 0) {
291  // generate packet for virtual network 0
292  requestType = MemCmd::ReadReq;
293  req = std::make_shared<Request>(paddr, access_size, flags,
294  requestorId);
295  } else if (injReqType == 1) {
296  // generate packet for virtual network 1
297  requestType = MemCmd::ReadReq;
298  flags.set(Request::INST_FETCH);
299  req = std::make_shared<Request>(
300  0x0, access_size, flags, requestorId, 0x0, 0);
301  req->setPaddr(paddr);
302  } else { // if (injReqType == 2)
303  // generate packet for virtual network 2
304  requestType = MemCmd::WriteReq;
305  req = std::make_shared<Request>(paddr, access_size, flags,
306  requestorId);
307  }
308 
309  req->setContext(id);
310 
311  //No need to do functional simulation
312  //We just do timing simulation of the network
313 
315  "Generated packet with destination %d, embedded in address %x\n",
316  destination, req->getPaddr());
317 
318  PacketPtr pkt = new Packet(req, requestType);
319  pkt->dataDynamic(new uint8_t[req->getSize()]);
320  pkt->senderState = NULL;
321 
322  sendPkt(pkt);
323 }
324 
325 void
327 {
328  trafficStringToEnum["bit_complement"] = BIT_COMPLEMENT_;
329  trafficStringToEnum["bit_reverse"] = BIT_REVERSE_;
330  trafficStringToEnum["bit_rotation"] = BIT_ROTATION_;
331  trafficStringToEnum["neighbor"] = NEIGHBOR_;
332  trafficStringToEnum["shuffle"] = SHUFFLE_;
333  trafficStringToEnum["tornado"] = TORNADO_;
334  trafficStringToEnum["transpose"] = TRANSPOSE_;
335  trafficStringToEnum["uniform_random"] = UNIFORM_RANDOM_;
336 }
337 
338 void
340 {
342  retryPkt = NULL;
343  }
344 }
345 
346 void
348 {
350 }
351 
352 
354 GarnetSyntheticTrafficParams::create()
355 {
356  return new GarnetSyntheticTraffic(this);
357 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Event::scheduled
bool scheduled() const
Determine if the current event is scheduled.
Definition: eventq.hh:460
GarnetSyntheticTraffic::Params
GarnetSyntheticTrafficParams Params
Definition: GarnetSyntheticTraffic.hh:57
GarnetSyntheticTraffic::trafficStringToEnum
std::map< std::string, TrafficType > trafficStringToEnum
Definition: GarnetSyntheticTraffic.hh:112
GarnetSyntheticTraffic::generatePkt
void generatePkt()
Definition: GarnetSyntheticTraffic.cc:183
Packet::isResponse
bool isResponse() const
Definition: packet.hh:560
GarnetSyntheticTraffic::printAddr
void printAddr(Addr a)
Print state of address in memory system via PrintReq (for debugging).
Definition: GarnetSyntheticTraffic.cc:347
GarnetSyntheticTraffic::numPacketsSent
int numPacketsSent
Definition: GarnetSyntheticTraffic.hh:121
system.hh
EventBase::CPU_Tick_Pri
static const Priority CPU_Tick_Pri
CPU ticks must come after other associated CPU events (such as writebacks).
Definition: eventq.hh:199
GarnetSyntheticTraffic::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: GarnetSyntheticTraffic.cc:111
sim_events.hh
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Flags< FlagsType >
random.hh
GarnetSyntheticTraffic::injVnet
int injVnet
Definition: GarnetSyntheticTraffic.hh:128
MemCmd::ReadReq
@ ReadReq
Definition: packet.hh:82
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:82
Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:340
Packet::dataDynamic
void dataDynamic(T *p)
Set the data pointer to a value that should have delete [] called on it.
Definition: packet.hh:1145
SHUFFLE_
@ SHUFFLE_
Definition: GarnetSyntheticTraffic.hh:47
GarnetSyntheticTraffic::blockSizeBits
unsigned blockSizeBits
Definition: GarnetSyntheticTraffic.hh:114
GarnetSyntheticTraffic::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: GarnetSyntheticTraffic.cc:120
GarnetSyntheticTraffic::singleSender
int singleSender
Definition: GarnetSyntheticTraffic.hh:122
request.hh
Request::INST_FETCH
@ INST_FETCH
The request was an instruction fetch.
Definition: request.hh:104
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
packet.hh
GarnetSyntheticTraffic::requestorId
RequestorID requestorId
Definition: GarnetSyntheticTraffic.hh:133
GarnetSyntheticTraffic::singleDest
int singleDest
Definition: GarnetSyntheticTraffic.hh:123
MemCmd::Command
Command
List of all commands associated with a packet.
Definition: packet.hh:79
MemCmd::WriteReq
@ WriteReq
Definition: packet.hh:85
BIT_REVERSE_
@ BIT_REVERSE_
Definition: GarnetSyntheticTraffic.hh:44
GarnetSyntheticTraffic::cachePort
CpuPort cachePort
Definition: GarnetSyntheticTraffic.hh:94
random_mt
Random random_mt
Definition: random.cc:96
stats.hh
EventManager::schedule
void schedule(Event &event, Tick when)
Definition: eventq.hh:1005
GarnetSyntheticTraffic::responseLimit
const Cycles responseLimit
Definition: GarnetSyntheticTraffic.hh:131
ArmISA::a
Bitfield< 8 > a
Definition: miscregs_types.hh:62
NEIGHBOR_
@ NEIGHBOR_
Definition: GarnetSyntheticTraffic.hh:46
RequestPort::sendTimingReq
bool sendTimingReq(PacketPtr pkt)
Attempt to send a timing request to the responder port by calling its corresponding receive function.
Definition: port.hh:492
GarnetSyntheticTraffic::id
int id
Definition: GarnetSyntheticTraffic.hh:110
SimObject::getPort
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:123
GarnetSyntheticTraffic::numPacketsMax
int numPacketsMax
Definition: GarnetSyntheticTraffic.hh:120
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:234
statistics.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
Clocked::clockEdge
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
Definition: clocked_object.hh:174
port.hh
exitSimLoop
void exitSimLoop(const std::string &message, int exit_code, Tick when, Tick repeat, bool serialize)
Schedule an event to exit the simulation loop (returning to Python) at the end of the current cycle (...
Definition: sim_events.cc:88
sc_dt::reverse
const sc_lv_base reverse(const sc_proxy< X > &x)
Definition: sc_lv_base.hh:717
Flags::set
void set(Type flags)
Definition: flags.hh:87
GarnetSyntheticTraffic::initTrafficType
void initTrafficType()
Definition: GarnetSyntheticTraffic.cc:326
GarnetSyntheticTraffic::noResponseCycles
Tick noResponseCycles
Definition: GarnetSyntheticTraffic.hh:116
GarnetSyntheticTraffic::GarnetSyntheticTraffic
GarnetSyntheticTraffic(const Params *p)
Definition: GarnetSyntheticTraffic.cc:74
GarnetSyntheticTraffic::retryPkt
PacketPtr retryPkt
Definition: GarnetSyntheticTraffic.hh:108
ProbePoints::Packet
ProbePointArg< PacketInfo > Packet
Packet probe point.
Definition: mem.hh:103
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
GarnetSyntheticTraffic::tickEvent
EventFunctionWrapper tickEvent
Definition: GarnetSyntheticTraffic.hh:75
name
const std::string & name()
Definition: trace.cc:50
GarnetSyntheticTraffic
Definition: GarnetSyntheticTraffic.hh:54
GarnetSyntheticTraffic::doRetry
void doRetry()
Definition: GarnetSyntheticTraffic.cc:339
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:133
TRANSPOSE_
@ TRANSPOSE_
Definition: GarnetSyntheticTraffic.hh:49
GarnetSyntheticTraffic::CpuPort::recvReqRetry
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: GarnetSyntheticTraffic.cc:60
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
GarnetSyntheticTraffic::tick
void tick()
Definition: GarnetSyntheticTraffic.cc:141
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
UNIFORM_RANDOM_
@ UNIFORM_RANDOM_
Definition: GarnetSyntheticTraffic.hh:50
GarnetSyntheticTraffic::sendPkt
void sendPkt(PacketPtr pkt)
Definition: GarnetSyntheticTraffic.cc:66
GarnetSyntheticTraffic::traffic
TrafficType traffic
Definition: GarnetSyntheticTraffic.hh:126
RequestPort::printAddr
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
Definition: port.cc:154
GarnetSyntheticTraffic::numDestinations
int numDestinations
Definition: GarnetSyntheticTraffic.hh:118
logging.hh
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:83
Packet::isWrite
bool isWrite() const
Definition: packet.hh:557
Random::random
std::enable_if< std::is_integral< T >::value, T >::type random()
Use the SFINAE idiom to choose an implementation based on whether the type is integral or floating po...
Definition: random.hh:86
GarnetSyntheticTraffic::injRate
double injRate
Definition: GarnetSyntheticTraffic.hh:127
GarnetSyntheticTraffic::simCycles
Tick simCycles
Definition: GarnetSyntheticTraffic.hh:119
GarnetSyntheticTraffic::completeRequest
void completeRequest(PacketPtr pkt)
Definition: GarnetSyntheticTraffic.cc:127
BIT_ROTATION_
@ BIT_ROTATION_
Definition: GarnetSyntheticTraffic.hh:45
Packet::senderState
SenderState * senderState
This packet's sender state.
Definition: packet.hh:508
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
GarnetSyntheticTraffic::precision
int precision
Definition: GarnetSyntheticTraffic.hh:129
X86ISA::destination
destination
Definition: intmessage.hh:43
TESTER_NETWORK
int TESTER_NETWORK
Definition: GarnetSyntheticTraffic.cc:50
TORNADO_
@ TORNADO_
Definition: GarnetSyntheticTraffic.hh:48
GarnetSyntheticTraffic::CpuPort::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: GarnetSyntheticTraffic.cc:53
GarnetSyntheticTraffic.hh
BIT_COMPLEMENT_
@ BIT_COMPLEMENT_
Definition: GarnetSyntheticTraffic.hh:43
curTick
Tick curTick()
The current simulated tick.
Definition: core.hh:45

Generated on Wed Sep 30 2020 14:02:09 for gem5 by doxygen 1.8.17