gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
WireBuffer.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Advanced Micro Devices, Inc.
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  * Author: Lisa Hsu
29  *
30  */
31 
33 
34 #include <algorithm>
35 #include <functional>
36 
37 #include "base/cprintf.hh"
38 #include "base/stl_helpers.hh"
40 
41 // Output operator definition
42 
43 std::ostream&
44 operator<<(std::ostream& out, const WireBuffer& obj)
45 {
46  obj.print(out);
47  out << std::flush;
48  return out;
49 }
50 
51 
52 // ****************************************************************
53 
54 // CONSTRUCTOR
56  : SimObject(p)
57 {
58  m_msg_counter = 0;
59 }
60 
61 void
63 {
64 }
65 
67 {
68 }
69 
70 void
71 WireBuffer::enqueue(MsgPtr message, Tick current_time, Tick delta)
72 {
73  m_msg_counter++;
74  Tick arrival_time = current_time + delta;
75  assert(arrival_time > current_time);
76 
77  Message* msg_ptr = message.get();
78  msg_ptr->setLastEnqueueTime(arrival_time);
79  m_message_queue.push_back(message);
80  if (m_consumer_ptr != NULL) {
82  scheduleEventAbsolute(arrival_time);
83  } else {
84  panic("No Consumer for WireBuffer! %s\n", *this);
85  }
86 }
87 
88 void
90 {
91  assert(isReady(current_time));
92  pop_heap(m_message_queue.begin(), m_message_queue.end(),
93  std::greater<MsgPtr>());
94  m_message_queue.pop_back();
95 }
96 
97 const Message*
99 {
100  Message* msg_ptr = m_message_queue.front().get();
101  assert(msg_ptr != NULL);
102  return msg_ptr;
103 }
104 
105 void
106 WireBuffer::recycle(Tick current_time, Tick recycle_latency)
107 {
108  // Because you don't want anything reordered, make sure the recycle latency
109  // is just 1 cycle. As a result, you really want to use this only in
110  // Wire-like situations because you don't want to deadlock as a result of
111  // being stuck behind something if you're not actually supposed to.
112  assert(isReady(current_time));
113  MsgPtr node = m_message_queue.front();
114  pop_heap(m_message_queue.begin(), m_message_queue.end(),
115  std::greater<MsgPtr>());
116 
117  Tick future_time = current_time + recycle_latency;
118  node->setLastEnqueueTime(future_time);
119 
120  m_message_queue.back() = node;
121  push_heap(m_message_queue.begin(), m_message_queue.end(),
122  std::greater<MsgPtr>());
124  scheduleEventAbsolute(future_time);
125 }
126 
127 bool
129 {
130  return ((!m_message_queue.empty()) &&
131  (m_message_queue.front()->getLastEnqueueTime() <= current_time));
132 }
133 
134 void
135 WireBuffer::print(std::ostream& out) const
136 {
137 }
138 
139 void
141 {
142 }
WireBuffer::Params
RubyWireBufferParams Params
Definition: WireBuffer.hh:59
WireBuffer::peek
const Message * peek()
Definition: WireBuffer.cc:98
WireBuffer::~WireBuffer
~WireBuffer()
Definition: WireBuffer.cc:66
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
WireBuffer::dequeue
void dequeue(Tick current_time)
Definition: WireBuffer.cc:89
WireBuffer::m_consumer_ptr
Consumer * m_consumer_ptr
Definition: WireBuffer.hh:92
WireBuffer::WireBuffer
WireBuffer(const Params &p)
Definition: WireBuffer.cc:55
WireBuffer::m_message_queue
std::vector< MsgPtr > m_message_queue
Definition: WireBuffer.hh:96
WireBuffer::print
void print(std::ostream &out) const
Definition: WireBuffer.cc:135
operator<<
std::ostream & operator<<(std::ostream &out, const WireBuffer &obj)
Definition: WireBuffer.cc:44
WireBuffer
Definition: WireBuffer.hh:56
cprintf.hh
WireBuffer::m_msg_counter
uint64_t m_msg_counter
Definition: WireBuffer.hh:84
RubySystem.hh
MsgPtr
std::shared_ptr< Message > MsgPtr
Definition: Message.hh:53
WireBuffer::isReady
bool isReady(Tick current_time)
Definition: WireBuffer.cc:128
WireBuffer::init
void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: WireBuffer.cc:62
Message::setLastEnqueueTime
void setLastEnqueueTime(const Tick &time)
Definition: Message.hh:100
Message
Definition: Message.hh:56
WireBuffer::enqueue
void enqueue(MsgPtr message, Tick current_time, Tick delta)
Definition: WireBuffer.cc:71
WireBuffer::recycle
void recycle(Tick current_time, Tick recycle_latency)
Definition: WireBuffer.cc:106
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
WireBuffer.hh
WireBuffer::wakeup
void wakeup()
Definition: WireBuffer.cc:140
stl_helpers.hh
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17