gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
NetworkLink.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 Inria
3  * Copyright (c) 2016 Georgia Institute of Technology
4  * Copyright (c) 2008 Princeton University
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 
32 #ifndef __MEM_RUBY_NETWORK_GARNET2_0_NETWORKLINK_HH__
33 #define __MEM_RUBY_NETWORK_GARNET2_0_NETWORKLINK_HH__
34 
35 #include <iostream>
36 #include <vector>
37 
41 #include "params/NetworkLink.hh"
42 #include "sim/clocked_object.hh"
43 
44 class GarnetNetwork;
45 
46 class NetworkLink : public ClockedObject, public Consumer
47 {
48  public:
49  typedef NetworkLinkParams Params;
50  NetworkLink(const Params *p);
51  ~NetworkLink() = default;
52 
53  void setLinkConsumer(Consumer *consumer);
54  void setSourceQueue(flitBuffer *src_queue);
56  link_type getType() { return m_type; }
57  void print(std::ostream& out) const {}
58  int get_id() const { return m_id; }
59  void wakeup();
60 
61  unsigned int getLinkUtilization() const { return m_link_utilized; }
62  const std::vector<unsigned int> & getVcLoad() const { return m_vc_load; }
63 
64  inline bool isReady(Cycles curTime) { return linkBuffer.isReady(curTime); }
65 
66  inline flit* peekLink() { return linkBuffer.peekTopFlit(); }
67  inline flit* consumeLink() { return linkBuffer.getTopFlit(); }
68 
69  uint32_t functionalWrite(Packet *);
70  void resetStats();
71 
72  private:
73  const int m_id;
76 
80 
81  // Statistical variables
82  unsigned int m_link_utilized;
84 };
85 
86 #endif // __MEM_RUBY_NETWORK_GARNET2_0_NETWORKLINK_HH__
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
flit * getTopFlit()
Definition: flitBuffer.hh:55
link_type
Definition: CommonTypes.hh:42
uint8_t type
Definition: inet.hh:328
Definition: flit.hh:41
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
bool isReady(Cycles curTime)
Definition: flitBuffer.cc:50
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
flit * peekTopFlit()
Definition: flitBuffer.hh:64
Bitfield< 0 > p

Generated on Thu May 28 2020 16:21:34 for gem5 by doxygen 1.8.13