cpu.cc revision 10464
11689SN/A/*
210331Smitch.hayenga@arm.com * Copyright (c) 2011-2012, 2014 ARM Limited
39916Ssteve.reinhardt@amd.com * Copyright (c) 2013 Advanced Micro Devices, Inc.
48707Sandreas.hansson@arm.com * All rights reserved
58707Sandreas.hansson@arm.com *
68707Sandreas.hansson@arm.com * The license below extends only to copyright in the software and shall
78707Sandreas.hansson@arm.com * not be construed as granting a license to any other intellectual
88707Sandreas.hansson@arm.com * property including but not limited to intellectual property relating
98707Sandreas.hansson@arm.com * to a hardware implementation of the functionality of the software
108707Sandreas.hansson@arm.com * licensed hereunder.  You may use the software subject to the license
118707Sandreas.hansson@arm.com * terms below provided that you ensure that this notice is replicated
128707Sandreas.hansson@arm.com * unmodified and in its entirety in all distributions of the software,
138707Sandreas.hansson@arm.com * modified or unmodified, in source code or in binary form.
148707Sandreas.hansson@arm.com *
152325SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan
167897Shestness@cs.utexas.edu * Copyright (c) 2011 Regents of the University of California
171689SN/A * All rights reserved.
181689SN/A *
191689SN/A * Redistribution and use in source and binary forms, with or without
201689SN/A * modification, are permitted provided that the following conditions are
211689SN/A * met: redistributions of source code must retain the above copyright
221689SN/A * notice, this list of conditions and the following disclaimer;
231689SN/A * redistributions in binary form must reproduce the above copyright
241689SN/A * notice, this list of conditions and the following disclaimer in the
251689SN/A * documentation and/or other materials provided with the distribution;
261689SN/A * neither the name of the copyright holders nor the names of its
271689SN/A * contributors may be used to endorse or promote products derived from
281689SN/A * this software without specific prior written permission.
291689SN/A *
301689SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
311689SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
321689SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
331689SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
341689SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
351689SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
361689SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
371689SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
381689SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
391689SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
401689SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
412665Ssaidi@eecs.umich.edu *
422665Ssaidi@eecs.umich.edu * Authors: Kevin Lim
432756Sksewell@umich.edu *          Korey Sewell
447897Shestness@cs.utexas.edu *          Rick Strong
451689SN/A */
461689SN/A
478779Sgblack@eecs.umich.edu#include "arch/kernel_stats.hh"
486658Snate@binkert.org#include "config/the_isa.hh"
498887Sgeoffrey.blake@arm.com#include "cpu/checker/cpu.hh"
508887Sgeoffrey.blake@arm.com#include "cpu/checker/thread_context.hh"
518229Snate@binkert.org#include "cpu/o3/cpu.hh"
528229Snate@binkert.org#include "cpu/o3/isa_specific.hh"
538229Snate@binkert.org#include "cpu/o3/thread_context.hh"
544762Snate@binkert.org#include "cpu/activity.hh"
558779Sgblack@eecs.umich.edu#include "cpu/quiesce_event.hh"
564762Snate@binkert.org#include "cpu/simple_thread.hh"
574762Snate@binkert.org#include "cpu/thread_context.hh"
588232Snate@binkert.org#include "debug/Activity.hh"
599152Satgutier@umich.edu#include "debug/Drain.hh"
608232Snate@binkert.org#include "debug/O3CPU.hh"
618232Snate@binkert.org#include "debug/Quiesce.hh"
624762Snate@binkert.org#include "enums/MemoryMode.hh"
634762Snate@binkert.org#include "sim/core.hh"
648793Sgblack@eecs.umich.edu#include "sim/full_system.hh"
658779Sgblack@eecs.umich.edu#include "sim/process.hh"
664762Snate@binkert.org#include "sim/stat_control.hh"
678460SAli.Saidi@ARM.com#include "sim/system.hh"
684762Snate@binkert.org
695702Ssaidi@eecs.umich.edu#if THE_ISA == ALPHA_ISA
705702Ssaidi@eecs.umich.edu#include "arch/alpha/osfpal.hh"
718232Snate@binkert.org#include "debug/Activity.hh"
725702Ssaidi@eecs.umich.edu#endif
735702Ssaidi@eecs.umich.edu
748737Skoansin.tan@gmail.comstruct BaseCPUParams;
755529Snate@binkert.org
762669Sktlim@umich.eduusing namespace TheISA;
776221Snate@binkert.orgusing namespace std;
781060SN/A
795529Snate@binkert.orgBaseO3CPU::BaseO3CPU(BaseCPUParams *params)
805712Shsul@eecs.umich.edu    : BaseCPU(params)
811060SN/A{
821060SN/A}
831060SN/A
842292SN/Avoid
852733Sktlim@umich.eduBaseO3CPU::regStats()
862292SN/A{
872292SN/A    BaseCPU::regStats();
882292SN/A}
892292SN/A
908707Sandreas.hansson@arm.comtemplate<class Impl>
918707Sandreas.hansson@arm.combool
928975Sandreas.hansson@arm.comFullO3CPU<Impl>::IcachePort::recvTimingResp(PacketPtr pkt)
938707Sandreas.hansson@arm.com{
948707Sandreas.hansson@arm.com    DPRINTF(O3CPU, "Fetch unit received timing\n");
958948Sandreas.hansson@arm.com    // We shouldn't ever get a block in ownership state
968948Sandreas.hansson@arm.com    assert(!(pkt->memInhibitAsserted() && !pkt->sharedAsserted()));
978948Sandreas.hansson@arm.com    fetch->processCacheCompletion(pkt);
988707Sandreas.hansson@arm.com
998707Sandreas.hansson@arm.com    return true;
1008707Sandreas.hansson@arm.com}
1018707Sandreas.hansson@arm.com
1028707Sandreas.hansson@arm.comtemplate<class Impl>
1038707Sandreas.hansson@arm.comvoid
1048707Sandreas.hansson@arm.comFullO3CPU<Impl>::IcachePort::recvRetry()
1058707Sandreas.hansson@arm.com{
1068707Sandreas.hansson@arm.com    fetch->recvRetry();
1078707Sandreas.hansson@arm.com}
1088707Sandreas.hansson@arm.com
1098707Sandreas.hansson@arm.comtemplate <class Impl>
1108707Sandreas.hansson@arm.combool
1118975Sandreas.hansson@arm.comFullO3CPU<Impl>::DcachePort::recvTimingResp(PacketPtr pkt)
1128707Sandreas.hansson@arm.com{
1138975Sandreas.hansson@arm.com    return lsq->recvTimingResp(pkt);
1148707Sandreas.hansson@arm.com}
1158707Sandreas.hansson@arm.com
1168707Sandreas.hansson@arm.comtemplate <class Impl>
1178975Sandreas.hansson@arm.comvoid
1188975Sandreas.hansson@arm.comFullO3CPU<Impl>::DcachePort::recvTimingSnoopReq(PacketPtr pkt)
1198948Sandreas.hansson@arm.com{
1208975Sandreas.hansson@arm.com    lsq->recvTimingSnoopReq(pkt);
1218948Sandreas.hansson@arm.com}
1228948Sandreas.hansson@arm.com
1238948Sandreas.hansson@arm.comtemplate <class Impl>
1248707Sandreas.hansson@arm.comvoid
1258707Sandreas.hansson@arm.comFullO3CPU<Impl>::DcachePort::recvRetry()
1268707Sandreas.hansson@arm.com{
1278707Sandreas.hansson@arm.com    lsq->recvRetry();
1288707Sandreas.hansson@arm.com}
1298707Sandreas.hansson@arm.com
1301060SN/Atemplate <class Impl>
1311755SN/AFullO3CPU<Impl>::TickEvent::TickEvent(FullO3CPU<Impl> *c)
1325606Snate@binkert.org    : Event(CPU_Tick_Pri), cpu(c)
1331060SN/A{
1341060SN/A}
1351060SN/A
1361060SN/Atemplate <class Impl>
1371060SN/Avoid
1381755SN/AFullO3CPU<Impl>::TickEvent::process()
1391060SN/A{
1401060SN/A    cpu->tick();
1411060SN/A}
1421060SN/A
1431060SN/Atemplate <class Impl>
1441060SN/Aconst char *
1455336Shines@cs.fsu.eduFullO3CPU<Impl>::TickEvent::description() const
1461060SN/A{
1474873Sstever@eecs.umich.edu    return "FullO3CPU tick";
1481060SN/A}
1491060SN/A
1501060SN/Atemplate <class Impl>
1515595Sgblack@eecs.umich.eduFullO3CPU<Impl>::FullO3CPU(DerivO3CPUParams *params)
1522733Sktlim@umich.edu    : BaseO3CPU(params),
1533781Sgblack@eecs.umich.edu      itb(params->itb),
1543781Sgblack@eecs.umich.edu      dtb(params->dtb),
1551060SN/A      tickEvent(this),
1565737Scws3k@cs.virginia.edu#ifndef NDEBUG
1575737Scws3k@cs.virginia.edu      instcount(0),
1585737Scws3k@cs.virginia.edu#endif
1592292SN/A      removeInstsThisCycle(false),
1605595Sgblack@eecs.umich.edu      fetch(this, params),
1615595Sgblack@eecs.umich.edu      decode(this, params),
1625595Sgblack@eecs.umich.edu      rename(this, params),
1635595Sgblack@eecs.umich.edu      iew(this, params),
1645595Sgblack@eecs.umich.edu      commit(this, params),
1651060SN/A
1669915Ssteve.reinhardt@amd.com      regFile(params->numPhysIntRegs,
1679920Syasuko.eckert@amd.com              params->numPhysFloatRegs,
1689920Syasuko.eckert@amd.com              params->numPhysCCRegs),
1691060SN/A
1709919Ssteve.reinhardt@amd.com      freeList(name() + ".freelist", &regFile),
1711060SN/A
1729954SFaissal.Sleiman@arm.com      rob(this, params),
1731060SN/A
1749916Ssteve.reinhardt@amd.com      scoreboard(name() + ".scoreboard",
1759916Ssteve.reinhardt@amd.com                 regFile.totalNumPhysRegs(), TheISA::NumMiscRegs,
1769916Ssteve.reinhardt@amd.com                 TheISA::ZeroReg, TheISA::ZeroReg),
1771060SN/A
1789384SAndreas.Sandberg@arm.com      isa(numThreads, NULL),
1799384SAndreas.Sandberg@arm.com
1808707Sandreas.hansson@arm.com      icachePort(&fetch, this),
1818707Sandreas.hansson@arm.com      dcachePort(&iew.ldstQueue, this),
1828707Sandreas.hansson@arm.com
1832873Sktlim@umich.edu      timeBuffer(params->backComSize, params->forwardComSize),
1842873Sktlim@umich.edu      fetchQueue(params->backComSize, params->forwardComSize),
1852873Sktlim@umich.edu      decodeQueue(params->backComSize, params->forwardComSize),
1862873Sktlim@umich.edu      renameQueue(params->backComSize, params->forwardComSize),
1872873Sktlim@umich.edu      iewQueue(params->backComSize, params->forwardComSize),
1885804Snate@binkert.org      activityRec(name(), NumStages,
1892873Sktlim@umich.edu                  params->backComSize + params->forwardComSize,
1902873Sktlim@umich.edu                  params->activity),
1911060SN/A
1921060SN/A      globalSeqNum(1),
1932292SN/A      system(params->system),
1949444SAndreas.Sandberg@ARM.com      drainManager(NULL),
1959180Sandreas.hansson@arm.com      lastRunningCycle(curCycle())
1961060SN/A{
1979433SAndreas.Sandberg@ARM.com    if (!params->switched_out) {
1983221Sktlim@umich.edu        _status = Running;
1993221Sktlim@umich.edu    } else {
2009152Satgutier@umich.edu        _status = SwitchedOut;
2013221Sktlim@umich.edu    }
2021681SN/A
2032794Sktlim@umich.edu    if (params->checker) {
2042316SN/A        BaseCPU *temp_checker = params->checker;
2058733Sgeoffrey.blake@arm.com        checker = dynamic_cast<Checker<Impl> *>(temp_checker);
2068707Sandreas.hansson@arm.com        checker->setIcachePort(&icachePort);
2072316SN/A        checker->setSystem(params->system);
2084598Sbinkertn@umich.edu    } else {
2094598Sbinkertn@umich.edu        checker = NULL;
2104598Sbinkertn@umich.edu    }
2112316SN/A
2128793Sgblack@eecs.umich.edu    if (!FullSystem) {
2138793Sgblack@eecs.umich.edu        thread.resize(numThreads);
2148793Sgblack@eecs.umich.edu        tids.resize(numThreads);
2158793Sgblack@eecs.umich.edu    }
2161681SN/A
2172325SN/A    // The stages also need their CPU pointer setup.  However this
2182325SN/A    // must be done at the upper level CPU because they have pointers
2192325SN/A    // to the upper level CPU, and not this FullO3CPU.
2201060SN/A
2212292SN/A    // Set up Pointers to the activeThreads list for each stage
2222292SN/A    fetch.setActiveThreads(&activeThreads);
2232292SN/A    decode.setActiveThreads(&activeThreads);
2242292SN/A    rename.setActiveThreads(&activeThreads);
2252292SN/A    iew.setActiveThreads(&activeThreads);
2262292SN/A    commit.setActiveThreads(&activeThreads);
2271060SN/A
2281060SN/A    // Give each of the stages the time buffer they will use.
2291060SN/A    fetch.setTimeBuffer(&timeBuffer);
2301060SN/A    decode.setTimeBuffer(&timeBuffer);
2311060SN/A    rename.setTimeBuffer(&timeBuffer);
2321060SN/A    iew.setTimeBuffer(&timeBuffer);
2331060SN/A    commit.setTimeBuffer(&timeBuffer);
2341060SN/A
2351060SN/A    // Also setup each of the stages' queues.
2361060SN/A    fetch.setFetchQueue(&fetchQueue);
2371060SN/A    decode.setFetchQueue(&fetchQueue);
2382292SN/A    commit.setFetchQueue(&fetchQueue);
2391060SN/A    decode.setDecodeQueue(&decodeQueue);
2401060SN/A    rename.setDecodeQueue(&decodeQueue);
2411060SN/A    rename.setRenameQueue(&renameQueue);
2421060SN/A    iew.setRenameQueue(&renameQueue);
2431060SN/A    iew.setIEWQueue(&iewQueue);
2441060SN/A    commit.setIEWQueue(&iewQueue);
2451060SN/A    commit.setRenameQueue(&renameQueue);
2461060SN/A
2472292SN/A    commit.setIEWStage(&iew);
2482292SN/A    rename.setIEWStage(&iew);
2492292SN/A    rename.setCommitStage(&commit);
2502292SN/A
2518793Sgblack@eecs.umich.edu    ThreadID active_threads;
2528793Sgblack@eecs.umich.edu    if (FullSystem) {
2538793Sgblack@eecs.umich.edu        active_threads = 1;
2548793Sgblack@eecs.umich.edu    } else {
2558793Sgblack@eecs.umich.edu        active_threads = params->workload.size();
2562831Sksewell@umich.edu
2578793Sgblack@eecs.umich.edu        if (active_threads > Impl::MaxThreads) {
2588793Sgblack@eecs.umich.edu            panic("Workload Size too large. Increase the 'MaxThreads' "
2598793Sgblack@eecs.umich.edu                  "constant in your O3CPU impl. file (e.g. o3/alpha/impl.hh) "
2608793Sgblack@eecs.umich.edu                  "or edit your workload size.");
2618793Sgblack@eecs.umich.edu        }
2622831Sksewell@umich.edu    }
2632292SN/A
2642316SN/A    //Make Sure That this a Valid Architeture
2652292SN/A    assert(params->numPhysIntRegs   >= numThreads * TheISA::NumIntRegs);
2662292SN/A    assert(params->numPhysFloatRegs >= numThreads * TheISA::NumFloatRegs);
2679920Syasuko.eckert@amd.com    assert(params->numPhysCCRegs >= numThreads * TheISA::NumCCRegs);
2682292SN/A
2692292SN/A    rename.setScoreboard(&scoreboard);
2702292SN/A    iew.setScoreboard(&scoreboard);
2712292SN/A
2721060SN/A    // Setup the rename map for whichever stages need it.
2736221Snate@binkert.org    for (ThreadID tid = 0; tid < numThreads; tid++) {
2749384SAndreas.Sandberg@arm.com        isa[tid] = params->isa[tid];
2759384SAndreas.Sandberg@arm.com
2769919Ssteve.reinhardt@amd.com        // Only Alpha has an FP zero register, so for other ISAs we
2779919Ssteve.reinhardt@amd.com        // use an invalid FP register index to avoid special treatment
2789919Ssteve.reinhardt@amd.com        // of any valid FP reg.
2799919Ssteve.reinhardt@amd.com        RegIndex invalidFPReg = TheISA::NumFloatRegs + 1;
2809919Ssteve.reinhardt@amd.com        RegIndex fpZeroReg =
2819919Ssteve.reinhardt@amd.com            (THE_ISA == ALPHA_ISA) ? TheISA::ZeroReg : invalidFPReg;
2822292SN/A
2839919Ssteve.reinhardt@amd.com        commitRenameMap[tid].init(&regFile, TheISA::ZeroReg, fpZeroReg,
2849919Ssteve.reinhardt@amd.com                                  &freeList);
2852292SN/A
2869919Ssteve.reinhardt@amd.com        renameMap[tid].init(&regFile, TheISA::ZeroReg, fpZeroReg,
2879919Ssteve.reinhardt@amd.com                            &freeList);
2882292SN/A    }
2892292SN/A
2909919Ssteve.reinhardt@amd.com    // Initialize rename map to assign physical registers to the
2919919Ssteve.reinhardt@amd.com    // architectural registers for active threads only.
2929919Ssteve.reinhardt@amd.com    for (ThreadID tid = 0; tid < active_threads; tid++) {
2939919Ssteve.reinhardt@amd.com        for (RegIndex ridx = 0; ridx < TheISA::NumIntRegs; ++ridx) {
2949919Ssteve.reinhardt@amd.com            // Note that we can't use the rename() method because we don't
2959919Ssteve.reinhardt@amd.com            // want special treatment for the zero register at this point
2969919Ssteve.reinhardt@amd.com            PhysRegIndex phys_reg = freeList.getIntReg();
2979919Ssteve.reinhardt@amd.com            renameMap[tid].setIntEntry(ridx, phys_reg);
2989919Ssteve.reinhardt@amd.com            commitRenameMap[tid].setIntEntry(ridx, phys_reg);
2999919Ssteve.reinhardt@amd.com        }
3009919Ssteve.reinhardt@amd.com
3019919Ssteve.reinhardt@amd.com        for (RegIndex ridx = 0; ridx < TheISA::NumFloatRegs; ++ridx) {
3029919Ssteve.reinhardt@amd.com            PhysRegIndex phys_reg = freeList.getFloatReg();
3039919Ssteve.reinhardt@amd.com            renameMap[tid].setFloatEntry(ridx, phys_reg);
3049919Ssteve.reinhardt@amd.com            commitRenameMap[tid].setFloatEntry(ridx, phys_reg);
3059919Ssteve.reinhardt@amd.com        }
3069920Syasuko.eckert@amd.com
3079920Syasuko.eckert@amd.com        for (RegIndex ridx = 0; ridx < TheISA::NumCCRegs; ++ridx) {
3089920Syasuko.eckert@amd.com            PhysRegIndex phys_reg = freeList.getCCReg();
3099920Syasuko.eckert@amd.com            renameMap[tid].setCCEntry(ridx, phys_reg);
3109920Syasuko.eckert@amd.com            commitRenameMap[tid].setCCEntry(ridx, phys_reg);
3119920Syasuko.eckert@amd.com        }
3129919Ssteve.reinhardt@amd.com    }
3139919Ssteve.reinhardt@amd.com
3142292SN/A    rename.setRenameMap(renameMap);
3152292SN/A    commit.setRenameMap(commitRenameMap);
3161060SN/A    rename.setFreeList(&freeList);
3172292SN/A
3181060SN/A    // Setup the ROB for whichever stages need it.
3191060SN/A    commit.setROB(&rob);
3202292SN/A
3219158Sandreas.hansson@arm.com    lastActivatedCycle = 0;
3226221Snate@binkert.org#if 0
3233093Sksewell@umich.edu    // Give renameMap & rename stage access to the freeList;
3246221Snate@binkert.org    for (ThreadID tid = 0; tid < numThreads; tid++)
3256221Snate@binkert.org        globalSeqNum[tid] = 1;
3266221Snate@binkert.org#endif
3273093Sksewell@umich.edu
3285595Sgblack@eecs.umich.edu    DPRINTF(O3CPU, "Creating O3CPU object.\n");
3295595Sgblack@eecs.umich.edu
3305595Sgblack@eecs.umich.edu    // Setup any thread state.
3315595Sgblack@eecs.umich.edu    this->thread.resize(this->numThreads);
3325595Sgblack@eecs.umich.edu
3336221Snate@binkert.org    for (ThreadID tid = 0; tid < this->numThreads; ++tid) {
3348793Sgblack@eecs.umich.edu        if (FullSystem) {
3358793Sgblack@eecs.umich.edu            // SMT is not supported in FS mode yet.
3368793Sgblack@eecs.umich.edu            assert(this->numThreads == 1);
3378793Sgblack@eecs.umich.edu            this->thread[tid] = new Thread(this, 0, NULL);
3388793Sgblack@eecs.umich.edu        } else {
3398793Sgblack@eecs.umich.edu            if (tid < params->workload.size()) {
3408793Sgblack@eecs.umich.edu                DPRINTF(O3CPU, "Workload[%i] process is %#x",
3418793Sgblack@eecs.umich.edu                        tid, this->thread[tid]);
3428793Sgblack@eecs.umich.edu                this->thread[tid] = new typename FullO3CPU<Impl>::Thread(
3438793Sgblack@eecs.umich.edu                        (typename Impl::O3CPU *)(this),
3448793Sgblack@eecs.umich.edu                        tid, params->workload[tid]);
3455595Sgblack@eecs.umich.edu
3468793Sgblack@eecs.umich.edu                //usedTids[tid] = true;
3478793Sgblack@eecs.umich.edu                //threadMap[tid] = tid;
3488793Sgblack@eecs.umich.edu            } else {
3498793Sgblack@eecs.umich.edu                //Allocate Empty thread so M5 can use later
3508793Sgblack@eecs.umich.edu                //when scheduling threads to CPU
3518793Sgblack@eecs.umich.edu                Process* dummy_proc = NULL;
3525595Sgblack@eecs.umich.edu
3538793Sgblack@eecs.umich.edu                this->thread[tid] = new typename FullO3CPU<Impl>::Thread(
3548793Sgblack@eecs.umich.edu                        (typename Impl::O3CPU *)(this),
3558793Sgblack@eecs.umich.edu                        tid, dummy_proc);
3568793Sgblack@eecs.umich.edu                //usedTids[tid] = false;
3578793Sgblack@eecs.umich.edu            }
3585595Sgblack@eecs.umich.edu        }
3595595Sgblack@eecs.umich.edu
3605595Sgblack@eecs.umich.edu        ThreadContext *tc;
3615595Sgblack@eecs.umich.edu
3625595Sgblack@eecs.umich.edu        // Setup the TC that will serve as the interface to the threads/CPU.
3635595Sgblack@eecs.umich.edu        O3ThreadContext<Impl> *o3_tc = new O3ThreadContext<Impl>;
3645595Sgblack@eecs.umich.edu
3655595Sgblack@eecs.umich.edu        tc = o3_tc;
3665595Sgblack@eecs.umich.edu
3675595Sgblack@eecs.umich.edu        // If we're using a checker, then the TC should be the
3685595Sgblack@eecs.umich.edu        // CheckerThreadContext.
3695595Sgblack@eecs.umich.edu        if (params->checker) {
3705595Sgblack@eecs.umich.edu            tc = new CheckerThreadContext<O3ThreadContext<Impl> >(
3715595Sgblack@eecs.umich.edu                o3_tc, this->checker);
3725595Sgblack@eecs.umich.edu        }
3735595Sgblack@eecs.umich.edu
3745595Sgblack@eecs.umich.edu        o3_tc->cpu = (typename Impl::O3CPU *)(this);
3755595Sgblack@eecs.umich.edu        assert(o3_tc->cpu);
3766221Snate@binkert.org        o3_tc->thread = this->thread[tid];
3775595Sgblack@eecs.umich.edu
3788793Sgblack@eecs.umich.edu        if (FullSystem) {
3798793Sgblack@eecs.umich.edu            // Setup quiesce event.
3808793Sgblack@eecs.umich.edu            this->thread[tid]->quiesceEvent = new EndQuiesceEvent(tc);
3818793Sgblack@eecs.umich.edu        }
3825595Sgblack@eecs.umich.edu        // Give the thread the TC.
3836221Snate@binkert.org        this->thread[tid]->tc = tc;
3845595Sgblack@eecs.umich.edu
3855595Sgblack@eecs.umich.edu        // Add the TC to the CPU's list of TC's.
3865595Sgblack@eecs.umich.edu        this->threadContexts.push_back(tc);
3875595Sgblack@eecs.umich.edu    }
3885595Sgblack@eecs.umich.edu
3898876Sandreas.hansson@arm.com    // FullO3CPU always requires an interrupt controller.
3909433SAndreas.Sandberg@ARM.com    if (!params->switched_out && !interrupts) {
3918876Sandreas.hansson@arm.com        fatal("FullO3CPU %s has no interrupt controller.\n"
3928876Sandreas.hansson@arm.com              "Ensure createInterruptController() is called.\n", name());
3938876Sandreas.hansson@arm.com    }
3948876Sandreas.hansson@arm.com
3956221Snate@binkert.org    for (ThreadID tid = 0; tid < this->numThreads; tid++)
3966221Snate@binkert.org        this->thread[tid]->setFuncExeInst(0);
3971060SN/A}
3981060SN/A
3991060SN/Atemplate <class Impl>
4001755SN/AFullO3CPU<Impl>::~FullO3CPU()
4011060SN/A{
4021060SN/A}
4031060SN/A
4041060SN/Atemplate <class Impl>
4051060SN/Avoid
40610023Smatt.horsnell@ARM.comFullO3CPU<Impl>::regProbePoints()
40710023Smatt.horsnell@ARM.com{
40810464SAndreas.Sandberg@ARM.com    BaseCPU::regProbePoints();
40910464SAndreas.Sandberg@ARM.com
41010023Smatt.horsnell@ARM.com    ppInstAccessComplete = new ProbePointArg<PacketPtr>(getProbeManager(), "InstAccessComplete");
41110023Smatt.horsnell@ARM.com    ppDataAccessComplete = new ProbePointArg<std::pair<DynInstPtr, PacketPtr> >(getProbeManager(), "DataAccessComplete");
41210464SAndreas.Sandberg@ARM.com
41310023Smatt.horsnell@ARM.com    fetch.regProbePoints();
41410023Smatt.horsnell@ARM.com    iew.regProbePoints();
41510023Smatt.horsnell@ARM.com    commit.regProbePoints();
41610023Smatt.horsnell@ARM.com}
41710023Smatt.horsnell@ARM.com
41810023Smatt.horsnell@ARM.comtemplate <class Impl>
41910023Smatt.horsnell@ARM.comvoid
4205595Sgblack@eecs.umich.eduFullO3CPU<Impl>::regStats()
4211062SN/A{
4222733Sktlim@umich.edu    BaseO3CPU::regStats();
4232292SN/A
4242733Sktlim@umich.edu    // Register any of the O3CPU's stats here.
4252292SN/A    timesIdled
4262292SN/A        .name(name() + ".timesIdled")
4272292SN/A        .desc("Number of times that the entire CPU went into an idle state and"
4282292SN/A              " unscheduled itself")
4292292SN/A        .prereq(timesIdled);
4302292SN/A
4312292SN/A    idleCycles
4322292SN/A        .name(name() + ".idleCycles")
4332292SN/A        .desc("Total number of cycles that the CPU has spent unscheduled due "
4342292SN/A              "to idling")
4352292SN/A        .prereq(idleCycles);
4362292SN/A
4378627SAli.Saidi@ARM.com    quiesceCycles
4388627SAli.Saidi@ARM.com        .name(name() + ".quiesceCycles")
4398627SAli.Saidi@ARM.com        .desc("Total number of cycles that CPU has spent quiesced or waiting "
4408627SAli.Saidi@ARM.com              "for an interrupt")
4418627SAli.Saidi@ARM.com        .prereq(quiesceCycles);
4428627SAli.Saidi@ARM.com
4432292SN/A    // Number of Instructions simulated
4442292SN/A    // --------------------------------
4452292SN/A    // Should probably be in Base CPU but need templated
4462292SN/A    // MaxThreads so put in here instead
4472292SN/A    committedInsts
4482292SN/A        .init(numThreads)
4492292SN/A        .name(name() + ".committedInsts")
45010225Snilay@cs.wisc.edu        .desc("Number of Instructions Simulated")
45110225Snilay@cs.wisc.edu        .flags(Stats::total);
4522292SN/A
4538834Satgutier@umich.edu    committedOps
4548834Satgutier@umich.edu        .init(numThreads)
4558834Satgutier@umich.edu        .name(name() + ".committedOps")
45610225Snilay@cs.wisc.edu        .desc("Number of Ops (including micro ops) Simulated")
45710225Snilay@cs.wisc.edu        .flags(Stats::total);
4582292SN/A
4592292SN/A    cpi
4602292SN/A        .name(name() + ".cpi")
4612292SN/A        .desc("CPI: Cycles Per Instruction")
4622292SN/A        .precision(6);
4634392Sktlim@umich.edu    cpi = numCycles / committedInsts;
4642292SN/A
4652292SN/A    totalCpi
4662292SN/A        .name(name() + ".cpi_total")
4672292SN/A        .desc("CPI: Total CPI of All Threads")
4682292SN/A        .precision(6);
46910225Snilay@cs.wisc.edu    totalCpi = numCycles / sum(committedInsts);
4702292SN/A
4712292SN/A    ipc
4722292SN/A        .name(name() + ".ipc")
4732292SN/A        .desc("IPC: Instructions Per Cycle")
4742292SN/A        .precision(6);
4754392Sktlim@umich.edu    ipc =  committedInsts / numCycles;
4762292SN/A
4772292SN/A    totalIpc
4782292SN/A        .name(name() + ".ipc_total")
4792292SN/A        .desc("IPC: Total IPC of All Threads")
4802292SN/A        .precision(6);
48110225Snilay@cs.wisc.edu    totalIpc =  sum(committedInsts) / numCycles;
4822292SN/A
4835595Sgblack@eecs.umich.edu    this->fetch.regStats();
4845595Sgblack@eecs.umich.edu    this->decode.regStats();
4855595Sgblack@eecs.umich.edu    this->rename.regStats();
4865595Sgblack@eecs.umich.edu    this->iew.regStats();
4875595Sgblack@eecs.umich.edu    this->commit.regStats();
4887897Shestness@cs.utexas.edu    this->rob.regStats();
4897897Shestness@cs.utexas.edu
4907897Shestness@cs.utexas.edu    intRegfileReads
4917897Shestness@cs.utexas.edu        .name(name() + ".int_regfile_reads")
4927897Shestness@cs.utexas.edu        .desc("number of integer regfile reads")
4937897Shestness@cs.utexas.edu        .prereq(intRegfileReads);
4947897Shestness@cs.utexas.edu
4957897Shestness@cs.utexas.edu    intRegfileWrites
4967897Shestness@cs.utexas.edu        .name(name() + ".int_regfile_writes")
4977897Shestness@cs.utexas.edu        .desc("number of integer regfile writes")
4987897Shestness@cs.utexas.edu        .prereq(intRegfileWrites);
4997897Shestness@cs.utexas.edu
5007897Shestness@cs.utexas.edu    fpRegfileReads
5017897Shestness@cs.utexas.edu        .name(name() + ".fp_regfile_reads")
5027897Shestness@cs.utexas.edu        .desc("number of floating regfile reads")
5037897Shestness@cs.utexas.edu        .prereq(fpRegfileReads);
5047897Shestness@cs.utexas.edu
5057897Shestness@cs.utexas.edu    fpRegfileWrites
5067897Shestness@cs.utexas.edu        .name(name() + ".fp_regfile_writes")
5077897Shestness@cs.utexas.edu        .desc("number of floating regfile writes")
5087897Shestness@cs.utexas.edu        .prereq(fpRegfileWrites);
5097897Shestness@cs.utexas.edu
5109920Syasuko.eckert@amd.com    ccRegfileReads
5119920Syasuko.eckert@amd.com        .name(name() + ".cc_regfile_reads")
5129920Syasuko.eckert@amd.com        .desc("number of cc regfile reads")
5139920Syasuko.eckert@amd.com        .prereq(ccRegfileReads);
5149920Syasuko.eckert@amd.com
5159920Syasuko.eckert@amd.com    ccRegfileWrites
5169920Syasuko.eckert@amd.com        .name(name() + ".cc_regfile_writes")
5179920Syasuko.eckert@amd.com        .desc("number of cc regfile writes")
5189920Syasuko.eckert@amd.com        .prereq(ccRegfileWrites);
5199920Syasuko.eckert@amd.com
5207897Shestness@cs.utexas.edu    miscRegfileReads
5217897Shestness@cs.utexas.edu        .name(name() + ".misc_regfile_reads")
5227897Shestness@cs.utexas.edu        .desc("number of misc regfile reads")
5237897Shestness@cs.utexas.edu        .prereq(miscRegfileReads);
5247897Shestness@cs.utexas.edu
5257897Shestness@cs.utexas.edu    miscRegfileWrites
5267897Shestness@cs.utexas.edu        .name(name() + ".misc_regfile_writes")
5277897Shestness@cs.utexas.edu        .desc("number of misc regfile writes")
5287897Shestness@cs.utexas.edu        .prereq(miscRegfileWrites);
5291062SN/A}
5301062SN/A
5311062SN/Atemplate <class Impl>
5321062SN/Avoid
5331755SN/AFullO3CPU<Impl>::tick()
5341060SN/A{
5352733Sktlim@umich.edu    DPRINTF(O3CPU, "\n\nFullO3CPU: Ticking main, FullO3CPU.\n");
5369444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
5379444SAndreas.Sandberg@ARM.com    assert(getDrainState() != Drainable::Drained);
5381060SN/A
5392292SN/A    ++numCycles;
54010464SAndreas.Sandberg@ARM.com    ppCycles->notify(1);
5412292SN/A
5422325SN/A//    activity = false;
5432292SN/A
5442292SN/A    //Tick each of the stages
5451060SN/A    fetch.tick();
5461060SN/A
5471060SN/A    decode.tick();
5481060SN/A
5491060SN/A    rename.tick();
5501060SN/A
5511060SN/A    iew.tick();
5521060SN/A
5531060SN/A    commit.tick();
5541060SN/A
5552292SN/A    // Now advance the time buffers
5561060SN/A    timeBuffer.advance();
5571060SN/A
5581060SN/A    fetchQueue.advance();
5591060SN/A    decodeQueue.advance();
5601060SN/A    renameQueue.advance();
5611060SN/A    iewQueue.advance();
5621060SN/A
5632325SN/A    activityRec.advance();
5642292SN/A
5652292SN/A    if (removeInstsThisCycle) {
5662292SN/A        cleanUpRemovedInsts();
5672292SN/A    }
5682292SN/A
5692325SN/A    if (!tickEvent.scheduled()) {
5709444SAndreas.Sandberg@ARM.com        if (_status == SwitchedOut) {
5713226Sktlim@umich.edu            DPRINTF(O3CPU, "Switched out!\n");
5722325SN/A            // increment stat
5739179Sandreas.hansson@arm.com            lastRunningCycle = curCycle();
5743221Sktlim@umich.edu        } else if (!activityRec.active() || _status == Idle) {
5753226Sktlim@umich.edu            DPRINTF(O3CPU, "Idle!\n");
5769179Sandreas.hansson@arm.com            lastRunningCycle = curCycle();
5772325SN/A            timesIdled++;
5782325SN/A        } else {
5799180Sandreas.hansson@arm.com            schedule(tickEvent, clockEdge(Cycles(1)));
5803226Sktlim@umich.edu            DPRINTF(O3CPU, "Scheduling next tick!\n");
5812325SN/A        }
5822292SN/A    }
5832292SN/A
5848793Sgblack@eecs.umich.edu    if (!FullSystem)
5858793Sgblack@eecs.umich.edu        updateThreadPriority();
5869444SAndreas.Sandberg@ARM.com
5879444SAndreas.Sandberg@ARM.com    tryDrain();
5881060SN/A}
5891060SN/A
5901060SN/Atemplate <class Impl>
5911060SN/Avoid
5921755SN/AFullO3CPU<Impl>::init()
5931060SN/A{
5945714Shsul@eecs.umich.edu    BaseCPU::init();
5951060SN/A
5968921Sandreas.hansson@arm.com    for (ThreadID tid = 0; tid < numThreads; ++tid) {
5979382SAli.Saidi@ARM.com        // Set noSquashFromTC so that the CPU doesn't squash when initially
5988921Sandreas.hansson@arm.com        // setting up registers.
5999382SAli.Saidi@ARM.com        thread[tid]->noSquashFromTC = true;
6008921Sandreas.hansson@arm.com        // Initialise the ThreadContext's memory proxies
6018921Sandreas.hansson@arm.com        thread[tid]->initMemProxies(thread[tid]->getTC());
6028921Sandreas.hansson@arm.com    }
6032292SN/A
6049433SAndreas.Sandberg@ARM.com    if (FullSystem && !params()->switched_out) {
6058793Sgblack@eecs.umich.edu        for (ThreadID tid = 0; tid < numThreads; tid++) {
6068793Sgblack@eecs.umich.edu            ThreadContext *src_tc = threadContexts[tid];
6078793Sgblack@eecs.umich.edu            TheISA::initCPU(src_tc, src_tc->contextId());
6088793Sgblack@eecs.umich.edu        }
6096034Ssteve.reinhardt@amd.com    }
6102292SN/A
6119382SAli.Saidi@ARM.com    // Clear noSquashFromTC.
6126221Snate@binkert.org    for (int tid = 0; tid < numThreads; ++tid)
6139382SAli.Saidi@ARM.com        thread[tid]->noSquashFromTC = false;
6142292SN/A
6159427SAndreas.Sandberg@ARM.com    commit.setThreads(thread);
6169427SAndreas.Sandberg@ARM.com}
6172292SN/A
6189427SAndreas.Sandberg@ARM.comtemplate <class Impl>
6199427SAndreas.Sandberg@ARM.comvoid
6209427SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::startup()
6219427SAndreas.Sandberg@ARM.com{
6229992Snilay@cs.wisc.edu    BaseCPU::startup();
6239461Snilay@cs.wisc.edu    for (int tid = 0; tid < numThreads; ++tid)
6249461Snilay@cs.wisc.edu        isa[tid]->startup(threadContexts[tid]);
6259461Snilay@cs.wisc.edu
6269427SAndreas.Sandberg@ARM.com    fetch.startupStage();
6279444SAndreas.Sandberg@ARM.com    decode.startupStage();
6289427SAndreas.Sandberg@ARM.com    iew.startupStage();
6299427SAndreas.Sandberg@ARM.com    rename.startupStage();
6309427SAndreas.Sandberg@ARM.com    commit.startupStage();
6312292SN/A}
6322292SN/A
6332292SN/Atemplate <class Impl>
6342292SN/Avoid
6356221Snate@binkert.orgFullO3CPU<Impl>::activateThread(ThreadID tid)
6362875Sksewell@umich.edu{
6376221Snate@binkert.org    list<ThreadID>::iterator isActive =
6385314Sstever@gmail.com        std::find(activeThreads.begin(), activeThreads.end(), tid);
6392875Sksewell@umich.edu
6403226Sktlim@umich.edu    DPRINTF(O3CPU, "[tid:%i]: Calling activate thread.\n", tid);
6419444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
6423226Sktlim@umich.edu
6432875Sksewell@umich.edu    if (isActive == activeThreads.end()) {
6442875Sksewell@umich.edu        DPRINTF(O3CPU, "[tid:%i]: Adding to active threads list\n",
6452875Sksewell@umich.edu                tid);
6462875Sksewell@umich.edu
6472875Sksewell@umich.edu        activeThreads.push_back(tid);
6482875Sksewell@umich.edu    }
6492875Sksewell@umich.edu}
6502875Sksewell@umich.edu
6512875Sksewell@umich.edutemplate <class Impl>
6522875Sksewell@umich.eduvoid
6536221Snate@binkert.orgFullO3CPU<Impl>::deactivateThread(ThreadID tid)
6542875Sksewell@umich.edu{
6552875Sksewell@umich.edu    //Remove From Active List, if Active
6566221Snate@binkert.org    list<ThreadID>::iterator thread_it =
6575314Sstever@gmail.com        std::find(activeThreads.begin(), activeThreads.end(), tid);
6582875Sksewell@umich.edu
6593226Sktlim@umich.edu    DPRINTF(O3CPU, "[tid:%i]: Calling deactivate thread.\n", tid);
6609444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
6613226Sktlim@umich.edu
6622875Sksewell@umich.edu    if (thread_it != activeThreads.end()) {
6632875Sksewell@umich.edu        DPRINTF(O3CPU,"[tid:%i]: Removing from active threads list\n",
6642875Sksewell@umich.edu                tid);
6652875Sksewell@umich.edu        activeThreads.erase(thread_it);
6662875Sksewell@umich.edu    }
66710331Smitch.hayenga@arm.com
66810331Smitch.hayenga@arm.com    fetch.deactivateThread(tid);
66910331Smitch.hayenga@arm.com    commit.deactivateThread(tid);
6702875Sksewell@umich.edu}
6712875Sksewell@umich.edu
6722875Sksewell@umich.edutemplate <class Impl>
6736221Snate@binkert.orgCounter
6748834Satgutier@umich.eduFullO3CPU<Impl>::totalInsts() const
6756221Snate@binkert.org{
6766221Snate@binkert.org    Counter total(0);
6776221Snate@binkert.org
6786221Snate@binkert.org    ThreadID size = thread.size();
6796221Snate@binkert.org    for (ThreadID i = 0; i < size; i++)
6806221Snate@binkert.org        total += thread[i]->numInst;
6816221Snate@binkert.org
6826221Snate@binkert.org    return total;
6836221Snate@binkert.org}
6846221Snate@binkert.org
6856221Snate@binkert.orgtemplate <class Impl>
6868834Satgutier@umich.eduCounter
6878834Satgutier@umich.eduFullO3CPU<Impl>::totalOps() const
6888834Satgutier@umich.edu{
6898834Satgutier@umich.edu    Counter total(0);
6908834Satgutier@umich.edu
6918834Satgutier@umich.edu    ThreadID size = thread.size();
6928834Satgutier@umich.edu    for (ThreadID i = 0; i < size; i++)
6938834Satgutier@umich.edu        total += thread[i]->numOp;
6948834Satgutier@umich.edu
6958834Satgutier@umich.edu    return total;
6968834Satgutier@umich.edu}
6978834Satgutier@umich.edu
6988834Satgutier@umich.edutemplate <class Impl>
6992875Sksewell@umich.eduvoid
70010407Smitch.hayenga@arm.comFullO3CPU<Impl>::activateContext(ThreadID tid)
7012875Sksewell@umich.edu{
7029444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
7039444SAndreas.Sandberg@ARM.com
7042875Sksewell@umich.edu    // Needs to set each stage to running as well.
70510407Smitch.hayenga@arm.com    activateThread(tid);
7062875Sksewell@umich.edu
7079444SAndreas.Sandberg@ARM.com    // We don't want to wake the CPU if it is drained. In that case,
7089444SAndreas.Sandberg@ARM.com    // we just want to flag the thread as active and schedule the tick
7099444SAndreas.Sandberg@ARM.com    // event from drainResume() instead.
7109444SAndreas.Sandberg@ARM.com    if (getDrainState() == Drainable::Drained)
7119444SAndreas.Sandberg@ARM.com        return;
7129444SAndreas.Sandberg@ARM.com
7139158Sandreas.hansson@arm.com    // If we are time 0 or if the last activation time is in the past,
7149158Sandreas.hansson@arm.com    // schedule the next tick and wake up the fetch unit
7159158Sandreas.hansson@arm.com    if (lastActivatedCycle == 0 || lastActivatedCycle < curTick()) {
71610407Smitch.hayenga@arm.com        scheduleTickEvent(Cycles(0));
7172875Sksewell@umich.edu
7182875Sksewell@umich.edu        // Be sure to signal that there's some activity so the CPU doesn't
7192875Sksewell@umich.edu        // deschedule itself.
7202875Sksewell@umich.edu        activityRec.activity();
7212875Sksewell@umich.edu        fetch.wakeFromQuiesce();
7222875Sksewell@umich.edu
7239180Sandreas.hansson@arm.com        Cycles cycles(curCycle() - lastRunningCycle);
7249180Sandreas.hansson@arm.com        // @todo: This is an oddity that is only here to match the stats
7259179Sandreas.hansson@arm.com        if (cycles != 0)
7269179Sandreas.hansson@arm.com            --cycles;
7279179Sandreas.hansson@arm.com        quiesceCycles += cycles;
7288627SAli.Saidi@ARM.com
7297823Ssteve.reinhardt@amd.com        lastActivatedCycle = curTick();
7302875Sksewell@umich.edu
7312875Sksewell@umich.edu        _status = Running;
7322875Sksewell@umich.edu    }
7332875Sksewell@umich.edu}
7342875Sksewell@umich.edu
7352875Sksewell@umich.edutemplate <class Impl>
73610407Smitch.hayenga@arm.comvoid
7376221Snate@binkert.orgFullO3CPU<Impl>::suspendContext(ThreadID tid)
7382875Sksewell@umich.edu{
7392875Sksewell@umich.edu    DPRINTF(O3CPU,"[tid: %i]: Suspending Thread Context.\n", tid);
7409444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
74110408Smitch.hayenga@arm.com
74210408Smitch.hayenga@arm.com    deactivateThread(tid);
74310407Smitch.hayenga@arm.com
7443221Sktlim@umich.edu    // If this was the last thread then unschedule the tick event.
74510407Smitch.hayenga@arm.com    if (activeThreads.size() == 0)
7462910Sksewell@umich.edu        unscheduleTickEvent();
7478627SAli.Saidi@ARM.com
7488627SAli.Saidi@ARM.com    DPRINTF(Quiesce, "Suspending Context\n");
7499179Sandreas.hansson@arm.com    lastRunningCycle = curCycle();
7502875Sksewell@umich.edu    _status = Idle;
7512875Sksewell@umich.edu}
7522875Sksewell@umich.edu
7532875Sksewell@umich.edutemplate <class Impl>
7542875Sksewell@umich.eduvoid
7556221Snate@binkert.orgFullO3CPU<Impl>::haltContext(ThreadID tid)
7562875Sksewell@umich.edu{
7572910Sksewell@umich.edu    //For now, this is the same as deallocate
7582910Sksewell@umich.edu    DPRINTF(O3CPU,"[tid:%i]: Halt Context called. Deallocating", tid);
7599444SAndreas.Sandberg@ARM.com    assert(!switchedOut());
76010408Smitch.hayenga@arm.com
76110408Smitch.hayenga@arm.com    deactivateThread(tid);
76210408Smitch.hayenga@arm.com    removeThread(tid);
7632875Sksewell@umich.edu}
7642875Sksewell@umich.edu
7652875Sksewell@umich.edutemplate <class Impl>
7662875Sksewell@umich.eduvoid
7676221Snate@binkert.orgFullO3CPU<Impl>::insertThread(ThreadID tid)
7682292SN/A{
7692847Sksewell@umich.edu    DPRINTF(O3CPU,"[tid:%i] Initializing thread into CPU");
7702292SN/A    // Will change now that the PC and thread state is internal to the CPU
7712683Sktlim@umich.edu    // and not in the ThreadContext.
7728793Sgblack@eecs.umich.edu    ThreadContext *src_tc;
7738793Sgblack@eecs.umich.edu    if (FullSystem)
7748793Sgblack@eecs.umich.edu        src_tc = system->threadContexts[tid];
7758793Sgblack@eecs.umich.edu    else
7768793Sgblack@eecs.umich.edu        src_tc = tcBase(tid);
7772292SN/A
7782292SN/A    //Bind Int Regs to Rename Map
7792292SN/A    for (int ireg = 0; ireg < TheISA::NumIntRegs; ireg++) {
7802292SN/A        PhysRegIndex phys_reg = freeList.getIntReg();
7812292SN/A
7822292SN/A        renameMap[tid].setEntry(ireg,phys_reg);
7832292SN/A        scoreboard.setReg(phys_reg);
7842292SN/A    }
7852292SN/A
7862292SN/A    //Bind Float Regs to Rename Map
7879920Syasuko.eckert@amd.com    int max_reg = TheISA::NumIntRegs + TheISA::NumFloatRegs;
7889920Syasuko.eckert@amd.com    for (int freg = TheISA::NumIntRegs; freg < max_reg; freg++) {
7892292SN/A        PhysRegIndex phys_reg = freeList.getFloatReg();
7902292SN/A
7912292SN/A        renameMap[tid].setEntry(freg,phys_reg);
7922292SN/A        scoreboard.setReg(phys_reg);
7932292SN/A    }
7942292SN/A
7959920Syasuko.eckert@amd.com    //Bind condition-code Regs to Rename Map
7969920Syasuko.eckert@amd.com    max_reg = TheISA::NumIntRegs + TheISA::NumFloatRegs + TheISA::NumCCRegs;
7979920Syasuko.eckert@amd.com    for (int creg = TheISA::NumIntRegs + TheISA::NumFloatRegs;
7989920Syasuko.eckert@amd.com         creg < max_reg; creg++) {
7999920Syasuko.eckert@amd.com        PhysRegIndex phys_reg = freeList.getCCReg();
8009920Syasuko.eckert@amd.com
8019920Syasuko.eckert@amd.com        renameMap[tid].setEntry(creg,phys_reg);
8029920Syasuko.eckert@amd.com        scoreboard.setReg(phys_reg);
8039920Syasuko.eckert@amd.com    }
8049920Syasuko.eckert@amd.com
8052292SN/A    //Copy Thread Data Into RegFile
8062847Sksewell@umich.edu    //this->copyFromTC(tid);
8072292SN/A
8082847Sksewell@umich.edu    //Set PC/NPC/NNPC
8097720Sgblack@eecs.umich.edu    pcState(src_tc->pcState(), tid);
8102292SN/A
8112680Sktlim@umich.edu    src_tc->setStatus(ThreadContext::Active);
8122292SN/A
81310407Smitch.hayenga@arm.com    activateContext(tid);
8142292SN/A
8152292SN/A    //Reset ROB/IQ/LSQ Entries
8162292SN/A    commit.rob->resetEntries();
8172292SN/A    iew.resetEntries();
8182292SN/A}
8192292SN/A
8202292SN/Atemplate <class Impl>
8212292SN/Avoid
8226221Snate@binkert.orgFullO3CPU<Impl>::removeThread(ThreadID tid)
8232292SN/A{
8242877Sksewell@umich.edu    DPRINTF(O3CPU,"[tid:%i] Removing thread context from CPU.\n", tid);
8252847Sksewell@umich.edu
8262847Sksewell@umich.edu    // Copy Thread Data From RegFile
8272847Sksewell@umich.edu    // If thread is suspended, it might be re-allocated
8285364Sksewell@umich.edu    // this->copyToTC(tid);
8295364Sksewell@umich.edu
8305364Sksewell@umich.edu
8315364Sksewell@umich.edu    // @todo: 2-27-2008: Fix how we free up rename mappings
8325364Sksewell@umich.edu    // here to alleviate the case for double-freeing registers
8335364Sksewell@umich.edu    // in SMT workloads.
8342847Sksewell@umich.edu
8352847Sksewell@umich.edu    // Unbind Int Regs from Rename Map
8362292SN/A    for (int ireg = 0; ireg < TheISA::NumIntRegs; ireg++) {
8372292SN/A        PhysRegIndex phys_reg = renameMap[tid].lookup(ireg);
8382292SN/A
8392292SN/A        scoreboard.unsetReg(phys_reg);
8402292SN/A        freeList.addReg(phys_reg);
8412292SN/A    }
8422292SN/A
8432847Sksewell@umich.edu    // Unbind Float Regs from Rename Map
8449920Syasuko.eckert@amd.com    int max_reg = TheISA::NumIntRegs + TheISA::NumFloatRegs;
8459920Syasuko.eckert@amd.com    for (int freg = TheISA::NumIntRegs; freg < max_reg; freg++) {
8462292SN/A        PhysRegIndex phys_reg = renameMap[tid].lookup(freg);
8472292SN/A
8482292SN/A        scoreboard.unsetReg(phys_reg);
8492292SN/A        freeList.addReg(phys_reg);
8502292SN/A    }
8512292SN/A
8529920Syasuko.eckert@amd.com    // Unbind condition-code Regs from Rename Map
8539920Syasuko.eckert@amd.com    max_reg = TheISA::NumIntRegs + TheISA::NumFloatRegs + TheISA::NumCCRegs;
8549920Syasuko.eckert@amd.com    for (int creg = TheISA::NumIntRegs + TheISA::NumFloatRegs;
8559920Syasuko.eckert@amd.com         creg < max_reg; creg++) {
8569920Syasuko.eckert@amd.com        PhysRegIndex phys_reg = renameMap[tid].lookup(creg);
8579920Syasuko.eckert@amd.com
8589920Syasuko.eckert@amd.com        scoreboard.unsetReg(phys_reg);
8599920Syasuko.eckert@amd.com        freeList.addReg(phys_reg);
8609920Syasuko.eckert@amd.com    }
8619920Syasuko.eckert@amd.com
8622847Sksewell@umich.edu    // Squash Throughout Pipeline
8638138SAli.Saidi@ARM.com    DynInstPtr inst = commit.rob->readHeadInst(tid);
8648138SAli.Saidi@ARM.com    InstSeqNum squash_seq_num = inst->seqNum;
8658138SAli.Saidi@ARM.com    fetch.squash(0, squash_seq_num, inst, tid);
8662292SN/A    decode.squash(tid);
8672935Sksewell@umich.edu    rename.squash(squash_seq_num, tid);
8682875Sksewell@umich.edu    iew.squash(tid);
8695363Sksewell@umich.edu    iew.ldstQueue.squash(squash_seq_num, tid);
8702935Sksewell@umich.edu    commit.rob->squash(squash_seq_num, tid);
8712292SN/A
8725362Sksewell@umich.edu
8735362Sksewell@umich.edu    assert(iew.instQueue.getCount(tid) == 0);
8742292SN/A    assert(iew.ldstQueue.getCount(tid) == 0);
8752292SN/A
8762847Sksewell@umich.edu    // Reset ROB/IQ/LSQ Entries
8773229Sktlim@umich.edu
8783229Sktlim@umich.edu    // Commented out for now.  This should be possible to do by
8793229Sktlim@umich.edu    // telling all the pipeline stages to drain first, and then
8803229Sktlim@umich.edu    // checking until the drain completes.  Once the pipeline is
8813229Sktlim@umich.edu    // drained, call resetEntries(). - 10-09-06 ktlim
8823229Sktlim@umich.edu/*
8832292SN/A    if (activeThreads.size() >= 1) {
8842292SN/A        commit.rob->resetEntries();
8852292SN/A        iew.resetEntries();
8862292SN/A    }
8873229Sktlim@umich.edu*/
8882292SN/A}
8892292SN/A
8904192Sktlim@umich.edutemplate <class Impl>
8915595Sgblack@eecs.umich.eduFault
8926221Snate@binkert.orgFullO3CPU<Impl>::hwrei(ThreadID tid)
8935702Ssaidi@eecs.umich.edu{
8945702Ssaidi@eecs.umich.edu#if THE_ISA == ALPHA_ISA
8955702Ssaidi@eecs.umich.edu    // Need to clear the lock flag upon returning from an interrupt.
8965702Ssaidi@eecs.umich.edu    this->setMiscRegNoEffect(AlphaISA::MISCREG_LOCKFLAG, false, tid);
8975702Ssaidi@eecs.umich.edu
8985702Ssaidi@eecs.umich.edu    this->thread[tid]->kernelStats->hwrei();
8995702Ssaidi@eecs.umich.edu
9005702Ssaidi@eecs.umich.edu    // FIXME: XXX check for interrupts? XXX
9015702Ssaidi@eecs.umich.edu#endif
9025702Ssaidi@eecs.umich.edu    return NoFault;
9035702Ssaidi@eecs.umich.edu}
9045702Ssaidi@eecs.umich.edu
9055702Ssaidi@eecs.umich.edutemplate <class Impl>
9065702Ssaidi@eecs.umich.edubool
9076221Snate@binkert.orgFullO3CPU<Impl>::simPalCheck(int palFunc, ThreadID tid)
9085702Ssaidi@eecs.umich.edu{
9095702Ssaidi@eecs.umich.edu#if THE_ISA == ALPHA_ISA
9105702Ssaidi@eecs.umich.edu    if (this->thread[tid]->kernelStats)
9115702Ssaidi@eecs.umich.edu        this->thread[tid]->kernelStats->callpal(palFunc,
9125702Ssaidi@eecs.umich.edu                                                this->threadContexts[tid]);
9135702Ssaidi@eecs.umich.edu
9145702Ssaidi@eecs.umich.edu    switch (palFunc) {
9155702Ssaidi@eecs.umich.edu      case PAL::halt:
9165702Ssaidi@eecs.umich.edu        halt();
9175702Ssaidi@eecs.umich.edu        if (--System::numSystemsRunning == 0)
9185702Ssaidi@eecs.umich.edu            exitSimLoop("all cpus halted");
9195702Ssaidi@eecs.umich.edu        break;
9205702Ssaidi@eecs.umich.edu
9215702Ssaidi@eecs.umich.edu      case PAL::bpt:
9225702Ssaidi@eecs.umich.edu      case PAL::bugchk:
9235702Ssaidi@eecs.umich.edu        if (this->system->breakpoint())
9245702Ssaidi@eecs.umich.edu            return false;
9255702Ssaidi@eecs.umich.edu        break;
9265702Ssaidi@eecs.umich.edu    }
9275702Ssaidi@eecs.umich.edu#endif
9285702Ssaidi@eecs.umich.edu    return true;
9295702Ssaidi@eecs.umich.edu}
9305702Ssaidi@eecs.umich.edu
9315702Ssaidi@eecs.umich.edutemplate <class Impl>
9325702Ssaidi@eecs.umich.eduFault
9335595Sgblack@eecs.umich.eduFullO3CPU<Impl>::getInterrupts()
9345595Sgblack@eecs.umich.edu{
9355595Sgblack@eecs.umich.edu    // Check if there are any outstanding interrupts
9365647Sgblack@eecs.umich.edu    return this->interrupts->getInterrupt(this->threadContexts[0]);
9375595Sgblack@eecs.umich.edu}
9385595Sgblack@eecs.umich.edu
9395595Sgblack@eecs.umich.edutemplate <class Impl>
9405595Sgblack@eecs.umich.eduvoid
94110379Sandreas.hansson@arm.comFullO3CPU<Impl>::processInterrupts(const Fault &interrupt)
9425595Sgblack@eecs.umich.edu{
9435595Sgblack@eecs.umich.edu    // Check for interrupts here.  For now can copy the code that
9445595Sgblack@eecs.umich.edu    // exists within isa_fullsys_traits.hh.  Also assume that thread 0
9455595Sgblack@eecs.umich.edu    // is the one that handles the interrupts.
9465595Sgblack@eecs.umich.edu    // @todo: Possibly consolidate the interrupt checking code.
9475595Sgblack@eecs.umich.edu    // @todo: Allow other threads to handle interrupts.
9485595Sgblack@eecs.umich.edu
9495595Sgblack@eecs.umich.edu    assert(interrupt != NoFault);
9505647Sgblack@eecs.umich.edu    this->interrupts->updateIntrInfo(this->threadContexts[0]);
9515595Sgblack@eecs.umich.edu
9525595Sgblack@eecs.umich.edu    DPRINTF(O3CPU, "Interrupt %s being handled\n", interrupt->name());
95310417Sandreas.hansson@arm.com    this->trap(interrupt, 0, nullptr);
9545595Sgblack@eecs.umich.edu}
9555595Sgblack@eecs.umich.edu
9561060SN/Atemplate <class Impl>
9572852Sktlim@umich.eduvoid
95810417Sandreas.hansson@arm.comFullO3CPU<Impl>::trap(const Fault &fault, ThreadID tid,
95910417Sandreas.hansson@arm.com                      const StaticInstPtr &inst)
9605595Sgblack@eecs.umich.edu{
9615595Sgblack@eecs.umich.edu    // Pass the thread's TC into the invoke method.
9627684Sgblack@eecs.umich.edu    fault->invoke(this->threadContexts[tid], inst);
9635595Sgblack@eecs.umich.edu}
9645595Sgblack@eecs.umich.edu
9655595Sgblack@eecs.umich.edutemplate <class Impl>
9665595Sgblack@eecs.umich.eduvoid
9676221Snate@binkert.orgFullO3CPU<Impl>::syscall(int64_t callnum, ThreadID tid)
9685595Sgblack@eecs.umich.edu{
9695595Sgblack@eecs.umich.edu    DPRINTF(O3CPU, "[tid:%i] Executing syscall().\n\n", tid);
9705595Sgblack@eecs.umich.edu
9715595Sgblack@eecs.umich.edu    DPRINTF(Activity,"Activity: syscall() called.\n");
9725595Sgblack@eecs.umich.edu
9735595Sgblack@eecs.umich.edu    // Temporarily increase this by one to account for the syscall
9745595Sgblack@eecs.umich.edu    // instruction.
9755595Sgblack@eecs.umich.edu    ++(this->thread[tid]->funcExeInst);
9765595Sgblack@eecs.umich.edu
9775595Sgblack@eecs.umich.edu    // Execute the actual syscall.
9785595Sgblack@eecs.umich.edu    this->thread[tid]->syscall(callnum);
9795595Sgblack@eecs.umich.edu
9805595Sgblack@eecs.umich.edu    // Decrease funcExeInst by one as the normal commit will handle
9815595Sgblack@eecs.umich.edu    // incrementing it.
9825595Sgblack@eecs.umich.edu    --(this->thread[tid]->funcExeInst);
9835595Sgblack@eecs.umich.edu}
9845595Sgblack@eecs.umich.edu
9855595Sgblack@eecs.umich.edutemplate <class Impl>
9865595Sgblack@eecs.umich.eduvoid
9879448SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::serializeThread(std::ostream &os, ThreadID tid)
9882864Sktlim@umich.edu{
9899448SAndreas.Sandberg@ARM.com    thread[tid]->serialize(os);
9902864Sktlim@umich.edu}
9912864Sktlim@umich.edu
9922864Sktlim@umich.edutemplate <class Impl>
9932864Sktlim@umich.eduvoid
9949448SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::unserializeThread(Checkpoint *cp, const std::string &section,
9959448SAndreas.Sandberg@ARM.com                                   ThreadID tid)
9962864Sktlim@umich.edu{
9979448SAndreas.Sandberg@ARM.com    thread[tid]->unserialize(cp, section);
9982864Sktlim@umich.edu}
9992864Sktlim@umich.edu
10002864Sktlim@umich.edutemplate <class Impl>
10012905Sktlim@umich.eduunsigned int
10029342SAndreas.Sandberg@arm.comFullO3CPU<Impl>::drain(DrainManager *drain_manager)
10031060SN/A{
10049444SAndreas.Sandberg@ARM.com    // If the CPU isn't doing anything, then return immediately.
10059444SAndreas.Sandberg@ARM.com    if (switchedOut()) {
10069444SAndreas.Sandberg@ARM.com        setDrainState(Drainable::Drained);
10079444SAndreas.Sandberg@ARM.com        return 0;
10089444SAndreas.Sandberg@ARM.com    }
10093512Sktlim@umich.edu
10109444SAndreas.Sandberg@ARM.com    DPRINTF(Drain, "Draining...\n");
10119444SAndreas.Sandberg@ARM.com    setDrainState(Drainable::Draining);
10123512Sktlim@umich.edu
10139444SAndreas.Sandberg@ARM.com    // We only need to signal a drain to the commit stage as this
10149444SAndreas.Sandberg@ARM.com    // initiates squashing controls the draining. Once the commit
10159444SAndreas.Sandberg@ARM.com    // stage commits an instruction where it is safe to stop, it'll
10169444SAndreas.Sandberg@ARM.com    // squash the rest of the instructions in the pipeline and force
10179444SAndreas.Sandberg@ARM.com    // the fetch stage to stall. The pipeline will be drained once all
10189444SAndreas.Sandberg@ARM.com    // in-flight instructions have retired.
10192843Sktlim@umich.edu    commit.drain();
10202325SN/A
10212325SN/A    // Wake the CPU and record activity so everything can drain out if
10222863Sktlim@umich.edu    // the CPU was not able to immediately drain.
10239444SAndreas.Sandberg@ARM.com    if (!isDrained())  {
10249342SAndreas.Sandberg@arm.com        drainManager = drain_manager;
10252843Sktlim@umich.edu
10262863Sktlim@umich.edu        wakeCPU();
10272863Sktlim@umich.edu        activityRec.activity();
10282852Sktlim@umich.edu
10299152Satgutier@umich.edu        DPRINTF(Drain, "CPU not drained\n");
10309152Satgutier@umich.edu
10312905Sktlim@umich.edu        return 1;
10322863Sktlim@umich.edu    } else {
10339444SAndreas.Sandberg@ARM.com        setDrainState(Drainable::Drained);
10349444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "CPU is already drained\n");
10359444SAndreas.Sandberg@ARM.com        if (tickEvent.scheduled())
10369444SAndreas.Sandberg@ARM.com            deschedule(tickEvent);
10379444SAndreas.Sandberg@ARM.com
10389444SAndreas.Sandberg@ARM.com        // Flush out any old data from the time buffers.  In
10399444SAndreas.Sandberg@ARM.com        // particular, there might be some data in flight from the
10409444SAndreas.Sandberg@ARM.com        // fetch stage that isn't visible in any of the CPU buffers we
10419444SAndreas.Sandberg@ARM.com        // test in isDrained().
10429444SAndreas.Sandberg@ARM.com        for (int i = 0; i < timeBuffer.getSize(); ++i) {
10439444SAndreas.Sandberg@ARM.com            timeBuffer.advance();
10449444SAndreas.Sandberg@ARM.com            fetchQueue.advance();
10459444SAndreas.Sandberg@ARM.com            decodeQueue.advance();
10469444SAndreas.Sandberg@ARM.com            renameQueue.advance();
10479444SAndreas.Sandberg@ARM.com            iewQueue.advance();
10489444SAndreas.Sandberg@ARM.com        }
10499444SAndreas.Sandberg@ARM.com
10509444SAndreas.Sandberg@ARM.com        drainSanityCheck();
10512905Sktlim@umich.edu        return 0;
10522863Sktlim@umich.edu    }
10532316SN/A}
10542310SN/A
10552316SN/Atemplate <class Impl>
10569444SAndreas.Sandberg@ARM.combool
10579444SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::tryDrain()
10589444SAndreas.Sandberg@ARM.com{
10599444SAndreas.Sandberg@ARM.com    if (!drainManager || !isDrained())
10609444SAndreas.Sandberg@ARM.com        return false;
10619444SAndreas.Sandberg@ARM.com
10629444SAndreas.Sandberg@ARM.com    if (tickEvent.scheduled())
10639444SAndreas.Sandberg@ARM.com        deschedule(tickEvent);
10649444SAndreas.Sandberg@ARM.com
10659444SAndreas.Sandberg@ARM.com    DPRINTF(Drain, "CPU done draining, processing drain event\n");
10669444SAndreas.Sandberg@ARM.com    drainManager->signalDrainDone();
10679444SAndreas.Sandberg@ARM.com    drainManager = NULL;
10689444SAndreas.Sandberg@ARM.com
10699444SAndreas.Sandberg@ARM.com    return true;
10709444SAndreas.Sandberg@ARM.com}
10719444SAndreas.Sandberg@ARM.com
10729444SAndreas.Sandberg@ARM.comtemplate <class Impl>
10739444SAndreas.Sandberg@ARM.comvoid
10749444SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::drainSanityCheck() const
10759444SAndreas.Sandberg@ARM.com{
10769444SAndreas.Sandberg@ARM.com    assert(isDrained());
10779444SAndreas.Sandberg@ARM.com    fetch.drainSanityCheck();
10789444SAndreas.Sandberg@ARM.com    decode.drainSanityCheck();
10799444SAndreas.Sandberg@ARM.com    rename.drainSanityCheck();
10809444SAndreas.Sandberg@ARM.com    iew.drainSanityCheck();
10819444SAndreas.Sandberg@ARM.com    commit.drainSanityCheck();
10829444SAndreas.Sandberg@ARM.com}
10839444SAndreas.Sandberg@ARM.com
10849444SAndreas.Sandberg@ARM.comtemplate <class Impl>
10859444SAndreas.Sandberg@ARM.combool
10869444SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::isDrained() const
10879444SAndreas.Sandberg@ARM.com{
10889444SAndreas.Sandberg@ARM.com    bool drained(true);
10899444SAndreas.Sandberg@ARM.com
10909444SAndreas.Sandberg@ARM.com    if (!instList.empty() || !removeList.empty()) {
10919444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "Main CPU structures not drained.\n");
10929444SAndreas.Sandberg@ARM.com        drained = false;
10939444SAndreas.Sandberg@ARM.com    }
10949444SAndreas.Sandberg@ARM.com
10959444SAndreas.Sandberg@ARM.com    if (!fetch.isDrained()) {
10969444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "Fetch not drained.\n");
10979444SAndreas.Sandberg@ARM.com        drained = false;
10989444SAndreas.Sandberg@ARM.com    }
10999444SAndreas.Sandberg@ARM.com
11009444SAndreas.Sandberg@ARM.com    if (!decode.isDrained()) {
11019444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "Decode not drained.\n");
11029444SAndreas.Sandberg@ARM.com        drained = false;
11039444SAndreas.Sandberg@ARM.com    }
11049444SAndreas.Sandberg@ARM.com
11059444SAndreas.Sandberg@ARM.com    if (!rename.isDrained()) {
11069444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "Rename not drained.\n");
11079444SAndreas.Sandberg@ARM.com        drained = false;
11089444SAndreas.Sandberg@ARM.com    }
11099444SAndreas.Sandberg@ARM.com
11109444SAndreas.Sandberg@ARM.com    if (!iew.isDrained()) {
11119444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "IEW not drained.\n");
11129444SAndreas.Sandberg@ARM.com        drained = false;
11139444SAndreas.Sandberg@ARM.com    }
11149444SAndreas.Sandberg@ARM.com
11159444SAndreas.Sandberg@ARM.com    if (!commit.isDrained()) {
11169444SAndreas.Sandberg@ARM.com        DPRINTF(Drain, "Commit not drained.\n");
11179444SAndreas.Sandberg@ARM.com        drained = false;
11189444SAndreas.Sandberg@ARM.com    }
11199444SAndreas.Sandberg@ARM.com
11209444SAndreas.Sandberg@ARM.com    return drained;
11219444SAndreas.Sandberg@ARM.com}
11229444SAndreas.Sandberg@ARM.com
11239444SAndreas.Sandberg@ARM.comtemplate <class Impl>
11249444SAndreas.Sandberg@ARM.comvoid
11259444SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::commitDrained(ThreadID tid)
11269444SAndreas.Sandberg@ARM.com{
11279444SAndreas.Sandberg@ARM.com    fetch.drainStall(tid);
11289444SAndreas.Sandberg@ARM.com}
11299444SAndreas.Sandberg@ARM.com
11309444SAndreas.Sandberg@ARM.comtemplate <class Impl>
11312316SN/Avoid
11329342SAndreas.Sandberg@arm.comFullO3CPU<Impl>::drainResume()
11332316SN/A{
11349444SAndreas.Sandberg@ARM.com    setDrainState(Drainable::Running);
11359444SAndreas.Sandberg@ARM.com    if (switchedOut())
11369444SAndreas.Sandberg@ARM.com        return;
11372316SN/A
11389444SAndreas.Sandberg@ARM.com    DPRINTF(Drain, "Resuming...\n");
11399523SAndreas.Sandberg@ARM.com    verifyMemoryMode();
11403319Shsul@eecs.umich.edu
11419444SAndreas.Sandberg@ARM.com    fetch.drainResume();
11429444SAndreas.Sandberg@ARM.com    commit.drainResume();
11432316SN/A
11449444SAndreas.Sandberg@ARM.com    _status = Idle;
11459444SAndreas.Sandberg@ARM.com    for (ThreadID i = 0; i < thread.size(); i++) {
11469444SAndreas.Sandberg@ARM.com        if (thread[i]->status() == ThreadContext::Active) {
11479444SAndreas.Sandberg@ARM.com            DPRINTF(Drain, "Activating thread: %i\n", i);
11489444SAndreas.Sandberg@ARM.com            activateThread(i);
11499444SAndreas.Sandberg@ARM.com            _status = Running;
11502863Sktlim@umich.edu        }
11512310SN/A    }
11529444SAndreas.Sandberg@ARM.com
11539444SAndreas.Sandberg@ARM.com    assert(!tickEvent.scheduled());
11549444SAndreas.Sandberg@ARM.com    if (_status == Running)
11559444SAndreas.Sandberg@ARM.com        schedule(tickEvent, nextCycle());
11562843Sktlim@umich.edu}
11572843Sktlim@umich.edu
11582843Sktlim@umich.edutemplate <class Impl>
11592843Sktlim@umich.eduvoid
11602843Sktlim@umich.eduFullO3CPU<Impl>::switchOut()
11612843Sktlim@umich.edu{
11629444SAndreas.Sandberg@ARM.com    DPRINTF(O3CPU, "Switching out\n");
11639429SAndreas.Sandberg@ARM.com    BaseCPU::switchOut();
11649429SAndreas.Sandberg@ARM.com
11659444SAndreas.Sandberg@ARM.com    activityRec.reset();
11662843Sktlim@umich.edu
11672843Sktlim@umich.edu    _status = SwitchedOut;
11688887Sgeoffrey.blake@arm.com
11692843Sktlim@umich.edu    if (checker)
11702843Sktlim@umich.edu        checker->switchOut();
11711060SN/A}
11721060SN/A
11731060SN/Atemplate <class Impl>
11741060SN/Avoid
11751755SN/AFullO3CPU<Impl>::takeOverFrom(BaseCPU *oldCPU)
11761060SN/A{
11778737Skoansin.tan@gmail.com    BaseCPU::takeOverFrom(oldCPU);
11781060SN/A
11792307SN/A    fetch.takeOverFrom();
11802307SN/A    decode.takeOverFrom();
11812307SN/A    rename.takeOverFrom();
11822307SN/A    iew.takeOverFrom();
11832307SN/A    commit.takeOverFrom();
11842307SN/A
11859444SAndreas.Sandberg@ARM.com    assert(!tickEvent.scheduled());
11861060SN/A
11879152Satgutier@umich.edu    FullO3CPU<Impl> *oldO3CPU = dynamic_cast<FullO3CPU<Impl>*>(oldCPU);
11889152Satgutier@umich.edu    if (oldO3CPU)
11899152Satgutier@umich.edu        globalSeqNum = oldO3CPU->globalSeqNum;
11909152Satgutier@umich.edu
11919179Sandreas.hansson@arm.com    lastRunningCycle = curCycle();
11929444SAndreas.Sandberg@ARM.com    _status = Idle;
11931060SN/A}
11941060SN/A
11951060SN/Atemplate <class Impl>
11969523SAndreas.Sandberg@ARM.comvoid
11979523SAndreas.Sandberg@ARM.comFullO3CPU<Impl>::verifyMemoryMode() const
11989523SAndreas.Sandberg@ARM.com{
11999524SAndreas.Sandberg@ARM.com    if (!system->isTimingMode()) {
12009523SAndreas.Sandberg@ARM.com        fatal("The O3 CPU requires the memory system to be in "
12019523SAndreas.Sandberg@ARM.com              "'timing' mode.\n");
12029523SAndreas.Sandberg@ARM.com    }
12039523SAndreas.Sandberg@ARM.com}
12049523SAndreas.Sandberg@ARM.com
12059523SAndreas.Sandberg@ARM.comtemplate <class Impl>
12065595Sgblack@eecs.umich.eduTheISA::MiscReg
12076221Snate@binkert.orgFullO3CPU<Impl>::readMiscRegNoEffect(int misc_reg, ThreadID tid)
12085595Sgblack@eecs.umich.edu{
12099384SAndreas.Sandberg@arm.com    return this->isa[tid]->readMiscRegNoEffect(misc_reg);
12105595Sgblack@eecs.umich.edu}
12115595Sgblack@eecs.umich.edu
12125595Sgblack@eecs.umich.edutemplate <class Impl>
12135595Sgblack@eecs.umich.eduTheISA::MiscReg
12146221Snate@binkert.orgFullO3CPU<Impl>::readMiscReg(int misc_reg, ThreadID tid)
12155595Sgblack@eecs.umich.edu{
12167897Shestness@cs.utexas.edu    miscRegfileReads++;
12179384SAndreas.Sandberg@arm.com    return this->isa[tid]->readMiscReg(misc_reg, tcBase(tid));
12185595Sgblack@eecs.umich.edu}
12195595Sgblack@eecs.umich.edu
12205595Sgblack@eecs.umich.edutemplate <class Impl>
12215595Sgblack@eecs.umich.eduvoid
12225595Sgblack@eecs.umich.eduFullO3CPU<Impl>::setMiscRegNoEffect(int misc_reg,
12236221Snate@binkert.org        const TheISA::MiscReg &val, ThreadID tid)
12245595Sgblack@eecs.umich.edu{
12259384SAndreas.Sandberg@arm.com    this->isa[tid]->setMiscRegNoEffect(misc_reg, val);
12265595Sgblack@eecs.umich.edu}
12275595Sgblack@eecs.umich.edu
12285595Sgblack@eecs.umich.edutemplate <class Impl>
12295595Sgblack@eecs.umich.eduvoid
12305595Sgblack@eecs.umich.eduFullO3CPU<Impl>::setMiscReg(int misc_reg,
12316221Snate@binkert.org        const TheISA::MiscReg &val, ThreadID tid)
12325595Sgblack@eecs.umich.edu{
12337897Shestness@cs.utexas.edu    miscRegfileWrites++;
12349384SAndreas.Sandberg@arm.com    this->isa[tid]->setMiscReg(misc_reg, val, tcBase(tid));
12355595Sgblack@eecs.umich.edu}
12365595Sgblack@eecs.umich.edu
12375595Sgblack@eecs.umich.edutemplate <class Impl>
12381060SN/Auint64_t
12391755SN/AFullO3CPU<Impl>::readIntReg(int reg_idx)
12401060SN/A{
12417897Shestness@cs.utexas.edu    intRegfileReads++;
12421060SN/A    return regFile.readIntReg(reg_idx);
12431060SN/A}
12441060SN/A
12451060SN/Atemplate <class Impl>
12462455SN/AFloatReg
12472455SN/AFullO3CPU<Impl>::readFloatReg(int reg_idx)
12481060SN/A{
12497897Shestness@cs.utexas.edu    fpRegfileReads++;
12502455SN/A    return regFile.readFloatReg(reg_idx);
12511060SN/A}
12521060SN/A
12531060SN/Atemplate <class Impl>
12542455SN/AFloatRegBits
12552455SN/AFullO3CPU<Impl>::readFloatRegBits(int reg_idx)
12562455SN/A{
12577897Shestness@cs.utexas.edu    fpRegfileReads++;
12582455SN/A    return regFile.readFloatRegBits(reg_idx);
12591060SN/A}
12601060SN/A
12611060SN/Atemplate <class Impl>
12629920Syasuko.eckert@amd.comCCReg
12639920Syasuko.eckert@amd.comFullO3CPU<Impl>::readCCReg(int reg_idx)
12649920Syasuko.eckert@amd.com{
12659920Syasuko.eckert@amd.com    ccRegfileReads++;
12669920Syasuko.eckert@amd.com    return regFile.readCCReg(reg_idx);
12679920Syasuko.eckert@amd.com}
12689920Syasuko.eckert@amd.com
12699920Syasuko.eckert@amd.comtemplate <class Impl>
12701060SN/Avoid
12711755SN/AFullO3CPU<Impl>::setIntReg(int reg_idx, uint64_t val)
12721060SN/A{
12737897Shestness@cs.utexas.edu    intRegfileWrites++;
12741060SN/A    regFile.setIntReg(reg_idx, val);
12751060SN/A}
12761060SN/A
12771060SN/Atemplate <class Impl>
12781060SN/Avoid
12792455SN/AFullO3CPU<Impl>::setFloatReg(int reg_idx, FloatReg val)
12801060SN/A{
12817897Shestness@cs.utexas.edu    fpRegfileWrites++;
12822455SN/A    regFile.setFloatReg(reg_idx, val);
12831060SN/A}
12841060SN/A
12851060SN/Atemplate <class Impl>
12861060SN/Avoid
12872455SN/AFullO3CPU<Impl>::setFloatRegBits(int reg_idx, FloatRegBits val)
12882455SN/A{
12897897Shestness@cs.utexas.edu    fpRegfileWrites++;
12902455SN/A    regFile.setFloatRegBits(reg_idx, val);
12911060SN/A}
12921060SN/A
12931060SN/Atemplate <class Impl>
12949920Syasuko.eckert@amd.comvoid
12959920Syasuko.eckert@amd.comFullO3CPU<Impl>::setCCReg(int reg_idx, CCReg val)
12969920Syasuko.eckert@amd.com{
12979920Syasuko.eckert@amd.com    ccRegfileWrites++;
12989920Syasuko.eckert@amd.com    regFile.setCCReg(reg_idx, val);
12999920Syasuko.eckert@amd.com}
13009920Syasuko.eckert@amd.com
13019920Syasuko.eckert@amd.comtemplate <class Impl>
13021060SN/Auint64_t
13036221Snate@binkert.orgFullO3CPU<Impl>::readArchIntReg(int reg_idx, ThreadID tid)
13041060SN/A{
13057897Shestness@cs.utexas.edu    intRegfileReads++;
13069919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupInt(reg_idx);
13072292SN/A
13082292SN/A    return regFile.readIntReg(phys_reg);
13092292SN/A}
13102292SN/A
13112292SN/Atemplate <class Impl>
13122292SN/Afloat
13136314Sgblack@eecs.umich.eduFullO3CPU<Impl>::readArchFloatReg(int reg_idx, ThreadID tid)
13142292SN/A{
13157897Shestness@cs.utexas.edu    fpRegfileReads++;
13169919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupFloat(reg_idx);
13172292SN/A
13182669Sktlim@umich.edu    return regFile.readFloatReg(phys_reg);
13192292SN/A}
13202292SN/A
13212292SN/Atemplate <class Impl>
13222292SN/Auint64_t
13236221Snate@binkert.orgFullO3CPU<Impl>::readArchFloatRegInt(int reg_idx, ThreadID tid)
13242292SN/A{
13257897Shestness@cs.utexas.edu    fpRegfileReads++;
13269919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupFloat(reg_idx);
13272292SN/A
13282669Sktlim@umich.edu    return regFile.readFloatRegBits(phys_reg);
13291060SN/A}
13301060SN/A
13311060SN/Atemplate <class Impl>
13329920Syasuko.eckert@amd.comCCReg
13339920Syasuko.eckert@amd.comFullO3CPU<Impl>::readArchCCReg(int reg_idx, ThreadID tid)
13349920Syasuko.eckert@amd.com{
13359920Syasuko.eckert@amd.com    ccRegfileReads++;
13369920Syasuko.eckert@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupCC(reg_idx);
13379920Syasuko.eckert@amd.com
13389920Syasuko.eckert@amd.com    return regFile.readCCReg(phys_reg);
13399920Syasuko.eckert@amd.com}
13409920Syasuko.eckert@amd.com
13419920Syasuko.eckert@amd.comtemplate <class Impl>
13421060SN/Avoid
13436221Snate@binkert.orgFullO3CPU<Impl>::setArchIntReg(int reg_idx, uint64_t val, ThreadID tid)
13441060SN/A{
13457897Shestness@cs.utexas.edu    intRegfileWrites++;
13469919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupInt(reg_idx);
13472292SN/A
13482292SN/A    regFile.setIntReg(phys_reg, val);
13491060SN/A}
13501060SN/A
13511060SN/Atemplate <class Impl>
13521060SN/Avoid
13536314Sgblack@eecs.umich.eduFullO3CPU<Impl>::setArchFloatReg(int reg_idx, float val, ThreadID tid)
13541060SN/A{
13557897Shestness@cs.utexas.edu    fpRegfileWrites++;
13569919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupFloat(reg_idx);
13572292SN/A
13582669Sktlim@umich.edu    regFile.setFloatReg(phys_reg, val);
13591060SN/A}
13601060SN/A
13611060SN/Atemplate <class Impl>
13621060SN/Avoid
13636221Snate@binkert.orgFullO3CPU<Impl>::setArchFloatRegInt(int reg_idx, uint64_t val, ThreadID tid)
13641060SN/A{
13657897Shestness@cs.utexas.edu    fpRegfileWrites++;
13669919Ssteve.reinhardt@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupFloat(reg_idx);
13671060SN/A
13682669Sktlim@umich.edu    regFile.setFloatRegBits(phys_reg, val);
13692292SN/A}
13702292SN/A
13712292SN/Atemplate <class Impl>
13729920Syasuko.eckert@amd.comvoid
13739920Syasuko.eckert@amd.comFullO3CPU<Impl>::setArchCCReg(int reg_idx, CCReg val, ThreadID tid)
13749920Syasuko.eckert@amd.com{
13759920Syasuko.eckert@amd.com    ccRegfileWrites++;
13769920Syasuko.eckert@amd.com    PhysRegIndex phys_reg = commitRenameMap[tid].lookupCC(reg_idx);
13779920Syasuko.eckert@amd.com
13789920Syasuko.eckert@amd.com    regFile.setCCReg(phys_reg, val);
13799920Syasuko.eckert@amd.com}
13809920Syasuko.eckert@amd.com
13819920Syasuko.eckert@amd.comtemplate <class Impl>
13827720Sgblack@eecs.umich.eduTheISA::PCState
13837720Sgblack@eecs.umich.eduFullO3CPU<Impl>::pcState(ThreadID tid)
13842292SN/A{
13857720Sgblack@eecs.umich.edu    return commit.pcState(tid);
13861060SN/A}
13871060SN/A
13881060SN/Atemplate <class Impl>
13891060SN/Avoid
13907720Sgblack@eecs.umich.eduFullO3CPU<Impl>::pcState(const TheISA::PCState &val, ThreadID tid)
13911060SN/A{
13927720Sgblack@eecs.umich.edu    commit.pcState(val, tid);
13932292SN/A}
13941060SN/A
13952292SN/Atemplate <class Impl>
13967720Sgblack@eecs.umich.eduAddr
13977720Sgblack@eecs.umich.eduFullO3CPU<Impl>::instAddr(ThreadID tid)
13984636Sgblack@eecs.umich.edu{
13997720Sgblack@eecs.umich.edu    return commit.instAddr(tid);
14004636Sgblack@eecs.umich.edu}
14014636Sgblack@eecs.umich.edu
14024636Sgblack@eecs.umich.edutemplate <class Impl>
14037720Sgblack@eecs.umich.eduAddr
14047720Sgblack@eecs.umich.eduFullO3CPU<Impl>::nextInstAddr(ThreadID tid)
14054636Sgblack@eecs.umich.edu{
14067720Sgblack@eecs.umich.edu    return commit.nextInstAddr(tid);
14074636Sgblack@eecs.umich.edu}
14084636Sgblack@eecs.umich.edu
14094636Sgblack@eecs.umich.edutemplate <class Impl>
14107720Sgblack@eecs.umich.eduMicroPC
14117720Sgblack@eecs.umich.eduFullO3CPU<Impl>::microPC(ThreadID tid)
14122292SN/A{
14137720Sgblack@eecs.umich.edu    return commit.microPC(tid);
14144636Sgblack@eecs.umich.edu}
14154636Sgblack@eecs.umich.edu
14164636Sgblack@eecs.umich.edutemplate <class Impl>
14175595Sgblack@eecs.umich.eduvoid
14186221Snate@binkert.orgFullO3CPU<Impl>::squashFromTC(ThreadID tid)
14195595Sgblack@eecs.umich.edu{
14209382SAli.Saidi@ARM.com    this->thread[tid]->noSquashFromTC = true;
14215595Sgblack@eecs.umich.edu    this->commit.generateTCEvent(tid);
14225595Sgblack@eecs.umich.edu}
14235595Sgblack@eecs.umich.edu
14245595Sgblack@eecs.umich.edutemplate <class Impl>
14252292SN/Atypename FullO3CPU<Impl>::ListIt
14262292SN/AFullO3CPU<Impl>::addInst(DynInstPtr &inst)
14272292SN/A{
14282292SN/A    instList.push_back(inst);
14291060SN/A
14302292SN/A    return --(instList.end());
14312292SN/A}
14321060SN/A
14332292SN/Atemplate <class Impl>
14342292SN/Avoid
14358834Satgutier@umich.eduFullO3CPU<Impl>::instDone(ThreadID tid, DynInstPtr &inst)
14362292SN/A{
14372292SN/A    // Keep an instruction count.
14388834Satgutier@umich.edu    if (!inst->isMicroop() || inst->isLastMicroop()) {
14398834Satgutier@umich.edu        thread[tid]->numInst++;
14408834Satgutier@umich.edu        thread[tid]->numInsts++;
14418834Satgutier@umich.edu        committedInsts[tid]++;
14428834Satgutier@umich.edu    }
14438834Satgutier@umich.edu    thread[tid]->numOp++;
14448834Satgutier@umich.edu    thread[tid]->numOps++;
14458834Satgutier@umich.edu    committedOps[tid]++;
14468834Satgutier@umich.edu
14477897Shestness@cs.utexas.edu    system->totalNumInsts++;
14482292SN/A    // Check for instruction-count-based events.
14492292SN/A    comInstEventQueue[tid]->serviceEvents(thread[tid]->numInst);
14507897Shestness@cs.utexas.edu    system->instEventQueue.serviceEvents(system->totalNumInsts);
145110464SAndreas.Sandberg@ARM.com
145210464SAndreas.Sandberg@ARM.com    probeInstCommit(inst->staticInst);
14532292SN/A}
14542292SN/A
14552292SN/Atemplate <class Impl>
14562292SN/Avoid
14571755SN/AFullO3CPU<Impl>::removeFrontInst(DynInstPtr &inst)
14581060SN/A{
14597720Sgblack@eecs.umich.edu    DPRINTF(O3CPU, "Removing committed instruction [tid:%i] PC %s "
14602292SN/A            "[sn:%lli]\n",
14617720Sgblack@eecs.umich.edu            inst->threadNumber, inst->pcState(), inst->seqNum);
14621060SN/A
14632292SN/A    removeInstsThisCycle = true;
14641060SN/A
14651060SN/A    // Remove the front instruction.
14662292SN/A    removeList.push(inst->getInstListIt());
14671060SN/A}
14681060SN/A
14691060SN/Atemplate <class Impl>
14701060SN/Avoid
14716221Snate@binkert.orgFullO3CPU<Impl>::removeInstsNotInROB(ThreadID tid)
14721060SN/A{
14732733Sktlim@umich.edu    DPRINTF(O3CPU, "Thread %i: Deleting instructions from instruction"
14742292SN/A            " list.\n", tid);
14751060SN/A
14762292SN/A    ListIt end_it;
14771060SN/A
14782292SN/A    bool rob_empty = false;
14792292SN/A
14802292SN/A    if (instList.empty()) {
14812292SN/A        return;
148210164Ssleimanf@umich.edu    } else if (rob.isEmpty(tid)) {
14832733Sktlim@umich.edu        DPRINTF(O3CPU, "ROB is empty, squashing all insts.\n");
14842292SN/A        end_it = instList.begin();
14852292SN/A        rob_empty = true;
14862292SN/A    } else {
14872292SN/A        end_it = (rob.readTailInst(tid))->getInstListIt();
14882733Sktlim@umich.edu        DPRINTF(O3CPU, "ROB is not empty, squashing insts not in ROB.\n");
14892292SN/A    }
14902292SN/A
14912292SN/A    removeInstsThisCycle = true;
14922292SN/A
14932292SN/A    ListIt inst_it = instList.end();
14942292SN/A
14952292SN/A    inst_it--;
14962292SN/A
14972292SN/A    // Walk through the instruction list, removing any instructions
14982292SN/A    // that were inserted after the given instruction iterator, end_it.
14992292SN/A    while (inst_it != end_it) {
15002292SN/A        assert(!instList.empty());
15012292SN/A
15022292SN/A        squashInstIt(inst_it, tid);
15032292SN/A
15042292SN/A        inst_it--;
15052292SN/A    }
15062292SN/A
15072292SN/A    // If the ROB was empty, then we actually need to remove the first
15082292SN/A    // instruction as well.
15092292SN/A    if (rob_empty) {
15102292SN/A        squashInstIt(inst_it, tid);
15112292SN/A    }
15121060SN/A}
15131060SN/A
15141060SN/Atemplate <class Impl>
15151060SN/Avoid
15166221Snate@binkert.orgFullO3CPU<Impl>::removeInstsUntil(const InstSeqNum &seq_num, ThreadID tid)
15171062SN/A{
15182292SN/A    assert(!instList.empty());
15192292SN/A
15202292SN/A    removeInstsThisCycle = true;
15212292SN/A
15222292SN/A    ListIt inst_iter = instList.end();
15232292SN/A
15242292SN/A    inst_iter--;
15252292SN/A
15262733Sktlim@umich.edu    DPRINTF(O3CPU, "Deleting instructions from instruction "
15272292SN/A            "list that are from [tid:%i] and above [sn:%lli] (end=%lli).\n",
15282292SN/A            tid, seq_num, (*inst_iter)->seqNum);
15291062SN/A
15302292SN/A    while ((*inst_iter)->seqNum > seq_num) {
15311062SN/A
15322292SN/A        bool break_loop = (inst_iter == instList.begin());
15331062SN/A
15342292SN/A        squashInstIt(inst_iter, tid);
15351062SN/A
15362292SN/A        inst_iter--;
15371062SN/A
15382292SN/A        if (break_loop)
15392292SN/A            break;
15402292SN/A    }
15412292SN/A}
15422292SN/A
15432292SN/Atemplate <class Impl>
15442292SN/Ainline void
15456221Snate@binkert.orgFullO3CPU<Impl>::squashInstIt(const ListIt &instIt, ThreadID tid)
15462292SN/A{
15472292SN/A    if ((*instIt)->threadNumber == tid) {
15482733Sktlim@umich.edu        DPRINTF(O3CPU, "Squashing instruction, "
15497720Sgblack@eecs.umich.edu                "[tid:%i] [sn:%lli] PC %s\n",
15502292SN/A                (*instIt)->threadNumber,
15512292SN/A                (*instIt)->seqNum,
15527720Sgblack@eecs.umich.edu                (*instIt)->pcState());
15531062SN/A
15541062SN/A        // Mark it as squashed.
15552292SN/A        (*instIt)->setSquashed();
15562292SN/A
15572325SN/A        // @todo: Formulate a consistent method for deleting
15582325SN/A        // instructions from the instruction list
15592292SN/A        // Remove the instruction from the list.
15602292SN/A        removeList.push(instIt);
15612292SN/A    }
15622292SN/A}
15632292SN/A
15642292SN/Atemplate <class Impl>
15652292SN/Avoid
15662292SN/AFullO3CPU<Impl>::cleanUpRemovedInsts()
15672292SN/A{
15682292SN/A    while (!removeList.empty()) {
15692733Sktlim@umich.edu        DPRINTF(O3CPU, "Removing instruction, "
15707720Sgblack@eecs.umich.edu                "[tid:%i] [sn:%lli] PC %s\n",
15712292SN/A                (*removeList.front())->threadNumber,
15722292SN/A                (*removeList.front())->seqNum,
15737720Sgblack@eecs.umich.edu                (*removeList.front())->pcState());
15742292SN/A
15752292SN/A        instList.erase(removeList.front());
15762292SN/A
15772292SN/A        removeList.pop();
15781062SN/A    }
15791062SN/A
15802292SN/A    removeInstsThisCycle = false;
15811062SN/A}
15822325SN/A/*
15831062SN/Atemplate <class Impl>
15841062SN/Avoid
15851755SN/AFullO3CPU<Impl>::removeAllInsts()
15861060SN/A{
15871060SN/A    instList.clear();
15881060SN/A}
15892325SN/A*/
15901060SN/Atemplate <class Impl>
15911060SN/Avoid
15921755SN/AFullO3CPU<Impl>::dumpInsts()
15931060SN/A{
15941060SN/A    int num = 0;
15951060SN/A
15962292SN/A    ListIt inst_list_it = instList.begin();
15972292SN/A
15982292SN/A    cprintf("Dumping Instruction List\n");
15992292SN/A
16002292SN/A    while (inst_list_it != instList.end()) {
16012292SN/A        cprintf("Instruction:%i\nPC:%#x\n[tid:%i]\n[sn:%lli]\nIssued:%i\n"
16022292SN/A                "Squashed:%i\n\n",
16037720Sgblack@eecs.umich.edu                num, (*inst_list_it)->instAddr(), (*inst_list_it)->threadNumber,
16042292SN/A                (*inst_list_it)->seqNum, (*inst_list_it)->isIssued(),
16052292SN/A                (*inst_list_it)->isSquashed());
16061060SN/A        inst_list_it++;
16071060SN/A        ++num;
16081060SN/A    }
16091060SN/A}
16102325SN/A/*
16111060SN/Atemplate <class Impl>
16121060SN/Avoid
16131755SN/AFullO3CPU<Impl>::wakeDependents(DynInstPtr &inst)
16141060SN/A{
16151060SN/A    iew.wakeDependents(inst);
16161060SN/A}
16172325SN/A*/
16182292SN/Atemplate <class Impl>
16192292SN/Avoid
16202292SN/AFullO3CPU<Impl>::wakeCPU()
16212292SN/A{
16222325SN/A    if (activityRec.active() || tickEvent.scheduled()) {
16232325SN/A        DPRINTF(Activity, "CPU already running.\n");
16242292SN/A        return;
16252292SN/A    }
16262292SN/A
16272325SN/A    DPRINTF(Activity, "Waking up CPU\n");
16282325SN/A
16299180Sandreas.hansson@arm.com    Cycles cycles(curCycle() - lastRunningCycle);
16309180Sandreas.hansson@arm.com    // @todo: This is an oddity that is only here to match the stats
163110464SAndreas.Sandberg@ARM.com    if (cycles > 1) {
16329179Sandreas.hansson@arm.com        --cycles;
163310464SAndreas.Sandberg@ARM.com        idleCycles += cycles;
163410464SAndreas.Sandberg@ARM.com        numCycles += cycles;
163510464SAndreas.Sandberg@ARM.com        ppCycles->notify(cycles);
163610464SAndreas.Sandberg@ARM.com    }
16372292SN/A
16389648Sdam.sunwoo@arm.com    schedule(tickEvent, clockEdge());
16392292SN/A}
16402292SN/A
16415807Snate@binkert.orgtemplate <class Impl>
16425807Snate@binkert.orgvoid
16435807Snate@binkert.orgFullO3CPU<Impl>::wakeup()
16445807Snate@binkert.org{
16455807Snate@binkert.org    if (this->thread[0]->status() != ThreadContext::Suspended)
16465807Snate@binkert.org        return;
16475807Snate@binkert.org
16485807Snate@binkert.org    this->wakeCPU();
16495807Snate@binkert.org
16505807Snate@binkert.org    DPRINTF(Quiesce, "Suspended Processor woken\n");
16515807Snate@binkert.org    this->threadContexts[0]->activate();
16525807Snate@binkert.org}
16535807Snate@binkert.org
16542292SN/Atemplate <class Impl>
16556221Snate@binkert.orgThreadID
16562292SN/AFullO3CPU<Impl>::getFreeTid()
16572292SN/A{
16586221Snate@binkert.org    for (ThreadID tid = 0; tid < numThreads; tid++) {
16596221Snate@binkert.org        if (!tids[tid]) {
16606221Snate@binkert.org            tids[tid] = true;
16616221Snate@binkert.org            return tid;
16622292SN/A        }
16632292SN/A    }
16642292SN/A
16656221Snate@binkert.org    return InvalidThreadID;
16662292SN/A}
16672292SN/A
16682292SN/Atemplate <class Impl>
16692292SN/Avoid
16702292SN/AFullO3CPU<Impl>::updateThreadPriority()
16712292SN/A{
16726221Snate@binkert.org    if (activeThreads.size() > 1) {
16732292SN/A        //DEFAULT TO ROUND ROBIN SCHEME
16742292SN/A        //e.g. Move highest priority to end of thread list
16756221Snate@binkert.org        list<ThreadID>::iterator list_begin = activeThreads.begin();
16762292SN/A
16772292SN/A        unsigned high_thread = *list_begin;
16782292SN/A
16792292SN/A        activeThreads.erase(list_begin);
16802292SN/A
16812292SN/A        activeThreads.push_back(high_thread);
16822292SN/A    }
16832292SN/A}
16841060SN/A
16851755SN/A// Forward declaration of FullO3CPU.
16862818Sksewell@umich.edutemplate class FullO3CPU<O3CPUImpl>;
1687