iew_impl.hh revision 5529
11689SN/A/*
22326SN/A * Copyright (c) 2004-2006 The Regents of The University of Michigan
31689SN/A * All rights reserved.
41689SN/A *
51689SN/A * Redistribution and use in source and binary forms, with or without
61689SN/A * modification, are permitted provided that the following conditions are
71689SN/A * met: redistributions of source code must retain the above copyright
81689SN/A * notice, this list of conditions and the following disclaimer;
91689SN/A * redistributions in binary form must reproduce the above copyright
101689SN/A * notice, this list of conditions and the following disclaimer in the
111689SN/A * documentation and/or other materials provided with the distribution;
121689SN/A * neither the name of the copyright holders nor the names of its
131689SN/A * contributors may be used to endorse or promote products derived from
141689SN/A * this software without specific prior written permission.
151689SN/A *
161689SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
171689SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
181689SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
191689SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
201689SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
211689SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
221689SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
231689SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
241689SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251689SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
261689SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Kevin Lim
291689SN/A */
301689SN/A
311060SN/A// @todo: Fix the instantaneous communication among all the stages within
321060SN/A// iew.  There's a clear delay between issue and execute, yet backwards
331689SN/A// communication happens simultaneously.
341060SN/A
351060SN/A#include <queue>
361060SN/A
371060SN/A#include "base/timebuf.hh"
382292SN/A#include "cpu/o3/fu_pool.hh"
391717SN/A#include "cpu/o3/iew.hh"
405529Snate@binkert.org#include "params/DerivO3CPU.hh"
411060SN/A
421681SN/Atemplate<class Impl>
435529Snate@binkert.orgDefaultIEW<Impl>::DefaultIEW(O3CPU *_cpu, DerivO3CPUParams *params)
442873Sktlim@umich.edu    : issueToExecQueue(params->backComSize, params->forwardComSize),
454329Sktlim@umich.edu      cpu(_cpu),
464329Sktlim@umich.edu      instQueue(_cpu, this, params),
474329Sktlim@umich.edu      ldstQueue(_cpu, this, params),
482292SN/A      fuPool(params->fuPool),
492292SN/A      commitToIEWDelay(params->commitToIEWDelay),
502292SN/A      renameToIEWDelay(params->renameToIEWDelay),
512292SN/A      issueToExecuteDelay(params->issueToExecuteDelay),
522820Sktlim@umich.edu      dispatchWidth(params->dispatchWidth),
532292SN/A      issueWidth(params->issueWidth),
542820Sktlim@umich.edu      wbOutstanding(0),
552820Sktlim@umich.edu      wbWidth(params->wbWidth),
565529Snate@binkert.org      numThreads(params->numThreads),
572307SN/A      switchedOut(false)
581060SN/A{
592292SN/A    _status = Active;
602292SN/A    exeStatus = Running;
612292SN/A    wbStatus = Idle;
621060SN/A
631060SN/A    // Setup wire to read instructions coming from issue.
641060SN/A    fromIssue = issueToExecQueue.getWire(-issueToExecuteDelay);
651060SN/A
661060SN/A    // Instruction queue needs the queue between issue and execute.
671060SN/A    instQueue.setIssueToExecuteQueue(&issueToExecQueue);
681681SN/A
692292SN/A    for (int i=0; i < numThreads; i++) {
702292SN/A        dispatchStatus[i] = Running;
712292SN/A        stalls[i].commit = false;
722292SN/A        fetchRedirect[i] = false;
732292SN/A    }
742292SN/A
752820Sktlim@umich.edu    wbMax = wbWidth * params->wbDepth;
762820Sktlim@umich.edu
772292SN/A    updateLSQNextCycle = false;
782292SN/A
792820Sktlim@umich.edu    ableToIssue = true;
802820Sktlim@umich.edu
812292SN/A    skidBufferMax = (3 * (renameToIEWDelay * params->renameWidth)) + issueWidth;
822292SN/A}
832292SN/A
842292SN/Atemplate <class Impl>
852292SN/Astd::string
862292SN/ADefaultIEW<Impl>::name() const
872292SN/A{
882292SN/A    return cpu->name() + ".iew";
891060SN/A}
901060SN/A
911681SN/Atemplate <class Impl>
921062SN/Avoid
932292SN/ADefaultIEW<Impl>::regStats()
941062SN/A{
952301SN/A    using namespace Stats;
962301SN/A
971062SN/A    instQueue.regStats();
982727Sktlim@umich.edu    ldstQueue.regStats();
991062SN/A
1001062SN/A    iewIdleCycles
1011062SN/A        .name(name() + ".iewIdleCycles")
1021062SN/A        .desc("Number of cycles IEW is idle");
1031062SN/A
1041062SN/A    iewSquashCycles
1051062SN/A        .name(name() + ".iewSquashCycles")
1061062SN/A        .desc("Number of cycles IEW is squashing");
1071062SN/A
1081062SN/A    iewBlockCycles
1091062SN/A        .name(name() + ".iewBlockCycles")
1101062SN/A        .desc("Number of cycles IEW is blocking");
1111062SN/A
1121062SN/A    iewUnblockCycles
1131062SN/A        .name(name() + ".iewUnblockCycles")
1141062SN/A        .desc("Number of cycles IEW is unblocking");
1151062SN/A
1161062SN/A    iewDispatchedInsts
1171062SN/A        .name(name() + ".iewDispatchedInsts")
1181062SN/A        .desc("Number of instructions dispatched to IQ");
1191062SN/A
1201062SN/A    iewDispSquashedInsts
1211062SN/A        .name(name() + ".iewDispSquashedInsts")
1221062SN/A        .desc("Number of squashed instructions skipped by dispatch");
1231062SN/A
1241062SN/A    iewDispLoadInsts
1251062SN/A        .name(name() + ".iewDispLoadInsts")
1261062SN/A        .desc("Number of dispatched load instructions");
1271062SN/A
1281062SN/A    iewDispStoreInsts
1291062SN/A        .name(name() + ".iewDispStoreInsts")
1301062SN/A        .desc("Number of dispatched store instructions");
1311062SN/A
1321062SN/A    iewDispNonSpecInsts
1331062SN/A        .name(name() + ".iewDispNonSpecInsts")
1341062SN/A        .desc("Number of dispatched non-speculative instructions");
1351062SN/A
1361062SN/A    iewIQFullEvents
1371062SN/A        .name(name() + ".iewIQFullEvents")
1381062SN/A        .desc("Number of times the IQ has become full, causing a stall");
1391062SN/A
1402292SN/A    iewLSQFullEvents
1412292SN/A        .name(name() + ".iewLSQFullEvents")
1422292SN/A        .desc("Number of times the LSQ has become full, causing a stall");
1432292SN/A
1441062SN/A    memOrderViolationEvents
1451062SN/A        .name(name() + ".memOrderViolationEvents")
1461062SN/A        .desc("Number of memory order violations");
1471062SN/A
1481062SN/A    predictedTakenIncorrect
1491062SN/A        .name(name() + ".predictedTakenIncorrect")
1501062SN/A        .desc("Number of branches that were predicted taken incorrectly");
1512292SN/A
1522292SN/A    predictedNotTakenIncorrect
1532292SN/A        .name(name() + ".predictedNotTakenIncorrect")
1542292SN/A        .desc("Number of branches that were predicted not taken incorrectly");
1552292SN/A
1562292SN/A    branchMispredicts
1572292SN/A        .name(name() + ".branchMispredicts")
1582292SN/A        .desc("Number of branch mispredicts detected at execute");
1592292SN/A
1602292SN/A    branchMispredicts = predictedTakenIncorrect + predictedNotTakenIncorrect;
1612301SN/A
1622727Sktlim@umich.edu    iewExecutedInsts
1632353SN/A        .name(name() + ".iewExecutedInsts")
1642727Sktlim@umich.edu        .desc("Number of executed instructions");
1652727Sktlim@umich.edu
1662727Sktlim@umich.edu    iewExecLoadInsts
1672727Sktlim@umich.edu        .init(cpu->number_of_threads)
1682353SN/A        .name(name() + ".iewExecLoadInsts")
1692727Sktlim@umich.edu        .desc("Number of load instructions executed")
1702727Sktlim@umich.edu        .flags(total);
1712727Sktlim@umich.edu
1722727Sktlim@umich.edu    iewExecSquashedInsts
1732353SN/A        .name(name() + ".iewExecSquashedInsts")
1742727Sktlim@umich.edu        .desc("Number of squashed instructions skipped in execute");
1752727Sktlim@umich.edu
1762727Sktlim@umich.edu    iewExecutedSwp
1772301SN/A        .init(cpu->number_of_threads)
1782301SN/A        .name(name() + ".EXEC:swp")
1792301SN/A        .desc("number of swp insts executed")
1802727Sktlim@umich.edu        .flags(total);
1812301SN/A
1822727Sktlim@umich.edu    iewExecutedNop
1832301SN/A        .init(cpu->number_of_threads)
1842301SN/A        .name(name() + ".EXEC:nop")
1852301SN/A        .desc("number of nop insts executed")
1862727Sktlim@umich.edu        .flags(total);
1872301SN/A
1882727Sktlim@umich.edu    iewExecutedRefs
1892301SN/A        .init(cpu->number_of_threads)
1902301SN/A        .name(name() + ".EXEC:refs")
1912301SN/A        .desc("number of memory reference insts executed")
1922727Sktlim@umich.edu        .flags(total);
1932301SN/A
1942727Sktlim@umich.edu    iewExecutedBranches
1952301SN/A        .init(cpu->number_of_threads)
1962301SN/A        .name(name() + ".EXEC:branches")
1972301SN/A        .desc("Number of branches executed")
1982727Sktlim@umich.edu        .flags(total);
1992301SN/A
2002301SN/A    iewExecStoreInsts
2012301SN/A        .name(name() + ".EXEC:stores")
2022301SN/A        .desc("Number of stores executed")
2032727Sktlim@umich.edu        .flags(total);
2042727Sktlim@umich.edu    iewExecStoreInsts = iewExecutedRefs - iewExecLoadInsts;
2052727Sktlim@umich.edu
2062727Sktlim@umich.edu    iewExecRate
2072727Sktlim@umich.edu        .name(name() + ".EXEC:rate")
2082727Sktlim@umich.edu        .desc("Inst execution rate")
2092727Sktlim@umich.edu        .flags(total);
2102727Sktlim@umich.edu
2112727Sktlim@umich.edu    iewExecRate = iewExecutedInsts / cpu->numCycles;
2122301SN/A
2132301SN/A    iewInstsToCommit
2142301SN/A        .init(cpu->number_of_threads)
2152301SN/A        .name(name() + ".WB:sent")
2162301SN/A        .desc("cumulative count of insts sent to commit")
2172727Sktlim@umich.edu        .flags(total);
2182301SN/A
2192326SN/A    writebackCount
2202301SN/A        .init(cpu->number_of_threads)
2212301SN/A        .name(name() + ".WB:count")
2222301SN/A        .desc("cumulative count of insts written-back")
2232727Sktlim@umich.edu        .flags(total);
2242301SN/A
2252326SN/A    producerInst
2262301SN/A        .init(cpu->number_of_threads)
2272301SN/A        .name(name() + ".WB:producers")
2282301SN/A        .desc("num instructions producing a value")
2292727Sktlim@umich.edu        .flags(total);
2302301SN/A
2312326SN/A    consumerInst
2322301SN/A        .init(cpu->number_of_threads)
2332301SN/A        .name(name() + ".WB:consumers")
2342301SN/A        .desc("num instructions consuming a value")
2352727Sktlim@umich.edu        .flags(total);
2362301SN/A
2372326SN/A    wbPenalized
2382301SN/A        .init(cpu->number_of_threads)
2392301SN/A        .name(name() + ".WB:penalized")
2402301SN/A        .desc("number of instrctions required to write to 'other' IQ")
2412727Sktlim@umich.edu        .flags(total);
2422301SN/A
2432326SN/A    wbPenalizedRate
2442301SN/A        .name(name() + ".WB:penalized_rate")
2452301SN/A        .desc ("fraction of instructions written-back that wrote to 'other' IQ")
2462727Sktlim@umich.edu        .flags(total);
2472301SN/A
2482326SN/A    wbPenalizedRate = wbPenalized / writebackCount;
2492301SN/A
2502326SN/A    wbFanout
2512301SN/A        .name(name() + ".WB:fanout")
2522301SN/A        .desc("average fanout of values written-back")
2532727Sktlim@umich.edu        .flags(total);
2542301SN/A
2552326SN/A    wbFanout = producerInst / consumerInst;
2562301SN/A
2572326SN/A    wbRate
2582301SN/A        .name(name() + ".WB:rate")
2592301SN/A        .desc("insts written-back per cycle")
2602727Sktlim@umich.edu        .flags(total);
2612326SN/A    wbRate = writebackCount / cpu->numCycles;
2621062SN/A}
2631062SN/A
2641681SN/Atemplate<class Impl>
2651060SN/Avoid
2662292SN/ADefaultIEW<Impl>::initStage()
2671060SN/A{
2682292SN/A    for (int tid=0; tid < numThreads; tid++) {
2692292SN/A        toRename->iewInfo[tid].usedIQ = true;
2702292SN/A        toRename->iewInfo[tid].freeIQEntries =
2712292SN/A            instQueue.numFreeEntries(tid);
2722292SN/A
2732292SN/A        toRename->iewInfo[tid].usedLSQ = true;
2742292SN/A        toRename->iewInfo[tid].freeLSQEntries =
2752292SN/A            ldstQueue.numFreeEntries(tid);
2762292SN/A    }
2772292SN/A
2782733Sktlim@umich.edu    cpu->activateStage(O3CPU::IEWIdx);
2791060SN/A}
2801060SN/A
2811681SN/Atemplate<class Impl>
2821060SN/Avoid
2832292SN/ADefaultIEW<Impl>::setTimeBuffer(TimeBuffer<TimeStruct> *tb_ptr)
2841060SN/A{
2851060SN/A    timeBuffer = tb_ptr;
2861060SN/A
2871060SN/A    // Setup wire to read information from time buffer, from commit.
2881060SN/A    fromCommit = timeBuffer->getWire(-commitToIEWDelay);
2891060SN/A
2901060SN/A    // Setup wire to write information back to previous stages.
2911060SN/A    toRename = timeBuffer->getWire(0);
2921060SN/A
2932292SN/A    toFetch = timeBuffer->getWire(0);
2942292SN/A
2951060SN/A    // Instruction queue also needs main time buffer.
2961060SN/A    instQueue.setTimeBuffer(tb_ptr);
2971060SN/A}
2981060SN/A
2991681SN/Atemplate<class Impl>
3001060SN/Avoid
3012292SN/ADefaultIEW<Impl>::setRenameQueue(TimeBuffer<RenameStruct> *rq_ptr)
3021060SN/A{
3031060SN/A    renameQueue = rq_ptr;
3041060SN/A
3051060SN/A    // Setup wire to read information from rename queue.
3061060SN/A    fromRename = renameQueue->getWire(-renameToIEWDelay);
3071060SN/A}
3081060SN/A
3091681SN/Atemplate<class Impl>
3101060SN/Avoid
3112292SN/ADefaultIEW<Impl>::setIEWQueue(TimeBuffer<IEWStruct> *iq_ptr)
3121060SN/A{
3131060SN/A    iewQueue = iq_ptr;
3141060SN/A
3151060SN/A    // Setup wire to write instructions to commit.
3161060SN/A    toCommit = iewQueue->getWire(0);
3171060SN/A}
3181060SN/A
3191681SN/Atemplate<class Impl>
3201060SN/Avoid
3212980Sgblack@eecs.umich.eduDefaultIEW<Impl>::setActiveThreads(std::list<unsigned> *at_ptr)
3221060SN/A{
3232292SN/A    activeThreads = at_ptr;
3242292SN/A
3252292SN/A    ldstQueue.setActiveThreads(at_ptr);
3262292SN/A    instQueue.setActiveThreads(at_ptr);
3271060SN/A}
3281060SN/A
3291681SN/Atemplate<class Impl>
3301060SN/Avoid
3312292SN/ADefaultIEW<Impl>::setScoreboard(Scoreboard *sb_ptr)
3321060SN/A{
3332292SN/A    scoreboard = sb_ptr;
3341060SN/A}
3351060SN/A
3362307SN/Atemplate <class Impl>
3372863Sktlim@umich.edubool
3382843Sktlim@umich.eduDefaultIEW<Impl>::drain()
3392307SN/A{
3402843Sktlim@umich.edu    // IEW is ready to drain at any time.
3412843Sktlim@umich.edu    cpu->signalDrained();
3422863Sktlim@umich.edu    return true;
3431681SN/A}
3441681SN/A
3452316SN/Atemplate <class Impl>
3461681SN/Avoid
3472843Sktlim@umich.eduDefaultIEW<Impl>::resume()
3482843Sktlim@umich.edu{
3492843Sktlim@umich.edu}
3502843Sktlim@umich.edu
3512843Sktlim@umich.edutemplate <class Impl>
3522843Sktlim@umich.eduvoid
3532843Sktlim@umich.eduDefaultIEW<Impl>::switchOut()
3541681SN/A{
3552348SN/A    // Clear any state.
3562307SN/A    switchedOut = true;
3572367SN/A    assert(insts[0].empty());
3582367SN/A    assert(skidBuffer[0].empty());
3591681SN/A
3602307SN/A    instQueue.switchOut();
3612307SN/A    ldstQueue.switchOut();
3622307SN/A    fuPool->switchOut();
3632307SN/A
3642307SN/A    for (int i = 0; i < numThreads; i++) {
3652307SN/A        while (!insts[i].empty())
3662307SN/A            insts[i].pop();
3672307SN/A        while (!skidBuffer[i].empty())
3682307SN/A            skidBuffer[i].pop();
3692307SN/A    }
3701681SN/A}
3711681SN/A
3722307SN/Atemplate <class Impl>
3731681SN/Avoid
3742307SN/ADefaultIEW<Impl>::takeOverFrom()
3751060SN/A{
3762348SN/A    // Reset all state.
3772307SN/A    _status = Active;
3782307SN/A    exeStatus = Running;
3792307SN/A    wbStatus = Idle;
3802307SN/A    switchedOut = false;
3811060SN/A
3822307SN/A    instQueue.takeOverFrom();
3832307SN/A    ldstQueue.takeOverFrom();
3842307SN/A    fuPool->takeOverFrom();
3851060SN/A
3862307SN/A    initStage();
3872307SN/A    cpu->activityThisCycle();
3881060SN/A
3892307SN/A    for (int i=0; i < numThreads; i++) {
3902307SN/A        dispatchStatus[i] = Running;
3912307SN/A        stalls[i].commit = false;
3922307SN/A        fetchRedirect[i] = false;
3932307SN/A    }
3941060SN/A
3952307SN/A    updateLSQNextCycle = false;
3962307SN/A
3972873Sktlim@umich.edu    for (int i = 0; i < issueToExecQueue.getSize(); ++i) {
3982307SN/A        issueToExecQueue.advance();
3991060SN/A    }
4001060SN/A}
4011060SN/A
4021681SN/Atemplate<class Impl>
4031060SN/Avoid
4042292SN/ADefaultIEW<Impl>::squash(unsigned tid)
4052107SN/A{
4062292SN/A    DPRINTF(IEW, "[tid:%i]: Squashing all instructions.\n",
4072292SN/A            tid);
4082107SN/A
4092292SN/A    // Tell the IQ to start squashing.
4102292SN/A    instQueue.squash(tid);
4112107SN/A
4122292SN/A    // Tell the LDSTQ to start squashing.
4132326SN/A    ldstQueue.squash(fromCommit->commitInfo[tid].doneSeqNum, tid);
4142292SN/A    updatedQueues = true;
4152107SN/A
4162292SN/A    // Clear the skid buffer in case it has any data in it.
4172935Sksewell@umich.edu    DPRINTF(IEW, "[tid:%i]: Removing skidbuffer instructions until [sn:%i].\n",
4184632Sgblack@eecs.umich.edu            tid, fromCommit->commitInfo[tid].doneSeqNum);
4192935Sksewell@umich.edu
4202292SN/A    while (!skidBuffer[tid].empty()) {
4212292SN/A        if (skidBuffer[tid].front()->isLoad() ||
4222292SN/A            skidBuffer[tid].front()->isStore() ) {
4232292SN/A            toRename->iewInfo[tid].dispatchedToLSQ++;
4242292SN/A        }
4252107SN/A
4262292SN/A        toRename->iewInfo[tid].dispatched++;
4272107SN/A
4282292SN/A        skidBuffer[tid].pop();
4292292SN/A    }
4302107SN/A
4312702Sktlim@umich.edu    emptyRenameInsts(tid);
4322107SN/A}
4332107SN/A
4342107SN/Atemplate<class Impl>
4352107SN/Avoid
4362292SN/ADefaultIEW<Impl>::squashDueToBranch(DynInstPtr &inst, unsigned tid)
4372292SN/A{
4382292SN/A    DPRINTF(IEW, "[tid:%i]: Squashing from a specific instruction, PC: %#x "
4392292SN/A            "[sn:%i].\n", tid, inst->readPC(), inst->seqNum);
4402292SN/A
4412292SN/A    toCommit->squash[tid] = true;
4422292SN/A    toCommit->squashedSeqNum[tid] = inst->seqNum;
4432292SN/A    toCommit->mispredPC[tid] = inst->readPC();
4442292SN/A    toCommit->branchMispredict[tid] = true;
4452935Sksewell@umich.edu
4464632Sgblack@eecs.umich.edu#if ISA_HAS_DELAY_SLOT
4473969Sgblack@eecs.umich.edu    int instSize = sizeof(TheISA::MachInst);
4484632Sgblack@eecs.umich.edu    toCommit->branchTaken[tid] =
4493795Sgblack@eecs.umich.edu        !(inst->readNextPC() + instSize == inst->readNextNPC() &&
4503795Sgblack@eecs.umich.edu          (inst->readNextPC() == inst->readPC() + instSize ||
4513795Sgblack@eecs.umich.edu           inst->readNextPC() == inst->readPC() + 2 * instSize));
4523093Sksewell@umich.edu#else
4533093Sksewell@umich.edu    toCommit->branchTaken[tid] = inst->readNextPC() !=
4543093Sksewell@umich.edu        (inst->readPC() + sizeof(TheISA::MachInst));
4554632Sgblack@eecs.umich.edu#endif
4563093Sksewell@umich.edu    toCommit->nextPC[tid] = inst->readNextPC();
4574632Sgblack@eecs.umich.edu    toCommit->nextNPC[tid] = inst->readNextNPC();
4584636Sgblack@eecs.umich.edu    toCommit->nextMicroPC[tid] = inst->readNextMicroPC();
4592292SN/A
4602292SN/A    toCommit->includeSquashInst[tid] = false;
4612292SN/A
4622292SN/A    wroteToTimeBuffer = true;
4632292SN/A}
4642292SN/A
4652292SN/Atemplate<class Impl>
4662292SN/Avoid
4672292SN/ADefaultIEW<Impl>::squashDueToMemOrder(DynInstPtr &inst, unsigned tid)
4682292SN/A{
4692292SN/A    DPRINTF(IEW, "[tid:%i]: Squashing from a specific instruction, "
4702292SN/A            "PC: %#x [sn:%i].\n", tid, inst->readPC(), inst->seqNum);
4712292SN/A
4722292SN/A    toCommit->squash[tid] = true;
4732292SN/A    toCommit->squashedSeqNum[tid] = inst->seqNum;
4742292SN/A    toCommit->nextPC[tid] = inst->readNextPC();
4753795Sgblack@eecs.umich.edu    toCommit->nextNPC[tid] = inst->readNextNPC();
4763732Sktlim@umich.edu    toCommit->branchMispredict[tid] = false;
4772292SN/A
4782292SN/A    toCommit->includeSquashInst[tid] = false;
4792292SN/A
4802292SN/A    wroteToTimeBuffer = true;
4812292SN/A}
4822292SN/A
4832292SN/Atemplate<class Impl>
4842292SN/Avoid
4852292SN/ADefaultIEW<Impl>::squashDueToMemBlocked(DynInstPtr &inst, unsigned tid)
4862292SN/A{
4872292SN/A    DPRINTF(IEW, "[tid:%i]: Memory blocked, squashing load and younger insts, "
4882292SN/A            "PC: %#x [sn:%i].\n", tid, inst->readPC(), inst->seqNum);
4892292SN/A
4902292SN/A    toCommit->squash[tid] = true;
4912292SN/A    toCommit->squashedSeqNum[tid] = inst->seqNum;
4922292SN/A    toCommit->nextPC[tid] = inst->readPC();
4933958Sgblack@eecs.umich.edu    toCommit->nextNPC[tid] = inst->readNextPC();
4943732Sktlim@umich.edu    toCommit->branchMispredict[tid] = false;
4952292SN/A
4962348SN/A    // Must include the broadcasted SN in the squash.
4972292SN/A    toCommit->includeSquashInst[tid] = true;
4982292SN/A
4992292SN/A    ldstQueue.setLoadBlockedHandled(tid);
5002292SN/A
5012292SN/A    wroteToTimeBuffer = true;
5022292SN/A}
5032292SN/A
5042292SN/Atemplate<class Impl>
5052292SN/Avoid
5062292SN/ADefaultIEW<Impl>::block(unsigned tid)
5072292SN/A{
5082292SN/A    DPRINTF(IEW, "[tid:%u]: Blocking.\n", tid);
5092292SN/A
5102292SN/A    if (dispatchStatus[tid] != Blocked &&
5112292SN/A        dispatchStatus[tid] != Unblocking) {
5122292SN/A        toRename->iewBlock[tid] = true;
5132292SN/A        wroteToTimeBuffer = true;
5142292SN/A    }
5152292SN/A
5162292SN/A    // Add the current inputs to the skid buffer so they can be
5172292SN/A    // reprocessed when this stage unblocks.
5182292SN/A    skidInsert(tid);
5192292SN/A
5202292SN/A    dispatchStatus[tid] = Blocked;
5212292SN/A}
5222292SN/A
5232292SN/Atemplate<class Impl>
5242292SN/Avoid
5252292SN/ADefaultIEW<Impl>::unblock(unsigned tid)
5262292SN/A{
5272292SN/A    DPRINTF(IEW, "[tid:%i]: Reading instructions out of the skid "
5282292SN/A            "buffer %u.\n",tid, tid);
5292292SN/A
5302292SN/A    // If the skid bufffer is empty, signal back to previous stages to unblock.
5312292SN/A    // Also switch status to running.
5322292SN/A    if (skidBuffer[tid].empty()) {
5332292SN/A        toRename->iewUnblock[tid] = true;
5342292SN/A        wroteToTimeBuffer = true;
5352292SN/A        DPRINTF(IEW, "[tid:%i]: Done unblocking.\n",tid);
5362292SN/A        dispatchStatus[tid] = Running;
5372292SN/A    }
5382292SN/A}
5392292SN/A
5402292SN/Atemplate<class Impl>
5412292SN/Avoid
5422292SN/ADefaultIEW<Impl>::wakeDependents(DynInstPtr &inst)
5431060SN/A{
5441681SN/A    instQueue.wakeDependents(inst);
5451060SN/A}
5461060SN/A
5472292SN/Atemplate<class Impl>
5482292SN/Avoid
5492292SN/ADefaultIEW<Impl>::rescheduleMemInst(DynInstPtr &inst)
5502292SN/A{
5512292SN/A    instQueue.rescheduleMemInst(inst);
5522292SN/A}
5531681SN/A
5541681SN/Atemplate<class Impl>
5551060SN/Avoid
5562292SN/ADefaultIEW<Impl>::replayMemInst(DynInstPtr &inst)
5571060SN/A{
5582292SN/A    instQueue.replayMemInst(inst);
5592292SN/A}
5601060SN/A
5612292SN/Atemplate<class Impl>
5622292SN/Avoid
5632292SN/ADefaultIEW<Impl>::instToCommit(DynInstPtr &inst)
5642292SN/A{
5653221Sktlim@umich.edu    // This function should not be called after writebackInsts in a
5663221Sktlim@umich.edu    // single cycle.  That will cause problems with an instruction
5673221Sktlim@umich.edu    // being added to the queue to commit without being processed by
5683221Sktlim@umich.edu    // writebackInsts prior to being sent to commit.
5693221Sktlim@umich.edu
5702292SN/A    // First check the time slot that this instruction will write
5712292SN/A    // to.  If there are free write ports at the time, then go ahead
5722292SN/A    // and write the instruction to that time.  If there are not,
5732292SN/A    // keep looking back to see where's the first time there's a
5742326SN/A    // free slot.
5752292SN/A    while ((*iewQueue)[wbCycle].insts[wbNumInst]) {
5762292SN/A        ++wbNumInst;
5772820Sktlim@umich.edu        if (wbNumInst == wbWidth) {
5782292SN/A            ++wbCycle;
5792292SN/A            wbNumInst = 0;
5802292SN/A        }
5812292SN/A
5822353SN/A        assert((wbCycle * wbWidth + wbNumInst) <= wbMax);
5832292SN/A    }
5842292SN/A
5852353SN/A    DPRINTF(IEW, "Current wb cycle: %i, width: %i, numInst: %i\nwbActual:%i\n",
5862353SN/A            wbCycle, wbWidth, wbNumInst, wbCycle * wbWidth + wbNumInst);
5872292SN/A    // Add finished instruction to queue to commit.
5882292SN/A    (*iewQueue)[wbCycle].insts[wbNumInst] = inst;
5892292SN/A    (*iewQueue)[wbCycle].size++;
5902292SN/A}
5912292SN/A
5922292SN/Atemplate <class Impl>
5932292SN/Aunsigned
5942292SN/ADefaultIEW<Impl>::validInstsFromRename()
5952292SN/A{
5962292SN/A    unsigned inst_count = 0;
5972292SN/A
5982292SN/A    for (int i=0; i<fromRename->size; i++) {
5992731Sktlim@umich.edu        if (!fromRename->insts[i]->isSquashed())
6002292SN/A            inst_count++;
6012292SN/A    }
6022292SN/A
6032292SN/A    return inst_count;
6042292SN/A}
6052292SN/A
6062292SN/Atemplate<class Impl>
6072292SN/Avoid
6082292SN/ADefaultIEW<Impl>::skidInsert(unsigned tid)
6092292SN/A{
6102292SN/A    DynInstPtr inst = NULL;
6112292SN/A
6122292SN/A    while (!insts[tid].empty()) {
6132292SN/A        inst = insts[tid].front();
6142292SN/A
6152292SN/A        insts[tid].pop();
6162292SN/A
6172292SN/A        DPRINTF(Decode,"[tid:%i]: Inserting [sn:%lli] PC:%#x into "
6182292SN/A                "dispatch skidBuffer %i\n",tid, inst->seqNum,
6192292SN/A                inst->readPC(),tid);
6202292SN/A
6212292SN/A        skidBuffer[tid].push(inst);
6222292SN/A    }
6232292SN/A
6242292SN/A    assert(skidBuffer[tid].size() <= skidBufferMax &&
6252292SN/A           "Skidbuffer Exceeded Max Size");
6262292SN/A}
6272292SN/A
6282292SN/Atemplate<class Impl>
6292292SN/Aint
6302292SN/ADefaultIEW<Impl>::skidCount()
6312292SN/A{
6322292SN/A    int max=0;
6332292SN/A
6343867Sbinkertn@umich.edu    std::list<unsigned>::iterator threads = activeThreads->begin();
6353867Sbinkertn@umich.edu    std::list<unsigned>::iterator end = activeThreads->end();
6362292SN/A
6373867Sbinkertn@umich.edu    while (threads != end) {
6383867Sbinkertn@umich.edu        unsigned tid = *threads++;
6393867Sbinkertn@umich.edu        unsigned thread_count = skidBuffer[tid].size();
6402292SN/A        if (max < thread_count)
6412292SN/A            max = thread_count;
6422292SN/A    }
6432292SN/A
6442292SN/A    return max;
6452292SN/A}
6462292SN/A
6472292SN/Atemplate<class Impl>
6482292SN/Abool
6492292SN/ADefaultIEW<Impl>::skidsEmpty()
6502292SN/A{
6513867Sbinkertn@umich.edu    std::list<unsigned>::iterator threads = activeThreads->begin();
6523867Sbinkertn@umich.edu    std::list<unsigned>::iterator end = activeThreads->end();
6532292SN/A
6543867Sbinkertn@umich.edu    while (threads != end) {
6553867Sbinkertn@umich.edu        unsigned tid = *threads++;
6563867Sbinkertn@umich.edu
6573867Sbinkertn@umich.edu        if (!skidBuffer[tid].empty())
6582292SN/A            return false;
6592292SN/A    }
6602292SN/A
6612292SN/A    return true;
6621062SN/A}
6631062SN/A
6641681SN/Atemplate <class Impl>
6651062SN/Avoid
6662292SN/ADefaultIEW<Impl>::updateStatus()
6671062SN/A{
6682292SN/A    bool any_unblocking = false;
6691062SN/A
6703867Sbinkertn@umich.edu    std::list<unsigned>::iterator threads = activeThreads->begin();
6713867Sbinkertn@umich.edu    std::list<unsigned>::iterator end = activeThreads->end();
6721062SN/A
6733867Sbinkertn@umich.edu    while (threads != end) {
6742292SN/A        unsigned tid = *threads++;
6751062SN/A
6762292SN/A        if (dispatchStatus[tid] == Unblocking) {
6772292SN/A            any_unblocking = true;
6782292SN/A            break;
6792292SN/A        }
6802292SN/A    }
6811062SN/A
6822292SN/A    // If there are no ready instructions waiting to be scheduled by the IQ,
6832292SN/A    // and there's no stores waiting to write back, and dispatch is not
6842292SN/A    // unblocking, then there is no internal activity for the IEW stage.
6852292SN/A    if (_status == Active && !instQueue.hasReadyInsts() &&
6862292SN/A        !ldstQueue.willWB() && !any_unblocking) {
6872292SN/A        DPRINTF(IEW, "IEW switching to idle\n");
6881062SN/A
6892292SN/A        deactivateStage();
6901062SN/A
6912292SN/A        _status = Inactive;
6922292SN/A    } else if (_status == Inactive && (instQueue.hasReadyInsts() ||
6932292SN/A                                       ldstQueue.willWB() ||
6942292SN/A                                       any_unblocking)) {
6952292SN/A        // Otherwise there is internal activity.  Set to active.
6962292SN/A        DPRINTF(IEW, "IEW switching to active\n");
6971062SN/A
6982292SN/A        activateStage();
6991062SN/A
7002292SN/A        _status = Active;
7011062SN/A    }
7021062SN/A}
7031062SN/A
7041681SN/Atemplate <class Impl>
7051062SN/Avoid
7062292SN/ADefaultIEW<Impl>::resetEntries()
7071062SN/A{
7082292SN/A    instQueue.resetEntries();
7092292SN/A    ldstQueue.resetEntries();
7102292SN/A}
7111062SN/A
7122292SN/Atemplate <class Impl>
7132292SN/Avoid
7142292SN/ADefaultIEW<Impl>::readStallSignals(unsigned tid)
7152292SN/A{
7162292SN/A    if (fromCommit->commitBlock[tid]) {
7172292SN/A        stalls[tid].commit = true;
7182292SN/A    }
7191062SN/A
7202292SN/A    if (fromCommit->commitUnblock[tid]) {
7212292SN/A        assert(stalls[tid].commit);
7222292SN/A        stalls[tid].commit = false;
7232292SN/A    }
7242292SN/A}
7252292SN/A
7262292SN/Atemplate <class Impl>
7272292SN/Abool
7282292SN/ADefaultIEW<Impl>::checkStall(unsigned tid)
7292292SN/A{
7302292SN/A    bool ret_val(false);
7312292SN/A
7322292SN/A    if (stalls[tid].commit) {
7332292SN/A        DPRINTF(IEW,"[tid:%i]: Stall from Commit stage detected.\n",tid);
7342292SN/A        ret_val = true;
7352292SN/A    } else if (instQueue.isFull(tid)) {
7362292SN/A        DPRINTF(IEW,"[tid:%i]: Stall: IQ  is full.\n",tid);
7372292SN/A        ret_val = true;
7382292SN/A    } else if (ldstQueue.isFull(tid)) {
7392292SN/A        DPRINTF(IEW,"[tid:%i]: Stall: LSQ is full\n",tid);
7402292SN/A
7412292SN/A        if (ldstQueue.numLoads(tid) > 0 ) {
7422292SN/A
7432292SN/A            DPRINTF(IEW,"[tid:%i]: LSQ oldest load: [sn:%i] \n",
7442292SN/A                    tid,ldstQueue.getLoadHeadSeqNum(tid));
7452292SN/A        }
7462292SN/A
7472292SN/A        if (ldstQueue.numStores(tid) > 0) {
7482292SN/A
7492292SN/A            DPRINTF(IEW,"[tid:%i]: LSQ oldest store: [sn:%i] \n",
7502292SN/A                    tid,ldstQueue.getStoreHeadSeqNum(tid));
7512292SN/A        }
7522292SN/A
7532292SN/A        ret_val = true;
7542292SN/A    } else if (ldstQueue.isStalled(tid)) {
7552292SN/A        DPRINTF(IEW,"[tid:%i]: Stall: LSQ stall detected.\n",tid);
7562292SN/A        ret_val = true;
7572292SN/A    }
7582292SN/A
7592292SN/A    return ret_val;
7602292SN/A}
7612292SN/A
7622292SN/Atemplate <class Impl>
7632292SN/Avoid
7642292SN/ADefaultIEW<Impl>::checkSignalsAndUpdate(unsigned tid)
7652292SN/A{
7662292SN/A    // Check if there's a squash signal, squash if there is
7672292SN/A    // Check stall signals, block if there is.
7682292SN/A    // If status was Blocked
7692292SN/A    //     if so then go to unblocking
7702292SN/A    // If status was Squashing
7712292SN/A    //     check if squashing is not high.  Switch to running this cycle.
7722292SN/A
7732292SN/A    readStallSignals(tid);
7742292SN/A
7752292SN/A    if (fromCommit->commitInfo[tid].squash) {
7762292SN/A        squash(tid);
7772292SN/A
7782292SN/A        if (dispatchStatus[tid] == Blocked ||
7792292SN/A            dispatchStatus[tid] == Unblocking) {
7802292SN/A            toRename->iewUnblock[tid] = true;
7812292SN/A            wroteToTimeBuffer = true;
7822292SN/A        }
7832292SN/A
7842292SN/A        dispatchStatus[tid] = Squashing;
7852292SN/A
7862292SN/A        fetchRedirect[tid] = false;
7872292SN/A        return;
7882292SN/A    }
7892292SN/A
7902292SN/A    if (fromCommit->commitInfo[tid].robSquashing) {
7912702Sktlim@umich.edu        DPRINTF(IEW, "[tid:%i]: ROB is still squashing.\n", tid);
7922292SN/A
7932292SN/A        dispatchStatus[tid] = Squashing;
7942292SN/A
7952702Sktlim@umich.edu        emptyRenameInsts(tid);
7962702Sktlim@umich.edu        wroteToTimeBuffer = true;
7972292SN/A        return;
7982292SN/A    }
7992292SN/A
8002292SN/A    if (checkStall(tid)) {
8012292SN/A        block(tid);
8022292SN/A        dispatchStatus[tid] = Blocked;
8032292SN/A        return;
8042292SN/A    }
8052292SN/A
8062292SN/A    if (dispatchStatus[tid] == Blocked) {
8072292SN/A        // Status from previous cycle was blocked, but there are no more stall
8082292SN/A        // conditions.  Switch over to unblocking.
8092292SN/A        DPRINTF(IEW, "[tid:%i]: Done blocking, switching to unblocking.\n",
8102292SN/A                tid);
8112292SN/A
8122292SN/A        dispatchStatus[tid] = Unblocking;
8132292SN/A
8142292SN/A        unblock(tid);
8152292SN/A
8162292SN/A        return;
8172292SN/A    }
8182292SN/A
8192292SN/A    if (dispatchStatus[tid] == Squashing) {
8202292SN/A        // Switch status to running if rename isn't being told to block or
8212292SN/A        // squash this cycle.
8222292SN/A        DPRINTF(IEW, "[tid:%i]: Done squashing, switching to running.\n",
8232292SN/A                tid);
8242292SN/A
8252292SN/A        dispatchStatus[tid] = Running;
8262292SN/A
8272292SN/A        return;
8282292SN/A    }
8292292SN/A}
8302292SN/A
8312292SN/Atemplate <class Impl>
8322292SN/Avoid
8332292SN/ADefaultIEW<Impl>::sortInsts()
8342292SN/A{
8352292SN/A    int insts_from_rename = fromRename->size;
8362326SN/A#ifdef DEBUG
8372292SN/A    for (int i = 0; i < numThreads; i++)
8382292SN/A        assert(insts[i].empty());
8392326SN/A#endif
8402292SN/A    for (int i = 0; i < insts_from_rename; ++i) {
8412292SN/A        insts[fromRename->insts[i]->threadNumber].push(fromRename->insts[i]);
8422292SN/A    }
8432292SN/A}
8442292SN/A
8452292SN/Atemplate <class Impl>
8462292SN/Avoid
8472702Sktlim@umich.eduDefaultIEW<Impl>::emptyRenameInsts(unsigned tid)
8482702Sktlim@umich.edu{
8494632Sgblack@eecs.umich.edu    DPRINTF(IEW, "[tid:%i]: Removing incoming rename instructions\n", tid);
8502935Sksewell@umich.edu
8512702Sktlim@umich.edu    while (!insts[tid].empty()) {
8522935Sksewell@umich.edu
8532702Sktlim@umich.edu        if (insts[tid].front()->isLoad() ||
8542702Sktlim@umich.edu            insts[tid].front()->isStore() ) {
8552702Sktlim@umich.edu            toRename->iewInfo[tid].dispatchedToLSQ++;
8562702Sktlim@umich.edu        }
8572702Sktlim@umich.edu
8582702Sktlim@umich.edu        toRename->iewInfo[tid].dispatched++;
8592702Sktlim@umich.edu
8602702Sktlim@umich.edu        insts[tid].pop();
8612702Sktlim@umich.edu    }
8622702Sktlim@umich.edu}
8632702Sktlim@umich.edu
8642702Sktlim@umich.edutemplate <class Impl>
8652702Sktlim@umich.eduvoid
8662292SN/ADefaultIEW<Impl>::wakeCPU()
8672292SN/A{
8682292SN/A    cpu->wakeCPU();
8692292SN/A}
8702292SN/A
8712292SN/Atemplate <class Impl>
8722292SN/Avoid
8732292SN/ADefaultIEW<Impl>::activityThisCycle()
8742292SN/A{
8752292SN/A    DPRINTF(Activity, "Activity this cycle.\n");
8762292SN/A    cpu->activityThisCycle();
8772292SN/A}
8782292SN/A
8792292SN/Atemplate <class Impl>
8802292SN/Ainline void
8812292SN/ADefaultIEW<Impl>::activateStage()
8822292SN/A{
8832292SN/A    DPRINTF(Activity, "Activating stage.\n");
8842733Sktlim@umich.edu    cpu->activateStage(O3CPU::IEWIdx);
8852292SN/A}
8862292SN/A
8872292SN/Atemplate <class Impl>
8882292SN/Ainline void
8892292SN/ADefaultIEW<Impl>::deactivateStage()
8902292SN/A{
8912292SN/A    DPRINTF(Activity, "Deactivating stage.\n");
8922733Sktlim@umich.edu    cpu->deactivateStage(O3CPU::IEWIdx);
8932292SN/A}
8942292SN/A
8952292SN/Atemplate<class Impl>
8962292SN/Avoid
8972292SN/ADefaultIEW<Impl>::dispatch(unsigned tid)
8982292SN/A{
8992292SN/A    // If status is Running or idle,
9002292SN/A    //     call dispatchInsts()
9012292SN/A    // If status is Unblocking,
9022292SN/A    //     buffer any instructions coming from rename
9032292SN/A    //     continue trying to empty skid buffer
9042292SN/A    //     check if stall conditions have passed
9052292SN/A
9062292SN/A    if (dispatchStatus[tid] == Blocked) {
9072292SN/A        ++iewBlockCycles;
9082292SN/A
9092292SN/A    } else if (dispatchStatus[tid] == Squashing) {
9102292SN/A        ++iewSquashCycles;
9112292SN/A    }
9122292SN/A
9132292SN/A    // Dispatch should try to dispatch as many instructions as its bandwidth
9142292SN/A    // will allow, as long as it is not currently blocked.
9152292SN/A    if (dispatchStatus[tid] == Running ||
9162292SN/A        dispatchStatus[tid] == Idle) {
9172292SN/A        DPRINTF(IEW, "[tid:%i] Not blocked, so attempting to run "
9182292SN/A                "dispatch.\n", tid);
9192292SN/A
9202292SN/A        dispatchInsts(tid);
9212292SN/A    } else if (dispatchStatus[tid] == Unblocking) {
9222292SN/A        // Make sure that the skid buffer has something in it if the
9232292SN/A        // status is unblocking.
9242292SN/A        assert(!skidsEmpty());
9252292SN/A
9262292SN/A        // If the status was unblocking, then instructions from the skid
9272292SN/A        // buffer were used.  Remove those instructions and handle
9282292SN/A        // the rest of unblocking.
9292292SN/A        dispatchInsts(tid);
9302292SN/A
9312292SN/A        ++iewUnblockCycles;
9322292SN/A
9335215Sgblack@eecs.umich.edu        if (validInstsFromRename()) {
9342292SN/A            // Add the current inputs to the skid buffer so they can be
9352292SN/A            // reprocessed when this stage unblocks.
9362292SN/A            skidInsert(tid);
9372292SN/A        }
9382292SN/A
9392292SN/A        unblock(tid);
9402292SN/A    }
9412292SN/A}
9422292SN/A
9432292SN/Atemplate <class Impl>
9442292SN/Avoid
9452292SN/ADefaultIEW<Impl>::dispatchInsts(unsigned tid)
9462292SN/A{
9472292SN/A    // Obtain instructions from skid buffer if unblocking, or queue from rename
9482292SN/A    // otherwise.
9492292SN/A    std::queue<DynInstPtr> &insts_to_dispatch =
9502292SN/A        dispatchStatus[tid] == Unblocking ?
9512292SN/A        skidBuffer[tid] : insts[tid];
9522292SN/A
9532292SN/A    int insts_to_add = insts_to_dispatch.size();
9542292SN/A
9552292SN/A    DynInstPtr inst;
9562292SN/A    bool add_to_iq = false;
9572292SN/A    int dis_num_inst = 0;
9582292SN/A
9592292SN/A    // Loop through the instructions, putting them in the instruction
9602292SN/A    // queue.
9612292SN/A    for ( ; dis_num_inst < insts_to_add &&
9622820Sktlim@umich.edu              dis_num_inst < dispatchWidth;
9632292SN/A          ++dis_num_inst)
9642292SN/A    {
9652292SN/A        inst = insts_to_dispatch.front();
9662292SN/A
9672292SN/A        if (dispatchStatus[tid] == Unblocking) {
9682292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: Examining instruction from skid "
9692292SN/A                    "buffer\n", tid);
9702292SN/A        }
9712292SN/A
9722292SN/A        // Make sure there's a valid instruction there.
9732292SN/A        assert(inst);
9742292SN/A
9752292SN/A        DPRINTF(IEW, "[tid:%i]: Issue: Adding PC %#x [sn:%lli] [tid:%i] to "
9762292SN/A                "IQ.\n",
9772292SN/A                tid, inst->readPC(), inst->seqNum, inst->threadNumber);
9782292SN/A
9792292SN/A        // Be sure to mark these instructions as ready so that the
9802292SN/A        // commit stage can go ahead and execute them, and mark
9812292SN/A        // them as issued so the IQ doesn't reprocess them.
9822292SN/A
9832292SN/A        // Check for squashed instructions.
9842292SN/A        if (inst->isSquashed()) {
9852292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: Squashed instruction encountered, "
9862292SN/A                    "not adding to IQ.\n", tid);
9872292SN/A
9882292SN/A            ++iewDispSquashedInsts;
9892292SN/A
9902292SN/A            insts_to_dispatch.pop();
9912292SN/A
9922292SN/A            //Tell Rename That An Instruction has been processed
9932292SN/A            if (inst->isLoad() || inst->isStore()) {
9942292SN/A                toRename->iewInfo[tid].dispatchedToLSQ++;
9952292SN/A            }
9962292SN/A            toRename->iewInfo[tid].dispatched++;
9972292SN/A
9982292SN/A            continue;
9992292SN/A        }
10002292SN/A
10012292SN/A        // Check for full conditions.
10022292SN/A        if (instQueue.isFull(tid)) {
10032292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: IQ has become full.\n", tid);
10042292SN/A
10052292SN/A            // Call function to start blocking.
10062292SN/A            block(tid);
10072292SN/A
10082292SN/A            // Set unblock to false. Special case where we are using
10092292SN/A            // skidbuffer (unblocking) instructions but then we still
10102292SN/A            // get full in the IQ.
10112292SN/A            toRename->iewUnblock[tid] = false;
10122292SN/A
10132292SN/A            ++iewIQFullEvents;
10142292SN/A            break;
10152292SN/A        } else if (ldstQueue.isFull(tid)) {
10162292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: LSQ has become full.\n",tid);
10172292SN/A
10182292SN/A            // Call function to start blocking.
10192292SN/A            block(tid);
10202292SN/A
10212292SN/A            // Set unblock to false. Special case where we are using
10222292SN/A            // skidbuffer (unblocking) instructions but then we still
10232292SN/A            // get full in the IQ.
10242292SN/A            toRename->iewUnblock[tid] = false;
10252292SN/A
10262292SN/A            ++iewLSQFullEvents;
10272292SN/A            break;
10282292SN/A        }
10292292SN/A
10302292SN/A        // Otherwise issue the instruction just fine.
10312292SN/A        if (inst->isLoad()) {
10322292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: Memory instruction "
10332292SN/A                    "encountered, adding to LSQ.\n", tid);
10342292SN/A
10352292SN/A            // Reserve a spot in the load store queue for this
10362292SN/A            // memory access.
10372292SN/A            ldstQueue.insertLoad(inst);
10382292SN/A
10392292SN/A            ++iewDispLoadInsts;
10402292SN/A
10412292SN/A            add_to_iq = true;
10422292SN/A
10432292SN/A            toRename->iewInfo[tid].dispatchedToLSQ++;
10442292SN/A        } else if (inst->isStore()) {
10452292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: Memory instruction "
10462292SN/A                    "encountered, adding to LSQ.\n", tid);
10472292SN/A
10482292SN/A            ldstQueue.insertStore(inst);
10492292SN/A
10502292SN/A            ++iewDispStoreInsts;
10512292SN/A
10522336SN/A            if (inst->isStoreConditional()) {
10532336SN/A                // Store conditionals need to be set as "canCommit()"
10542336SN/A                // so that commit can process them when they reach the
10552336SN/A                // head of commit.
10562348SN/A                // @todo: This is somewhat specific to Alpha.
10572292SN/A                inst->setCanCommit();
10582292SN/A                instQueue.insertNonSpec(inst);
10592292SN/A                add_to_iq = false;
10602292SN/A
10612292SN/A                ++iewDispNonSpecInsts;
10622292SN/A            } else {
10632292SN/A                add_to_iq = true;
10642292SN/A            }
10652292SN/A
10662292SN/A            toRename->iewInfo[tid].dispatchedToLSQ++;
10672292SN/A        } else if (inst->isMemBarrier() || inst->isWriteBarrier()) {
10682326SN/A            // Same as non-speculative stores.
10692292SN/A            inst->setCanCommit();
10702292SN/A            instQueue.insertBarrier(inst);
10712292SN/A            add_to_iq = false;
10722292SN/A        } else if (inst->isNop()) {
10732292SN/A            DPRINTF(IEW, "[tid:%i]: Issue: Nop instruction encountered, "
10742292SN/A                    "skipping.\n", tid);
10752292SN/A
10762292SN/A            inst->setIssued();
10772292SN/A            inst->setExecuted();
10782292SN/A            inst->setCanCommit();
10792292SN/A
10802326SN/A            instQueue.recordProducer(inst);
10812292SN/A
10822727Sktlim@umich.edu            iewExecutedNop[tid]++;
10832301SN/A
10842292SN/A            add_to_iq = false;
10852292SN/A        } else if (inst->isExecuted()) {
10862292SN/A            assert(0 && "Instruction shouldn't be executed.\n");
10872292SN/A            DPRINTF(IEW, "Issue: Executed branch encountered, "
10882292SN/A                    "skipping.\n");
10892292SN/A
10902292SN/A            inst->setIssued();
10912292SN/A            inst->setCanCommit();
10922292SN/A
10932326SN/A            instQueue.recordProducer(inst);
10942292SN/A
10952292SN/A            add_to_iq = false;
10962292SN/A        } else {
10972292SN/A            add_to_iq = true;
10982292SN/A        }
10994033Sktlim@umich.edu        if (inst->isNonSpeculative()) {
11004033Sktlim@umich.edu            DPRINTF(IEW, "[tid:%i]: Issue: Nonspeculative instruction "
11014033Sktlim@umich.edu                    "encountered, skipping.\n", tid);
11024033Sktlim@umich.edu
11034033Sktlim@umich.edu            // Same as non-speculative stores.
11044033Sktlim@umich.edu            inst->setCanCommit();
11054033Sktlim@umich.edu
11064033Sktlim@umich.edu            // Specifically insert it as nonspeculative.
11074033Sktlim@umich.edu            instQueue.insertNonSpec(inst);
11084033Sktlim@umich.edu
11094033Sktlim@umich.edu            ++iewDispNonSpecInsts;
11104033Sktlim@umich.edu
11114033Sktlim@umich.edu            add_to_iq = false;
11124033Sktlim@umich.edu        }
11132292SN/A
11142292SN/A        // If the instruction queue is not full, then add the
11152292SN/A        // instruction.
11162292SN/A        if (add_to_iq) {
11172292SN/A            instQueue.insert(inst);
11182292SN/A        }
11192292SN/A
11202292SN/A        insts_to_dispatch.pop();
11212292SN/A
11222292SN/A        toRename->iewInfo[tid].dispatched++;
11232292SN/A
11242292SN/A        ++iewDispatchedInsts;
11252292SN/A    }
11262292SN/A
11272292SN/A    if (!insts_to_dispatch.empty()) {
11282935Sksewell@umich.edu        DPRINTF(IEW,"[tid:%i]: Issue: Bandwidth Full. Blocking.\n", tid);
11292292SN/A        block(tid);
11302292SN/A        toRename->iewUnblock[tid] = false;
11312292SN/A    }
11322292SN/A
11332292SN/A    if (dispatchStatus[tid] == Idle && dis_num_inst) {
11342292SN/A        dispatchStatus[tid] = Running;
11352292SN/A
11362292SN/A        updatedQueues = true;
11372292SN/A    }
11382292SN/A
11392292SN/A    dis_num_inst = 0;
11402292SN/A}
11412292SN/A
11422292SN/Atemplate <class Impl>
11432292SN/Avoid
11442292SN/ADefaultIEW<Impl>::printAvailableInsts()
11452292SN/A{
11462292SN/A    int inst = 0;
11472292SN/A
11482980Sgblack@eecs.umich.edu    std::cout << "Available Instructions: ";
11492292SN/A
11502292SN/A    while (fromIssue->insts[inst]) {
11512292SN/A
11522980Sgblack@eecs.umich.edu        if (inst%3==0) std::cout << "\n\t";
11532292SN/A
11542980Sgblack@eecs.umich.edu        std::cout << "PC: " << fromIssue->insts[inst]->readPC()
11552292SN/A             << " TN: " << fromIssue->insts[inst]->threadNumber
11562292SN/A             << " SN: " << fromIssue->insts[inst]->seqNum << " | ";
11572292SN/A
11582292SN/A        inst++;
11592292SN/A
11602292SN/A    }
11612292SN/A
11622980Sgblack@eecs.umich.edu    std::cout << "\n";
11632292SN/A}
11642292SN/A
11652292SN/Atemplate <class Impl>
11662292SN/Avoid
11672292SN/ADefaultIEW<Impl>::executeInsts()
11682292SN/A{
11692292SN/A    wbNumInst = 0;
11702292SN/A    wbCycle = 0;
11712292SN/A
11723867Sbinkertn@umich.edu    std::list<unsigned>::iterator threads = activeThreads->begin();
11733867Sbinkertn@umich.edu    std::list<unsigned>::iterator end = activeThreads->end();
11742292SN/A
11753867Sbinkertn@umich.edu    while (threads != end) {
11762292SN/A        unsigned tid = *threads++;
11772292SN/A        fetchRedirect[tid] = false;
11782292SN/A    }
11792292SN/A
11802698Sktlim@umich.edu    // Uncomment this if you want to see all available instructions.
11812698Sktlim@umich.edu//    printAvailableInsts();
11821062SN/A
11831062SN/A    // Execute/writeback any instructions that are available.
11842333SN/A    int insts_to_execute = fromIssue->size;
11852292SN/A    int inst_num = 0;
11862333SN/A    for (; inst_num < insts_to_execute;
11872326SN/A          ++inst_num) {
11881062SN/A
11892292SN/A        DPRINTF(IEW, "Execute: Executing instructions from IQ.\n");
11901062SN/A
11912333SN/A        DynInstPtr inst = instQueue.getInstToExecute();
11921062SN/A
11932292SN/A        DPRINTF(IEW, "Execute: Processing PC %#x, [tid:%i] [sn:%i].\n",
11942292SN/A                inst->readPC(), inst->threadNumber,inst->seqNum);
11951062SN/A
11961062SN/A        // Check if the instruction is squashed; if so then skip it
11971062SN/A        if (inst->isSquashed()) {
11982292SN/A            DPRINTF(IEW, "Execute: Instruction was squashed.\n");
11991062SN/A
12001062SN/A            // Consider this instruction executed so that commit can go
12011062SN/A            // ahead and retire the instruction.
12021062SN/A            inst->setExecuted();
12031062SN/A
12042292SN/A            // Not sure if I should set this here or just let commit try to
12052292SN/A            // commit any squashed instructions.  I like the latter a bit more.
12062292SN/A            inst->setCanCommit();
12071062SN/A
12081062SN/A            ++iewExecSquashedInsts;
12091062SN/A
12102820Sktlim@umich.edu            decrWb(inst->seqNum);
12111062SN/A            continue;
12121062SN/A        }
12131062SN/A
12142292SN/A        Fault fault = NoFault;
12151062SN/A
12161062SN/A        // Execute instruction.
12171062SN/A        // Note that if the instruction faults, it will be handled
12181062SN/A        // at the commit stage.
12192292SN/A        if (inst->isMemRef() &&
12202292SN/A            (!inst->isDataPrefetch() && !inst->isInstPrefetch())) {
12212292SN/A            DPRINTF(IEW, "Execute: Calculating address for memory "
12221062SN/A                    "reference.\n");
12231062SN/A
12241062SN/A            // Tell the LDSTQ to execute this instruction (if it is a load).
12251062SN/A            if (inst->isLoad()) {
12262292SN/A                // Loads will mark themselves as executed, and their writeback
12272292SN/A                // event adds the instruction to the queue to commit
12282292SN/A                fault = ldstQueue.executeLoad(inst);
12291062SN/A            } else if (inst->isStore()) {
12302367SN/A                fault = ldstQueue.executeStore(inst);
12311062SN/A
12322292SN/A                // If the store had a fault then it may not have a mem req
12332367SN/A                if (!inst->isStoreConditional() && fault == NoFault) {
12342292SN/A                    inst->setExecuted();
12352292SN/A
12362292SN/A                    instToCommit(inst);
12372367SN/A                } else if (fault != NoFault) {
12382367SN/A                    // If the instruction faulted, then we need to send it along to commit
12392367SN/A                    // without the instruction completing.
12403732Sktlim@umich.edu                    DPRINTF(IEW, "Store has fault %s! [sn:%lli]\n",
12413732Sktlim@umich.edu                            fault->name(), inst->seqNum);
12422367SN/A
12432367SN/A                    // Send this instruction to commit, also make sure iew stage
12442367SN/A                    // realizes there is activity.
12452367SN/A                    inst->setExecuted();
12462367SN/A
12472367SN/A                    instToCommit(inst);
12482367SN/A                    activityThisCycle();
12492292SN/A                }
12502326SN/A
12512326SN/A                // Store conditionals will mark themselves as
12522326SN/A                // executed, and their writeback event will add the
12532326SN/A                // instruction to the queue to commit.
12541062SN/A            } else {
12552292SN/A                panic("Unexpected memory type!\n");
12561062SN/A            }
12571062SN/A
12581062SN/A        } else {
12591062SN/A            inst->execute();
12601062SN/A
12612292SN/A            inst->setExecuted();
12622292SN/A
12632292SN/A            instToCommit(inst);
12641062SN/A        }
12651062SN/A
12662301SN/A        updateExeInstStats(inst);
12671681SN/A
12682326SN/A        // Check if branch prediction was correct, if not then we need
12692326SN/A        // to tell commit to squash in flight instructions.  Only
12702326SN/A        // handle this if there hasn't already been something that
12712107SN/A        // redirects fetch in this group of instructions.
12721681SN/A
12732292SN/A        // This probably needs to prioritize the redirects if a different
12742292SN/A        // scheduler is used.  Currently the scheduler schedules the oldest
12752292SN/A        // instruction first, so the branch resolution order will be correct.
12762292SN/A        unsigned tid = inst->threadNumber;
12771062SN/A
12783732Sktlim@umich.edu        if (!fetchRedirect[tid] ||
12793732Sktlim@umich.edu            toCommit->squashedSeqNum[tid] > inst->seqNum) {
12801062SN/A
12811062SN/A            if (inst->mispredicted()) {
12822292SN/A                fetchRedirect[tid] = true;
12831062SN/A
12842292SN/A                DPRINTF(IEW, "Execute: Branch mispredict detected.\n");
12853969Sgblack@eecs.umich.edu                DPRINTF(IEW, "Predicted target was %#x, %#x.\n",
12863969Sgblack@eecs.umich.edu                        inst->readPredPC(), inst->readPredNPC());
12873969Sgblack@eecs.umich.edu                DPRINTF(IEW, "Execute: Redirecting fetch to PC: %#x,"
12883969Sgblack@eecs.umich.edu                        " NPC: %#x.\n", inst->readNextPC(),
12893969Sgblack@eecs.umich.edu                        inst->readNextNPC());
12901062SN/A                // If incorrect, then signal the ROB that it must be squashed.
12912292SN/A                squashDueToBranch(inst, tid);
12921062SN/A
12933795Sgblack@eecs.umich.edu                if (inst->readPredTaken()) {
12941062SN/A                    predictedTakenIncorrect++;
12952292SN/A                } else {
12962292SN/A                    predictedNotTakenIncorrect++;
12971062SN/A                }
12982292SN/A            } else if (ldstQueue.violation(tid)) {
12994033Sktlim@umich.edu                assert(inst->isMemRef());
13002326SN/A                // If there was an ordering violation, then get the
13012326SN/A                // DynInst that caused the violation.  Note that this
13022292SN/A                // clears the violation signal.
13032292SN/A                DynInstPtr violator;
13042292SN/A                violator = ldstQueue.getMemDepViolator(tid);
13051062SN/A
13062292SN/A                DPRINTF(IEW, "LDSTQ detected a violation.  Violator PC: "
13071062SN/A                        "%#x, inst PC: %#x.  Addr is: %#x.\n",
13081062SN/A                        violator->readPC(), inst->readPC(), inst->physEffAddr);
13091062SN/A
13103732Sktlim@umich.edu                // Ensure the violating instruction is older than
13113732Sktlim@umich.edu                // current squash
13124033Sktlim@umich.edu/*                if (fetchRedirect[tid] &&
13134033Sktlim@umich.edu                    violator->seqNum >= toCommit->squashedSeqNum[tid] + 1)
13143732Sktlim@umich.edu                    continue;
13154033Sktlim@umich.edu*/
13163732Sktlim@umich.edu                fetchRedirect[tid] = true;
13173732Sktlim@umich.edu
13181062SN/A                // Tell the instruction queue that a violation has occured.
13191062SN/A                instQueue.violation(inst, violator);
13201062SN/A
13211062SN/A                // Squash.
13222292SN/A                squashDueToMemOrder(inst,tid);
13231062SN/A
13241062SN/A                ++memOrderViolationEvents;
13252292SN/A            } else if (ldstQueue.loadBlocked(tid) &&
13262292SN/A                       !ldstQueue.isLoadBlockedHandled(tid)) {
13272292SN/A                fetchRedirect[tid] = true;
13282292SN/A
13292292SN/A                DPRINTF(IEW, "Load operation couldn't execute because the "
13302292SN/A                        "memory system is blocked.  PC: %#x [sn:%lli]\n",
13312292SN/A                        inst->readPC(), inst->seqNum);
13322292SN/A
13332292SN/A                squashDueToMemBlocked(inst, tid);
13341062SN/A            }
13354033Sktlim@umich.edu        } else {
13364033Sktlim@umich.edu            // Reset any state associated with redirects that will not
13374033Sktlim@umich.edu            // be used.
13384033Sktlim@umich.edu            if (ldstQueue.violation(tid)) {
13394033Sktlim@umich.edu                assert(inst->isMemRef());
13404033Sktlim@umich.edu
13414033Sktlim@umich.edu                DynInstPtr violator = ldstQueue.getMemDepViolator(tid);
13424033Sktlim@umich.edu
13434033Sktlim@umich.edu                DPRINTF(IEW, "LDSTQ detected a violation.  Violator PC: "
13444033Sktlim@umich.edu                        "%#x, inst PC: %#x.  Addr is: %#x.\n",
13454033Sktlim@umich.edu                        violator->readPC(), inst->readPC(), inst->physEffAddr);
13464033Sktlim@umich.edu                DPRINTF(IEW, "Violation will not be handled because "
13474033Sktlim@umich.edu                        "already squashing\n");
13484033Sktlim@umich.edu
13494033Sktlim@umich.edu                ++memOrderViolationEvents;
13504033Sktlim@umich.edu            }
13514033Sktlim@umich.edu            if (ldstQueue.loadBlocked(tid) &&
13524033Sktlim@umich.edu                !ldstQueue.isLoadBlockedHandled(tid)) {
13534033Sktlim@umich.edu                DPRINTF(IEW, "Load operation couldn't execute because the "
13544033Sktlim@umich.edu                        "memory system is blocked.  PC: %#x [sn:%lli]\n",
13554033Sktlim@umich.edu                        inst->readPC(), inst->seqNum);
13564033Sktlim@umich.edu                DPRINTF(IEW, "Blocked load will not be handled because "
13574033Sktlim@umich.edu                        "already squashing\n");
13584033Sktlim@umich.edu
13594033Sktlim@umich.edu                ldstQueue.setLoadBlockedHandled(tid);
13604033Sktlim@umich.edu            }
13614033Sktlim@umich.edu
13621062SN/A        }
13631062SN/A    }
13642292SN/A
13652348SN/A    // Update and record activity if we processed any instructions.
13662292SN/A    if (inst_num) {
13672292SN/A        if (exeStatus == Idle) {
13682292SN/A            exeStatus = Running;
13692292SN/A        }
13702292SN/A
13712292SN/A        updatedQueues = true;
13722292SN/A
13732292SN/A        cpu->activityThisCycle();
13742292SN/A    }
13752292SN/A
13762292SN/A    // Need to reset this in case a writeback event needs to write into the
13772292SN/A    // iew queue.  That way the writeback event will write into the correct
13782292SN/A    // spot in the queue.
13792292SN/A    wbNumInst = 0;
13802107SN/A}
13812107SN/A
13822292SN/Atemplate <class Impl>
13832107SN/Avoid
13842292SN/ADefaultIEW<Impl>::writebackInsts()
13852107SN/A{
13862326SN/A    // Loop through the head of the time buffer and wake any
13872326SN/A    // dependents.  These instructions are about to write back.  Also
13882326SN/A    // mark scoreboard that this instruction is finally complete.
13892326SN/A    // Either have IEW have direct access to scoreboard, or have this
13902326SN/A    // as part of backwards communication.
13913958Sgblack@eecs.umich.edu    for (int inst_num = 0; inst_num < wbWidth &&
13922292SN/A             toCommit->insts[inst_num]; inst_num++) {
13932107SN/A        DynInstPtr inst = toCommit->insts[inst_num];
13942301SN/A        int tid = inst->threadNumber;
13952107SN/A
13962698Sktlim@umich.edu        DPRINTF(IEW, "Sending instructions to commit, [sn:%lli] PC %#x.\n",
13972698Sktlim@umich.edu                inst->seqNum, inst->readPC());
13982107SN/A
13992301SN/A        iewInstsToCommit[tid]++;
14002301SN/A
14012292SN/A        // Some instructions will be sent to commit without having
14022292SN/A        // executed because they need commit to handle them.
14032292SN/A        // E.g. Uncached loads have not actually executed when they
14042292SN/A        // are first sent to commit.  Instead commit must tell the LSQ
14052292SN/A        // when it's ready to execute the uncached load.
14062367SN/A        if (!inst->isSquashed() && inst->isExecuted() && inst->getFault() == NoFault) {
14072301SN/A            int dependents = instQueue.wakeDependents(inst);
14082107SN/A
14092292SN/A            for (int i = 0; i < inst->numDestRegs(); i++) {
14102292SN/A                //mark as Ready
14112292SN/A                DPRINTF(IEW,"Setting Destination Register %i\n",
14122292SN/A                        inst->renamedDestRegIdx(i));
14132292SN/A                scoreboard->setReg(inst->renamedDestRegIdx(i));
14142107SN/A            }
14152301SN/A
14162348SN/A            if (dependents) {
14172348SN/A                producerInst[tid]++;
14182348SN/A                consumerInst[tid]+= dependents;
14192348SN/A            }
14202326SN/A            writebackCount[tid]++;
14212107SN/A        }
14222820Sktlim@umich.edu
14232820Sktlim@umich.edu        decrWb(inst->seqNum);
14242107SN/A    }
14251060SN/A}
14261060SN/A
14271681SN/Atemplate<class Impl>
14281060SN/Avoid
14292292SN/ADefaultIEW<Impl>::tick()
14301060SN/A{
14312292SN/A    wbNumInst = 0;
14322292SN/A    wbCycle = 0;
14331060SN/A
14342292SN/A    wroteToTimeBuffer = false;
14352292SN/A    updatedQueues = false;
14361060SN/A
14372292SN/A    sortInsts();
14381060SN/A
14392326SN/A    // Free function units marked as being freed this cycle.
14402326SN/A    fuPool->processFreeUnits();
14411062SN/A
14423867Sbinkertn@umich.edu    std::list<unsigned>::iterator threads = activeThreads->begin();
14433867Sbinkertn@umich.edu    std::list<unsigned>::iterator end = activeThreads->end();
14441060SN/A
14452326SN/A    // Check stall and squash signals, dispatch any instructions.
14463867Sbinkertn@umich.edu    while (threads != end) {
14473867Sbinkertn@umich.edu        unsigned tid = *threads++;
14481060SN/A
14492292SN/A        DPRINTF(IEW,"Issue: Processing [tid:%i]\n",tid);
14501060SN/A
14512292SN/A        checkSignalsAndUpdate(tid);
14522292SN/A        dispatch(tid);
14531060SN/A    }
14541060SN/A
14552292SN/A    if (exeStatus != Squashing) {
14562292SN/A        executeInsts();
14571060SN/A
14582292SN/A        writebackInsts();
14592292SN/A
14602292SN/A        // Have the instruction queue try to schedule any ready instructions.
14612292SN/A        // (In actuality, this scheduling is for instructions that will
14622292SN/A        // be executed next cycle.)
14632292SN/A        instQueue.scheduleReadyInsts();
14642292SN/A
14652292SN/A        // Also should advance its own time buffers if the stage ran.
14662292SN/A        // Not the best place for it, but this works (hopefully).
14672292SN/A        issueToExecQueue.advance();
14682292SN/A    }
14692292SN/A
14702292SN/A    bool broadcast_free_entries = false;
14712292SN/A
14722292SN/A    if (updatedQueues || exeStatus == Running || updateLSQNextCycle) {
14732292SN/A        exeStatus = Idle;
14742292SN/A        updateLSQNextCycle = false;
14752292SN/A
14762292SN/A        broadcast_free_entries = true;
14772292SN/A    }
14782292SN/A
14792292SN/A    // Writeback any stores using any leftover bandwidth.
14801681SN/A    ldstQueue.writebackStores();
14811681SN/A
14821061SN/A    // Check the committed load/store signals to see if there's a load
14831061SN/A    // or store to commit.  Also check if it's being told to execute a
14841061SN/A    // nonspeculative instruction.
14851681SN/A    // This is pretty inefficient...
14862292SN/A
14873867Sbinkertn@umich.edu    threads = activeThreads->begin();
14883867Sbinkertn@umich.edu    while (threads != end) {
14892292SN/A        unsigned tid = (*threads++);
14902292SN/A
14912292SN/A        DPRINTF(IEW,"Processing [tid:%i]\n",tid);
14922292SN/A
14932348SN/A        // Update structures based on instructions committed.
14942292SN/A        if (fromCommit->commitInfo[tid].doneSeqNum != 0 &&
14952292SN/A            !fromCommit->commitInfo[tid].squash &&
14962292SN/A            !fromCommit->commitInfo[tid].robSquashing) {
14972292SN/A
14982292SN/A            ldstQueue.commitStores(fromCommit->commitInfo[tid].doneSeqNum,tid);
14992292SN/A
15002292SN/A            ldstQueue.commitLoads(fromCommit->commitInfo[tid].doneSeqNum,tid);
15012292SN/A
15022292SN/A            updateLSQNextCycle = true;
15032292SN/A            instQueue.commit(fromCommit->commitInfo[tid].doneSeqNum,tid);
15042292SN/A        }
15052292SN/A
15062292SN/A        if (fromCommit->commitInfo[tid].nonSpecSeqNum != 0) {
15072292SN/A
15082292SN/A            //DPRINTF(IEW,"NonspecInst from thread %i",tid);
15092292SN/A            if (fromCommit->commitInfo[tid].uncached) {
15102292SN/A                instQueue.replayMemInst(fromCommit->commitInfo[tid].uncachedLoad);
15114033Sktlim@umich.edu                fromCommit->commitInfo[tid].uncachedLoad->setAtCommit();
15122292SN/A            } else {
15132292SN/A                instQueue.scheduleNonSpec(
15142292SN/A                    fromCommit->commitInfo[tid].nonSpecSeqNum);
15152292SN/A            }
15162292SN/A        }
15172292SN/A
15182292SN/A        if (broadcast_free_entries) {
15192292SN/A            toFetch->iewInfo[tid].iqCount =
15202292SN/A                instQueue.getCount(tid);
15212292SN/A            toFetch->iewInfo[tid].ldstqCount =
15222292SN/A                ldstQueue.getCount(tid);
15232292SN/A
15242292SN/A            toRename->iewInfo[tid].usedIQ = true;
15252292SN/A            toRename->iewInfo[tid].freeIQEntries =
15262292SN/A                instQueue.numFreeEntries();
15272292SN/A            toRename->iewInfo[tid].usedLSQ = true;
15282292SN/A            toRename->iewInfo[tid].freeLSQEntries =
15292292SN/A                ldstQueue.numFreeEntries(tid);
15302292SN/A
15312292SN/A            wroteToTimeBuffer = true;
15322292SN/A        }
15332292SN/A
15342292SN/A        DPRINTF(IEW, "[tid:%i], Dispatch dispatched %i instructions.\n",
15352292SN/A                tid, toRename->iewInfo[tid].dispatched);
15361061SN/A    }
15371061SN/A
15382292SN/A    DPRINTF(IEW, "IQ has %i free entries (Can schedule: %i).  "
15392292SN/A            "LSQ has %i free entries.\n",
15402292SN/A            instQueue.numFreeEntries(), instQueue.hasReadyInsts(),
15412292SN/A            ldstQueue.numFreeEntries());
15422292SN/A
15432292SN/A    updateStatus();
15442292SN/A
15452292SN/A    if (wroteToTimeBuffer) {
15462292SN/A        DPRINTF(Activity, "Activity this cycle.\n");
15472292SN/A        cpu->activityThisCycle();
15481061SN/A    }
15491060SN/A}
15501060SN/A
15512301SN/Atemplate <class Impl>
15521060SN/Avoid
15532301SN/ADefaultIEW<Impl>::updateExeInstStats(DynInstPtr &inst)
15541060SN/A{
15552301SN/A    int thread_number = inst->threadNumber;
15561060SN/A
15572301SN/A    //
15582301SN/A    //  Pick off the software prefetches
15592301SN/A    //
15602301SN/A#ifdef TARGET_ALPHA
15612301SN/A    if (inst->isDataPrefetch())
15622727Sktlim@umich.edu        iewExecutedSwp[thread_number]++;
15632301SN/A    else
15642727Sktlim@umich.edu        iewIewExecutedcutedInsts++;
15652301SN/A#else
15662669Sktlim@umich.edu    iewExecutedInsts++;
15672301SN/A#endif
15681060SN/A
15692301SN/A    //
15702301SN/A    //  Control operations
15712301SN/A    //
15722301SN/A    if (inst->isControl())
15732727Sktlim@umich.edu        iewExecutedBranches[thread_number]++;
15741060SN/A
15752301SN/A    //
15762301SN/A    //  Memory operations
15772301SN/A    //
15782301SN/A    if (inst->isMemRef()) {
15792727Sktlim@umich.edu        iewExecutedRefs[thread_number]++;
15801060SN/A
15812301SN/A        if (inst->isLoad()) {
15822301SN/A            iewExecLoadInsts[thread_number]++;
15831060SN/A        }
15841060SN/A    }
15851060SN/A}
1586