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