cpu.cc revision 3859:9278f759e55c
16253Sgblack@eecs.umich.edu/*
26253Sgblack@eecs.umich.edu * Copyright (c) 2004-2006 The Regents of The University of Michigan
36253Sgblack@eecs.umich.edu * All rights reserved.
46253Sgblack@eecs.umich.edu *
56253Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
66253Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
76253Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
86253Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
96253Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
106253Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
116253Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
126253Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
136253Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
146253Sgblack@eecs.umich.edu * this software without specific prior written permission.
156253Sgblack@eecs.umich.edu *
166253Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176253Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186253Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196253Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206253Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216253Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226253Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236253Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246253Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256253Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266253Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276253Sgblack@eecs.umich.edu *
286253Sgblack@eecs.umich.edu * Authors: Kevin Lim
296253Sgblack@eecs.umich.edu *          Korey Sewell
306253Sgblack@eecs.umich.edu */
316253Sgblack@eecs.umich.edu
326253Sgblack@eecs.umich.edu#include "config/full_system.hh"
336253Sgblack@eecs.umich.edu#include "config/use_checker.hh"
346253Sgblack@eecs.umich.edu
356253Sgblack@eecs.umich.edu#if FULL_SYSTEM
366253Sgblack@eecs.umich.edu#include "cpu/quiesce_event.hh"
376253Sgblack@eecs.umich.edu#include "sim/system.hh"
386253Sgblack@eecs.umich.edu#else
396253Sgblack@eecs.umich.edu#include "sim/process.hh"
406253Sgblack@eecs.umich.edu#endif
416253Sgblack@eecs.umich.edu
426253Sgblack@eecs.umich.edu#include "cpu/activity.hh"
436253Sgblack@eecs.umich.edu#include "cpu/simple_thread.hh"
446253Sgblack@eecs.umich.edu#include "cpu/thread_context.hh"
456253Sgblack@eecs.umich.edu#include "cpu/o3/isa_specific.hh"
466253Sgblack@eecs.umich.edu#include "cpu/o3/cpu.hh"
476253Sgblack@eecs.umich.edu
486253Sgblack@eecs.umich.edu#include "sim/root.hh"
496253Sgblack@eecs.umich.edu#include "sim/stat_control.hh"
506308Sgblack@eecs.umich.edu
516308Sgblack@eecs.umich.edu#if USE_CHECKER
526308Sgblack@eecs.umich.edu#include "cpu/checker/cpu.hh"
536308Sgblack@eecs.umich.edu#endif
546308Sgblack@eecs.umich.edu
556308Sgblack@eecs.umich.eduusing namespace std;
566308Sgblack@eecs.umich.eduusing namespace TheISA;
576308Sgblack@eecs.umich.edu
586308Sgblack@eecs.umich.eduBaseO3CPU::BaseO3CPU(Params *params)
596308Sgblack@eecs.umich.edu    : BaseCPU(params), cpu_id(0)
606308Sgblack@eecs.umich.edu{
616308Sgblack@eecs.umich.edu}
626308Sgblack@eecs.umich.edu
636308Sgblack@eecs.umich.eduvoid
646308Sgblack@eecs.umich.eduBaseO3CPU::regStats()
656308Sgblack@eecs.umich.edu{
666308Sgblack@eecs.umich.edu    BaseCPU::regStats();
676309Sgblack@eecs.umich.edu}
686309Sgblack@eecs.umich.edu
696309Sgblack@eecs.umich.edutemplate <class Impl>
706309Sgblack@eecs.umich.eduFullO3CPU<Impl>::TickEvent::TickEvent(FullO3CPU<Impl> *c)
716309Sgblack@eecs.umich.edu    : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c)
726309Sgblack@eecs.umich.edu{
736309Sgblack@eecs.umich.edu}
746309Sgblack@eecs.umich.edu
756309Sgblack@eecs.umich.edutemplate <class Impl>
766309Sgblack@eecs.umich.eduvoid
776309Sgblack@eecs.umich.eduFullO3CPU<Impl>::TickEvent::process()
786309Sgblack@eecs.umich.edu{
796309Sgblack@eecs.umich.edu    cpu->tick();
806309Sgblack@eecs.umich.edu}
816309Sgblack@eecs.umich.edu
826309Sgblack@eecs.umich.edutemplate <class Impl>
836253Sgblack@eecs.umich.educonst char *
846253Sgblack@eecs.umich.eduFullO3CPU<Impl>::TickEvent::description()
856253Sgblack@eecs.umich.edu{
866253Sgblack@eecs.umich.edu    return "FullO3CPU tick event";
876253Sgblack@eecs.umich.edu}
886253Sgblack@eecs.umich.edu
896253Sgblack@eecs.umich.edutemplate <class Impl>
906253Sgblack@eecs.umich.eduFullO3CPU<Impl>::ActivateThreadEvent::ActivateThreadEvent()
916253Sgblack@eecs.umich.edu    : Event(&mainEventQueue, CPU_Switch_Pri)
926253Sgblack@eecs.umich.edu{
936253Sgblack@eecs.umich.edu}
946253Sgblack@eecs.umich.edu
956253Sgblack@eecs.umich.edutemplate <class Impl>
966253Sgblack@eecs.umich.eduvoid
976253Sgblack@eecs.umich.eduFullO3CPU<Impl>::ActivateThreadEvent::init(int thread_num,
986253Sgblack@eecs.umich.edu                                           FullO3CPU<Impl> *thread_cpu)
996253Sgblack@eecs.umich.edu{
1006253Sgblack@eecs.umich.edu    tid = thread_num;
1016305Sgblack@eecs.umich.edu    cpu = thread_cpu;
1026253Sgblack@eecs.umich.edu}
1036253Sgblack@eecs.umich.edu
1046253Sgblack@eecs.umich.edutemplate <class Impl>
1056253Sgblack@eecs.umich.eduvoid
1066253Sgblack@eecs.umich.eduFullO3CPU<Impl>::ActivateThreadEvent::process()
1076253Sgblack@eecs.umich.edu{
1086253Sgblack@eecs.umich.edu    cpu->activateThread(tid);
1096253Sgblack@eecs.umich.edu}
1106253Sgblack@eecs.umich.edu
1116253Sgblack@eecs.umich.edutemplate <class Impl>
1126253Sgblack@eecs.umich.educonst char *
1136253Sgblack@eecs.umich.eduFullO3CPU<Impl>::ActivateThreadEvent::description()
1146253Sgblack@eecs.umich.edu{
1156253Sgblack@eecs.umich.edu    return "FullO3CPU \"Activate Thread\" event";
1166253Sgblack@eecs.umich.edu}
1176253Sgblack@eecs.umich.edu
1186253Sgblack@eecs.umich.edutemplate <class Impl>
1196253Sgblack@eecs.umich.eduFullO3CPU<Impl>::DeallocateContextEvent::DeallocateContextEvent()
1206253Sgblack@eecs.umich.edu    : Event(&mainEventQueue, CPU_Tick_Pri), tid(0), remove(false), cpu(NULL)
1216253Sgblack@eecs.umich.edu{
1226253Sgblack@eecs.umich.edu}
1236253Sgblack@eecs.umich.edu
1246253Sgblack@eecs.umich.edutemplate <class Impl>
1256253Sgblack@eecs.umich.eduvoid
1266253Sgblack@eecs.umich.eduFullO3CPU<Impl>::DeallocateContextEvent::init(int thread_num,
1276253Sgblack@eecs.umich.edu                                              FullO3CPU<Impl> *thread_cpu)
1286253Sgblack@eecs.umich.edu{
1296253Sgblack@eecs.umich.edu    tid = thread_num;
1306253Sgblack@eecs.umich.edu    cpu = thread_cpu;
1316253Sgblack@eecs.umich.edu    remove = false;
1326253Sgblack@eecs.umich.edu}
1336253Sgblack@eecs.umich.edu
1346253Sgblack@eecs.umich.edutemplate <class Impl>
1356253Sgblack@eecs.umich.eduvoid
1366253Sgblack@eecs.umich.eduFullO3CPU<Impl>::DeallocateContextEvent::process()
1376253Sgblack@eecs.umich.edu{
1386253Sgblack@eecs.umich.edu    cpu->deactivateThread(tid);
1396253Sgblack@eecs.umich.edu    if (remove)
1406253Sgblack@eecs.umich.edu        cpu->removeThread(tid);
1416253Sgblack@eecs.umich.edu}
1426253Sgblack@eecs.umich.edu
1436253Sgblack@eecs.umich.edutemplate <class Impl>
1446253Sgblack@eecs.umich.educonst char *
1456253Sgblack@eecs.umich.eduFullO3CPU<Impl>::DeallocateContextEvent::description()
1466253Sgblack@eecs.umich.edu{
1476253Sgblack@eecs.umich.edu    return "FullO3CPU \"Deallocate Context\" event";
1486253Sgblack@eecs.umich.edu}
1496253Sgblack@eecs.umich.edu
1506253Sgblack@eecs.umich.edutemplate <class Impl>
1516253Sgblack@eecs.umich.eduFullO3CPU<Impl>::FullO3CPU(Params *params)
1526253Sgblack@eecs.umich.edu    : BaseO3CPU(params),
1536253Sgblack@eecs.umich.edu      tickEvent(this),
1546253Sgblack@eecs.umich.edu      removeInstsThisCycle(false),
1556253Sgblack@eecs.umich.edu      fetch(params),
1566253Sgblack@eecs.umich.edu      decode(params),
1576253Sgblack@eecs.umich.edu      rename(params),
1586253Sgblack@eecs.umich.edu      iew(params),
1596253Sgblack@eecs.umich.edu      commit(params),
1606253Sgblack@eecs.umich.edu
1616253Sgblack@eecs.umich.edu      regFile(params->numPhysIntRegs, params->numPhysFloatRegs),
1626253Sgblack@eecs.umich.edu
1636253Sgblack@eecs.umich.edu      freeList(params->numberOfThreads,
1646253Sgblack@eecs.umich.edu               TheISA::NumIntRegs, params->numPhysIntRegs,
1656253Sgblack@eecs.umich.edu               TheISA::NumFloatRegs, params->numPhysFloatRegs),
1666253Sgblack@eecs.umich.edu
1676253Sgblack@eecs.umich.edu      rob(params->numROBEntries, params->squashWidth,
1686253Sgblack@eecs.umich.edu          params->smtROBPolicy, params->smtROBThreshold,
1696253Sgblack@eecs.umich.edu          params->numberOfThreads),
1706253Sgblack@eecs.umich.edu
1716253Sgblack@eecs.umich.edu      scoreboard(params->numberOfThreads,
1726253Sgblack@eecs.umich.edu                 TheISA::NumIntRegs, params->numPhysIntRegs,
1736253Sgblack@eecs.umich.edu                 TheISA::NumFloatRegs, params->numPhysFloatRegs,
1746253Sgblack@eecs.umich.edu                 TheISA::NumMiscRegs * number_of_threads,
1756253Sgblack@eecs.umich.edu                 TheISA::ZeroReg),
1766253Sgblack@eecs.umich.edu
1776253Sgblack@eecs.umich.edu      timeBuffer(params->backComSize, params->forwardComSize),
1786253Sgblack@eecs.umich.edu      fetchQueue(params->backComSize, params->forwardComSize),
1796253Sgblack@eecs.umich.edu      decodeQueue(params->backComSize, params->forwardComSize),
1806253Sgblack@eecs.umich.edu      renameQueue(params->backComSize, params->forwardComSize),
1816253Sgblack@eecs.umich.edu      iewQueue(params->backComSize, params->forwardComSize),
1826253Sgblack@eecs.umich.edu      activityRec(NumStages,
1836253Sgblack@eecs.umich.edu                  params->backComSize + params->forwardComSize,
1846253Sgblack@eecs.umich.edu                  params->activity),
1856253Sgblack@eecs.umich.edu
186      globalSeqNum(1),
187#if FULL_SYSTEM
188      system(params->system),
189      physmem(system->physmem),
190#endif // FULL_SYSTEM
191      drainCount(0),
192      deferRegistration(params->deferRegistration),
193      numThreads(number_of_threads)
194{
195    if (!deferRegistration) {
196        _status = Running;
197    } else {
198        _status = Idle;
199    }
200
201    checker = NULL;
202
203    if (params->checker) {
204#if USE_CHECKER
205        BaseCPU *temp_checker = params->checker;
206        checker = dynamic_cast<Checker<DynInstPtr> *>(temp_checker);
207#if FULL_SYSTEM
208        checker->setSystem(params->system);
209#endif
210#else
211        panic("Checker enabled but not compiled in!");
212#endif // USE_CHECKER
213    }
214
215#if !FULL_SYSTEM
216    thread.resize(number_of_threads);
217    tids.resize(number_of_threads);
218#endif
219
220    // The stages also need their CPU pointer setup.  However this
221    // must be done at the upper level CPU because they have pointers
222    // to the upper level CPU, and not this FullO3CPU.
223
224    // Set up Pointers to the activeThreads list for each stage
225    fetch.setActiveThreads(&activeThreads);
226    decode.setActiveThreads(&activeThreads);
227    rename.setActiveThreads(&activeThreads);
228    iew.setActiveThreads(&activeThreads);
229    commit.setActiveThreads(&activeThreads);
230
231    // Give each of the stages the time buffer they will use.
232    fetch.setTimeBuffer(&timeBuffer);
233    decode.setTimeBuffer(&timeBuffer);
234    rename.setTimeBuffer(&timeBuffer);
235    iew.setTimeBuffer(&timeBuffer);
236    commit.setTimeBuffer(&timeBuffer);
237
238    // Also setup each of the stages' queues.
239    fetch.setFetchQueue(&fetchQueue);
240    decode.setFetchQueue(&fetchQueue);
241    commit.setFetchQueue(&fetchQueue);
242    decode.setDecodeQueue(&decodeQueue);
243    rename.setDecodeQueue(&decodeQueue);
244    rename.setRenameQueue(&renameQueue);
245    iew.setRenameQueue(&renameQueue);
246    iew.setIEWQueue(&iewQueue);
247    commit.setIEWQueue(&iewQueue);
248    commit.setRenameQueue(&renameQueue);
249
250    commit.setIEWStage(&iew);
251    rename.setIEWStage(&iew);
252    rename.setCommitStage(&commit);
253
254#if !FULL_SYSTEM
255    int active_threads = params->workload.size();
256
257    if (active_threads > Impl::MaxThreads) {
258        panic("Workload Size too large. Increase the 'MaxThreads'"
259              "constant in your O3CPU impl. file (e.g. o3/alpha/impl.hh) or "
260              "edit your workload size.");
261    }
262#else
263    int active_threads = 1;
264#endif
265
266    //Make Sure That this a Valid Architeture
267    assert(params->numPhysIntRegs   >= numThreads * TheISA::NumIntRegs);
268    assert(params->numPhysFloatRegs >= numThreads * TheISA::NumFloatRegs);
269
270    rename.setScoreboard(&scoreboard);
271    iew.setScoreboard(&scoreboard);
272
273    // Setup the rename map for whichever stages need it.
274    PhysRegIndex lreg_idx = 0;
275    PhysRegIndex freg_idx = params->numPhysIntRegs; //Index to 1 after int regs
276
277    for (int tid=0; tid < numThreads; tid++) {
278        bool bindRegs = (tid <= active_threads - 1);
279
280        commitRenameMap[tid].init(TheISA::NumIntRegs,
281                                  params->numPhysIntRegs,
282                                  lreg_idx,            //Index for Logical. Regs
283
284                                  TheISA::NumFloatRegs,
285                                  params->numPhysFloatRegs,
286                                  freg_idx,            //Index for Float Regs
287
288                                  TheISA::NumMiscRegs,
289
290                                  TheISA::ZeroReg,
291                                  TheISA::ZeroReg,
292
293                                  tid,
294                                  false);
295
296        renameMap[tid].init(TheISA::NumIntRegs,
297                            params->numPhysIntRegs,
298                            lreg_idx,                  //Index for Logical. Regs
299
300                            TheISA::NumFloatRegs,
301                            params->numPhysFloatRegs,
302                            freg_idx,                  //Index for Float Regs
303
304                            TheISA::NumMiscRegs,
305
306                            TheISA::ZeroReg,
307                            TheISA::ZeroReg,
308
309                            tid,
310                            bindRegs);
311
312        activateThreadEvent[tid].init(tid, this);
313        deallocateContextEvent[tid].init(tid, this);
314    }
315
316    rename.setRenameMap(renameMap);
317    commit.setRenameMap(commitRenameMap);
318
319    // Give renameMap & rename stage access to the freeList;
320    for (int i=0; i < numThreads; i++) {
321        renameMap[i].setFreeList(&freeList);
322    }
323    rename.setFreeList(&freeList);
324
325    // Setup the ROB for whichever stages need it.
326    commit.setROB(&rob);
327
328    lastRunningCycle = curTick;
329
330    lastActivatedCycle = -1;
331
332    // Give renameMap & rename stage access to the freeList;
333    //for (int i=0; i < numThreads; i++) {
334        //globalSeqNum[i] = 1;
335        //}
336
337    contextSwitch = false;
338}
339
340template <class Impl>
341FullO3CPU<Impl>::~FullO3CPU()
342{
343}
344
345template <class Impl>
346void
347FullO3CPU<Impl>::fullCPURegStats()
348{
349    BaseO3CPU::regStats();
350
351    // Register any of the O3CPU's stats here.
352    timesIdled
353        .name(name() + ".timesIdled")
354        .desc("Number of times that the entire CPU went into an idle state and"
355              " unscheduled itself")
356        .prereq(timesIdled);
357
358    idleCycles
359        .name(name() + ".idleCycles")
360        .desc("Total number of cycles that the CPU has spent unscheduled due "
361              "to idling")
362        .prereq(idleCycles);
363
364    // Number of Instructions simulated
365    // --------------------------------
366    // Should probably be in Base CPU but need templated
367    // MaxThreads so put in here instead
368    committedInsts
369        .init(numThreads)
370        .name(name() + ".committedInsts")
371        .desc("Number of Instructions Simulated");
372
373    totalCommittedInsts
374        .name(name() + ".committedInsts_total")
375        .desc("Number of Instructions Simulated");
376
377    cpi
378        .name(name() + ".cpi")
379        .desc("CPI: Cycles Per Instruction")
380        .precision(6);
381    cpi = simTicks / committedInsts;
382
383    totalCpi
384        .name(name() + ".cpi_total")
385        .desc("CPI: Total CPI of All Threads")
386        .precision(6);
387    totalCpi = simTicks / totalCommittedInsts;
388
389    ipc
390        .name(name() + ".ipc")
391        .desc("IPC: Instructions Per Cycle")
392        .precision(6);
393    ipc =  committedInsts / simTicks;
394
395    totalIpc
396        .name(name() + ".ipc_total")
397        .desc("IPC: Total IPC of All Threads")
398        .precision(6);
399    totalIpc =  totalCommittedInsts / simTicks;
400
401}
402
403template <class Impl>
404Port *
405FullO3CPU<Impl>::getPort(const std::string &if_name, int idx)
406{
407    if (if_name == "dcache_port")
408        return iew.getDcachePort();
409    else if (if_name == "icache_port")
410        return fetch.getIcachePort();
411    else
412        panic("No Such Port\n");
413}
414
415template <class Impl>
416void
417FullO3CPU<Impl>::tick()
418{
419    DPRINTF(O3CPU, "\n\nFullO3CPU: Ticking main, FullO3CPU.\n");
420
421    ++numCycles;
422
423//    activity = false;
424
425    //Tick each of the stages
426    fetch.tick();
427
428    decode.tick();
429
430    rename.tick();
431
432    iew.tick();
433
434    commit.tick();
435
436#if !FULL_SYSTEM
437    doContextSwitch();
438#endif
439
440    // Now advance the time buffers
441    timeBuffer.advance();
442
443    fetchQueue.advance();
444    decodeQueue.advance();
445    renameQueue.advance();
446    iewQueue.advance();
447
448    activityRec.advance();
449
450    if (removeInstsThisCycle) {
451        cleanUpRemovedInsts();
452    }
453
454    if (!tickEvent.scheduled()) {
455        if (_status == SwitchedOut ||
456            getState() == SimObject::Drained) {
457            DPRINTF(O3CPU, "Switched out!\n");
458            // increment stat
459            lastRunningCycle = curTick;
460        } else if (!activityRec.active() || _status == Idle) {
461            DPRINTF(O3CPU, "Idle!\n");
462            lastRunningCycle = curTick;
463            timesIdled++;
464        } else {
465            tickEvent.schedule(curTick + cycles(1));
466            DPRINTF(O3CPU, "Scheduling next tick!\n");
467        }
468    }
469
470#if !FULL_SYSTEM
471    updateThreadPriority();
472#endif
473
474}
475
476template <class Impl>
477void
478FullO3CPU<Impl>::init()
479{
480    if (!deferRegistration) {
481        registerThreadContexts();
482    }
483
484    // Set inSyscall so that the CPU doesn't squash when initially
485    // setting up registers.
486    for (int i = 0; i < number_of_threads; ++i)
487        thread[i]->inSyscall = true;
488
489    for (int tid=0; tid < number_of_threads; tid++) {
490#if FULL_SYSTEM
491        ThreadContext *src_tc = threadContexts[tid];
492#else
493        ThreadContext *src_tc = thread[tid]->getTC();
494#endif
495        // Threads start in the Suspended State
496        if (src_tc->status() != ThreadContext::Suspended) {
497            continue;
498        }
499
500#if FULL_SYSTEM
501        TheISA::initCPU(src_tc, src_tc->readCpuId());
502#endif
503    }
504
505    // Clear inSyscall.
506    for (int i = 0; i < number_of_threads; ++i)
507        thread[i]->inSyscall = false;
508
509    // Initialize stages.
510    fetch.initStage();
511    iew.initStage();
512    rename.initStage();
513    commit.initStage();
514
515    commit.setThreads(thread);
516}
517
518template <class Impl>
519void
520FullO3CPU<Impl>::activateThread(unsigned tid)
521{
522    list<unsigned>::iterator isActive = find(
523        activeThreads.begin(), activeThreads.end(), tid);
524
525    DPRINTF(O3CPU, "[tid:%i]: Calling activate thread.\n", tid);
526
527    if (isActive == activeThreads.end()) {
528        DPRINTF(O3CPU, "[tid:%i]: Adding to active threads list\n",
529                tid);
530
531        activeThreads.push_back(tid);
532    }
533}
534
535template <class Impl>
536void
537FullO3CPU<Impl>::deactivateThread(unsigned tid)
538{
539    //Remove From Active List, if Active
540    list<unsigned>::iterator thread_it =
541        find(activeThreads.begin(), activeThreads.end(), tid);
542
543    DPRINTF(O3CPU, "[tid:%i]: Calling deactivate thread.\n", tid);
544
545    if (thread_it != activeThreads.end()) {
546        DPRINTF(O3CPU,"[tid:%i]: Removing from active threads list\n",
547                tid);
548        activeThreads.erase(thread_it);
549    }
550}
551
552template <class Impl>
553void
554FullO3CPU<Impl>::activateContext(int tid, int delay)
555{
556#if FULL_SYSTEM
557    // Connect the ThreadContext's memory ports (Functional/Virtual
558    // Ports)
559    threadContexts[tid]->connectMemPorts();
560#endif
561
562    // Needs to set each stage to running as well.
563    if (delay){
564        DPRINTF(O3CPU, "[tid:%i]: Scheduling thread context to activate "
565                "on cycle %d\n", tid, curTick + cycles(delay));
566        scheduleActivateThreadEvent(tid, delay);
567    } else {
568        activateThread(tid);
569    }
570
571    if (lastActivatedCycle < curTick) {
572        scheduleTickEvent(delay);
573
574        // Be sure to signal that there's some activity so the CPU doesn't
575        // deschedule itself.
576        activityRec.activity();
577        fetch.wakeFromQuiesce();
578
579        lastActivatedCycle = curTick;
580
581        _status = Running;
582    }
583}
584
585template <class Impl>
586bool
587FullO3CPU<Impl>::deallocateContext(int tid, bool remove, int delay)
588{
589    // Schedule removal of thread data from CPU
590    if (delay){
591        DPRINTF(O3CPU, "[tid:%i]: Scheduling thread context to deallocate "
592                "on cycle %d\n", tid, curTick + cycles(delay));
593        scheduleDeallocateContextEvent(tid, remove, delay);
594        return false;
595    } else {
596        deactivateThread(tid);
597        if (remove)
598            removeThread(tid);
599        return true;
600    }
601}
602
603template <class Impl>
604void
605FullO3CPU<Impl>::suspendContext(int tid)
606{
607    DPRINTF(O3CPU,"[tid: %i]: Suspending Thread Context.\n", tid);
608    bool deallocated = deallocateContext(tid, false, 1);
609    // If this was the last thread then unschedule the tick event.
610    if (activeThreads.size() == 1 && !deallocated ||
611        activeThreads.size() == 0)
612        unscheduleTickEvent();
613    _status = Idle;
614}
615
616template <class Impl>
617void
618FullO3CPU<Impl>::haltContext(int tid)
619{
620    //For now, this is the same as deallocate
621    DPRINTF(O3CPU,"[tid:%i]: Halt Context called. Deallocating", tid);
622    deallocateContext(tid, true, 1);
623}
624
625template <class Impl>
626void
627FullO3CPU<Impl>::insertThread(unsigned tid)
628{
629    DPRINTF(O3CPU,"[tid:%i] Initializing thread into CPU");
630    // Will change now that the PC and thread state is internal to the CPU
631    // and not in the ThreadContext.
632#if FULL_SYSTEM
633    ThreadContext *src_tc = system->threadContexts[tid];
634#else
635    ThreadContext *src_tc = tcBase(tid);
636#endif
637
638    //Bind Int Regs to Rename Map
639    for (int ireg = 0; ireg < TheISA::NumIntRegs; ireg++) {
640        PhysRegIndex phys_reg = freeList.getIntReg();
641
642        renameMap[tid].setEntry(ireg,phys_reg);
643        scoreboard.setReg(phys_reg);
644    }
645
646    //Bind Float Regs to Rename Map
647    for (int freg = 0; freg < TheISA::NumFloatRegs; freg++) {
648        PhysRegIndex phys_reg = freeList.getFloatReg();
649
650        renameMap[tid].setEntry(freg,phys_reg);
651        scoreboard.setReg(phys_reg);
652    }
653
654    //Copy Thread Data Into RegFile
655    //this->copyFromTC(tid);
656
657    //Set PC/NPC/NNPC
658    setPC(src_tc->readPC(), tid);
659    setNextPC(src_tc->readNextPC(), tid);
660#if ISA_HAS_DELAY_SLOT
661    setNextNPC(src_tc->readNextNPC(), tid);
662#endif
663
664    src_tc->setStatus(ThreadContext::Active);
665
666    activateContext(tid,1);
667
668    //Reset ROB/IQ/LSQ Entries
669    commit.rob->resetEntries();
670    iew.resetEntries();
671}
672
673template <class Impl>
674void
675FullO3CPU<Impl>::removeThread(unsigned tid)
676{
677    DPRINTF(O3CPU,"[tid:%i] Removing thread context from CPU.\n", tid);
678
679    // Copy Thread Data From RegFile
680    // If thread is suspended, it might be re-allocated
681    //this->copyToTC(tid);
682
683    // Unbind Int Regs from Rename Map
684    for (int ireg = 0; ireg < TheISA::NumIntRegs; ireg++) {
685        PhysRegIndex phys_reg = renameMap[tid].lookup(ireg);
686
687        scoreboard.unsetReg(phys_reg);
688        freeList.addReg(phys_reg);
689    }
690
691    // Unbind Float Regs from Rename Map
692    for (int freg = 0; freg < TheISA::NumFloatRegs; freg++) {
693        PhysRegIndex phys_reg = renameMap[tid].lookup(freg);
694
695        scoreboard.unsetReg(phys_reg);
696        freeList.addReg(phys_reg);
697    }
698
699    // Squash Throughout Pipeline
700    InstSeqNum squash_seq_num = commit.rob->readHeadInst(tid)->seqNum;
701    fetch.squash(0, squash_seq_num, true, tid);
702    decode.squash(tid);
703    rename.squash(squash_seq_num, tid);
704    iew.squash(tid);
705    commit.rob->squash(squash_seq_num, tid);
706
707    assert(iew.ldstQueue.getCount(tid) == 0);
708
709    // Reset ROB/IQ/LSQ Entries
710
711    // Commented out for now.  This should be possible to do by
712    // telling all the pipeline stages to drain first, and then
713    // checking until the drain completes.  Once the pipeline is
714    // drained, call resetEntries(). - 10-09-06 ktlim
715/*
716    if (activeThreads.size() >= 1) {
717        commit.rob->resetEntries();
718        iew.resetEntries();
719    }
720*/
721}
722
723
724template <class Impl>
725void
726FullO3CPU<Impl>::activateWhenReady(int tid)
727{
728    DPRINTF(O3CPU,"[tid:%i]: Checking if resources are available for incoming"
729            "(e.g. PhysRegs/ROB/IQ/LSQ) \n",
730            tid);
731
732    bool ready = true;
733
734    if (freeList.numFreeIntRegs() >= TheISA::NumIntRegs) {
735        DPRINTF(O3CPU,"[tid:%i] Suspending thread due to not enough "
736                "Phys. Int. Regs.\n",
737                tid);
738        ready = false;
739    } else if (freeList.numFreeFloatRegs() >= TheISA::NumFloatRegs) {
740        DPRINTF(O3CPU,"[tid:%i] Suspending thread due to not enough "
741                "Phys. Float. Regs.\n",
742                tid);
743        ready = false;
744    } else if (commit.rob->numFreeEntries() >=
745               commit.rob->entryAmount(activeThreads.size() + 1)) {
746        DPRINTF(O3CPU,"[tid:%i] Suspending thread due to not enough "
747                "ROB entries.\n",
748                tid);
749        ready = false;
750    } else if (iew.instQueue.numFreeEntries() >=
751               iew.instQueue.entryAmount(activeThreads.size() + 1)) {
752        DPRINTF(O3CPU,"[tid:%i] Suspending thread due to not enough "
753                "IQ entries.\n",
754                tid);
755        ready = false;
756    } else if (iew.ldstQueue.numFreeEntries() >=
757               iew.ldstQueue.entryAmount(activeThreads.size() + 1)) {
758        DPRINTF(O3CPU,"[tid:%i] Suspending thread due to not enough "
759                "LSQ entries.\n",
760                tid);
761        ready = false;
762    }
763
764    if (ready) {
765        insertThread(tid);
766
767        contextSwitch = false;
768
769        cpuWaitList.remove(tid);
770    } else {
771        suspendContext(tid);
772
773        //blocks fetch
774        contextSwitch = true;
775
776        //@todo: dont always add to waitlist
777        //do waitlist
778        cpuWaitList.push_back(tid);
779    }
780}
781
782template <class Impl>
783void
784FullO3CPU<Impl>::serialize(std::ostream &os)
785{
786    SimObject::State so_state = SimObject::getState();
787    SERIALIZE_ENUM(so_state);
788    BaseCPU::serialize(os);
789    nameOut(os, csprintf("%s.tickEvent", name()));
790    tickEvent.serialize(os);
791
792    // Use SimpleThread's ability to checkpoint to make it easier to
793    // write out the registers.  Also make this static so it doesn't
794    // get instantiated multiple times (causes a panic in statistics).
795    static SimpleThread temp;
796
797    for (int i = 0; i < thread.size(); i++) {
798        nameOut(os, csprintf("%s.xc.%i", name(), i));
799        temp.copyTC(thread[i]->getTC());
800        temp.serialize(os);
801    }
802}
803
804template <class Impl>
805void
806FullO3CPU<Impl>::unserialize(Checkpoint *cp, const std::string &section)
807{
808    SimObject::State so_state;
809    UNSERIALIZE_ENUM(so_state);
810    BaseCPU::unserialize(cp, section);
811    tickEvent.unserialize(cp, csprintf("%s.tickEvent", section));
812
813    // Use SimpleThread's ability to checkpoint to make it easier to
814    // read in the registers.  Also make this static so it doesn't
815    // get instantiated multiple times (causes a panic in statistics).
816    static SimpleThread temp;
817
818    for (int i = 0; i < thread.size(); i++) {
819        temp.copyTC(thread[i]->getTC());
820        temp.unserialize(cp, csprintf("%s.xc.%i", section, i));
821        thread[i]->getTC()->copyArchRegs(temp.getTC());
822    }
823}
824
825template <class Impl>
826unsigned int
827FullO3CPU<Impl>::drain(Event *drain_event)
828{
829    DPRINTF(O3CPU, "Switching out\n");
830
831    // If the CPU isn't doing anything, then return immediately.
832    if (_status == Idle || _status == SwitchedOut) {
833        return 0;
834    }
835
836    drainCount = 0;
837    fetch.drain();
838    decode.drain();
839    rename.drain();
840    iew.drain();
841    commit.drain();
842
843    // Wake the CPU and record activity so everything can drain out if
844    // the CPU was not able to immediately drain.
845    if (getState() != SimObject::Drained) {
846        // A bit of a hack...set the drainEvent after all the drain()
847        // calls have been made, that way if all of the stages drain
848        // immediately, the signalDrained() function knows not to call
849        // process on the drain event.
850        drainEvent = drain_event;
851
852        wakeCPU();
853        activityRec.activity();
854
855        return 1;
856    } else {
857        return 0;
858    }
859}
860
861template <class Impl>
862void
863FullO3CPU<Impl>::resume()
864{
865    fetch.resume();
866    decode.resume();
867    rename.resume();
868    iew.resume();
869    commit.resume();
870
871    changeState(SimObject::Running);
872
873    if (_status == SwitchedOut || _status == Idle)
874        return;
875
876#if FULL_SYSTEM
877    assert(system->getMemoryMode() == System::Timing);
878#endif
879
880    if (!tickEvent.scheduled())
881        tickEvent.schedule(curTick);
882    _status = Running;
883}
884
885template <class Impl>
886void
887FullO3CPU<Impl>::signalDrained()
888{
889    if (++drainCount == NumStages) {
890        if (tickEvent.scheduled())
891            tickEvent.squash();
892
893        changeState(SimObject::Drained);
894
895        BaseCPU::switchOut();
896
897        if (drainEvent) {
898            drainEvent->process();
899            drainEvent = NULL;
900        }
901    }
902    assert(drainCount <= 5);
903}
904
905template <class Impl>
906void
907FullO3CPU<Impl>::switchOut()
908{
909    fetch.switchOut();
910    rename.switchOut();
911    iew.switchOut();
912    commit.switchOut();
913    instList.clear();
914    while (!removeList.empty()) {
915        removeList.pop();
916    }
917
918    _status = SwitchedOut;
919#if USE_CHECKER
920    if (checker)
921        checker->switchOut();
922#endif
923    if (tickEvent.scheduled())
924        tickEvent.squash();
925}
926
927template <class Impl>
928void
929FullO3CPU<Impl>::takeOverFrom(BaseCPU *oldCPU)
930{
931    // Flush out any old data from the time buffers.
932    for (int i = 0; i < timeBuffer.getSize(); ++i) {
933        timeBuffer.advance();
934        fetchQueue.advance();
935        decodeQueue.advance();
936        renameQueue.advance();
937        iewQueue.advance();
938    }
939
940    activityRec.reset();
941
942    BaseCPU::takeOverFrom(oldCPU);
943
944    fetch.takeOverFrom();
945    decode.takeOverFrom();
946    rename.takeOverFrom();
947    iew.takeOverFrom();
948    commit.takeOverFrom();
949
950    assert(!tickEvent.scheduled());
951
952    // @todo: Figure out how to properly select the tid to put onto
953    // the active threads list.
954    int tid = 0;
955
956    list<unsigned>::iterator isActive = find(
957        activeThreads.begin(), activeThreads.end(), tid);
958
959    if (isActive == activeThreads.end()) {
960        //May Need to Re-code this if the delay variable is the delay
961        //needed for thread to activate
962        DPRINTF(O3CPU, "Adding Thread %i to active threads list\n",
963                tid);
964
965        activeThreads.push_back(tid);
966    }
967
968    // Set all statuses to active, schedule the CPU's tick event.
969    // @todo: Fix up statuses so this is handled properly
970    for (int i = 0; i < threadContexts.size(); ++i) {
971        ThreadContext *tc = threadContexts[i];
972        if (tc->status() == ThreadContext::Active && _status != Running) {
973            _status = Running;
974            tickEvent.schedule(curTick);
975        }
976    }
977    if (!tickEvent.scheduled())
978        tickEvent.schedule(curTick);
979
980    Port *peer;
981    Port *icachePort = fetch.getIcachePort();
982    if (icachePort->getPeer() == NULL) {
983        peer = oldCPU->getPort("icache_port")->getPeer();
984        icachePort->setPeer(peer);
985    } else {
986        peer = icachePort->getPeer();
987    }
988    peer->setPeer(icachePort);
989
990    Port *dcachePort = iew.getDcachePort();
991    if (dcachePort->getPeer() == NULL) {
992        peer = oldCPU->getPort("dcache_port")->getPeer();
993        dcachePort->setPeer(peer);
994    } else {
995        peer = dcachePort->getPeer();
996    }
997    peer->setPeer(dcachePort);
998}
999
1000template <class Impl>
1001uint64_t
1002FullO3CPU<Impl>::readIntReg(int reg_idx)
1003{
1004    return regFile.readIntReg(reg_idx);
1005}
1006
1007template <class Impl>
1008FloatReg
1009FullO3CPU<Impl>::readFloatReg(int reg_idx, int width)
1010{
1011    return regFile.readFloatReg(reg_idx, width);
1012}
1013
1014template <class Impl>
1015FloatReg
1016FullO3CPU<Impl>::readFloatReg(int reg_idx)
1017{
1018    return regFile.readFloatReg(reg_idx);
1019}
1020
1021template <class Impl>
1022FloatRegBits
1023FullO3CPU<Impl>::readFloatRegBits(int reg_idx, int width)
1024{
1025    return regFile.readFloatRegBits(reg_idx, width);
1026}
1027
1028template <class Impl>
1029FloatRegBits
1030FullO3CPU<Impl>::readFloatRegBits(int reg_idx)
1031{
1032    return regFile.readFloatRegBits(reg_idx);
1033}
1034
1035template <class Impl>
1036void
1037FullO3CPU<Impl>::setIntReg(int reg_idx, uint64_t val)
1038{
1039    regFile.setIntReg(reg_idx, val);
1040}
1041
1042template <class Impl>
1043void
1044FullO3CPU<Impl>::setFloatReg(int reg_idx, FloatReg val, int width)
1045{
1046    regFile.setFloatReg(reg_idx, val, width);
1047}
1048
1049template <class Impl>
1050void
1051FullO3CPU<Impl>::setFloatReg(int reg_idx, FloatReg val)
1052{
1053    regFile.setFloatReg(reg_idx, val);
1054}
1055
1056template <class Impl>
1057void
1058FullO3CPU<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val, int width)
1059{
1060    regFile.setFloatRegBits(reg_idx, val, width);
1061}
1062
1063template <class Impl>
1064void
1065FullO3CPU<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
1066{
1067    regFile.setFloatRegBits(reg_idx, val);
1068}
1069
1070template <class Impl>
1071uint64_t
1072FullO3CPU<Impl>::readArchIntReg(int reg_idx, unsigned tid)
1073{
1074    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(reg_idx);
1075
1076    return regFile.readIntReg(phys_reg);
1077}
1078
1079template <class Impl>
1080float
1081FullO3CPU<Impl>::readArchFloatRegSingle(int reg_idx, unsigned tid)
1082{
1083    int idx = reg_idx + TheISA::FP_Base_DepTag;
1084    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1085
1086    return regFile.readFloatReg(phys_reg);
1087}
1088
1089template <class Impl>
1090double
1091FullO3CPU<Impl>::readArchFloatRegDouble(int reg_idx, unsigned tid)
1092{
1093    int idx = reg_idx + TheISA::FP_Base_DepTag;
1094    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1095
1096    return regFile.readFloatReg(phys_reg, 64);
1097}
1098
1099template <class Impl>
1100uint64_t
1101FullO3CPU<Impl>::readArchFloatRegInt(int reg_idx, unsigned tid)
1102{
1103    int idx = reg_idx + TheISA::FP_Base_DepTag;
1104    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1105
1106    return regFile.readFloatRegBits(phys_reg);
1107}
1108
1109template <class Impl>
1110void
1111FullO3CPU<Impl>::setArchIntReg(int reg_idx, uint64_t val, unsigned tid)
1112{
1113    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(reg_idx);
1114
1115    regFile.setIntReg(phys_reg, val);
1116}
1117
1118template <class Impl>
1119void
1120FullO3CPU<Impl>::setArchFloatRegSingle(int reg_idx, float val, unsigned tid)
1121{
1122    int idx = reg_idx + TheISA::FP_Base_DepTag;
1123    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1124
1125    regFile.setFloatReg(phys_reg, val);
1126}
1127
1128template <class Impl>
1129void
1130FullO3CPU<Impl>::setArchFloatRegDouble(int reg_idx, double val, unsigned tid)
1131{
1132    int idx = reg_idx + TheISA::FP_Base_DepTag;
1133    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1134
1135    regFile.setFloatReg(phys_reg, val, 64);
1136}
1137
1138template <class Impl>
1139void
1140FullO3CPU<Impl>::setArchFloatRegInt(int reg_idx, uint64_t val, unsigned tid)
1141{
1142    int idx = reg_idx + TheISA::FP_Base_DepTag;
1143    PhysRegIndex phys_reg = commitRenameMap[tid].lookup(idx);
1144
1145    regFile.setFloatRegBits(phys_reg, val);
1146}
1147
1148template <class Impl>
1149uint64_t
1150FullO3CPU<Impl>::readPC(unsigned tid)
1151{
1152    return commit.readPC(tid);
1153}
1154
1155template <class Impl>
1156void
1157FullO3CPU<Impl>::setPC(Addr new_PC,unsigned tid)
1158{
1159    commit.setPC(new_PC, tid);
1160}
1161
1162template <class Impl>
1163uint64_t
1164FullO3CPU<Impl>::readNextPC(unsigned tid)
1165{
1166    return commit.readNextPC(tid);
1167}
1168
1169template <class Impl>
1170void
1171FullO3CPU<Impl>::setNextPC(uint64_t val,unsigned tid)
1172{
1173    commit.setNextPC(val, tid);
1174}
1175
1176template <class Impl>
1177uint64_t
1178FullO3CPU<Impl>::readNextNPC(unsigned tid)
1179{
1180    return commit.readNextNPC(tid);
1181}
1182
1183template <class Impl>
1184void
1185FullO3CPU<Impl>::setNextNPC(uint64_t val,unsigned tid)
1186{
1187    commit.setNextNPC(val, tid);
1188}
1189
1190template <class Impl>
1191typename FullO3CPU<Impl>::ListIt
1192FullO3CPU<Impl>::addInst(DynInstPtr &inst)
1193{
1194    instList.push_back(inst);
1195
1196    return --(instList.end());
1197}
1198
1199template <class Impl>
1200void
1201FullO3CPU<Impl>::instDone(unsigned tid)
1202{
1203    // Keep an instruction count.
1204    thread[tid]->numInst++;
1205    thread[tid]->numInsts++;
1206    committedInsts[tid]++;
1207    totalCommittedInsts++;
1208
1209    // Check for instruction-count-based events.
1210    comInstEventQueue[tid]->serviceEvents(thread[tid]->numInst);
1211}
1212
1213template <class Impl>
1214void
1215FullO3CPU<Impl>::addToRemoveList(DynInstPtr &inst)
1216{
1217    removeInstsThisCycle = true;
1218
1219    removeList.push(inst->getInstListIt());
1220}
1221
1222template <class Impl>
1223void
1224FullO3CPU<Impl>::removeFrontInst(DynInstPtr &inst)
1225{
1226    DPRINTF(O3CPU, "Removing committed instruction [tid:%i] PC %#x "
1227            "[sn:%lli]\n",
1228            inst->threadNumber, inst->readPC(), inst->seqNum);
1229
1230    removeInstsThisCycle = true;
1231
1232    // Remove the front instruction.
1233    removeList.push(inst->getInstListIt());
1234}
1235
1236template <class Impl>
1237void
1238FullO3CPU<Impl>::removeInstsNotInROB(unsigned tid,
1239                                     bool squash_delay_slot,
1240                                     const InstSeqNum &delay_slot_seq_num)
1241{
1242    DPRINTF(O3CPU, "Thread %i: Deleting instructions from instruction"
1243            " list.\n", tid);
1244
1245    ListIt end_it;
1246
1247    bool rob_empty = false;
1248
1249    if (instList.empty()) {
1250        return;
1251    } else if (rob.isEmpty(/*tid*/)) {
1252        DPRINTF(O3CPU, "ROB is empty, squashing all insts.\n");
1253        end_it = instList.begin();
1254        rob_empty = true;
1255    } else {
1256        end_it = (rob.readTailInst(tid))->getInstListIt();
1257        DPRINTF(O3CPU, "ROB is not empty, squashing insts not in ROB.\n");
1258    }
1259
1260    removeInstsThisCycle = true;
1261
1262    ListIt inst_it = instList.end();
1263
1264    inst_it--;
1265
1266    // Walk through the instruction list, removing any instructions
1267    // that were inserted after the given instruction iterator, end_it.
1268    while (inst_it != end_it) {
1269        assert(!instList.empty());
1270
1271#if ISA_HAS_DELAY_SLOT
1272        if(!squash_delay_slot &&
1273           delay_slot_seq_num >= (*inst_it)->seqNum) {
1274            break;
1275        }
1276#endif
1277        squashInstIt(inst_it, tid);
1278
1279        inst_it--;
1280    }
1281
1282    // If the ROB was empty, then we actually need to remove the first
1283    // instruction as well.
1284    if (rob_empty) {
1285        squashInstIt(inst_it, tid);
1286    }
1287}
1288
1289template <class Impl>
1290void
1291FullO3CPU<Impl>::removeInstsUntil(const InstSeqNum &seq_num,
1292                                  unsigned tid)
1293{
1294    assert(!instList.empty());
1295
1296    removeInstsThisCycle = true;
1297
1298    ListIt inst_iter = instList.end();
1299
1300    inst_iter--;
1301
1302    DPRINTF(O3CPU, "Deleting instructions from instruction "
1303            "list that are from [tid:%i] and above [sn:%lli] (end=%lli).\n",
1304            tid, seq_num, (*inst_iter)->seqNum);
1305
1306    while ((*inst_iter)->seqNum > seq_num) {
1307
1308        bool break_loop = (inst_iter == instList.begin());
1309
1310        squashInstIt(inst_iter, tid);
1311
1312        inst_iter--;
1313
1314        if (break_loop)
1315            break;
1316    }
1317}
1318
1319template <class Impl>
1320inline void
1321FullO3CPU<Impl>::squashInstIt(const ListIt &instIt, const unsigned &tid)
1322{
1323    if ((*instIt)->threadNumber == tid) {
1324        DPRINTF(O3CPU, "Squashing instruction, "
1325                "[tid:%i] [sn:%lli] PC %#x\n",
1326                (*instIt)->threadNumber,
1327                (*instIt)->seqNum,
1328                (*instIt)->readPC());
1329
1330        // Mark it as squashed.
1331        (*instIt)->setSquashed();
1332
1333        // @todo: Formulate a consistent method for deleting
1334        // instructions from the instruction list
1335        // Remove the instruction from the list.
1336        removeList.push(instIt);
1337    }
1338}
1339
1340template <class Impl>
1341void
1342FullO3CPU<Impl>::cleanUpRemovedInsts()
1343{
1344    while (!removeList.empty()) {
1345        DPRINTF(O3CPU, "Removing instruction, "
1346                "[tid:%i] [sn:%lli] PC %#x\n",
1347                (*removeList.front())->threadNumber,
1348                (*removeList.front())->seqNum,
1349                (*removeList.front())->readPC());
1350
1351        instList.erase(removeList.front());
1352
1353        removeList.pop();
1354    }
1355
1356    removeInstsThisCycle = false;
1357}
1358/*
1359template <class Impl>
1360void
1361FullO3CPU<Impl>::removeAllInsts()
1362{
1363    instList.clear();
1364}
1365*/
1366template <class Impl>
1367void
1368FullO3CPU<Impl>::dumpInsts()
1369{
1370    int num = 0;
1371
1372    ListIt inst_list_it = instList.begin();
1373
1374    cprintf("Dumping Instruction List\n");
1375
1376    while (inst_list_it != instList.end()) {
1377        cprintf("Instruction:%i\nPC:%#x\n[tid:%i]\n[sn:%lli]\nIssued:%i\n"
1378                "Squashed:%i\n\n",
1379                num, (*inst_list_it)->readPC(), (*inst_list_it)->threadNumber,
1380                (*inst_list_it)->seqNum, (*inst_list_it)->isIssued(),
1381                (*inst_list_it)->isSquashed());
1382        inst_list_it++;
1383        ++num;
1384    }
1385}
1386/*
1387template <class Impl>
1388void
1389FullO3CPU<Impl>::wakeDependents(DynInstPtr &inst)
1390{
1391    iew.wakeDependents(inst);
1392}
1393*/
1394template <class Impl>
1395void
1396FullO3CPU<Impl>::wakeCPU()
1397{
1398    if (activityRec.active() || tickEvent.scheduled()) {
1399        DPRINTF(Activity, "CPU already running.\n");
1400        return;
1401    }
1402
1403    DPRINTF(Activity, "Waking up CPU\n");
1404
1405    idleCycles += (curTick - 1) - lastRunningCycle;
1406
1407    tickEvent.schedule(curTick);
1408}
1409
1410template <class Impl>
1411int
1412FullO3CPU<Impl>::getFreeTid()
1413{
1414    for (int i=0; i < numThreads; i++) {
1415        if (!tids[i]) {
1416            tids[i] = true;
1417            return i;
1418        }
1419    }
1420
1421    return -1;
1422}
1423
1424template <class Impl>
1425void
1426FullO3CPU<Impl>::doContextSwitch()
1427{
1428    if (contextSwitch) {
1429
1430        //ADD CODE TO DEACTIVE THREAD HERE (???)
1431
1432        for (int tid=0; tid < cpuWaitList.size(); tid++) {
1433            activateWhenReady(tid);
1434        }
1435
1436        if (cpuWaitList.size() == 0)
1437            contextSwitch = true;
1438    }
1439}
1440
1441template <class Impl>
1442void
1443FullO3CPU<Impl>::updateThreadPriority()
1444{
1445    if (activeThreads.size() > 1)
1446    {
1447        //DEFAULT TO ROUND ROBIN SCHEME
1448        //e.g. Move highest priority to end of thread list
1449        list<unsigned>::iterator list_begin = activeThreads.begin();
1450        list<unsigned>::iterator list_end   = activeThreads.end();
1451
1452        unsigned high_thread = *list_begin;
1453
1454        activeThreads.erase(list_begin);
1455
1456        activeThreads.push_back(high_thread);
1457    }
1458}
1459
1460// Forward declaration of FullO3CPU.
1461template class FullO3CPU<O3CPUImpl>;
1462