gem5  v21.1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fetch1.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
45 #ifndef __CPU_MINOR_FETCH1_HH__
46 #define __CPU_MINOR_FETCH1_HH__
47 
48 #include <vector>
49 
50 #include "arch/generic/mmu.hh"
51 #include "base/named.hh"
52 #include "cpu/base.hh"
53 #include "cpu/minor/buffers.hh"
54 #include "cpu/minor/cpu.hh"
55 #include "cpu/minor/pipe_data.hh"
56 #include "mem/packet.hh"
57 
58 namespace gem5
59 {
60 
62 namespace minor
63 {
64 
67 class Fetch1 : public Named
68 {
69  protected:
72  {
73  protected:
76 
77  public:
78  IcachePort(std::string name, Fetch1 &fetch_, MinorCPU &cpu) :
79  MinorCPU::MinorCPUPort(name, cpu), fetch(fetch_)
80  { }
81 
82  protected:
84  { return fetch.recvTimingResp(pkt); }
85 
87  };
88 
107  class FetchRequest :
108  public BaseMMU::Translation, /* For TLB lookups */
109  public Packet::SenderState /* For packing into a Packet */
110  {
111  protected:
114 
115  public:
119  {
120  NotIssued, /* Just been made */
121  InTranslation, /* Issued to ITLB, must wait for reqply */
122  Translated, /* Translation complete */
123  RequestIssuing, /* Issued to memory, must wait for response */
124  Complete /* Complete. Either a fault, or a fetched line */
125  };
126 
128 
131 
137 
140 
143 
147 
149  void makePacket();
150 
152  void reportData(std::ostream &os) const;
153 
157  bool isDiscardable() const;
158 
160  bool isComplete() const { return state == Complete; }
161 
162  protected:
167  void markDelayed() { }
168 
172  void finish(const Fault &fault_, const RequestPtr &request_,
174 
175  public:
177  SenderState(),
178  fetch(fetch_),
179  state(NotIssued),
180  id(id_),
181  packet(NULL),
182  request(),
183  pc(pc_),
184  fault(NoFault)
185  {
186  request = std::make_shared<Request>();
187  }
188 
189  ~FetchRequest();
190  };
191 
193 
194  protected:
199 
206 
209 
213 
217  unsigned int lineSnap;
218 
223  unsigned int maxLineWidth;
224 
226  unsigned int fetchLimit;
227 
228  protected:
233  {
234  FetchHalted, /* Not fetching, waiting to be woken by transition
235  to FetchWaitingForPC. The PC is not valid in this state */
236  FetchWaitingForPC, /* Not fetching, waiting for stream change.
237  This doesn't stop issued fetches from being returned and
238  processed or for branches to change the state to Running. */
239  FetchRunning /* Try to fetch, when possible */
240  };
241 
245  {
246 
250  pc(TheISA::PCState(0)),
251  streamSeqNum(InstId::firstStreamSeqNum),
252  predictionSeqNum(InstId::firstPredictionSeqNum),
253  blocked(false),
254  wakeupGuard(false)
255  { }
256 
258  state(other.state),
259  pc(other.pc),
260  streamSeqNum(other.streamSeqNum),
262  blocked(other.blocked)
263  { }
264 
266 
271 
276 
282 
284  bool blocked;
285 
288  };
289 
292 
295  {
296  IcacheRunning, /* Default. Step icache queues when possible */
297  IcacheNeedsRetry /* Request rejected, will be asked to retry */
298  };
299 
300  typedef Queue<FetchRequestPtr,
304 
307 
310 
313 
316 
325  unsigned int numFetchesInITLB;
326 
327  protected:
328  friend std::ostream &operator <<(std::ostream &os,
329  Fetch1::FetchState state);
330 
332  void changeStream(const BranchData &branch);
333 
337  void updateExpectedSeqNums(const BranchData &branch);
338 
340  void processResponse(FetchRequestPtr response,
341  ForwardLineData &line);
342 
343  friend std::ostream &operator <<(std::ostream &os,
344  IcacheState state);
345 
346 
350 
354  void fetchLine(ThreadID tid);
355 
360 
364  bool tryToSend(FetchRequestPtr request);
365 
368 
370  void stepQueues();
371 
374  void popAndDiscard(FetchQueue &queue);
375 
377  void handleTLBResponse(FetchRequestPtr response);
378 
381  unsigned int numInFlightFetches();
382 
384  void minorTraceResponseLine(const std::string &name,
385  FetchRequestPtr response) const;
386 
388  virtual bool recvTimingResp(PacketPtr pkt);
389  virtual void recvReqRetry();
390 
391  public:
392  Fetch1(const std::string &name_,
393  MinorCPU &cpu_,
394  const MinorCPUParams &params,
397  Latch<BranchData>::Output prediction_,
398  std::vector<InputBuffer<ForwardLineData>> &next_stage_input_buffer);
399 
400  public:
403 
405  void evaluate();
406 
408  void wakeupFetch(ThreadID tid);
409 
410  void minorTrace() const;
411 
414  bool isDrained();
415 };
416 
417 } // namespace minor
418 } // namespace gem5
419 
420 #endif /* __CPU_MINOR_FETCH1_HH__ */
pipe_data.hh
gem5::minor::ForwardLineData
Line fetch data in the forward direction.
Definition: pipe_data.hh:175
gem5::minor::Fetch1::FetchRequest::pc
TheISA::PCState pc
PC to fixup with line address.
Definition: fetch1.hh:142
gem5::minor::Fetch1::numFetchesInITLB
unsigned int numFetchesInITLB
Number of requests inside the ITLB rather than in the queues.
Definition: fetch1.hh:325
gem5::NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:260
gem5::MinorCPU::MinorCPUPort::MinorCPUPort
MinorCPUPort(const std::string &name_, MinorCPU &cpu_)
Definition: cpu.hh:113
gem5::minor::Fetch1::fetchLine
void fetchLine(ThreadID tid)
Insert a line fetch into the requests.
Definition: fetch1.cc:152
gem5::minor::ReportTraitsPtrAdaptor
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
Definition: buffers.hh:108
gem5::Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:111
gem5::minor::Fetch1::out
Latch< ForwardLineData >::Input out
Output port carrying read lines to Fetch2.
Definition: fetch1.hh:203
gem5::minor::Fetch1::operator<<
friend std::ostream & operator<<(std::ostream &os, Fetch1::FetchState state)
Definition: fetch1.cc:465
gem5::minor::Fetch1::threadPriority
ThreadID threadPriority
Definition: fetch1.hh:291
gem5::minor::Fetch1::Fetch1
Fetch1(const std::string &name_, MinorCPU &cpu_, const MinorCPUParams &params, Latch< BranchData >::Output inp_, Latch< ForwardLineData >::Input out_, Latch< BranchData >::Output prediction_, std::vector< InputBuffer< ForwardLineData >> &next_stage_input_buffer)
Definition: fetch1.cc:60
gem5::minor::InstId
Id for lines and instructions.
Definition: dyn_inst.hh:76
gem5::minor::Fetch1::FetchRequest::reportData
void reportData(std::ostream &os) const
Report interface.
Definition: fetch1.cc:742
gem5::minor::Fetch1::FetchRequest::id
InstId id
Identity of the line that this request will generate.
Definition: fetch1.hh:130
gem5::minor::Fetch1::minorTraceResponseLine
void minorTraceResponseLine(const std::string &name, FetchRequestPtr response) const
Print the appropriate MinorLine line for a fetch response.
Definition: fetch1.cc:394
gem5::minor::Fetch1::IcachePort::fetch
Fetch1 & fetch
My owner.
Definition: fetch1.hh:75
gem5::minor::Fetch1::lineSeqNum
InstSeqNum lineSeqNum
Sequence number for line fetch used for ordering lines to flush.
Definition: fetch1.hh:315
gem5::MinorCPU::MinorCPUPort
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Exe...
Definition: cpu.hh:106
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:53
gem5::minor::Fetch1::FetchState
FetchState
Cycle-by-cycle state.
Definition: fetch1.hh:232
gem5::minor::Fetch1::Fetch1ThreadInfo::predictionSeqNum
InstSeqNum predictionSeqNum
Prediction sequence number.
Definition: fetch1.hh:281
gem5::minor::Fetch1::FetchRequest::FetchRequest
FetchRequest(Fetch1 &fetch_, InstId id_, TheISA::PCState pc_)
Definition: fetch1.hh:176
gem5::minor::Fetch1::FetchRequest
Memory access queuing.
Definition: fetch1.hh:107
named.hh
gem5::minor::Fetch1::popAndDiscard
void popAndDiscard(FetchQueue &queue)
Pop a request from the given queue and correctly deallocate and discard it.
Definition: fetch1.cc:377
gem5::minor::Fetch1::Fetch1ThreadInfo::Fetch1ThreadInfo
Fetch1ThreadInfo(const Fetch1ThreadInfo &other)
Definition: fetch1.hh:257
gem5::minor::Queue
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:404
gem5::MinorCPU::MinorCPUPort::cpu
MinorCPU & cpu
The enclosing cpu.
Definition: cpu.hh:110
cpu.hh
gem5::minor::Fetch1::numFetchesInMemorySystem
unsigned int numFetchesInMemorySystem
Count of the number fetches which have left the transfers queue and are in the 'wild' in the memory s...
Definition: fetch1.hh:321
minor
gem5::minor::Fetch1::updateExpectedSeqNums
void updateExpectedSeqNums(const BranchData &branch)
Update streamSeqNum and predictionSeqNum from the given branch (and assume these have changed and dis...
Definition: fetch1.cc:517
gem5::MinorCPU
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Definition: cpu.hh:85
gem5::minor::Fetch1::FetchRequest::InTranslation
@ InTranslation
Definition: fetch1.hh:121
gem5::minor::Fetch1::IcachePort::recvReqRetry
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: fetch1.hh:86
std::vector
STL vector class.
Definition: stl.hh:37
gem5::minor::Fetch1::prediction
Latch< BranchData >::Output prediction
Input port carrying branch predictions from Fetch2.
Definition: fetch1.hh:205
gem5::minor::Fetch1::Fetch1ThreadInfo::pc
TheISA::PCState pc
Fetch PC value.
Definition: fetch1.hh:270
gem5::minor::Fetch1::transfers
FetchQueue transfers
Queue of in-memory system requests and responses.
Definition: fetch1.hh:309
gem5::PowerISA::PCState
Definition: pcstate.hh:42
gem5::minor::Fetch1::lineSnap
unsigned int lineSnap
Line snap size in bytes.
Definition: fetch1.hh:217
packet.hh
gem5::minor::InputBuffer
Like a Queue but with a restricted interface and a setTail function which, when the queue is empty,...
Definition: buffers.hh:572
gem5::RubyTester::SenderState
Definition: RubyTester.hh:89
gem5::Named
Interface for things with names.
Definition: named.hh:38
gem5::minor::Fetch1::icachePort
IcachePort icachePort
IcachePort to pass to the CPU.
Definition: fetch1.hh:212
gem5::minor::Fetch1::handleTLBResponse
void handleTLBResponse(FetchRequestPtr response)
Handle pushing a TLB response onto the right queue.
Definition: fetch1.cc:249
gem5::minor::Fetch1::FetchRequest::isDiscardable
bool isDiscardable() const
Is this line out of date with the current stream/prediction sequence and can it be discarded without ...
Definition: fetch1.cc:747
gem5::minor::Latch::Output
Definition: buffers.hh:263
gem5::minor::Fetch1::FetchRequest::fetch
Fetch1 & fetch
Owning fetch unit.
Definition: fetch1.hh:113
gem5::minor::Fetch1::getScheduledThread
ThreadID getScheduledThread()
Use the current threading policy to determine the next thread to fetch from.
Definition: fetch1.cc:120
gem5::minor::Fetch1::nextStageReserve
std::vector< InputBuffer< ForwardLineData > > & nextStageReserve
Interface to reserve space in the next stage.
Definition: fetch1.hh:208
gem5::minor::Fetch1::getIcachePort
MinorCPU::MinorCPUPort & getIcachePort()
Returns the IcachePort owned by this Fetch1.
Definition: fetch1.hh:402
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:93
gem5::minor::Fetch1::maxLineWidth
unsigned int maxLineWidth
Maximum fetch width in bytes.
Definition: fetch1.hh:223
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:255
gem5::minor::Fetch1::FetchRequest::fault
Fault fault
Fill in a fault if one happens during fetch, check this by picking apart the response packet.
Definition: fetch1.hh:146
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::minor::Latch::Input
Encapsulate wires on either input or output of the latch.
Definition: buffers.hh:252
gem5::minor::Fetch1::FetchRequest::isComplete
bool isComplete() const
Is this a complete read line or fault.
Definition: fetch1.hh:160
gem5::minor::Fetch1::FetchRequest::~FetchRequest
~FetchRequest()
Definition: fetch1.cc:272
gem5::minor::Fetch1::FetchWaitingForPC
@ FetchWaitingForPC
Definition: fetch1.hh:236
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition: pcstate.hh:40
gem5::minor::Fetch1::Fetch1ThreadInfo::state
FetchState state
Definition: fetch1.hh:265
gem5::minor::Fetch1::moveFromRequestsToTransfers
void moveFromRequestsToTransfers(FetchRequestPtr request)
Move a request between queues.
Definition: fetch1.cc:318
gem5::minor::Fetch1::tryToSendToTransfers
void tryToSendToTransfers(FetchRequestPtr request)
Try and issue a fetch for a translated request at the head of the requests queue.
Definition: fetch1.cc:279
gem5::minor::Fetch1::IcachePort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: fetch1.hh:83
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
gem5::minor::Fetch1
A stage responsible for fetching "lines" from memory and passing them to Fetch2.
Definition: fetch1.hh:67
mmu.hh
gem5::minor::Fetch1::Fetch1ThreadInfo::Fetch1ThreadInfo
Fetch1ThreadInfo()
Consturctor to initialize all fields.
Definition: fetch1.hh:248
gem5::minor::Fetch1::Fetch1ThreadInfo::blocked
bool blocked
Blocked indication for report.
Definition: fetch1.hh:284
gem5::minor::Fetch1::FetchRequest::Complete
@ Complete
Definition: fetch1.hh:124
gem5::minor::Fetch1::FetchRequest::RequestIssuing
@ RequestIssuing
Definition: fetch1.hh:123
gem5::minor::BranchData
Forward data betwen Execute and Fetch1 carrying change-of-address/stream information.
Definition: pipe_data.hh:66
gem5::Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:457
gem5::minor::Fetch1::processResponse
void processResponse(FetchRequestPtr response, ForwardLineData &line)
Convert a response to a ForwardLineData.
Definition: fetch1.cc:535
gem5::minor::Fetch1::IcacheState
IcacheState
State of memory access for head instruction fetch.
Definition: fetch1.hh:294
gem5::minor::Fetch1::fetchLimit
unsigned int fetchLimit
Maximum number of fetches allowed in flight (in queues or memory)
Definition: fetch1.hh:226
gem5::minor::Fetch1::FetchHalted
@ FetchHalted
Definition: fetch1.hh:234
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::minor::Fetch1::changeStream
void changeStream(const BranchData &branch)
Start fetching from a new address.
Definition: fetch1.cc:485
gem5::minor::Fetch1::FetchRequest::state
FetchRequestState state
Definition: fetch1.hh:127
gem5::minor::Fetch1::FetchRequest::Translated
@ Translated
Definition: fetch1.hh:122
gem5::minor::Fetch1::FetchRunning
@ FetchRunning
Definition: fetch1.hh:239
gem5::minor::Fetch1::FetchRequest::makePacket
void makePacket()
Make a packet to use with the memory transaction.
Definition: fetch1.cc:224
gem5::minor::Fetch1::recvReqRetry
virtual void recvReqRetry()
Definition: fetch1.cc:450
gem5::BaseMMU::Translation
Definition: mmu.hh:55
gem5::minor::Fetch1::FetchRequest::markDelayed
void markDelayed()
BaseMMU::Translation interface.
Definition: fetch1.hh:167
gem5::minor::Fetch1::FetchRequest::FetchRequestState
FetchRequestState
Progress of this request through address translation and memory.
Definition: fetch1.hh:118
gem5::minor::Fetch1::IcacheRunning
@ IcacheRunning
Definition: fetch1.hh:296
gem5::minor::Fetch1::inp
Latch< BranchData >::Output inp
Input port carrying branch requests from Execute.
Definition: fetch1.hh:201
gem5::minor::Fetch1::wakeupFetch
void wakeupFetch(ThreadID tid)
Initiate fetch1 fetching.
Definition: fetch1.cc:710
base.hh
gem5::X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:809
gem5::minor::Fetch1::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
Memory interface.
Definition: fetch1.cc:413
gem5::minor::Fetch1::Fetch1ThreadInfo
Stage cycle-by-cycle state.
Definition: fetch1.hh:244
gem5::minor::Fetch1::cpu
MinorCPU & cpu
Construction-assigned data members.
Definition: fetch1.hh:198
gem5::minor::Fetch1::FetchRequest::NotIssued
@ NotIssued
Definition: fetch1.hh:120
gem5::minor::Fetch1::numInFlightFetches
unsigned int numInFlightFetches()
Returns the total number of queue occupancy, in-ITLB and in-memory system fetches.
Definition: fetch1.cc:386
gem5::minor::Fetch1::FetchRequestPtr
FetchRequest * FetchRequestPtr
Definition: fetch1.hh:192
gem5::minor::Fetch1::minorTrace
void minorTrace() const
Definition: fetch1.cc:758
gem5::minor::NoBubbleTraits
...
Definition: buffers.hh:122
gem5::minor::Fetch1::FetchRequest::finish
void finish(const Fault &fault_, const RequestPtr &request_, ThreadContext *tc, BaseMMU::Mode mode)
Interface for ITLB responses.
Definition: fetch1.cc:236
gem5::InstSeqNum
uint64_t InstSeqNum
Definition: inst_seq.hh:40
gem5::minor::Fetch1::requests
FetchQueue requests
Queue of address translated requests from Fetch1.
Definition: fetch1.hh:306
gem5::minor::Fetch1::stepQueues
void stepQueues()
Step requests along between requests and transfers queues.
Definition: fetch1.cc:355
gem5::minor::Fetch1::tryToSend
bool tryToSend(FetchRequestPtr request)
Try to send (or resend) a memory request's next/only packet to the memory system.
Definition: fetch1.cc:327
buffers.hh
gem5::minor::Fetch1::IcacheNeedsRetry
@ IcacheNeedsRetry
Definition: fetch1.hh:297
gem5::minor::Fetch1::fetchInfo
std::vector< Fetch1ThreadInfo > fetchInfo
Definition: fetch1.hh:290
gem5::minor::Fetch1::FetchQueue
Queue< FetchRequestPtr, ReportTraitsPtrAdaptor< FetchRequestPtr >, NoBubbleTraits< FetchRequestPtr > > FetchQueue
Definition: fetch1.hh:303
gem5::minor::Fetch1::evaluate
void evaluate()
Pass on input/buffer data to the output if you can.
Definition: fetch1.cc:569
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::minor::Fetch1::FetchRequest::packet
PacketPtr packet
FetchRequests carry packets while they're in the requests and transfers responses queues.
Definition: fetch1.hh:136
gem5::minor::Fetch1::Fetch1ThreadInfo::wakeupGuard
bool wakeupGuard
Signal to guard against sleeping first cycle of wakeup.
Definition: fetch1.hh:287
gem5::minor::Fetch1::IcachePort
Exposable fetch port.
Definition: fetch1.hh:71
gem5::minor::Fetch1::FetchRequest::request
RequestPtr request
The underlying request that this fetch represents.
Definition: fetch1.hh:139
gem5::minor::Fetch1::isDrained
bool isDrained()
Is this stage drained? For Fetch1, draining is initiated by Execute signalling a branch with the reas...
Definition: fetch1.cc:724
gem5::minor::Fetch1::icacheState
IcacheState icacheState
Retry state of icache_port.
Definition: fetch1.hh:312
gem5::minor::Fetch1::Fetch1ThreadInfo::streamSeqNum
InstSeqNum streamSeqNum
Stream sequence number.
Definition: fetch1.hh:275
gem5::ThreadID
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:242
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:73
gem5::minor::Fetch1::IcachePort::IcachePort
IcachePort(std::string name, Fetch1 &fetch_, MinorCPU &cpu)
Definition: fetch1.hh:78

Generated on Wed Jul 28 2021 12:10:24 for gem5 by doxygen 1.8.17