inst_queue_impl.hh revision 4762
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
292831Sksewell@umich.edu *          Korey Sewell
301689SN/A */
311689SN/A
322064SN/A#include <limits>
331060SN/A#include <vector>
341060SN/A
352292SN/A#include "cpu/o3/fu_pool.hh"
361717SN/A#include "cpu/o3/inst_queue.hh"
374762Snate@binkert.org#include "enums/OpClass.hh"
384762Snate@binkert.org#include "sim/core.hh"
391060SN/A
401061SN/Atemplate <class Impl>
412292SN/AInstructionQueue<Impl>::FUCompletion::FUCompletion(DynInstPtr &_inst,
422292SN/A                                                   int fu_idx,
432292SN/A                                                   InstructionQueue<Impl> *iq_ptr)
442292SN/A    : Event(&mainEventQueue, Stat_Event_Pri),
452326SN/A      inst(_inst), fuIdx(fu_idx), iqPtr(iq_ptr), freeFU(false)
461060SN/A{
472292SN/A    this->setFlags(Event::AutoDelete);
482292SN/A}
492292SN/A
502292SN/Atemplate <class Impl>
512292SN/Avoid
522292SN/AInstructionQueue<Impl>::FUCompletion::process()
532292SN/A{
542326SN/A    iqPtr->processFUCompletion(inst, freeFU ? fuIdx : -1);
552292SN/A    inst = NULL;
562292SN/A}
572292SN/A
582292SN/A
592292SN/Atemplate <class Impl>
602292SN/Aconst char *
612292SN/AInstructionQueue<Impl>::FUCompletion::description()
622292SN/A{
632292SN/A    return "Functional unit completion event";
642292SN/A}
652292SN/A
662292SN/Atemplate <class Impl>
674329Sktlim@umich.eduInstructionQueue<Impl>::InstructionQueue(O3CPU *cpu_ptr, IEW *iew_ptr,
684329Sktlim@umich.edu                                         Params *params)
694329Sktlim@umich.edu    : cpu(cpu_ptr),
704329Sktlim@umich.edu      iewStage(iew_ptr),
714329Sktlim@umich.edu      fuPool(params->fuPool),
722292SN/A      numEntries(params->numIQEntries),
732292SN/A      totalWidth(params->issueWidth),
742292SN/A      numPhysIntRegs(params->numPhysIntRegs),
752292SN/A      numPhysFloatRegs(params->numPhysFloatRegs),
762292SN/A      commitToIEWDelay(params->commitToIEWDelay)
772292SN/A{
782292SN/A    assert(fuPool);
792292SN/A
802307SN/A    switchedOut = false;
812307SN/A
822292SN/A    numThreads = params->numberOfThreads;
831060SN/A
841060SN/A    // Set the number of physical registers as the number of int + float
851060SN/A    numPhysRegs = numPhysIntRegs + numPhysFloatRegs;
861060SN/A
871060SN/A    //Create an entry for each physical register within the
881060SN/A    //dependency graph.
892326SN/A    dependGraph.resize(numPhysRegs);
901060SN/A
911060SN/A    // Resize the register scoreboard.
921060SN/A    regScoreboard.resize(numPhysRegs);
931060SN/A
942292SN/A    //Initialize Mem Dependence Units
952292SN/A    for (int i = 0; i < numThreads; i++) {
962292SN/A        memDepUnit[i].init(params,i);
972292SN/A        memDepUnit[i].setIQ(this);
981060SN/A    }
991060SN/A
1002307SN/A    resetState();
1012292SN/A
1022980Sgblack@eecs.umich.edu    std::string policy = params->smtIQPolicy;
1032292SN/A
1042292SN/A    //Convert string to lowercase
1052292SN/A    std::transform(policy.begin(), policy.end(), policy.begin(),
1062292SN/A                   (int(*)(int)) tolower);
1072292SN/A
1082292SN/A    //Figure out resource sharing policy
1092292SN/A    if (policy == "dynamic") {
1102292SN/A        iqPolicy = Dynamic;
1112292SN/A
1122292SN/A        //Set Max Entries to Total ROB Capacity
1132292SN/A        for (int i = 0; i < numThreads; i++) {
1142292SN/A            maxEntries[i] = numEntries;
1152292SN/A        }
1162292SN/A
1172292SN/A    } else if (policy == "partitioned") {
1182292SN/A        iqPolicy = Partitioned;
1192292SN/A
1202292SN/A        //@todo:make work if part_amt doesnt divide evenly.
1212292SN/A        int part_amt = numEntries / numThreads;
1222292SN/A
1232292SN/A        //Divide ROB up evenly
1242292SN/A        for (int i = 0; i < numThreads; i++) {
1252292SN/A            maxEntries[i] = part_amt;
1262292SN/A        }
1272292SN/A
1282831Sksewell@umich.edu        DPRINTF(IQ, "IQ sharing policy set to Partitioned:"
1292292SN/A                "%i entries per thread.\n",part_amt);
1302292SN/A    } else if (policy == "threshold") {
1312292SN/A        iqPolicy = Threshold;
1322292SN/A
1332292SN/A        double threshold =  (double)params->smtIQThreshold / 100;
1342292SN/A
1352292SN/A        int thresholdIQ = (int)((double)threshold * numEntries);
1362292SN/A
1372292SN/A        //Divide up by threshold amount
1382292SN/A        for (int i = 0; i < numThreads; i++) {
1392292SN/A            maxEntries[i] = thresholdIQ;
1402292SN/A        }
1412292SN/A
1422831Sksewell@umich.edu        DPRINTF(IQ, "IQ sharing policy set to Threshold:"
1432292SN/A                "%i entries per thread.\n",thresholdIQ);
1442292SN/A   } else {
1452292SN/A       assert(0 && "Invalid IQ Sharing Policy.Options Are:{Dynamic,"
1462292SN/A              "Partitioned, Threshold}");
1472292SN/A   }
1482292SN/A}
1492292SN/A
1502292SN/Atemplate <class Impl>
1512292SN/AInstructionQueue<Impl>::~InstructionQueue()
1522292SN/A{
1532326SN/A    dependGraph.reset();
1542348SN/A#ifdef DEBUG
1552326SN/A    cprintf("Nodes traversed: %i, removed: %i\n",
1562326SN/A            dependGraph.nodesTraversed, dependGraph.nodesRemoved);
1572348SN/A#endif
1582292SN/A}
1592292SN/A
1602292SN/Atemplate <class Impl>
1612292SN/Astd::string
1622292SN/AInstructionQueue<Impl>::name() const
1632292SN/A{
1642292SN/A    return cpu->name() + ".iq";
1651060SN/A}
1661060SN/A
1671061SN/Atemplate <class Impl>
1681060SN/Avoid
1691062SN/AInstructionQueue<Impl>::regStats()
1701062SN/A{
1712301SN/A    using namespace Stats;
1721062SN/A    iqInstsAdded
1731062SN/A        .name(name() + ".iqInstsAdded")
1741062SN/A        .desc("Number of instructions added to the IQ (excludes non-spec)")
1751062SN/A        .prereq(iqInstsAdded);
1761062SN/A
1771062SN/A    iqNonSpecInstsAdded
1781062SN/A        .name(name() + ".iqNonSpecInstsAdded")
1791062SN/A        .desc("Number of non-speculative instructions added to the IQ")
1801062SN/A        .prereq(iqNonSpecInstsAdded);
1811062SN/A
1822301SN/A    iqInstsIssued
1832301SN/A        .name(name() + ".iqInstsIssued")
1842301SN/A        .desc("Number of instructions issued")
1852301SN/A        .prereq(iqInstsIssued);
1861062SN/A
1871062SN/A    iqIntInstsIssued
1881062SN/A        .name(name() + ".iqIntInstsIssued")
1891062SN/A        .desc("Number of integer instructions issued")
1901062SN/A        .prereq(iqIntInstsIssued);
1911062SN/A
1921062SN/A    iqFloatInstsIssued
1931062SN/A        .name(name() + ".iqFloatInstsIssued")
1941062SN/A        .desc("Number of float instructions issued")
1951062SN/A        .prereq(iqFloatInstsIssued);
1961062SN/A
1971062SN/A    iqBranchInstsIssued
1981062SN/A        .name(name() + ".iqBranchInstsIssued")
1991062SN/A        .desc("Number of branch instructions issued")
2001062SN/A        .prereq(iqBranchInstsIssued);
2011062SN/A
2021062SN/A    iqMemInstsIssued
2031062SN/A        .name(name() + ".iqMemInstsIssued")
2041062SN/A        .desc("Number of memory instructions issued")
2051062SN/A        .prereq(iqMemInstsIssued);
2061062SN/A
2071062SN/A    iqMiscInstsIssued
2081062SN/A        .name(name() + ".iqMiscInstsIssued")
2091062SN/A        .desc("Number of miscellaneous instructions issued")
2101062SN/A        .prereq(iqMiscInstsIssued);
2111062SN/A
2121062SN/A    iqSquashedInstsIssued
2131062SN/A        .name(name() + ".iqSquashedInstsIssued")
2141062SN/A        .desc("Number of squashed instructions issued")
2151062SN/A        .prereq(iqSquashedInstsIssued);
2161062SN/A
2171062SN/A    iqSquashedInstsExamined
2181062SN/A        .name(name() + ".iqSquashedInstsExamined")
2191062SN/A        .desc("Number of squashed instructions iterated over during squash;"
2201062SN/A              " mainly for profiling")
2211062SN/A        .prereq(iqSquashedInstsExamined);
2221062SN/A
2231062SN/A    iqSquashedOperandsExamined
2241062SN/A        .name(name() + ".iqSquashedOperandsExamined")
2251062SN/A        .desc("Number of squashed operands that are examined and possibly "
2261062SN/A              "removed from graph")
2271062SN/A        .prereq(iqSquashedOperandsExamined);
2281062SN/A
2291062SN/A    iqSquashedNonSpecRemoved
2301062SN/A        .name(name() + ".iqSquashedNonSpecRemoved")
2311062SN/A        .desc("Number of squashed non-spec instructions that were removed")
2321062SN/A        .prereq(iqSquashedNonSpecRemoved);
2332361SN/A/*
2342326SN/A    queueResDist
2352301SN/A        .init(Num_OpClasses, 0, 99, 2)
2362301SN/A        .name(name() + ".IQ:residence:")
2372301SN/A        .desc("cycles from dispatch to issue")
2382301SN/A        .flags(total | pdf | cdf )
2392301SN/A        ;
2402301SN/A    for (int i = 0; i < Num_OpClasses; ++i) {
2412326SN/A        queueResDist.subname(i, opClassStrings[i]);
2422301SN/A    }
2432361SN/A*/
2442326SN/A    numIssuedDist
2452307SN/A        .init(0,totalWidth,1)
2462301SN/A        .name(name() + ".ISSUE:issued_per_cycle")
2472301SN/A        .desc("Number of insts issued each cycle")
2482307SN/A        .flags(pdf)
2492301SN/A        ;
2502301SN/A/*
2512301SN/A    dist_unissued
2522301SN/A        .init(Num_OpClasses+2)
2532301SN/A        .name(name() + ".ISSUE:unissued_cause")
2542301SN/A        .desc("Reason ready instruction not issued")
2552301SN/A        .flags(pdf | dist)
2562301SN/A        ;
2572301SN/A    for (int i=0; i < (Num_OpClasses + 2); ++i) {
2582301SN/A        dist_unissued.subname(i, unissued_names[i]);
2592301SN/A    }
2602301SN/A*/
2612326SN/A    statIssuedInstType
2624762Snate@binkert.org        .init(numThreads,Enums::Num_OpClass)
2632301SN/A        .name(name() + ".ISSUE:FU_type")
2642301SN/A        .desc("Type of FU issued")
2652301SN/A        .flags(total | pdf | dist)
2662301SN/A        ;
2674762Snate@binkert.org    statIssuedInstType.ysubnames(Enums::OpClassStrings);
2682301SN/A
2692301SN/A    //
2702301SN/A    //  How long did instructions for a particular FU type wait prior to issue
2712301SN/A    //
2722361SN/A/*
2732326SN/A    issueDelayDist
2742301SN/A        .init(Num_OpClasses,0,99,2)
2752301SN/A        .name(name() + ".ISSUE:")
2762301SN/A        .desc("cycles from operands ready to issue")
2772301SN/A        .flags(pdf | cdf)
2782301SN/A        ;
2792301SN/A
2802301SN/A    for (int i=0; i<Num_OpClasses; ++i) {
2812980Sgblack@eecs.umich.edu        std::stringstream subname;
2822301SN/A        subname << opClassStrings[i] << "_delay";
2832326SN/A        issueDelayDist.subname(i, subname.str());
2842301SN/A    }
2852361SN/A*/
2862326SN/A    issueRate
2872301SN/A        .name(name() + ".ISSUE:rate")
2882301SN/A        .desc("Inst issue rate")
2892301SN/A        .flags(total)
2902301SN/A        ;
2912326SN/A    issueRate = iqInstsIssued / cpu->numCycles;
2922727Sktlim@umich.edu
2932326SN/A    statFuBusy
2942301SN/A        .init(Num_OpClasses)
2952301SN/A        .name(name() + ".ISSUE:fu_full")
2962301SN/A        .desc("attempts to use FU when none available")
2972301SN/A        .flags(pdf | dist)
2982301SN/A        ;
2992301SN/A    for (int i=0; i < Num_OpClasses; ++i) {
3004762Snate@binkert.org        statFuBusy.subname(i, Enums::OpClassStrings[i]);
3012301SN/A    }
3022301SN/A
3032326SN/A    fuBusy
3042301SN/A        .init(numThreads)
3052301SN/A        .name(name() + ".ISSUE:fu_busy_cnt")
3062301SN/A        .desc("FU busy when requested")
3072301SN/A        .flags(total)
3082301SN/A        ;
3092301SN/A
3102326SN/A    fuBusyRate
3112301SN/A        .name(name() + ".ISSUE:fu_busy_rate")
3122301SN/A        .desc("FU busy rate (busy events/executed inst)")
3132301SN/A        .flags(total)
3142301SN/A        ;
3152326SN/A    fuBusyRate = fuBusy / iqInstsIssued;
3162301SN/A
3172292SN/A    for ( int i=0; i < numThreads; i++) {
3182292SN/A        // Tell mem dependence unit to reg stats as well.
3192292SN/A        memDepUnit[i].regStats();
3202292SN/A    }
3211062SN/A}
3221062SN/A
3231062SN/Atemplate <class Impl>
3241062SN/Avoid
3252307SN/AInstructionQueue<Impl>::resetState()
3261060SN/A{
3272307SN/A    //Initialize thread IQ counts
3282307SN/A    for (int i = 0; i <numThreads; i++) {
3292307SN/A        count[i] = 0;
3302307SN/A        instList[i].clear();
3312307SN/A    }
3321060SN/A
3332307SN/A    // Initialize the number of free IQ entries.
3342307SN/A    freeEntries = numEntries;
3352307SN/A
3362307SN/A    // Note that in actuality, the registers corresponding to the logical
3372307SN/A    // registers start off as ready.  However this doesn't matter for the
3382307SN/A    // IQ as the instruction should have been correctly told if those
3392307SN/A    // registers are ready in rename.  Thus it can all be initialized as
3402307SN/A    // unready.
3412307SN/A    for (int i = 0; i < numPhysRegs; ++i) {
3422307SN/A        regScoreboard[i] = false;
3432307SN/A    }
3442307SN/A
3452307SN/A    for (int i = 0; i < numThreads; ++i) {
3462307SN/A        squashedSeqNum[i] = 0;
3472307SN/A    }
3482307SN/A
3492307SN/A    for (int i = 0; i < Num_OpClasses; ++i) {
3502307SN/A        while (!readyInsts[i].empty())
3512307SN/A            readyInsts[i].pop();
3522307SN/A        queueOnList[i] = false;
3532307SN/A        readyIt[i] = listOrder.end();
3542307SN/A    }
3552307SN/A    nonSpecInsts.clear();
3562307SN/A    listOrder.clear();
3571060SN/A}
3581060SN/A
3591061SN/Atemplate <class Impl>
3601060SN/Avoid
3612980Sgblack@eecs.umich.eduInstructionQueue<Impl>::setActiveThreads(std::list<unsigned> *at_ptr)
3621060SN/A{
3632292SN/A    activeThreads = at_ptr;
3642064SN/A}
3652064SN/A
3662064SN/Atemplate <class Impl>
3672064SN/Avoid
3682292SN/AInstructionQueue<Impl>::setIssueToExecuteQueue(TimeBuffer<IssueStruct> *i2e_ptr)
3692064SN/A{
3704318Sktlim@umich.edu      issueToExecuteQueue = i2e_ptr;
3711060SN/A}
3721060SN/A
3731061SN/Atemplate <class Impl>
3741060SN/Avoid
3751060SN/AInstructionQueue<Impl>::setTimeBuffer(TimeBuffer<TimeStruct> *tb_ptr)
3761060SN/A{
3771060SN/A    timeBuffer = tb_ptr;
3781060SN/A
3791060SN/A    fromCommit = timeBuffer->getWire(-commitToIEWDelay);
3801060SN/A}
3811060SN/A
3821684SN/Atemplate <class Impl>
3832307SN/Avoid
3842307SN/AInstructionQueue<Impl>::switchOut()
3852307SN/A{
3862367SN/A/*
3872367SN/A    if (!instList[0].empty() || (numEntries != freeEntries) ||
3882367SN/A        !readyInsts[0].empty() || !nonSpecInsts.empty() || !listOrder.empty()) {
3892367SN/A        dumpInsts();
3902367SN/A//        assert(0);
3912367SN/A    }
3922367SN/A*/
3932307SN/A    resetState();
3942326SN/A    dependGraph.reset();
3952367SN/A    instsToExecute.clear();
3962307SN/A    switchedOut = true;
3972307SN/A    for (int i = 0; i < numThreads; ++i) {
3982307SN/A        memDepUnit[i].switchOut();
3992307SN/A    }
4002307SN/A}
4012307SN/A
4022307SN/Atemplate <class Impl>
4032307SN/Avoid
4042307SN/AInstructionQueue<Impl>::takeOverFrom()
4052307SN/A{
4062307SN/A    switchedOut = false;
4072307SN/A}
4082307SN/A
4092307SN/Atemplate <class Impl>
4102292SN/Aint
4112292SN/AInstructionQueue<Impl>::entryAmount(int num_threads)
4122292SN/A{
4132292SN/A    if (iqPolicy == Partitioned) {
4142292SN/A        return numEntries / num_threads;
4152292SN/A    } else {
4162292SN/A        return 0;
4172292SN/A    }
4182292SN/A}
4192292SN/A
4202292SN/A
4212292SN/Atemplate <class Impl>
4222292SN/Avoid
4232292SN/AInstructionQueue<Impl>::resetEntries()
4242292SN/A{
4252292SN/A    if (iqPolicy != Dynamic || numThreads > 1) {
4263867Sbinkertn@umich.edu        int active_threads = activeThreads->size();
4272292SN/A
4283867Sbinkertn@umich.edu        std::list<unsigned>::iterator threads = activeThreads->begin();
4293867Sbinkertn@umich.edu        std::list<unsigned>::iterator end = activeThreads->end();
4302292SN/A
4313867Sbinkertn@umich.edu        while (threads != end) {
4323867Sbinkertn@umich.edu            unsigned tid = *threads++;
4333867Sbinkertn@umich.edu
4342292SN/A            if (iqPolicy == Partitioned) {
4353867Sbinkertn@umich.edu                maxEntries[tid] = numEntries / active_threads;
4362292SN/A            } else if(iqPolicy == Threshold && active_threads == 1) {
4373867Sbinkertn@umich.edu                maxEntries[tid] = numEntries;
4382292SN/A            }
4392292SN/A        }
4402292SN/A    }
4412292SN/A}
4422292SN/A
4432292SN/Atemplate <class Impl>
4441684SN/Aunsigned
4451684SN/AInstructionQueue<Impl>::numFreeEntries()
4461684SN/A{
4471684SN/A    return freeEntries;
4481684SN/A}
4491684SN/A
4502292SN/Atemplate <class Impl>
4512292SN/Aunsigned
4522292SN/AInstructionQueue<Impl>::numFreeEntries(unsigned tid)
4532292SN/A{
4542292SN/A    return maxEntries[tid] - count[tid];
4552292SN/A}
4562292SN/A
4571060SN/A// Might want to do something more complex if it knows how many instructions
4581060SN/A// will be issued this cycle.
4591061SN/Atemplate <class Impl>
4601060SN/Abool
4611060SN/AInstructionQueue<Impl>::isFull()
4621060SN/A{
4631060SN/A    if (freeEntries == 0) {
4641060SN/A        return(true);
4651060SN/A    } else {
4661060SN/A        return(false);
4671060SN/A    }
4681060SN/A}
4691060SN/A
4701061SN/Atemplate <class Impl>
4712292SN/Abool
4722292SN/AInstructionQueue<Impl>::isFull(unsigned tid)
4732292SN/A{
4742292SN/A    if (numFreeEntries(tid) == 0) {
4752292SN/A        return(true);
4762292SN/A    } else {
4772292SN/A        return(false);
4782292SN/A    }
4792292SN/A}
4802292SN/A
4812292SN/Atemplate <class Impl>
4822292SN/Abool
4832292SN/AInstructionQueue<Impl>::hasReadyInsts()
4842292SN/A{
4852292SN/A    if (!listOrder.empty()) {
4862292SN/A        return true;
4872292SN/A    }
4882292SN/A
4892292SN/A    for (int i = 0; i < Num_OpClasses; ++i) {
4902292SN/A        if (!readyInsts[i].empty()) {
4912292SN/A            return true;
4922292SN/A        }
4932292SN/A    }
4942292SN/A
4952292SN/A    return false;
4962292SN/A}
4972292SN/A
4982292SN/Atemplate <class Impl>
4991060SN/Avoid
5001061SN/AInstructionQueue<Impl>::insert(DynInstPtr &new_inst)
5011060SN/A{
5021060SN/A    // Make sure the instruction is valid
5031060SN/A    assert(new_inst);
5041060SN/A
5052326SN/A    DPRINTF(IQ, "Adding instruction [sn:%lli] PC %#x to the IQ.\n",
5062326SN/A            new_inst->seqNum, new_inst->readPC());
5071060SN/A
5081060SN/A    assert(freeEntries != 0);
5091060SN/A
5102292SN/A    instList[new_inst->threadNumber].push_back(new_inst);
5111060SN/A
5122064SN/A    --freeEntries;
5131060SN/A
5142292SN/A    new_inst->setInIQ();
5151060SN/A
5161060SN/A    // Look through its source registers (physical regs), and mark any
5171060SN/A    // dependencies.
5181060SN/A    addToDependents(new_inst);
5191060SN/A
5201060SN/A    // Have this instruction set itself as the producer of its destination
5211060SN/A    // register(s).
5222326SN/A    addToProducers(new_inst);
5231060SN/A
5241061SN/A    if (new_inst->isMemRef()) {
5252292SN/A        memDepUnit[new_inst->threadNumber].insert(new_inst);
5261062SN/A    } else {
5271062SN/A        addIfReady(new_inst);
5281061SN/A    }
5291061SN/A
5301062SN/A    ++iqInstsAdded;
5311060SN/A
5322292SN/A    count[new_inst->threadNumber]++;
5332292SN/A
5341060SN/A    assert(freeEntries == (numEntries - countInsts()));
5351060SN/A}
5361060SN/A
5371061SN/Atemplate <class Impl>
5381061SN/Avoid
5392292SN/AInstructionQueue<Impl>::insertNonSpec(DynInstPtr &new_inst)
5401061SN/A{
5411061SN/A    // @todo: Clean up this code; can do it by setting inst as unable
5421061SN/A    // to issue, then calling normal insert on the inst.
5431061SN/A
5442292SN/A    assert(new_inst);
5451061SN/A
5462292SN/A    nonSpecInsts[new_inst->seqNum] = new_inst;
5471061SN/A
5482326SN/A    DPRINTF(IQ, "Adding non-speculative instruction [sn:%lli] PC %#x "
5492326SN/A            "to the IQ.\n",
5502326SN/A            new_inst->seqNum, new_inst->readPC());
5512064SN/A
5521061SN/A    assert(freeEntries != 0);
5531061SN/A
5542292SN/A    instList[new_inst->threadNumber].push_back(new_inst);
5551061SN/A
5562064SN/A    --freeEntries;
5571061SN/A
5582292SN/A    new_inst->setInIQ();
5591061SN/A
5601061SN/A    // Have this instruction set itself as the producer of its destination
5611061SN/A    // register(s).
5622326SN/A    addToProducers(new_inst);
5631061SN/A
5641061SN/A    // If it's a memory instruction, add it to the memory dependency
5651061SN/A    // unit.
5662292SN/A    if (new_inst->isMemRef()) {
5672292SN/A        memDepUnit[new_inst->threadNumber].insertNonSpec(new_inst);
5681061SN/A    }
5691062SN/A
5701062SN/A    ++iqNonSpecInstsAdded;
5712292SN/A
5722292SN/A    count[new_inst->threadNumber]++;
5732292SN/A
5742292SN/A    assert(freeEntries == (numEntries - countInsts()));
5751061SN/A}
5761061SN/A
5771061SN/Atemplate <class Impl>
5781060SN/Avoid
5792292SN/AInstructionQueue<Impl>::insertBarrier(DynInstPtr &barr_inst)
5801060SN/A{
5812292SN/A    memDepUnit[barr_inst->threadNumber].insertBarrier(barr_inst);
5821060SN/A
5832292SN/A    insertNonSpec(barr_inst);
5842292SN/A}
5851060SN/A
5862064SN/Atemplate <class Impl>
5872333SN/Atypename Impl::DynInstPtr
5882333SN/AInstructionQueue<Impl>::getInstToExecute()
5892333SN/A{
5902333SN/A    assert(!instsToExecute.empty());
5912333SN/A    DynInstPtr inst = instsToExecute.front();
5922333SN/A    instsToExecute.pop_front();
5932333SN/A    return inst;
5942333SN/A}
5951060SN/A
5962333SN/Atemplate <class Impl>
5972064SN/Avoid
5982292SN/AInstructionQueue<Impl>::addToOrderList(OpClass op_class)
5992292SN/A{
6002292SN/A    assert(!readyInsts[op_class].empty());
6012292SN/A
6022292SN/A    ListOrderEntry queue_entry;
6032292SN/A
6042292SN/A    queue_entry.queueType = op_class;
6052292SN/A
6062292SN/A    queue_entry.oldestInst = readyInsts[op_class].top()->seqNum;
6072292SN/A
6082292SN/A    ListOrderIt list_it = listOrder.begin();
6092292SN/A    ListOrderIt list_end_it = listOrder.end();
6102292SN/A
6112292SN/A    while (list_it != list_end_it) {
6122292SN/A        if ((*list_it).oldestInst > queue_entry.oldestInst) {
6132292SN/A            break;
6142292SN/A        }
6152292SN/A
6162292SN/A        list_it++;
6171060SN/A    }
6181060SN/A
6192292SN/A    readyIt[op_class] = listOrder.insert(list_it, queue_entry);
6202292SN/A    queueOnList[op_class] = true;
6212292SN/A}
6221060SN/A
6232292SN/Atemplate <class Impl>
6242292SN/Avoid
6252292SN/AInstructionQueue<Impl>::moveToYoungerInst(ListOrderIt list_order_it)
6262292SN/A{
6272292SN/A    // Get iterator of next item on the list
6282292SN/A    // Delete the original iterator
6292292SN/A    // Determine if the next item is either the end of the list or younger
6302292SN/A    // than the new instruction.  If so, then add in a new iterator right here.
6312292SN/A    // If not, then move along.
6322292SN/A    ListOrderEntry queue_entry;
6332292SN/A    OpClass op_class = (*list_order_it).queueType;
6342292SN/A    ListOrderIt next_it = list_order_it;
6352292SN/A
6362292SN/A    ++next_it;
6372292SN/A
6382292SN/A    queue_entry.queueType = op_class;
6392292SN/A    queue_entry.oldestInst = readyInsts[op_class].top()->seqNum;
6402292SN/A
6412292SN/A    while (next_it != listOrder.end() &&
6422292SN/A           (*next_it).oldestInst < queue_entry.oldestInst) {
6432292SN/A        ++next_it;
6441060SN/A    }
6451060SN/A
6462292SN/A    readyIt[op_class] = listOrder.insert(next_it, queue_entry);
6471060SN/A}
6481060SN/A
6492292SN/Atemplate <class Impl>
6502292SN/Avoid
6512292SN/AInstructionQueue<Impl>::processFUCompletion(DynInstPtr &inst, int fu_idx)
6522292SN/A{
6532367SN/A    DPRINTF(IQ, "Processing FU completion [sn:%lli]\n", inst->seqNum);
6542292SN/A    // The CPU could have been sleeping until this op completed (*extremely*
6552292SN/A    // long latency op).  Wake it if it was.  This may be overkill.
6562307SN/A    if (isSwitchedOut()) {
6572367SN/A        DPRINTF(IQ, "FU completion not processed, IQ is switched out [sn:%lli]\n",
6582367SN/A                inst->seqNum);
6592307SN/A        return;
6602307SN/A    }
6612307SN/A
6622292SN/A    iewStage->wakeCPU();
6632292SN/A
6642326SN/A    if (fu_idx > -1)
6652326SN/A        fuPool->freeUnitNextCycle(fu_idx);
6662292SN/A
6672326SN/A    // @todo: Ensure that these FU Completions happen at the beginning
6682326SN/A    // of a cycle, otherwise they could add too many instructions to
6692326SN/A    // the queue.
6702333SN/A    issueToExecuteQueue->access(0)->size++;
6712333SN/A    instsToExecute.push_back(inst);
6722292SN/A}
6732292SN/A
6741061SN/A// @todo: Figure out a better way to remove the squashed items from the
6751061SN/A// lists.  Checking the top item of each list to see if it's squashed
6761061SN/A// wastes time and forces jumps.
6771061SN/Atemplate <class Impl>
6781060SN/Avoid
6791060SN/AInstructionQueue<Impl>::scheduleReadyInsts()
6801060SN/A{
6812292SN/A    DPRINTF(IQ, "Attempting to schedule ready instructions from "
6822292SN/A            "the IQ.\n");
6831060SN/A
6841060SN/A    IssueStruct *i2e_info = issueToExecuteQueue->access(0);
6851060SN/A
6862292SN/A    // Have iterator to head of the list
6872292SN/A    // While I haven't exceeded bandwidth or reached the end of the list,
6882292SN/A    // Try to get a FU that can do what this op needs.
6892292SN/A    // If successful, change the oldestInst to the new top of the list, put
6902292SN/A    // the queue in the proper place in the list.
6912292SN/A    // Increment the iterator.
6922292SN/A    // This will avoid trying to schedule a certain op class if there are no
6932292SN/A    // FUs that handle it.
6942292SN/A    ListOrderIt order_it = listOrder.begin();
6952292SN/A    ListOrderIt order_end_it = listOrder.end();
6962292SN/A    int total_issued = 0;
6971060SN/A
6982333SN/A    while (total_issued < totalWidth &&
6992820Sktlim@umich.edu           iewStage->canIssue() &&
7002326SN/A           order_it != order_end_it) {
7012292SN/A        OpClass op_class = (*order_it).queueType;
7021060SN/A
7032292SN/A        assert(!readyInsts[op_class].empty());
7041060SN/A
7052292SN/A        DynInstPtr issuing_inst = readyInsts[op_class].top();
7061060SN/A
7072292SN/A        assert(issuing_inst->seqNum == (*order_it).oldestInst);
7081060SN/A
7092292SN/A        if (issuing_inst->isSquashed()) {
7102292SN/A            readyInsts[op_class].pop();
7111060SN/A
7122292SN/A            if (!readyInsts[op_class].empty()) {
7132292SN/A                moveToYoungerInst(order_it);
7142292SN/A            } else {
7152292SN/A                readyIt[op_class] = listOrder.end();
7162292SN/A                queueOnList[op_class] = false;
7171060SN/A            }
7181060SN/A
7192292SN/A            listOrder.erase(order_it++);
7201060SN/A
7212292SN/A            ++iqSquashedInstsIssued;
7222292SN/A
7232292SN/A            continue;
7241060SN/A        }
7251060SN/A
7262326SN/A        int idx = -2;
7272326SN/A        int op_latency = 1;
7282301SN/A        int tid = issuing_inst->threadNumber;
7291060SN/A
7302326SN/A        if (op_class != No_OpClass) {
7312326SN/A            idx = fuPool->getUnit(op_class);
7321060SN/A
7332326SN/A            if (idx > -1) {
7342326SN/A                op_latency = fuPool->getOpLatency(op_class);
7351060SN/A            }
7361060SN/A        }
7371060SN/A
7382348SN/A        // If we have an instruction that doesn't require a FU, or a
7392348SN/A        // valid FU, then schedule for execution.
7402326SN/A        if (idx == -2 || idx != -1) {
7412292SN/A            if (op_latency == 1) {
7422292SN/A                i2e_info->size++;
7432333SN/A                instsToExecute.push_back(issuing_inst);
7441060SN/A
7452326SN/A                // Add the FU onto the list of FU's to be freed next
7462326SN/A                // cycle if we used one.
7472326SN/A                if (idx >= 0)
7482326SN/A                    fuPool->freeUnitNextCycle(idx);
7492292SN/A            } else {
7502292SN/A                int issue_latency = fuPool->getIssueLatency(op_class);
7512326SN/A                // Generate completion event for the FU
7522326SN/A                FUCompletion *execution = new FUCompletion(issuing_inst,
7532326SN/A                                                           idx, this);
7541060SN/A
7552326SN/A                execution->schedule(curTick + cpu->cycles(issue_latency - 1));
7561060SN/A
7572326SN/A                // @todo: Enforce that issue_latency == 1 or op_latency
7582292SN/A                if (issue_latency > 1) {
7592348SN/A                    // If FU isn't pipelined, then it must be freed
7602348SN/A                    // upon the execution completing.
7612326SN/A                    execution->setFreeFU();
7622292SN/A                } else {
7632292SN/A                    // Add the FU onto the list of FU's to be freed next cycle.
7642326SN/A                    fuPool->freeUnitNextCycle(idx);
7652292SN/A                }
7661060SN/A            }
7671060SN/A
7682292SN/A            DPRINTF(IQ, "Thread %i: Issuing instruction PC %#x "
7692292SN/A                    "[sn:%lli]\n",
7702301SN/A                    tid, issuing_inst->readPC(),
7712292SN/A                    issuing_inst->seqNum);
7721060SN/A
7732292SN/A            readyInsts[op_class].pop();
7741061SN/A
7752292SN/A            if (!readyInsts[op_class].empty()) {
7762292SN/A                moveToYoungerInst(order_it);
7772292SN/A            } else {
7782292SN/A                readyIt[op_class] = listOrder.end();
7792292SN/A                queueOnList[op_class] = false;
7801060SN/A            }
7811060SN/A
7822064SN/A            issuing_inst->setIssued();
7832292SN/A            ++total_issued;
7842064SN/A
7852292SN/A            if (!issuing_inst->isMemRef()) {
7862292SN/A                // Memory instructions can not be freed from the IQ until they
7872292SN/A                // complete.
7882292SN/A                ++freeEntries;
7892301SN/A                count[tid]--;
7902731Sktlim@umich.edu                issuing_inst->clearInIQ();
7912292SN/A            } else {
7922301SN/A                memDepUnit[tid].issue(issuing_inst);
7932292SN/A            }
7942292SN/A
7952292SN/A            listOrder.erase(order_it++);
7962326SN/A            statIssuedInstType[tid][op_class]++;
7972820Sktlim@umich.edu            iewStage->incrWb(issuing_inst->seqNum);
7982292SN/A        } else {
7992326SN/A            statFuBusy[op_class]++;
8002326SN/A            fuBusy[tid]++;
8012292SN/A            ++order_it;
8021060SN/A        }
8031060SN/A    }
8041062SN/A
8052326SN/A    numIssuedDist.sample(total_issued);
8062326SN/A    iqInstsIssued+= total_issued;
8072307SN/A
8082348SN/A    // If we issued any instructions, tell the CPU we had activity.
8092292SN/A    if (total_issued) {
8102292SN/A        cpu->activityThisCycle();
8112292SN/A    } else {
8122292SN/A        DPRINTF(IQ, "Not able to schedule any instructions.\n");
8132292SN/A    }
8141060SN/A}
8151060SN/A
8161061SN/Atemplate <class Impl>
8171060SN/Avoid
8181061SN/AInstructionQueue<Impl>::scheduleNonSpec(const InstSeqNum &inst)
8191060SN/A{
8202292SN/A    DPRINTF(IQ, "Marking nonspeculative instruction [sn:%lli] as ready "
8212292SN/A            "to execute.\n", inst);
8221062SN/A
8232292SN/A    NonSpecMapIt inst_it = nonSpecInsts.find(inst);
8241060SN/A
8251061SN/A    assert(inst_it != nonSpecInsts.end());
8261060SN/A
8272292SN/A    unsigned tid = (*inst_it).second->threadNumber;
8282292SN/A
8294033Sktlim@umich.edu    (*inst_it).second->setAtCommit();
8304033Sktlim@umich.edu
8311061SN/A    (*inst_it).second->setCanIssue();
8321060SN/A
8331062SN/A    if (!(*inst_it).second->isMemRef()) {
8341062SN/A        addIfReady((*inst_it).second);
8351062SN/A    } else {
8362292SN/A        memDepUnit[tid].nonSpecInstReady((*inst_it).second);
8371062SN/A    }
8381060SN/A
8392292SN/A    (*inst_it).second = NULL;
8402292SN/A
8411061SN/A    nonSpecInsts.erase(inst_it);
8421060SN/A}
8431060SN/A
8441061SN/Atemplate <class Impl>
8451061SN/Avoid
8462292SN/AInstructionQueue<Impl>::commit(const InstSeqNum &inst, unsigned tid)
8472292SN/A{
8482292SN/A    DPRINTF(IQ, "[tid:%i]: Committing instructions older than [sn:%i]\n",
8492292SN/A            tid,inst);
8502292SN/A
8512292SN/A    ListIt iq_it = instList[tid].begin();
8522292SN/A
8532292SN/A    while (iq_it != instList[tid].end() &&
8542292SN/A           (*iq_it)->seqNum <= inst) {
8552292SN/A        ++iq_it;
8562292SN/A        instList[tid].pop_front();
8572292SN/A    }
8582292SN/A
8592292SN/A    assert(freeEntries == (numEntries - countInsts()));
8602292SN/A}
8612292SN/A
8622292SN/Atemplate <class Impl>
8632301SN/Aint
8641684SN/AInstructionQueue<Impl>::wakeDependents(DynInstPtr &completed_inst)
8651684SN/A{
8662301SN/A    int dependents = 0;
8672301SN/A
8682292SN/A    DPRINTF(IQ, "Waking dependents of completed instruction.\n");
8692292SN/A
8702292SN/A    assert(!completed_inst->isSquashed());
8711684SN/A
8721684SN/A    // Tell the memory dependence unit to wake any dependents on this
8732292SN/A    // instruction if it is a memory instruction.  Also complete the memory
8742326SN/A    // instruction at this point since we know it executed without issues.
8752326SN/A    // @todo: Might want to rename "completeMemInst" to something that
8762326SN/A    // indicates that it won't need to be replayed, and call this
8772326SN/A    // earlier.  Might not be a big deal.
8781684SN/A    if (completed_inst->isMemRef()) {
8792292SN/A        memDepUnit[completed_inst->threadNumber].wakeDependents(completed_inst);
8802292SN/A        completeMemInst(completed_inst);
8812292SN/A    } else if (completed_inst->isMemBarrier() ||
8822292SN/A               completed_inst->isWriteBarrier()) {
8832292SN/A        memDepUnit[completed_inst->threadNumber].completeBarrier(completed_inst);
8841684SN/A    }
8851684SN/A
8861684SN/A    for (int dest_reg_idx = 0;
8871684SN/A         dest_reg_idx < completed_inst->numDestRegs();
8881684SN/A         dest_reg_idx++)
8891684SN/A    {
8901684SN/A        PhysRegIndex dest_reg =
8911684SN/A            completed_inst->renamedDestRegIdx(dest_reg_idx);
8921684SN/A
8931684SN/A        // Special case of uniq or control registers.  They are not
8941684SN/A        // handled by the IQ and thus have no dependency graph entry.
8951684SN/A        // @todo Figure out a cleaner way to handle this.
8961684SN/A        if (dest_reg >= numPhysRegs) {
8971684SN/A            continue;
8981684SN/A        }
8991684SN/A
9002292SN/A        DPRINTF(IQ, "Waking any dependents on register %i.\n",
9011684SN/A                (int) dest_reg);
9021684SN/A
9032326SN/A        //Go through the dependency chain, marking the registers as
9042326SN/A        //ready within the waiting instructions.
9052326SN/A        DynInstPtr dep_inst = dependGraph.pop(dest_reg);
9061684SN/A
9072326SN/A        while (dep_inst) {
9082292SN/A            DPRINTF(IQ, "Waking up a dependent instruction, PC%#x.\n",
9092326SN/A                    dep_inst->readPC());
9101684SN/A
9111684SN/A            // Might want to give more information to the instruction
9122326SN/A            // so that it knows which of its source registers is
9132326SN/A            // ready.  However that would mean that the dependency
9142326SN/A            // graph entries would need to hold the src_reg_idx.
9152326SN/A            dep_inst->markSrcRegReady();
9161684SN/A
9172326SN/A            addIfReady(dep_inst);
9181684SN/A
9192326SN/A            dep_inst = dependGraph.pop(dest_reg);
9201684SN/A
9212301SN/A            ++dependents;
9221684SN/A        }
9231684SN/A
9242326SN/A        // Reset the head node now that all of its dependents have
9252326SN/A        // been woken up.
9262326SN/A        assert(dependGraph.empty(dest_reg));
9272326SN/A        dependGraph.clearInst(dest_reg);
9281684SN/A
9291684SN/A        // Mark the scoreboard as having that register ready.
9301684SN/A        regScoreboard[dest_reg] = true;
9311684SN/A    }
9322301SN/A    return dependents;
9332064SN/A}
9342064SN/A
9352064SN/Atemplate <class Impl>
9362064SN/Avoid
9372292SN/AInstructionQueue<Impl>::addReadyMemInst(DynInstPtr &ready_inst)
9382064SN/A{
9392292SN/A    OpClass op_class = ready_inst->opClass();
9402292SN/A
9412292SN/A    readyInsts[op_class].push(ready_inst);
9422292SN/A
9432326SN/A    // Will need to reorder the list if either a queue is not on the list,
9442326SN/A    // or it has an older instruction than last time.
9452326SN/A    if (!queueOnList[op_class]) {
9462326SN/A        addToOrderList(op_class);
9472326SN/A    } else if (readyInsts[op_class].top()->seqNum  <
9482326SN/A               (*readyIt[op_class]).oldestInst) {
9492326SN/A        listOrder.erase(readyIt[op_class]);
9502326SN/A        addToOrderList(op_class);
9512326SN/A    }
9522326SN/A
9532292SN/A    DPRINTF(IQ, "Instruction is ready to issue, putting it onto "
9542292SN/A            "the ready list, PC %#x opclass:%i [sn:%lli].\n",
9552292SN/A            ready_inst->readPC(), op_class, ready_inst->seqNum);
9562064SN/A}
9572064SN/A
9582064SN/Atemplate <class Impl>
9592064SN/Avoid
9602292SN/AInstructionQueue<Impl>::rescheduleMemInst(DynInstPtr &resched_inst)
9612064SN/A{
9624033Sktlim@umich.edu    DPRINTF(IQ, "Rescheduling mem inst [sn:%lli]\n", resched_inst->seqNum);
9634033Sktlim@umich.edu    resched_inst->clearCanIssue();
9642292SN/A    memDepUnit[resched_inst->threadNumber].reschedule(resched_inst);
9652064SN/A}
9662064SN/A
9672064SN/Atemplate <class Impl>
9682064SN/Avoid
9692292SN/AInstructionQueue<Impl>::replayMemInst(DynInstPtr &replay_inst)
9702064SN/A{
9712292SN/A    memDepUnit[replay_inst->threadNumber].replay(replay_inst);
9722292SN/A}
9732292SN/A
9742292SN/Atemplate <class Impl>
9752292SN/Avoid
9762292SN/AInstructionQueue<Impl>::completeMemInst(DynInstPtr &completed_inst)
9772292SN/A{
9782292SN/A    int tid = completed_inst->threadNumber;
9792292SN/A
9802292SN/A    DPRINTF(IQ, "Completing mem instruction PC:%#x [sn:%lli]\n",
9812292SN/A            completed_inst->readPC(), completed_inst->seqNum);
9822292SN/A
9832292SN/A    ++freeEntries;
9842292SN/A
9852292SN/A    completed_inst->memOpDone = true;
9862292SN/A
9872292SN/A    memDepUnit[tid].completed(completed_inst);
9882292SN/A    count[tid]--;
9891684SN/A}
9901684SN/A
9911684SN/Atemplate <class Impl>
9921684SN/Avoid
9931061SN/AInstructionQueue<Impl>::violation(DynInstPtr &store,
9941061SN/A                                  DynInstPtr &faulting_load)
9951061SN/A{
9962292SN/A    memDepUnit[store->threadNumber].violation(store, faulting_load);
9971061SN/A}
9981061SN/A
9991061SN/Atemplate <class Impl>
10001060SN/Avoid
10012292SN/AInstructionQueue<Impl>::squash(unsigned tid)
10021060SN/A{
10032292SN/A    DPRINTF(IQ, "[tid:%i]: Starting to squash instructions in "
10042292SN/A            "the IQ.\n", tid);
10051060SN/A
10061060SN/A    // Read instruction sequence number of last instruction out of the
10071060SN/A    // time buffer.
10082292SN/A    squashedSeqNum[tid] = fromCommit->commitInfo[tid].doneSeqNum;
10091060SN/A
10101681SN/A    // Call doSquash if there are insts in the IQ
10112292SN/A    if (count[tid] > 0) {
10122292SN/A        doSquash(tid);
10131681SN/A    }
10141061SN/A
10151061SN/A    // Also tell the memory dependence unit to squash.
10162292SN/A    memDepUnit[tid].squash(squashedSeqNum[tid], tid);
10171060SN/A}
10181060SN/A
10191061SN/Atemplate <class Impl>
10201061SN/Avoid
10212292SN/AInstructionQueue<Impl>::doSquash(unsigned tid)
10221061SN/A{
10232326SN/A    // Start at the tail.
10242326SN/A    ListIt squash_it = instList[tid].end();
10252326SN/A    --squash_it;
10261061SN/A
10272292SN/A    DPRINTF(IQ, "[tid:%i]: Squashing until sequence number %i!\n",
10282292SN/A            tid, squashedSeqNum[tid]);
10291061SN/A
10301061SN/A    // Squash any instructions younger than the squashed sequence number
10311061SN/A    // given.
10322326SN/A    while (squash_it != instList[tid].end() &&
10332326SN/A           (*squash_it)->seqNum > squashedSeqNum[tid]) {
10342292SN/A
10352326SN/A        DynInstPtr squashed_inst = (*squash_it);
10361061SN/A
10371061SN/A        // Only handle the instruction if it actually is in the IQ and
10381061SN/A        // hasn't already been squashed in the IQ.
10392292SN/A        if (squashed_inst->threadNumber != tid ||
10402292SN/A            squashed_inst->isSquashedInIQ()) {
10412326SN/A            --squash_it;
10422292SN/A            continue;
10432292SN/A        }
10442292SN/A
10452292SN/A        if (!squashed_inst->isIssued() ||
10462292SN/A            (squashed_inst->isMemRef() &&
10472292SN/A             !squashed_inst->memOpDone)) {
10481062SN/A
10492367SN/A            DPRINTF(IQ, "[tid:%i]: Instruction [sn:%lli] PC %#x "
10502367SN/A                    "squashed.\n",
10512367SN/A                    tid, squashed_inst->seqNum, squashed_inst->readPC());
10522367SN/A
10531061SN/A            // Remove the instruction from the dependency list.
10542292SN/A            if (!squashed_inst->isNonSpeculative() &&
10552336SN/A                !squashed_inst->isStoreConditional() &&
10562292SN/A                !squashed_inst->isMemBarrier() &&
10572292SN/A                !squashed_inst->isWriteBarrier()) {
10581061SN/A
10591061SN/A                for (int src_reg_idx = 0;
10601681SN/A                     src_reg_idx < squashed_inst->numSrcRegs();
10611061SN/A                     src_reg_idx++)
10621061SN/A                {
10631061SN/A                    PhysRegIndex src_reg =
10641061SN/A                        squashed_inst->renamedSrcRegIdx(src_reg_idx);
10651061SN/A
10662326SN/A                    // Only remove it from the dependency graph if it
10672326SN/A                    // was placed there in the first place.
10682326SN/A
10692326SN/A                    // Instead of doing a linked list traversal, we
10702326SN/A                    // can just remove these squashed instructions
10712326SN/A                    // either at issue time, or when the register is
10722326SN/A                    // overwritten.  The only downside to this is it
10732326SN/A                    // leaves more room for error.
10742292SN/A
10751061SN/A                    if (!squashed_inst->isReadySrcRegIdx(src_reg_idx) &&
10761061SN/A                        src_reg < numPhysRegs) {
10772326SN/A                        dependGraph.remove(src_reg, squashed_inst);
10781061SN/A                    }
10791062SN/A
10802292SN/A
10811062SN/A                    ++iqSquashedOperandsExamined;
10821061SN/A                }
10834033Sktlim@umich.edu            } else if (!squashed_inst->isStoreConditional() ||
10844033Sktlim@umich.edu                       !squashed_inst->isCompleted()) {
10852292SN/A                NonSpecMapIt ns_inst_it =
10862292SN/A                    nonSpecInsts.find(squashed_inst->seqNum);
10872292SN/A                assert(ns_inst_it != nonSpecInsts.end());
10884033Sktlim@umich.edu                if (ns_inst_it == nonSpecInsts.end()) {
10894033Sktlim@umich.edu                    assert(squashed_inst->getFault() != NoFault);
10904033Sktlim@umich.edu                } else {
10911062SN/A
10924033Sktlim@umich.edu                    (*ns_inst_it).second = NULL;
10931681SN/A
10944033Sktlim@umich.edu                    nonSpecInsts.erase(ns_inst_it);
10951062SN/A
10964033Sktlim@umich.edu                    ++iqSquashedNonSpecRemoved;
10974033Sktlim@umich.edu                }
10981061SN/A            }
10991061SN/A
11001061SN/A            // Might want to also clear out the head of the dependency graph.
11011061SN/A
11021061SN/A            // Mark it as squashed within the IQ.
11031061SN/A            squashed_inst->setSquashedInIQ();
11041061SN/A
11052292SN/A            // @todo: Remove this hack where several statuses are set so the
11062292SN/A            // inst will flow through the rest of the pipeline.
11071681SN/A            squashed_inst->setIssued();
11081681SN/A            squashed_inst->setCanCommit();
11092731Sktlim@umich.edu            squashed_inst->clearInIQ();
11102292SN/A
11112292SN/A            //Update Thread IQ Count
11122292SN/A            count[squashed_inst->threadNumber]--;
11131681SN/A
11141681SN/A            ++freeEntries;
11151061SN/A        }
11161061SN/A
11172326SN/A        instList[tid].erase(squash_it--);
11181062SN/A        ++iqSquashedInstsExamined;
11191061SN/A    }
11201060SN/A}
11211060SN/A
11221061SN/Atemplate <class Impl>
11231060SN/Abool
11241061SN/AInstructionQueue<Impl>::addToDependents(DynInstPtr &new_inst)
11251060SN/A{
11261060SN/A    // Loop through the instruction's source registers, adding
11271060SN/A    // them to the dependency list if they are not ready.
11281060SN/A    int8_t total_src_regs = new_inst->numSrcRegs();
11291060SN/A    bool return_val = false;
11301060SN/A
11311060SN/A    for (int src_reg_idx = 0;
11321060SN/A         src_reg_idx < total_src_regs;
11331060SN/A         src_reg_idx++)
11341060SN/A    {
11351060SN/A        // Only add it to the dependency graph if it's not ready.
11361060SN/A        if (!new_inst->isReadySrcRegIdx(src_reg_idx)) {
11371060SN/A            PhysRegIndex src_reg = new_inst->renamedSrcRegIdx(src_reg_idx);
11381060SN/A
11391060SN/A            // Check the IQ's scoreboard to make sure the register
11401060SN/A            // hasn't become ready while the instruction was in flight
11411060SN/A            // between stages.  Only if it really isn't ready should
11421060SN/A            // it be added to the dependency graph.
11431061SN/A            if (src_reg >= numPhysRegs) {
11441061SN/A                continue;
11451061SN/A            } else if (regScoreboard[src_reg] == false) {
11462292SN/A                DPRINTF(IQ, "Instruction PC %#x has src reg %i that "
11471060SN/A                        "is being added to the dependency chain.\n",
11481060SN/A                        new_inst->readPC(), src_reg);
11491060SN/A
11502326SN/A                dependGraph.insert(src_reg, new_inst);
11511060SN/A
11521060SN/A                // Change the return value to indicate that something
11531060SN/A                // was added to the dependency graph.
11541060SN/A                return_val = true;
11551060SN/A            } else {
11562292SN/A                DPRINTF(IQ, "Instruction PC %#x has src reg %i that "
11571060SN/A                        "became ready before it reached the IQ.\n",
11581060SN/A                        new_inst->readPC(), src_reg);
11591060SN/A                // Mark a register ready within the instruction.
11602326SN/A                new_inst->markSrcRegReady(src_reg_idx);
11611060SN/A            }
11621060SN/A        }
11631060SN/A    }
11641060SN/A
11651060SN/A    return return_val;
11661060SN/A}
11671060SN/A
11681061SN/Atemplate <class Impl>
11691060SN/Avoid
11702326SN/AInstructionQueue<Impl>::addToProducers(DynInstPtr &new_inst)
11711060SN/A{
11722326SN/A    // Nothing really needs to be marked when an instruction becomes
11732326SN/A    // the producer of a register's value, but for convenience a ptr
11742326SN/A    // to the producing instruction will be placed in the head node of
11752326SN/A    // the dependency links.
11761060SN/A    int8_t total_dest_regs = new_inst->numDestRegs();
11771060SN/A
11781060SN/A    for (int dest_reg_idx = 0;
11791060SN/A         dest_reg_idx < total_dest_regs;
11801060SN/A         dest_reg_idx++)
11811060SN/A    {
11821061SN/A        PhysRegIndex dest_reg = new_inst->renamedDestRegIdx(dest_reg_idx);
11831061SN/A
11841061SN/A        // Instructions that use the misc regs will have a reg number
11851061SN/A        // higher than the normal physical registers.  In this case these
11861061SN/A        // registers are not renamed, and there is no need to track
11871061SN/A        // dependencies as these instructions must be executed at commit.
11881061SN/A        if (dest_reg >= numPhysRegs) {
11891061SN/A            continue;
11901060SN/A        }
11911060SN/A
11922326SN/A        if (!dependGraph.empty(dest_reg)) {
11932326SN/A            dependGraph.dump();
11942292SN/A            panic("Dependency graph %i not empty!", dest_reg);
11952064SN/A        }
11961062SN/A
11972326SN/A        dependGraph.setInst(dest_reg, new_inst);
11981062SN/A
11991060SN/A        // Mark the scoreboard to say it's not yet ready.
12001060SN/A        regScoreboard[dest_reg] = false;
12011060SN/A    }
12021060SN/A}
12031060SN/A
12041061SN/Atemplate <class Impl>
12051060SN/Avoid
12061061SN/AInstructionQueue<Impl>::addIfReady(DynInstPtr &inst)
12071060SN/A{
12082326SN/A    // If the instruction now has all of its source registers
12091060SN/A    // available, then add it to the list of ready instructions.
12101060SN/A    if (inst->readyToIssue()) {
12111061SN/A
12121060SN/A        //Add the instruction to the proper ready list.
12132292SN/A        if (inst->isMemRef()) {
12141061SN/A
12152292SN/A            DPRINTF(IQ, "Checking if memory instruction can issue.\n");
12161061SN/A
12171062SN/A            // Message to the mem dependence unit that this instruction has
12181062SN/A            // its registers ready.
12192292SN/A            memDepUnit[inst->threadNumber].regsReady(inst);
12201062SN/A
12212292SN/A            return;
12222292SN/A        }
12231062SN/A
12242292SN/A        OpClass op_class = inst->opClass();
12251061SN/A
12262292SN/A        DPRINTF(IQ, "Instruction is ready to issue, putting it onto "
12272292SN/A                "the ready list, PC %#x opclass:%i [sn:%lli].\n",
12282292SN/A                inst->readPC(), op_class, inst->seqNum);
12291061SN/A
12302292SN/A        readyInsts[op_class].push(inst);
12311061SN/A
12322326SN/A        // Will need to reorder the list if either a queue is not on the list,
12332326SN/A        // or it has an older instruction than last time.
12342326SN/A        if (!queueOnList[op_class]) {
12352326SN/A            addToOrderList(op_class);
12362326SN/A        } else if (readyInsts[op_class].top()->seqNum  <
12372326SN/A                   (*readyIt[op_class]).oldestInst) {
12382326SN/A            listOrder.erase(readyIt[op_class]);
12392326SN/A            addToOrderList(op_class);
12401060SN/A        }
12411060SN/A    }
12421060SN/A}
12431060SN/A
12441061SN/Atemplate <class Impl>
12451061SN/Aint
12461061SN/AInstructionQueue<Impl>::countInsts()
12471061SN/A{
12482698Sktlim@umich.edu#if 0
12492292SN/A    //ksewell:This works but definitely could use a cleaner write
12502292SN/A    //with a more intuitive way of counting. Right now it's
12512292SN/A    //just brute force ....
12522698Sktlim@umich.edu    // Change the #if if you want to use this method.
12531061SN/A    int total_insts = 0;
12541061SN/A
12552292SN/A    for (int i = 0; i < numThreads; ++i) {
12562292SN/A        ListIt count_it = instList[i].begin();
12571681SN/A
12582292SN/A        while (count_it != instList[i].end()) {
12592292SN/A            if (!(*count_it)->isSquashed() && !(*count_it)->isSquashedInIQ()) {
12602292SN/A                if (!(*count_it)->isIssued()) {
12612292SN/A                    ++total_insts;
12622292SN/A                } else if ((*count_it)->isMemRef() &&
12632292SN/A                           !(*count_it)->memOpDone) {
12642292SN/A                    // Loads that have not been marked as executed still count
12652292SN/A                    // towards the total instructions.
12662292SN/A                    ++total_insts;
12672292SN/A                }
12682292SN/A            }
12692292SN/A
12702292SN/A            ++count_it;
12711061SN/A        }
12721061SN/A    }
12731061SN/A
12741061SN/A    return total_insts;
12752292SN/A#else
12762292SN/A    return numEntries - freeEntries;
12772292SN/A#endif
12781681SN/A}
12791681SN/A
12801681SN/Atemplate <class Impl>
12811681SN/Avoid
12821061SN/AInstructionQueue<Impl>::dumpLists()
12831061SN/A{
12842292SN/A    for (int i = 0; i < Num_OpClasses; ++i) {
12852292SN/A        cprintf("Ready list %i size: %i\n", i, readyInsts[i].size());
12861061SN/A
12872292SN/A        cprintf("\n");
12882292SN/A    }
12891061SN/A
12901061SN/A    cprintf("Non speculative list size: %i\n", nonSpecInsts.size());
12911061SN/A
12922292SN/A    NonSpecMapIt non_spec_it = nonSpecInsts.begin();
12932292SN/A    NonSpecMapIt non_spec_end_it = nonSpecInsts.end();
12941061SN/A
12951061SN/A    cprintf("Non speculative list: ");
12961061SN/A
12972292SN/A    while (non_spec_it != non_spec_end_it) {
12982292SN/A        cprintf("%#x [sn:%lli]", (*non_spec_it).second->readPC(),
12992292SN/A                (*non_spec_it).second->seqNum);
13001061SN/A        ++non_spec_it;
13011061SN/A    }
13021061SN/A
13031061SN/A    cprintf("\n");
13041061SN/A
13052292SN/A    ListOrderIt list_order_it = listOrder.begin();
13062292SN/A    ListOrderIt list_order_end_it = listOrder.end();
13072292SN/A    int i = 1;
13082292SN/A
13092292SN/A    cprintf("List order: ");
13102292SN/A
13112292SN/A    while (list_order_it != list_order_end_it) {
13122292SN/A        cprintf("%i OpClass:%i [sn:%lli] ", i, (*list_order_it).queueType,
13132292SN/A                (*list_order_it).oldestInst);
13142292SN/A
13152292SN/A        ++list_order_it;
13162292SN/A        ++i;
13172292SN/A    }
13182292SN/A
13192292SN/A    cprintf("\n");
13201061SN/A}
13212292SN/A
13222292SN/A
13232292SN/Atemplate <class Impl>
13242292SN/Avoid
13252292SN/AInstructionQueue<Impl>::dumpInsts()
13262292SN/A{
13272292SN/A    for (int i = 0; i < numThreads; ++i) {
13282292SN/A        int num = 0;
13292292SN/A        int valid_num = 0;
13302292SN/A        ListIt inst_list_it = instList[i].begin();
13312292SN/A
13322292SN/A        while (inst_list_it != instList[i].end())
13332292SN/A        {
13342292SN/A            cprintf("Instruction:%i\n",
13352292SN/A                    num);
13362292SN/A            if (!(*inst_list_it)->isSquashed()) {
13372292SN/A                if (!(*inst_list_it)->isIssued()) {
13382292SN/A                    ++valid_num;
13392292SN/A                    cprintf("Count:%i\n", valid_num);
13402292SN/A                } else if ((*inst_list_it)->isMemRef() &&
13412292SN/A                           !(*inst_list_it)->memOpDone) {
13422326SN/A                    // Loads that have not been marked as executed
13432326SN/A                    // still count towards the total instructions.
13442292SN/A                    ++valid_num;
13452292SN/A                    cprintf("Count:%i\n", valid_num);
13462292SN/A                }
13472292SN/A            }
13482292SN/A
13492292SN/A            cprintf("PC:%#x\n[sn:%lli]\n[tid:%i]\n"
13502292SN/A                    "Issued:%i\nSquashed:%i\n",
13512292SN/A                    (*inst_list_it)->readPC(),
13522292SN/A                    (*inst_list_it)->seqNum,
13532292SN/A                    (*inst_list_it)->threadNumber,
13542292SN/A                    (*inst_list_it)->isIssued(),
13552292SN/A                    (*inst_list_it)->isSquashed());
13562292SN/A
13572292SN/A            if ((*inst_list_it)->isMemRef()) {
13582292SN/A                cprintf("MemOpDone:%i\n", (*inst_list_it)->memOpDone);
13592292SN/A            }
13602292SN/A
13612292SN/A            cprintf("\n");
13622292SN/A
13632292SN/A            inst_list_it++;
13642292SN/A            ++num;
13652292SN/A        }
13662292SN/A    }
13672348SN/A
13682348SN/A    cprintf("Insts to Execute list:\n");
13692348SN/A
13702348SN/A    int num = 0;
13712348SN/A    int valid_num = 0;
13722348SN/A    ListIt inst_list_it = instsToExecute.begin();
13732348SN/A
13742348SN/A    while (inst_list_it != instsToExecute.end())
13752348SN/A    {
13762348SN/A        cprintf("Instruction:%i\n",
13772348SN/A                num);
13782348SN/A        if (!(*inst_list_it)->isSquashed()) {
13792348SN/A            if (!(*inst_list_it)->isIssued()) {
13802348SN/A                ++valid_num;
13812348SN/A                cprintf("Count:%i\n", valid_num);
13822348SN/A            } else if ((*inst_list_it)->isMemRef() &&
13832348SN/A                       !(*inst_list_it)->memOpDone) {
13842348SN/A                // Loads that have not been marked as executed
13852348SN/A                // still count towards the total instructions.
13862348SN/A                ++valid_num;
13872348SN/A                cprintf("Count:%i\n", valid_num);
13882348SN/A            }
13892348SN/A        }
13902348SN/A
13912348SN/A        cprintf("PC:%#x\n[sn:%lli]\n[tid:%i]\n"
13922348SN/A                "Issued:%i\nSquashed:%i\n",
13932348SN/A                (*inst_list_it)->readPC(),
13942348SN/A                (*inst_list_it)->seqNum,
13952348SN/A                (*inst_list_it)->threadNumber,
13962348SN/A                (*inst_list_it)->isIssued(),
13972348SN/A                (*inst_list_it)->isSquashed());
13982348SN/A
13992348SN/A        if ((*inst_list_it)->isMemRef()) {
14002348SN/A            cprintf("MemOpDone:%i\n", (*inst_list_it)->memOpDone);
14012348SN/A        }
14022348SN/A
14032348SN/A        cprintf("\n");
14042348SN/A
14052348SN/A        inst_list_it++;
14062348SN/A        ++num;
14072348SN/A    }
14082292SN/A}
1409