gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
flit.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2008 Princeton University
3  * Copyright (c) 2016 Georgia Institute of Technology
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are
8  * met: redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer;
10  * redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution;
13  * neither the name of the copyright holders nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 
31 #ifndef __MEM_RUBY_NETWORK_GARNET2_0_FLIT_HH__
32 #define __MEM_RUBY_NETWORK_GARNET2_0_FLIT_HH__
33 
34 #include <cassert>
35 #include <iostream>
36 
37 #include "base/types.hh"
40 
41 class flit
42 {
43  public:
44  flit() {}
45  flit(int id, int vc, int vnet, RouteInfo route, int size,
46  MsgPtr msg_ptr, Cycles curTime);
47 
48  int get_outport() {return m_outport; }
49  int get_size() { return m_size; }
52  int get_id() { return m_id; }
53  Cycles get_time() { return m_time; }
54  int get_vnet() { return m_vnet; }
55  int get_vc() { return m_vc; }
56  RouteInfo get_route() { return m_route; }
57  MsgPtr& get_msg_ptr() { return m_msg_ptr; }
58  flit_type get_type() { return m_type; }
61 
62  void set_outport(int port) { m_outport = port; }
63  void set_time(Cycles time) { m_time = time; }
64  void set_vc(int vc) { m_vc = vc; }
65  void set_route(RouteInfo route) { m_route = route; }
66  void set_src_delay(Cycles delay) { src_delay = delay; }
67  void set_dequeue_time(Cycles time) { m_dequeue_time = time; }
68 
70  void print(std::ostream& out) const;
71 
72  bool
73  is_stage(flit_stage stage, Cycles time)
74  {
75  return (stage == m_stage.first &&
76  time >= m_stage.second);
77  }
78 
79  void
80  advance_stage(flit_stage t_stage, Cycles newTime)
81  {
82  m_stage.first = t_stage;
83  m_stage.second = newTime;
84  }
85 
86  static bool
87  greater(flit* n1, flit* n2)
88  {
89  if (n1->get_time() == n2->get_time()) {
90  //assert(n1->flit_id != n2->flit_id);
91  return (n1->get_id() > n2->get_id());
92  } else {
93  return (n1->get_time() > n2->get_time());
94  }
95  }
96 
97  bool functionalWrite(Packet *pkt);
98 
99  protected:
100  int m_id;
101  int m_vnet;
102  int m_vc;
104  int m_size;
111 };
112 
113 inline std::ostream&
114 operator<<(std::ostream& out, const flit& obj)
115 {
116  obj.print(out);
117  out << std::flush;
118  return out;
119 }
120 
121 #endif // __MEM_RUBY_NETWORK_GARNET2_0_FLIT_HH__
void set_dequeue_time(Cycles time)
Definition: flit.hh:67
void set_time(Cycles time)
Definition: flit.hh:63
void set_outport(int port)
Definition: flit.hh:62
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
int get_vc()
Definition: flit.hh:55
std::shared_ptr< Message > MsgPtr
Definition: Message.hh:40
int get_size()
Definition: flit.hh:49
void set_route(RouteInfo route)
Definition: flit.hh:65
int get_outport()
Definition: flit.hh:48
int m_vc
Definition: flit.hh:102
Cycles m_enqueue_time
Definition: flit.hh:105
void print(std::ostream &out) const
Definition: flit.cc:63
std::pair< flit_stage, Cycles > m_stage
Definition: flit.hh:110
flit()
Definition: flit.hh:44
MsgPtr m_msg_ptr
Definition: flit.hh:107
flit_type
Definition: CommonTypes.hh:38
Definition: flit.hh:41
Cycles m_dequeue_time
Definition: flit.hh:105
std::pair< flit_stage, Cycles > get_stage()
Definition: flit.hh:59
int m_id
Definition: flit.hh:100
void set_src_delay(Cycles delay)
Definition: flit.hh:66
int m_vnet
Definition: flit.hh:101
bool functionalWrite(Packet *pkt)
Definition: flit.cc:79
Cycles get_src_delay()
Definition: flit.hh:60
int m_size
Definition: flit.hh:104
Cycles get_dequeue_time()
Definition: flit.hh:51
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
void set_vc(int vc)
Definition: flit.hh:64
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
bool is_stage(flit_stage stage, Cycles time)
Definition: flit.hh:73
int get_vnet()
Definition: flit.hh:54
Cycles get_enqueue_time()
Definition: flit.hh:50
void increment_hops()
Definition: flit.hh:69
MsgPtr & get_msg_ptr()
Definition: flit.hh:57
int get_id()
Definition: flit.hh:52
flit_stage
Definition: CommonTypes.hh:41
Cycles m_time
Definition: flit.hh:105
std::ostream & operator<<(std::ostream &out, const flit &obj)
Definition: flit.hh:114
Cycles get_time()
Definition: flit.hh:53
void advance_stage(flit_stage t_stage, Cycles newTime)
Definition: flit.hh:80
flit_type get_type()
Definition: flit.hh:58
static bool greater(flit *n1, flit *n2)
Definition: flit.hh:87
flit_type m_type
Definition: flit.hh:106
int hops_traversed
Definition: CommonTypes.hh:57
int m_outport
Definition: flit.hh:108
RouteInfo get_route()
Definition: flit.hh:56
Cycles src_delay
Definition: flit.hh:109
RouteInfo m_route
Definition: flit.hh:103

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