O3: Get rid of the unused addToRemoveList function.
[gem5.git] / src / cpu / o3 / cpu.hh
1 /*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
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 * Authors: Kevin Lim
30 * Korey Sewell
31 * Rick Strong
32 */
33
34 #ifndef __CPU_O3_CPU_HH__
35 #define __CPU_O3_CPU_HH__
36
37 #include <iostream>
38 #include <list>
39 #include <queue>
40 #include <set>
41 #include <vector>
42
43 #include "arch/types.hh"
44 #include "base/statistics.hh"
45 #include "config/full_system.hh"
46 #include "config/the_isa.hh"
47 #include "config/use_checker.hh"
48 #include "cpu/o3/comm.hh"
49 #include "cpu/o3/cpu_policy.hh"
50 #include "cpu/o3/scoreboard.hh"
51 #include "cpu/o3/thread_state.hh"
52 #include "cpu/activity.hh"
53 #include "cpu/base.hh"
54 #include "cpu/simple_thread.hh"
55 #include "cpu/timebuf.hh"
56 //#include "cpu/o3/thread_context.hh"
57 #include "params/DerivO3CPU.hh"
58 #include "sim/process.hh"
59
60 template <class>
61 class Checker;
62 class ThreadContext;
63 template <class>
64 class O3ThreadContext;
65
66 class Checkpoint;
67 class MemObject;
68 class Process;
69
70 class BaseCPUParams;
71
72 class BaseO3CPU : public BaseCPU
73 {
74 //Stuff that's pretty ISA independent will go here.
75 public:
76 BaseO3CPU(BaseCPUParams *params);
77
78 void regStats();
79 };
80
81 /**
82 * FullO3CPU class, has each of the stages (fetch through commit)
83 * within it, as well as all of the time buffers between stages. The
84 * tick() function for the CPU is defined here.
85 */
86 template <class Impl>
87 class FullO3CPU : public BaseO3CPU
88 {
89 public:
90 // Typedefs from the Impl here.
91 typedef typename Impl::CPUPol CPUPolicy;
92 typedef typename Impl::DynInstPtr DynInstPtr;
93 typedef typename Impl::O3CPU O3CPU;
94
95 typedef O3ThreadState<Impl> ImplState;
96 typedef O3ThreadState<Impl> Thread;
97
98 typedef typename std::list<DynInstPtr>::iterator ListIt;
99
100 friend class O3ThreadContext<Impl>;
101
102 public:
103 enum Status {
104 Running,
105 Idle,
106 Halted,
107 Blocked,
108 SwitchedOut
109 };
110
111 TheISA::TLB * itb;
112 TheISA::TLB * dtb;
113
114 /** Overall CPU status. */
115 Status _status;
116
117 /** Per-thread status in CPU, used for SMT. */
118 Status _threadStatus[Impl::MaxThreads];
119
120 private:
121 class TickEvent : public Event
122 {
123 private:
124 /** Pointer to the CPU. */
125 FullO3CPU<Impl> *cpu;
126
127 public:
128 /** Constructs a tick event. */
129 TickEvent(FullO3CPU<Impl> *c);
130
131 /** Processes a tick event, calling tick() on the CPU. */
132 void process();
133 /** Returns the description of the tick event. */
134 const char *description() const;
135 };
136
137 /** The tick event used for scheduling CPU ticks. */
138 TickEvent tickEvent;
139
140 /** Schedule tick event, regardless of its current state. */
141 void scheduleTickEvent(int delay)
142 {
143 if (tickEvent.squashed())
144 reschedule(tickEvent, nextCycle(curTick() + ticks(delay)));
145 else if (!tickEvent.scheduled())
146 schedule(tickEvent, nextCycle(curTick() + ticks(delay)));
147 }
148
149 /** Unschedule tick event, regardless of its current state. */
150 void unscheduleTickEvent()
151 {
152 if (tickEvent.scheduled())
153 tickEvent.squash();
154 }
155
156 class ActivateThreadEvent : public Event
157 {
158 private:
159 /** Number of Thread to Activate */
160 ThreadID tid;
161
162 /** Pointer to the CPU. */
163 FullO3CPU<Impl> *cpu;
164
165 public:
166 /** Constructs the event. */
167 ActivateThreadEvent();
168
169 /** Initialize Event */
170 void init(int thread_num, FullO3CPU<Impl> *thread_cpu);
171
172 /** Processes the event, calling activateThread() on the CPU. */
173 void process();
174
175 /** Returns the description of the event. */
176 const char *description() const;
177 };
178
179 /** Schedule thread to activate , regardless of its current state. */
180 void
181 scheduleActivateThreadEvent(ThreadID tid, int delay)
182 {
183 // Schedule thread to activate, regardless of its current state.
184 if (activateThreadEvent[tid].squashed())
185 reschedule(activateThreadEvent[tid],
186 nextCycle(curTick() + ticks(delay)));
187 else if (!activateThreadEvent[tid].scheduled())
188 schedule(activateThreadEvent[tid],
189 nextCycle(curTick() + ticks(delay)));
190 }
191
192 /** Unschedule actiavte thread event, regardless of its current state. */
193 void
194 unscheduleActivateThreadEvent(ThreadID tid)
195 {
196 if (activateThreadEvent[tid].scheduled())
197 activateThreadEvent[tid].squash();
198 }
199
200 /** The tick event used for scheduling CPU ticks. */
201 ActivateThreadEvent activateThreadEvent[Impl::MaxThreads];
202
203 class DeallocateContextEvent : public Event
204 {
205 private:
206 /** Number of Thread to deactivate */
207 ThreadID tid;
208
209 /** Should the thread be removed from the CPU? */
210 bool remove;
211
212 /** Pointer to the CPU. */
213 FullO3CPU<Impl> *cpu;
214
215 public:
216 /** Constructs the event. */
217 DeallocateContextEvent();
218
219 /** Initialize Event */
220 void init(int thread_num, FullO3CPU<Impl> *thread_cpu);
221
222 /** Processes the event, calling activateThread() on the CPU. */
223 void process();
224
225 /** Sets whether the thread should also be removed from the CPU. */
226 void setRemove(bool _remove) { remove = _remove; }
227
228 /** Returns the description of the event. */
229 const char *description() const;
230 };
231
232 /** Schedule cpu to deallocate thread context.*/
233 void
234 scheduleDeallocateContextEvent(ThreadID tid, bool remove, int delay)
235 {
236 // Schedule thread to activate, regardless of its current state.
237 if (deallocateContextEvent[tid].squashed())
238 reschedule(deallocateContextEvent[tid],
239 nextCycle(curTick() + ticks(delay)));
240 else if (!deallocateContextEvent[tid].scheduled())
241 schedule(deallocateContextEvent[tid],
242 nextCycle(curTick() + ticks(delay)));
243 }
244
245 /** Unschedule thread deallocation in CPU */
246 void
247 unscheduleDeallocateContextEvent(ThreadID tid)
248 {
249 if (deallocateContextEvent[tid].scheduled())
250 deallocateContextEvent[tid].squash();
251 }
252
253 /** The tick event used for scheduling CPU ticks. */
254 DeallocateContextEvent deallocateContextEvent[Impl::MaxThreads];
255
256 public:
257 /** Constructs a CPU with the given parameters. */
258 FullO3CPU(DerivO3CPUParams *params);
259 /** Destructor. */
260 ~FullO3CPU();
261
262 /** Registers statistics. */
263 void regStats();
264
265 void demapPage(Addr vaddr, uint64_t asn)
266 {
267 this->itb->demapPage(vaddr, asn);
268 this->dtb->demapPage(vaddr, asn);
269 }
270
271 void demapInstPage(Addr vaddr, uint64_t asn)
272 {
273 this->itb->demapPage(vaddr, asn);
274 }
275
276 void demapDataPage(Addr vaddr, uint64_t asn)
277 {
278 this->dtb->demapPage(vaddr, asn);
279 }
280
281 /** Returns a specific port. */
282 Port *getPort(const std::string &if_name, int idx);
283
284 /** Ticks CPU, calling tick() on each stage, and checking the overall
285 * activity to see if the CPU should deschedule itself.
286 */
287 void tick();
288
289 /** Initialize the CPU */
290 void init();
291
292 /** Returns the Number of Active Threads in the CPU */
293 int numActiveThreads()
294 { return activeThreads.size(); }
295
296 /** Add Thread to Active Threads List */
297 void activateThread(ThreadID tid);
298
299 /** Remove Thread from Active Threads List */
300 void deactivateThread(ThreadID tid);
301
302 /** Setup CPU to insert a thread's context */
303 void insertThread(ThreadID tid);
304
305 /** Remove all of a thread's context from CPU */
306 void removeThread(ThreadID tid);
307
308 /** Count the Total Instructions Committed in the CPU. */
309 virtual Counter totalInstructions() const;
310
311 /** Add Thread to Active Threads List. */
312 void activateContext(ThreadID tid, int delay);
313
314 /** Remove Thread from Active Threads List */
315 void suspendContext(ThreadID tid);
316
317 /** Remove Thread from Active Threads List &&
318 * Possibly Remove Thread Context from CPU.
319 */
320 bool deallocateContext(ThreadID tid, bool remove, int delay = 1);
321
322 /** Remove Thread from Active Threads List &&
323 * Remove Thread Context from CPU.
324 */
325 void haltContext(ThreadID tid);
326
327 /** Activate a Thread When CPU Resources are Available. */
328 void activateWhenReady(ThreadID tid);
329
330 /** Add or Remove a Thread Context in the CPU. */
331 void doContextSwitch();
332
333 /** Update The Order In Which We Process Threads. */
334 void updateThreadPriority();
335
336 /** Serialize state. */
337 virtual void serialize(std::ostream &os);
338
339 /** Unserialize from a checkpoint. */
340 virtual void unserialize(Checkpoint *cp, const std::string &section);
341
342 public:
343 #if !FULL_SYSTEM
344 /** Executes a syscall.
345 * @todo: Determine if this needs to be virtual.
346 */
347 void syscall(int64_t callnum, ThreadID tid);
348 #endif
349
350 /** Starts draining the CPU's pipeline of all instructions in
351 * order to stop all memory accesses. */
352 virtual unsigned int drain(Event *drain_event);
353
354 /** Resumes execution after a drain. */
355 virtual void resume();
356
357 /** Signals to this CPU that a stage has completed switching out. */
358 void signalDrained();
359
360 /** Switches out this CPU. */
361 virtual void switchOut();
362
363 /** Takes over from another CPU. */
364 virtual void takeOverFrom(BaseCPU *oldCPU);
365
366 /** Get the current instruction sequence number, and increment it. */
367 InstSeqNum getAndIncrementInstSeq()
368 { return globalSeqNum++; }
369
370 /** Traps to handle given fault. */
371 void trap(Fault fault, ThreadID tid, StaticInstPtr inst);
372
373 #if FULL_SYSTEM
374 /** HW return from error interrupt. */
375 Fault hwrei(ThreadID tid);
376
377 bool simPalCheck(int palFunc, ThreadID tid);
378
379 /** Returns the Fault for any valid interrupt. */
380 Fault getInterrupts();
381
382 /** Processes any an interrupt fault. */
383 void processInterrupts(Fault interrupt);
384
385 /** Halts the CPU. */
386 void halt() { panic("Halt not implemented!\n"); }
387
388 /** Update the Virt and Phys ports of all ThreadContexts to
389 * reflect change in memory connections. */
390 void updateMemPorts();
391
392 /** Check if this address is a valid instruction address. */
393 bool validInstAddr(Addr addr) { return true; }
394
395 /** Check if this address is a valid data address. */
396 bool validDataAddr(Addr addr) { return true; }
397 #endif
398
399 /** Register accessors. Index refers to the physical register index. */
400
401 /** Reads a miscellaneous register. */
402 TheISA::MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid);
403
404 /** Reads a misc. register, including any side effects the read
405 * might have as defined by the architecture.
406 */
407 TheISA::MiscReg readMiscReg(int misc_reg, ThreadID tid);
408
409 /** Sets a miscellaneous register. */
410 void setMiscRegNoEffect(int misc_reg, const TheISA::MiscReg &val,
411 ThreadID tid);
412
413 /** Sets a misc. register, including any side effects the write
414 * might have as defined by the architecture.
415 */
416 void setMiscReg(int misc_reg, const TheISA::MiscReg &val,
417 ThreadID tid);
418
419 uint64_t readIntReg(int reg_idx);
420
421 TheISA::FloatReg readFloatReg(int reg_idx);
422
423 TheISA::FloatRegBits readFloatRegBits(int reg_idx);
424
425 void setIntReg(int reg_idx, uint64_t val);
426
427 void setFloatReg(int reg_idx, TheISA::FloatReg val);
428
429 void setFloatRegBits(int reg_idx, TheISA::FloatRegBits val);
430
431 uint64_t readArchIntReg(int reg_idx, ThreadID tid);
432
433 float readArchFloatReg(int reg_idx, ThreadID tid);
434
435 uint64_t readArchFloatRegInt(int reg_idx, ThreadID tid);
436
437 /** Architectural register accessors. Looks up in the commit
438 * rename table to obtain the true physical index of the
439 * architected register first, then accesses that physical
440 * register.
441 */
442 void setArchIntReg(int reg_idx, uint64_t val, ThreadID tid);
443
444 void setArchFloatReg(int reg_idx, float val, ThreadID tid);
445
446 void setArchFloatRegInt(int reg_idx, uint64_t val, ThreadID tid);
447
448 /** Sets the commit PC state of a specific thread. */
449 void pcState(const TheISA::PCState &newPCState, ThreadID tid);
450
451 /** Reads the commit PC state of a specific thread. */
452 TheISA::PCState pcState(ThreadID tid);
453
454 /** Reads the commit PC of a specific thread. */
455 Addr instAddr(ThreadID tid);
456
457 /** Reads the commit micro PC of a specific thread. */
458 MicroPC microPC(ThreadID tid);
459
460 /** Reads the next PC of a specific thread. */
461 Addr nextInstAddr(ThreadID tid);
462
463 /** Initiates a squash of all in-flight instructions for a given
464 * thread. The source of the squash is an external update of
465 * state through the TC.
466 */
467 void squashFromTC(ThreadID tid);
468
469 /** Function to add instruction onto the head of the list of the
470 * instructions. Used when new instructions are fetched.
471 */
472 ListIt addInst(DynInstPtr &inst);
473
474 /** Function to tell the CPU that an instruction has completed. */
475 void instDone(ThreadID tid);
476
477 /** Remove an instruction from the front end of the list. There's
478 * no restriction on location of the instruction.
479 */
480 void removeFrontInst(DynInstPtr &inst);
481
482 /** Remove all instructions that are not currently in the ROB.
483 * There's also an option to not squash delay slot instructions.*/
484 void removeInstsNotInROB(ThreadID tid);
485
486 /** Remove all instructions younger than the given sequence number. */
487 void removeInstsUntil(const InstSeqNum &seq_num, ThreadID tid);
488
489 /** Removes the instruction pointed to by the iterator. */
490 inline void squashInstIt(const ListIt &instIt, ThreadID tid);
491
492 /** Cleans up all instructions on the remove list. */
493 void cleanUpRemovedInsts();
494
495 /** Debug function to print all instructions on the list. */
496 void dumpInsts();
497
498 public:
499 #ifndef NDEBUG
500 /** Count of total number of dynamic instructions in flight. */
501 int instcount;
502 #endif
503
504 /** List of all the instructions in flight. */
505 std::list<DynInstPtr> instList;
506
507 /** List of all the instructions that will be removed at the end of this
508 * cycle.
509 */
510 std::queue<ListIt> removeList;
511
512 #ifdef DEBUG
513 /** Debug structure to keep track of the sequence numbers still in
514 * flight.
515 */
516 std::set<InstSeqNum> snList;
517 #endif
518
519 /** Records if instructions need to be removed this cycle due to
520 * being retired or squashed.
521 */
522 bool removeInstsThisCycle;
523
524 protected:
525 /** The fetch stage. */
526 typename CPUPolicy::Fetch fetch;
527
528 /** The decode stage. */
529 typename CPUPolicy::Decode decode;
530
531 /** The dispatch stage. */
532 typename CPUPolicy::Rename rename;
533
534 /** The issue/execute/writeback stages. */
535 typename CPUPolicy::IEW iew;
536
537 /** The commit stage. */
538 typename CPUPolicy::Commit commit;
539
540 /** The register file. */
541 typename CPUPolicy::RegFile regFile;
542
543 /** The free list. */
544 typename CPUPolicy::FreeList freeList;
545
546 /** The rename map. */
547 typename CPUPolicy::RenameMap renameMap[Impl::MaxThreads];
548
549 /** The commit rename map. */
550 typename CPUPolicy::RenameMap commitRenameMap[Impl::MaxThreads];
551
552 /** The re-order buffer. */
553 typename CPUPolicy::ROB rob;
554
555 /** Active Threads List */
556 std::list<ThreadID> activeThreads;
557
558 /** Integer Register Scoreboard */
559 Scoreboard scoreboard;
560
561 TheISA::ISA isa[Impl::MaxThreads];
562
563 public:
564 /** Enum to give each stage a specific index, so when calling
565 * activateStage() or deactivateStage(), they can specify which stage
566 * is being activated/deactivated.
567 */
568 enum StageIdx {
569 FetchIdx,
570 DecodeIdx,
571 RenameIdx,
572 IEWIdx,
573 CommitIdx,
574 NumStages };
575
576 /** Typedefs from the Impl to get the structs that each of the
577 * time buffers should use.
578 */
579 typedef typename CPUPolicy::TimeStruct TimeStruct;
580
581 typedef typename CPUPolicy::FetchStruct FetchStruct;
582
583 typedef typename CPUPolicy::DecodeStruct DecodeStruct;
584
585 typedef typename CPUPolicy::RenameStruct RenameStruct;
586
587 typedef typename CPUPolicy::IEWStruct IEWStruct;
588
589 /** The main time buffer to do backwards communication. */
590 TimeBuffer<TimeStruct> timeBuffer;
591
592 /** The fetch stage's instruction queue. */
593 TimeBuffer<FetchStruct> fetchQueue;
594
595 /** The decode stage's instruction queue. */
596 TimeBuffer<DecodeStruct> decodeQueue;
597
598 /** The rename stage's instruction queue. */
599 TimeBuffer<RenameStruct> renameQueue;
600
601 /** The IEW stage's instruction queue. */
602 TimeBuffer<IEWStruct> iewQueue;
603
604 private:
605 /** The activity recorder; used to tell if the CPU has any
606 * activity remaining or if it can go to idle and deschedule
607 * itself.
608 */
609 ActivityRecorder activityRec;
610
611 public:
612 /** Records that there was time buffer activity this cycle. */
613 void activityThisCycle() { activityRec.activity(); }
614
615 /** Changes a stage's status to active within the activity recorder. */
616 void activateStage(const StageIdx idx)
617 { activityRec.activateStage(idx); }
618
619 /** Changes a stage's status to inactive within the activity recorder. */
620 void deactivateStage(const StageIdx idx)
621 { activityRec.deactivateStage(idx); }
622
623 /** Wakes the CPU, rescheduling the CPU if it's not already active. */
624 void wakeCPU();
625
626 #if FULL_SYSTEM
627 virtual void wakeup();
628 #endif
629
630 /** Gets a free thread id. Use if thread ids change across system. */
631 ThreadID getFreeTid();
632
633 public:
634 /** Returns a pointer to a thread context. */
635 ThreadContext *
636 tcBase(ThreadID tid)
637 {
638 return thread[tid]->getTC();
639 }
640
641 /** The global sequence number counter. */
642 InstSeqNum globalSeqNum;//[Impl::MaxThreads];
643
644 #if USE_CHECKER
645 /** Pointer to the checker, which can dynamically verify
646 * instruction results at run time. This can be set to NULL if it
647 * is not being used.
648 */
649 Checker<DynInstPtr> *checker;
650 #endif
651
652 /** Pointer to the system. */
653 System *system;
654
655 /** Event to call process() on once draining has completed. */
656 Event *drainEvent;
657
658 /** Counter of how many stages have completed draining. */
659 int drainCount;
660
661 /** Pointers to all of the threads in the CPU. */
662 std::vector<Thread *> thread;
663
664 /** Whether or not the CPU should defer its registration. */
665 bool deferRegistration;
666
667 /** Is there a context switch pending? */
668 bool contextSwitch;
669
670 /** Threads Scheduled to Enter CPU */
671 std::list<int> cpuWaitList;
672
673 /** The cycle that the CPU was last running, used for statistics. */
674 Tick lastRunningCycle;
675
676 /** The cycle that the CPU was last activated by a new thread*/
677 Tick lastActivatedCycle;
678
679 /** Mapping for system thread id to cpu id */
680 std::map<ThreadID, unsigned> threadMap;
681
682 /** Available thread ids in the cpu*/
683 std::vector<ThreadID> tids;
684
685 /** CPU read function, forwards read to LSQ. */
686 Fault read(RequestPtr &req, RequestPtr &sreqLow, RequestPtr &sreqHigh,
687 uint8_t *data, int load_idx)
688 {
689 return this->iew.ldstQueue.read(req, sreqLow, sreqHigh,
690 data, load_idx);
691 }
692
693 /** CPU write function, forwards write to LSQ. */
694 Fault write(RequestPtr &req, RequestPtr &sreqLow, RequestPtr &sreqHigh,
695 uint8_t *data, int store_idx)
696 {
697 return this->iew.ldstQueue.write(req, sreqLow, sreqHigh,
698 data, store_idx);
699 }
700
701 /** Get the dcache port (used to find block size for translations). */
702 Port *getDcachePort() { return this->iew.ldstQueue.getDcachePort(); }
703
704 Addr lockAddr;
705
706 /** Temporary fix for the lock flag, works in the UP case. */
707 bool lockFlag;
708
709 /** Stat for total number of times the CPU is descheduled. */
710 Stats::Scalar timesIdled;
711 /** Stat for total number of cycles the CPU spends descheduled. */
712 Stats::Scalar idleCycles;
713 /** Stat for the number of committed instructions per thread. */
714 Stats::Vector committedInsts;
715 /** Stat for the total number of committed instructions. */
716 Stats::Scalar totalCommittedInsts;
717 /** Stat for the CPI per thread. */
718 Stats::Formula cpi;
719 /** Stat for the total CPI. */
720 Stats::Formula totalCpi;
721 /** Stat for the IPC per thread. */
722 Stats::Formula ipc;
723 /** Stat for the total IPC. */
724 Stats::Formula totalIpc;
725
726 //number of integer register file accesses
727 Stats::Scalar intRegfileReads;
728 Stats::Scalar intRegfileWrites;
729 //number of float register file accesses
730 Stats::Scalar fpRegfileReads;
731 Stats::Scalar fpRegfileWrites;
732 //number of misc
733 Stats::Scalar miscRegfileReads;
734 Stats::Scalar miscRegfileWrites;
735 };
736
737 #endif // __CPU_O3_CPU_HH__