gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
coherent_xbar.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2015, 2017, 2019 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
46 #ifndef __MEM_COHERENT_XBAR_HH__
47 #define __MEM_COHERENT_XBAR_HH__
48 
49 #include <unordered_map>
50 #include <unordered_set>
51 
52 #include "mem/snoop_filter.hh"
53 #include "mem/xbar.hh"
54 #include "params/CoherentXBar.hh"
55 
56 namespace gem5
57 {
58 
70 class CoherentXBar : public BaseXBar
71 {
72 
73  protected:
74 
82 
89  {
90 
91  private:
92 
95 
98 
99  public:
100 
101  CoherentXBarResponsePort(const std::string &_name,
102  CoherentXBar &_xbar, PortID _id)
103  : QueuedResponsePort(_name, queue, _id), xbar(_xbar),
104  queue(_xbar, *this)
105  { }
106 
107  protected:
108 
109  bool
110  recvTimingReq(PacketPtr pkt) override
111  {
112  return xbar.recvTimingReq(pkt, id);
113  }
114 
115  bool
117  {
118  return xbar.recvTimingSnoopResp(pkt, id);
119  }
120 
121  Tick
122  recvAtomic(PacketPtr pkt) override
123  {
124  return xbar.recvAtomicBackdoor(pkt, id);
125  }
126 
127  Tick
128  recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
129  {
130  return xbar.recvAtomicBackdoor(pkt, id, &backdoor);
131  }
132 
133  void
134  recvFunctional(PacketPtr pkt) override
135  {
136  xbar.recvFunctional(pkt, id);
137  }
138 
139  void
141  MemBackdoorPtr &backdoor) override
142  {
143  xbar.recvMemBackdoorReq(req, backdoor);
144  }
145 
147  getAddrRanges() const override
148  {
149  return xbar.getAddrRanges();
150  }
151 
152  };
153 
160  {
161  private:
164 
165  public:
166 
167  CoherentXBarRequestPort(const std::string &_name,
168  CoherentXBar &_xbar, PortID _id)
169  : RequestPort(_name, _id), xbar(_xbar)
170  { }
171 
172  protected:
173 
180  bool isSnooping() const override { return true; }
181 
182  bool
183  recvTimingResp(PacketPtr pkt) override
184  {
185  return xbar.recvTimingResp(pkt, id);
186  }
187 
188  void
190  {
191  return xbar.recvTimingSnoopReq(pkt, id);
192  }
193 
194  Tick
196  {
197  return xbar.recvAtomicSnoop(pkt, id);
198  }
199 
200  void
202  {
203  xbar.recvFunctionalSnoop(pkt, id);
204  }
205 
206  void recvRangeChange() override { xbar.recvRangeChange(id); }
207  void recvReqRetry() override { xbar.recvReqRetry(id); }
208 
209  };
210 
216  class SnoopRespPort : public RequestPort
217  {
218 
219  private:
220 
223 
224  public:
225 
230  CoherentXBar& _xbar) :
231  RequestPort(cpu_side_port.name() + ".snoopRespPort"),
232  cpuSidePort(cpu_side_port) { }
233 
238  void
239  sendRetryResp() override
240  {
241  // forward it as a snoop response retry
243  }
244 
245  void
246  recvReqRetry() override
247  {
248  panic("SnoopRespPort should never see retry");
249  }
250 
251  bool
252  recvTimingResp(PacketPtr pkt) override
253  {
254  panic("SnoopRespPort should never see timing response");
255  }
256 
257  };
258 
260 
262 
268  std::unordered_set<RequestPtr> outstandingSnoop;
269 
275  std::unordered_map<PacketId, PacketPtr> outstandingCMO;
276 
282 
286 
289 
291  const unsigned int maxOutstandingSnoopCheck;
292 
294  const unsigned int maxRoutingTableSizeCheck;
295 
297  const bool pointOfCoherency;
298 
300  const bool pointOfUnification;
301 
306  std::unique_ptr<Packet> pendingDelete;
307 
308  bool recvTimingReq(PacketPtr pkt, PortID cpu_side_port_id);
309  bool recvTimingResp(PacketPtr pkt, PortID mem_side_port_id);
310  void recvTimingSnoopReq(PacketPtr pkt, PortID mem_side_port_id);
311  bool recvTimingSnoopResp(PacketPtr pkt, PortID cpu_side_port_id);
312  void recvReqRetry(PortID mem_side_port_id);
313 
322  void
323  forwardTiming(PacketPtr pkt, PortID exclude_cpu_side_port_id)
324  {
325  forwardTiming(pkt, exclude_cpu_side_port_id, snoopPorts);
326  }
327 
337  void forwardTiming(PacketPtr pkt, PortID exclude_cpu_side_port_id,
338  const std::vector<QueuedResponsePort*>& dests);
339 
340  Tick recvAtomicBackdoor(PacketPtr pkt, PortID cpu_side_port_id,
341  MemBackdoorPtr *backdoor=nullptr);
342  Tick recvAtomicSnoop(PacketPtr pkt, PortID mem_side_port_id);
343 
355  forwardAtomic(PacketPtr pkt, PortID exclude_cpu_side_port_id)
356  {
357  return forwardAtomic(pkt, exclude_cpu_side_port_id, InvalidPortID,
358  snoopPorts);
359  }
360 
375  PortID exclude_cpu_side_port_id,
376  PortID source_mem_side_port_id,
378  dests);
379 
382  void recvFunctional(PacketPtr pkt, PortID cpu_side_port_id);
383 
386  void recvMemBackdoorReq(const MemBackdoorReq &req,
387  MemBackdoorPtr &backdoor);
388 
391  void recvFunctionalSnoop(PacketPtr pkt, PortID mem_side_port_id);
392 
401  void forwardFunctional(PacketPtr pkt, PortID exclude_cpu_side_port_id);
402 
407  bool sinkPacket(const PacketPtr pkt) const;
408 
413  bool forwardPacket(const PacketPtr pkt);
414 
426  bool
427  isDestination(const PacketPtr pkt) const
428  {
429  return (pkt->req->isToPOC() && pointOfCoherency) ||
430  (pkt->req->isToPOU() && pointOfUnification);
431  }
432 
436 
437  public:
438 
439  virtual void init();
440 
441  CoherentXBar(const CoherentXBarParams &p);
442 
443  virtual ~CoherentXBar();
444 
445  virtual void regStats();
446 };
447 
448 } // namespace gem5
449 
450 #endif //__MEM_COHERENT_XBAR_HH__
gem5::statistics::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1929
gem5::PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:245
gem5::BaseXBar
The base crossbar contains the common elements of the non-coherent and coherent crossbar.
Definition: xbar.hh:71
gem5::CoherentXBar::SnoopRespPort::sendRetryResp
void sendRetryResp() override
Override the sending of retries and pass them on through the mirrored CPU-side port.
Definition: coherent_xbar.hh:239
gem5::Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:111
gem5::CoherentXBar::SnoopRespPort::SnoopRespPort
SnoopRespPort(QueuedResponsePort &cpu_side_port, CoherentXBar &_xbar)
Create a snoop response port that mirrors a given CPU-side port.
Definition: coherent_xbar.hh:229
gem5::statistics::Distribution
A simple distribution stat.
Definition: statistics.hh:2083
gem5::RespPacketQueue
Definition: packet_queue.hh:300
gem5::CoherentXBar::snoopPorts
std::vector< QueuedResponsePort * > snoopPorts
Definition: coherent_xbar.hh:261
xbar.hh
gem5::SnoopFilter
This snoop filter keeps track of which connected port has a particular line of data.
Definition: snoop_filter.hh:89
gem5::ResponsePort::sendRetrySnoopResp
void sendRetrySnoopResp()
Send a retry to the request port that previously attempted a sendTimingSnoopResp to this response por...
Definition: port.hh:487
gem5::CoherentXBar::CoherentXBarRequestPort::CoherentXBarRequestPort
CoherentXBarRequestPort(const std::string &_name, CoherentXBar &_xbar, PortID _id)
Definition: coherent_xbar.hh:167
gem5::CoherentXBar::snoopLayers
std::vector< SnoopRespLayer * > snoopLayers
Definition: coherent_xbar.hh:81
gem5::CoherentXBar::system
System * system
Keep a pointer to the system to be allow to querying memory system properties.
Definition: coherent_xbar.hh:281
gem5::Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:377
gem5::CoherentXBar::CoherentXBarResponsePort::recvTimingReq
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Definition: coherent_xbar.hh:110
gem5::CoherentXBar::forwardPacket
bool forwardPacket(const PacketPtr pkt)
Determine if the crossbar should forward the packet, as opposed to responding to it.
Definition: coherent_xbar.cc:1112
gem5::CoherentXBar::CoherentXBar
CoherentXBar(const CoherentXBarParams &p)
Definition: coherent_xbar.cc:58
gem5::CoherentXBar::CoherentXBarResponsePort
Declaration of the coherent crossbar CPU-side port type, one will be instantiated for each of the mem...
Definition: coherent_xbar.hh:88
gem5::CoherentXBar::sinkPacket
bool sinkPacket(const PacketPtr pkt) const
Determine if the crossbar should sink the packet, as opposed to forwarding it, or responding.
Definition: coherent_xbar.cc:1088
gem5::CoherentXBar::CoherentXBarResponsePort::getAddrRanges
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: coherent_xbar.hh:147
std::vector< ReqLayer * >
gem5::CoherentXBar::snoopTraffic
statistics::Scalar snoopTraffic
Definition: coherent_xbar.hh:434
gem5::CoherentXBar::CoherentXBarRequestPort::xbar
CoherentXBar & xbar
A reference to the crossbar to which this port belongs.
Definition: coherent_xbar.hh:163
gem5::CoherentXBar::recvFunctionalSnoop
void recvFunctionalSnoop(PacketPtr pkt, PortID mem_side_port_id)
Function called by the port when the crossbar is receiving a functional snoop transaction.
Definition: coherent_xbar.cc:1045
gem5::InvalidPortID
const PortID InvalidPortID
Definition: types.hh:246
gem5::CoherentXBar::recvAtomicBackdoor
Tick recvAtomicBackdoor(PacketPtr pkt, PortID cpu_side_port_id, MemBackdoorPtr *backdoor=nullptr)
Definition: coherent_xbar.cc:737
gem5::CoherentXBar::CoherentXBarRequestPort
Declaration of the coherent crossbar memory-side port type, one will be instantiated for each of the ...
Definition: coherent_xbar.hh:159
gem5::CoherentXBar::CoherentXBarResponsePort::recvAtomicBackdoor
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Receive an atomic request packet from the peer, and optionally provide a backdoor to the data being a...
Definition: coherent_xbar.hh:128
gem5::RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:118
gem5::Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:78
gem5::CoherentXBar::CoherentXBarResponsePort::recvMemBackdoorReq
void recvMemBackdoorReq(const MemBackdoorReq &req, MemBackdoorPtr &backdoor) override
Receive a request for a back door to a range of memory.
Definition: coherent_xbar.hh:140
gem5::CoherentXBar::respLayers
std::vector< RespLayer * > respLayers
Definition: coherent_xbar.hh:80
gem5::CoherentXBar::reqLayers
std::vector< ReqLayer * > reqLayers
Declare the layers of this crossbar, one vector for requests, one for responses, and one for snoop re...
Definition: coherent_xbar.hh:79
gem5::CoherentXBar::CoherentXBarRequestPort::recvFunctionalSnoop
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: coherent_xbar.hh:201
gem5::System
Definition: system.hh:74
gem5::CoherentXBar::SnoopRespPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: coherent_xbar.hh:252
gem5::CoherentXBar::forwardAtomic
std::pair< MemCmd, Tick > forwardAtomic(PacketPtr pkt, PortID exclude_cpu_side_port_id)
Forward an atomic packet to our snoopers, potentially excluding one of the connected coherent request...
Definition: coherent_xbar.hh:355
gem5::VegaISA::p
Bitfield< 54 > p
Definition: pagetable.hh:70
gem5::CoherentXBar::isDestination
bool isDestination(const PacketPtr pkt) const
Determine if the packet's destination is the memory below.
Definition: coherent_xbar.hh:427
gem5::QueuedResponsePort
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:61
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
gem5::CoherentXBar::recvReqRetry
void recvReqRetry(PortID mem_side_port_id)
Definition: coherent_xbar.cc:728
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::CoherentXBar::CoherentXBarResponsePort::xbar
CoherentXBar & xbar
A reference to the crossbar to which this port belongs.
Definition: coherent_xbar.hh:94
gem5::CoherentXBar::recvFunctional
void recvFunctional(PacketPtr pkt, PortID cpu_side_port_id)
Function called by the port when the crossbar is receiving a Functional transaction.
Definition: coherent_xbar.cc:1009
gem5::CoherentXBar::CoherentXBarRequestPort::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: coherent_xbar.hh:189
gem5::BaseXBar::recvRangeChange
virtual void recvRangeChange(PortID mem_side_port_id)
Function called by the port when the crossbar is recieving a range change.
Definition: xbar.cc:364
gem5::CoherentXBar::recvTimingReq
bool recvTimingReq(PacketPtr pkt, PortID cpu_side_port_id)
Definition: coherent_xbar.cc:149
gem5::CoherentXBar::CoherentXBarResponsePort::recvAtomic
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition: coherent_xbar.hh:122
gem5::BaseXBar::getAddrRanges
AddrRangeList getAddrRanges() const
Return the address ranges the crossbar is responsible for.
Definition: xbar.cc:526
gem5::CoherentXBar::snoopFanout
statistics::Distribution snoopFanout
Definition: coherent_xbar.hh:435
gem5::CoherentXBar::~CoherentXBar
virtual ~CoherentXBar()
Definition: coherent_xbar.cc:111
gem5::CoherentXBar::pointOfCoherency
const bool pointOfCoherency
Is this crossbar the point of coherency?
Definition: coherent_xbar.hh:297
gem5::CoherentXBar::CoherentXBarResponsePort::recvFunctional
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
Definition: coherent_xbar.hh:134
std::pair
STL pair class.
Definition: stl.hh:58
gem5::CoherentXBar::outstandingSnoop
std::unordered_set< RequestPtr > outstandingSnoop
Store the outstanding requests that we are expecting snoop responses from so we can determine which s...
Definition: coherent_xbar.hh:268
gem5::CoherentXBar::recvTimingSnoopReq
void recvTimingSnoopReq(PacketPtr pkt, PortID mem_side_port_id)
Definition: coherent_xbar.cc:510
gem5::CoherentXBar::SnoopRespPort::cpuSidePort
QueuedResponsePort & cpuSidePort
The port which we mirror internally.
Definition: coherent_xbar.hh:222
gem5::CoherentXBar::snoops
statistics::Scalar snoops
Definition: coherent_xbar.hh:433
gem5::CoherentXBar::snoopFilter
SnoopFilter * snoopFilter
A snoop filter that tracks cache line residency and can restrict the broadcast needed for probes.
Definition: coherent_xbar.hh:285
gem5::CoherentXBar::CoherentXBarResponsePort::CoherentXBarResponsePort
CoherentXBarResponsePort(const std::string &_name, CoherentXBar &_xbar, PortID _id)
Definition: coherent_xbar.hh:101
gem5::MemBackdoor
Definition: backdoor.hh:41
gem5::CoherentXBar
A coherent crossbar connects a number of (potentially) snooping requestors and responders,...
Definition: coherent_xbar.hh:70
gem5::CoherentXBar::init
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: coherent_xbar.cc:124
gem5::CoherentXBar::outstandingCMO
std::unordered_map< PacketId, PacketPtr > outstandingCMO
Store the outstanding cache maintenance that we are expecting snoop responses from so we can determin...
Definition: coherent_xbar.hh:275
gem5::CoherentXBar::maxOutstandingSnoopCheck
const unsigned int maxOutstandingSnoopCheck
Maximum number of outstading snoops sanity check.
Definition: coherent_xbar.hh:291
gem5::CoherentXBar::CoherentXBarRequestPort::recvAtomicSnoop
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
Definition: coherent_xbar.hh:195
gem5::CoherentXBar::pointOfUnification
const bool pointOfUnification
Is this crossbar the point of unification?
Definition: coherent_xbar.hh:300
gem5::CoherentXBar::CoherentXBarRequestPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: coherent_xbar.hh:183
gem5::CoherentXBar::snoopResponseLatency
const Cycles snoopResponseLatency
Cycles of snoop response latency.
Definition: coherent_xbar.hh:288
gem5::CoherentXBar::regStats
virtual void regStats()
Callback to set stat parameters.
Definition: coherent_xbar.cc:1127
gem5::CoherentXBar::CoherentXBarResponsePort::recvTimingSnoopResp
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Definition: coherent_xbar.hh:116
gem5::CoherentXBar::forwardFunctional
void forwardFunctional(PacketPtr pkt, PortID exclude_cpu_side_port_id)
Forward a functional packet to our snoopers, potentially excluding one of the connected coherent requ...
Definition: coherent_xbar.cc:1066
gem5::CoherentXBar::recvAtomicSnoop
Tick recvAtomicSnoop(PacketPtr pkt, PortID mem_side_port_id)
Definition: coherent_xbar.cc:889
gem5::CoherentXBar::recvMemBackdoorReq
void recvMemBackdoorReq(const MemBackdoorReq &req, MemBackdoorPtr &backdoor)
Function called by the port when the crossbar receives a request for a memory backdoor.
Definition: coherent_xbar.cc:1001
gem5::CoherentXBar::SnoopRespPort::recvReqRetry
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: coherent_xbar.hh:246
gem5::CoherentXBar::SnoopRespPort
Internal class to bridge between an incoming snoop response from a CPU-side port and forwarding it th...
Definition: coherent_xbar.hh:216
gem5::CoherentXBar::pendingDelete
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
Definition: coherent_xbar.hh:306
gem5::CoherentXBar::forwardTiming
void forwardTiming(PacketPtr pkt, PortID exclude_cpu_side_port_id)
Forward a timing packet to our snoopers, potentially excluding one of the connected coherent requesto...
Definition: coherent_xbar.hh:323
gem5::CoherentXBar::recvTimingSnoopResp
bool recvTimingSnoopResp(PacketPtr pkt, PortID cpu_side_port_id)
Definition: coherent_xbar.cc:570
std::list< AddrRange >
snoop_filter.hh
gem5::CoherentXBar::recvTimingResp
bool recvTimingResp(PacketPtr pkt, PortID mem_side_port_id)
Definition: coherent_xbar.cc:447
gem5::CoherentXBar::snoopRespPorts
std::vector< SnoopRespPort * > snoopRespPorts
Definition: coherent_xbar.hh:259
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::CoherentXBar::CoherentXBarRequestPort::recvReqRetry
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: coherent_xbar.hh:207
gem5::MemBackdoorReq
Definition: backdoor.hh:129
gem5::CoherentXBar::CoherentXBarRequestPort::isSnooping
bool isSnooping() const override
Determine if this port should be considered a snooper.
Definition: coherent_xbar.hh:180
gem5::Named::_name
const std::string _name
Definition: named.hh:41
gem5::CoherentXBar::maxRoutingTableSizeCheck
const unsigned int maxRoutingTableSizeCheck
Maximum routing table size sanity check.
Definition: coherent_xbar.hh:294
gem5::CoherentXBar::CoherentXBarResponsePort::queue
RespPacketQueue queue
A normal packet queue used to store responses.
Definition: coherent_xbar.hh:97
gem5::CoherentXBar::CoherentXBarRequestPort::recvRangeChange
void recvRangeChange() override
Called to receive an address range change from the peer response port.
Definition: coherent_xbar.hh:206
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:188

Generated on Sun Jul 30 2023 01:56:58 for gem5 by doxygen 1.8.17