base.cc revision 10537
12SN/A/*
29448SAndreas.Sandberg@ARM.com * Copyright (c) 2010-2012 ARM Limited
39920Syasuko.eckert@amd.com * Copyright (c) 2013 Advanced Micro Devices, Inc.
47338SAli.Saidi@ARM.com * All rights reserved
57338SAli.Saidi@ARM.com *
67338SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall
77338SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual
87338SAli.Saidi@ARM.com * property including but not limited to intellectual property relating
97338SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software
107338SAli.Saidi@ARM.com * licensed hereunder.  You may use the software subject to the license
117338SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated
127338SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software,
137338SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form.
147338SAli.Saidi@ARM.com *
151762SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
162SN/A * All rights reserved.
172SN/A *
182SN/A * Redistribution and use in source and binary forms, with or without
192SN/A * modification, are permitted provided that the following conditions are
202SN/A * met: redistributions of source code must retain the above copyright
212SN/A * notice, this list of conditions and the following disclaimer;
222SN/A * redistributions in binary form must reproduce the above copyright
232SN/A * notice, this list of conditions and the following disclaimer in the
242SN/A * documentation and/or other materials provided with the distribution;
252SN/A * neither the name of the copyright holders nor the names of its
262SN/A * contributors may be used to endorse or promote products derived from
272SN/A * this software without specific prior written permission.
282SN/A *
292SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
302SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
312SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
322SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
332SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
342SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
352SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
372SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
382SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
392SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
402665Ssaidi@eecs.umich.edu *
412665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
422SN/A */
432SN/A
448779Sgblack@eecs.umich.edu#include "arch/kernel_stats.hh"
458779Sgblack@eecs.umich.edu#include "arch/stacktrace.hh"
468779Sgblack@eecs.umich.edu#include "arch/tlb.hh"
472439SN/A#include "arch/utility.hh"
488779Sgblack@eecs.umich.edu#include "arch/vtophys.hh"
498229Snate@binkert.org#include "base/loader/symtab.hh"
506216Snate@binkert.org#include "base/cp_annotate.hh"
51146SN/A#include "base/cprintf.hh"
52146SN/A#include "base/inifile.hh"
53146SN/A#include "base/misc.hh"
54146SN/A#include "base/pollevent.hh"
55146SN/A#include "base/trace.hh"
566216Snate@binkert.org#include "base/types.hh"
576658Snate@binkert.org#include "config/the_isa.hh"
588229Snate@binkert.org#include "cpu/simple/base.hh"
591717SN/A#include "cpu/base.hh"
608887Sgeoffrey.blake@arm.com#include "cpu/checker/cpu.hh"
618887Sgeoffrey.blake@arm.com#include "cpu/checker/thread_context.hh"
62146SN/A#include "cpu/exetrace.hh"
6310061Sandreas@sandberg.pp.se#include "cpu/pred/bpred_unit.hh"
641977SN/A#include "cpu/profile.hh"
652683Sktlim@umich.edu#include "cpu/simple_thread.hh"
661717SN/A#include "cpu/smt.hh"
67146SN/A#include "cpu/static_inst.hh"
682683Sktlim@umich.edu#include "cpu/thread_context.hh"
698232Snate@binkert.org#include "debug/Decode.hh"
708232Snate@binkert.org#include "debug/Fetch.hh"
718232Snate@binkert.org#include "debug/Quiesce.hh"
728779Sgblack@eecs.umich.edu#include "mem/mem_object.hh"
733348Sbinkertn@umich.edu#include "mem/packet.hh"
746105Ssteve.reinhardt@amd.com#include "mem/request.hh"
756216Snate@binkert.org#include "params/BaseSimpleCPU.hh"
762036SN/A#include "sim/byteswap.hh"
77146SN/A#include "sim/debug.hh"
788817Sgblack@eecs.umich.edu#include "sim/faults.hh"
798793Sgblack@eecs.umich.edu#include "sim/full_system.hh"
8056SN/A#include "sim/sim_events.hh"
8156SN/A#include "sim/sim_object.hh"
82695SN/A#include "sim/stats.hh"
832901Ssaidi@eecs.umich.edu#include "sim/system.hh"
842SN/A
852SN/Ausing namespace std;
862449SN/Ausing namespace TheISA;
871355SN/A
885529Snate@binkert.orgBaseSimpleCPU::BaseSimpleCPU(BaseSimpleCPUParams *p)
8910061Sandreas@sandberg.pp.se    : BaseCPU(p),
9010061Sandreas@sandberg.pp.se      branchPred(p->branchPred),
9110537Sandreas.hansson@arm.com      traceData(NULL), thread(NULL), _status(Idle), interval_stats(false),
9210537Sandreas.hansson@arm.com      inst()
93224SN/A{
948793Sgblack@eecs.umich.edu    if (FullSystem)
959384SAndreas.Sandberg@arm.com        thread = new SimpleThread(this, 0, p->system, p->itb, p->dtb,
969384SAndreas.Sandberg@arm.com                                  p->isa[0]);
978793Sgblack@eecs.umich.edu    else
988820Sgblack@eecs.umich.edu        thread = new SimpleThread(this, /* thread_num */ 0, p->system,
999384SAndreas.Sandberg@arm.com                                  p->workload[0], p->itb, p->dtb, p->isa[0]);
1002SN/A
1016029Ssteve.reinhardt@amd.com    thread->setStatus(ThreadContext::Halted);
1022672Sktlim@umich.edu
1032683Sktlim@umich.edu    tc = thread->getTC();
1042SN/A
1058733Sgeoffrey.blake@arm.com    if (p->checker) {
1068733Sgeoffrey.blake@arm.com        BaseCPU *temp_checker = p->checker;
1078733Sgeoffrey.blake@arm.com        checker = dynamic_cast<CheckerCPU *>(temp_checker);
1088733Sgeoffrey.blake@arm.com        checker->setSystem(p->system);
1098733Sgeoffrey.blake@arm.com        // Manipulate thread context
1108733Sgeoffrey.blake@arm.com        ThreadContext *cpu_tc = tc;
1118733Sgeoffrey.blake@arm.com        tc = new CheckerThreadContext<ThreadContext>(cpu_tc, this->checker);
1128733Sgeoffrey.blake@arm.com    } else {
1138733Sgeoffrey.blake@arm.com        checker = NULL;
1148733Sgeoffrey.blake@arm.com    }
1158733Sgeoffrey.blake@arm.com
1162SN/A    numInst = 0;
117334SN/A    startNumInst = 0;
1188834Satgutier@umich.edu    numOp = 0;
1198834Satgutier@umich.edu    startNumOp = 0;
120140SN/A    numLoad = 0;
121334SN/A    startNumLoad = 0;
1222SN/A    lastIcacheStall = 0;
1232SN/A    lastDcacheStall = 0;
1242SN/A
1252680Sktlim@umich.edu    threadContexts.push_back(tc);
1264377Sgblack@eecs.umich.edu
1275169Ssaidi@eecs.umich.edu
1284377Sgblack@eecs.umich.edu    fetchOffset = 0;
1294377Sgblack@eecs.umich.edu    stayAtPC = false;
1302SN/A}
1312SN/A
1322623SN/ABaseSimpleCPU::~BaseSimpleCPU()
1332SN/A{
1342SN/A}
1352SN/A
136180SN/Avoid
1378737Skoansin.tan@gmail.comBaseSimpleCPU::haltContext(ThreadID thread_num)
138393SN/A{
139393SN/A    // for now, these are equivalent
140393SN/A    suspendContext(thread_num);
141393SN/A}
142384SN/A
143189SN/A
144189SN/Avoid
1452623SN/ABaseSimpleCPU::regStats()
1462SN/A{
147729SN/A    using namespace Stats;
148334SN/A
1492SN/A    BaseCPU::regStats();
1502SN/A
1512SN/A    numInsts
1528834Satgutier@umich.edu        .name(name() + ".committedInsts")
1538834Satgutier@umich.edu        .desc("Number of instructions committed")
1548834Satgutier@umich.edu        ;
1558834Satgutier@umich.edu
1568834Satgutier@umich.edu    numOps
1578834Satgutier@umich.edu        .name(name() + ".committedOps")
1588834Satgutier@umich.edu        .desc("Number of ops (including micro ops) committed")
1592SN/A        ;
1602SN/A
1617897Shestness@cs.utexas.edu    numIntAluAccesses
1627897Shestness@cs.utexas.edu        .name(name() + ".num_int_alu_accesses")
1637897Shestness@cs.utexas.edu        .desc("Number of integer alu accesses")
1647897Shestness@cs.utexas.edu        ;
1657897Shestness@cs.utexas.edu
1667897Shestness@cs.utexas.edu    numFpAluAccesses
1677897Shestness@cs.utexas.edu        .name(name() + ".num_fp_alu_accesses")
1687897Shestness@cs.utexas.edu        .desc("Number of float alu accesses")
1697897Shestness@cs.utexas.edu        ;
1707897Shestness@cs.utexas.edu
1717897Shestness@cs.utexas.edu    numCallsReturns
1727897Shestness@cs.utexas.edu        .name(name() + ".num_func_calls")
1737897Shestness@cs.utexas.edu        .desc("number of times a function call or return occured")
1747897Shestness@cs.utexas.edu        ;
1757897Shestness@cs.utexas.edu
1767897Shestness@cs.utexas.edu    numCondCtrlInsts
1777897Shestness@cs.utexas.edu        .name(name() + ".num_conditional_control_insts")
1787897Shestness@cs.utexas.edu        .desc("number of instructions that are conditional controls")
1797897Shestness@cs.utexas.edu        ;
1807897Shestness@cs.utexas.edu
1817897Shestness@cs.utexas.edu    numIntInsts
1827897Shestness@cs.utexas.edu        .name(name() + ".num_int_insts")
1837897Shestness@cs.utexas.edu        .desc("number of integer instructions")
1847897Shestness@cs.utexas.edu        ;
1857897Shestness@cs.utexas.edu
1867897Shestness@cs.utexas.edu    numFpInsts
1877897Shestness@cs.utexas.edu        .name(name() + ".num_fp_insts")
1887897Shestness@cs.utexas.edu        .desc("number of float instructions")
1897897Shestness@cs.utexas.edu        ;
1907897Shestness@cs.utexas.edu
1917897Shestness@cs.utexas.edu    numIntRegReads
1927897Shestness@cs.utexas.edu        .name(name() + ".num_int_register_reads")
1937897Shestness@cs.utexas.edu        .desc("number of times the integer registers were read")
1947897Shestness@cs.utexas.edu        ;
1957897Shestness@cs.utexas.edu
1967897Shestness@cs.utexas.edu    numIntRegWrites
1977897Shestness@cs.utexas.edu        .name(name() + ".num_int_register_writes")
1987897Shestness@cs.utexas.edu        .desc("number of times the integer registers were written")
1997897Shestness@cs.utexas.edu        ;
2007897Shestness@cs.utexas.edu
2017897Shestness@cs.utexas.edu    numFpRegReads
2027897Shestness@cs.utexas.edu        .name(name() + ".num_fp_register_reads")
2037897Shestness@cs.utexas.edu        .desc("number of times the floating registers were read")
2047897Shestness@cs.utexas.edu        ;
2057897Shestness@cs.utexas.edu
2067897Shestness@cs.utexas.edu    numFpRegWrites
2077897Shestness@cs.utexas.edu        .name(name() + ".num_fp_register_writes")
2087897Shestness@cs.utexas.edu        .desc("number of times the floating registers were written")
2097897Shestness@cs.utexas.edu        ;
2107897Shestness@cs.utexas.edu
2119920Syasuko.eckert@amd.com    numCCRegReads
2129920Syasuko.eckert@amd.com        .name(name() + ".num_cc_register_reads")
2139920Syasuko.eckert@amd.com        .desc("number of times the CC registers were read")
2149920Syasuko.eckert@amd.com        .flags(nozero)
2159920Syasuko.eckert@amd.com        ;
2169920Syasuko.eckert@amd.com
2179920Syasuko.eckert@amd.com    numCCRegWrites
2189920Syasuko.eckert@amd.com        .name(name() + ".num_cc_register_writes")
2199920Syasuko.eckert@amd.com        .desc("number of times the CC registers were written")
2209920Syasuko.eckert@amd.com        .flags(nozero)
2219920Syasuko.eckert@amd.com        ;
2229920Syasuko.eckert@amd.com
2232SN/A    numMemRefs
2247897Shestness@cs.utexas.edu        .name(name()+".num_mem_refs")
2257897Shestness@cs.utexas.edu        .desc("number of memory refs")
2267897Shestness@cs.utexas.edu        ;
2277897Shestness@cs.utexas.edu
2287897Shestness@cs.utexas.edu    numStoreInsts
2297897Shestness@cs.utexas.edu        .name(name() + ".num_store_insts")
2307897Shestness@cs.utexas.edu        .desc("Number of store instructions")
2317897Shestness@cs.utexas.edu        ;
2327897Shestness@cs.utexas.edu
2337897Shestness@cs.utexas.edu    numLoadInsts
2347897Shestness@cs.utexas.edu        .name(name() + ".num_load_insts")
2357897Shestness@cs.utexas.edu        .desc("Number of load instructions")
2362SN/A        ;
2372SN/A
2381001SN/A    notIdleFraction
2391001SN/A        .name(name() + ".not_idle_fraction")
2401001SN/A        .desc("Percentage of non-idle cycles")
2411001SN/A        ;
2421001SN/A
2432SN/A    idleFraction
2442SN/A        .name(name() + ".idle_fraction")
2452SN/A        .desc("Percentage of idle cycles")
2462SN/A        ;
2472SN/A
2487897Shestness@cs.utexas.edu    numBusyCycles
2497897Shestness@cs.utexas.edu        .name(name() + ".num_busy_cycles")
2507897Shestness@cs.utexas.edu        .desc("Number of busy cycles")
2517897Shestness@cs.utexas.edu        ;
2527897Shestness@cs.utexas.edu
2537897Shestness@cs.utexas.edu    numIdleCycles
2547897Shestness@cs.utexas.edu        .name(name()+".num_idle_cycles")
2557897Shestness@cs.utexas.edu        .desc("Number of idle cycles")
2567897Shestness@cs.utexas.edu        ;
2577897Shestness@cs.utexas.edu
2582SN/A    icacheStallCycles
2592SN/A        .name(name() + ".icache_stall_cycles")
2602SN/A        .desc("ICache total stall cycles")
2612SN/A        .prereq(icacheStallCycles)
2622SN/A        ;
2632SN/A
2642SN/A    dcacheStallCycles
2652SN/A        .name(name() + ".dcache_stall_cycles")
2662SN/A        .desc("DCache total stall cycles")
2672SN/A        .prereq(dcacheStallCycles)
2682SN/A        ;
2692SN/A
27010193SCurtis.Dunham@arm.com    statExecutedInstType
27110193SCurtis.Dunham@arm.com        .init(Enums::Num_OpClass)
27210193SCurtis.Dunham@arm.com        .name(name() + ".op_class")
27310193SCurtis.Dunham@arm.com        .desc("Class of executed instruction")
27410193SCurtis.Dunham@arm.com        .flags(total | pdf | dist)
27510193SCurtis.Dunham@arm.com        ;
27610193SCurtis.Dunham@arm.com    for (unsigned i = 0; i < Num_OpClasses; ++i) {
27710193SCurtis.Dunham@arm.com        statExecutedInstType.subname(i, Enums::OpClassStrings[i]);
27810193SCurtis.Dunham@arm.com    }
27910193SCurtis.Dunham@arm.com
280385SN/A    idleFraction = constant(1.0) - notIdleFraction;
2817897Shestness@cs.utexas.edu    numIdleCycles = idleFraction * numCycles;
2827897Shestness@cs.utexas.edu    numBusyCycles = (notIdleFraction)*numCycles;
28310061Sandreas@sandberg.pp.se
28410061Sandreas@sandberg.pp.se    numBranches
28510061Sandreas@sandberg.pp.se        .name(name() + ".Branches")
28610061Sandreas@sandberg.pp.se        .desc("Number of branches fetched")
28710061Sandreas@sandberg.pp.se        .prereq(numBranches);
28810061Sandreas@sandberg.pp.se
28910061Sandreas@sandberg.pp.se    numPredictedBranches
29010061Sandreas@sandberg.pp.se        .name(name() + ".predictedBranches")
29110061Sandreas@sandberg.pp.se        .desc("Number of branches predicted as taken")
29210061Sandreas@sandberg.pp.se        .prereq(numPredictedBranches);
29310061Sandreas@sandberg.pp.se
29410061Sandreas@sandberg.pp.se    numBranchMispred
29510061Sandreas@sandberg.pp.se        .name(name() + ".BranchMispred")
29610061Sandreas@sandberg.pp.se        .desc("Number of branch mispredictions")
29710061Sandreas@sandberg.pp.se        .prereq(numBranchMispred);
2982SN/A}
2992SN/A
3002SN/Avoid
3012623SN/ABaseSimpleCPU::resetStats()
302334SN/A{
3032361SN/A//    startNumInst = numInst;
3045496Ssaidi@eecs.umich.edu     notIdleFraction = (_status != Idle);
305334SN/A}
306334SN/A
307334SN/Avoid
3089448SAndreas.Sandberg@ARM.comBaseSimpleCPU::serializeThread(ostream &os, ThreadID tid)
3092SN/A{
3109448SAndreas.Sandberg@ARM.com    assert(_status == Idle || _status == Running);
3119448SAndreas.Sandberg@ARM.com    assert(tid == 0);
3129448SAndreas.Sandberg@ARM.com
3132683Sktlim@umich.edu    thread->serialize(os);
3142SN/A}
3152SN/A
3162SN/Avoid
3179448SAndreas.Sandberg@ARM.comBaseSimpleCPU::unserializeThread(Checkpoint *cp, const string &section,
3189448SAndreas.Sandberg@ARM.com                                 ThreadID tid)
3192SN/A{
3209448SAndreas.Sandberg@ARM.com    if (tid != 0)
3219448SAndreas.Sandberg@ARM.com        fatal("Trying to load more than one thread into a SimpleCPU\n");
3229448SAndreas.Sandberg@ARM.com    thread->unserialize(cp, section);
3232SN/A}
3242SN/A
3252SN/Avoid
3266221Snate@binkert.orgchange_thread_state(ThreadID tid, int activate, int priority)
3272SN/A{
3282SN/A}
3292SN/A
3302SN/AAddr
3312623SN/ABaseSimpleCPU::dbg_vtophys(Addr addr)
3322SN/A{
3332680Sktlim@umich.edu    return vtophys(tc, addr);
3342SN/A}
3352SN/A
3362SN/Avoid
3375807Snate@binkert.orgBaseSimpleCPU::wakeup()
3382SN/A{
33910529Smorr@cs.wisc.edu    getAddrMonitor()->gotWakeup = true;
34010529Smorr@cs.wisc.edu
3415807Snate@binkert.org    if (thread->status() != ThreadContext::Suspended)
3425807Snate@binkert.org        return;
3432SN/A
3445807Snate@binkert.org    DPRINTF(Quiesce,"Suspended Processor awoke\n");
3455807Snate@binkert.org    thread->activate();
3462SN/A}
3472SN/A
3482SN/Avoid
3492623SN/ABaseSimpleCPU::checkForInterrupts()
3502SN/A{
3515704Snate@binkert.org    if (checkInterrupts(tc)) {
3525647Sgblack@eecs.umich.edu        Fault interrupt = interrupts->getInterrupt(tc);
3532SN/A
3543520Sgblack@eecs.umich.edu        if (interrupt != NoFault) {
3557338SAli.Saidi@ARM.com            fetchOffset = 0;
3565647Sgblack@eecs.umich.edu            interrupts->updateIntrInfo(tc);
3573520Sgblack@eecs.umich.edu            interrupt->invoke(tc);
3589023Sgblack@eecs.umich.edu            thread->decoder.reset();
3592SN/A        }
3602SN/A    }
3612623SN/A}
3622SN/A
3632623SN/A
3645894Sgblack@eecs.umich.eduvoid
3652662Sstever@eecs.umich.eduBaseSimpleCPU::setupFetchRequest(Request *req)
3662623SN/A{
3677720Sgblack@eecs.umich.edu    Addr instAddr = thread->instAddr();
3684495Sacolyte@umich.edu
3692623SN/A    // set up memory request for instruction fetch
3707720Sgblack@eecs.umich.edu    DPRINTF(Fetch, "Fetch: PC:%08p\n", instAddr);
3712623SN/A
3727720Sgblack@eecs.umich.edu    Addr fetchPC = (instAddr & PCMask) + fetchOffset;
3738832SAli.Saidi@ARM.com    req->setVirt(0, fetchPC, sizeof(MachInst), Request::INST_FETCH, instMasterId(),
3748832SAli.Saidi@ARM.com            instAddr);
3752623SN/A}
3762623SN/A
3772623SN/A
3782623SN/Avoid
3792623SN/ABaseSimpleCPU::preExecute()
3802623SN/A{
3812SN/A    // maintain $r0 semantics
3822683Sktlim@umich.edu    thread->setIntReg(ZeroReg, 0);
3832427SN/A#if THE_ISA == ALPHA_ISA
3842683Sktlim@umich.edu    thread->setFloatReg(ZeroReg, 0.0);
3852427SN/A#endif // ALPHA_ISA
3862SN/A
3872623SN/A    // check for instruction-count-based events
3882623SN/A    comInstEventQueue[0]->serviceEvents(numInst);
3897897Shestness@cs.utexas.edu    system->instEventQueue.serviceEvents(system->totalNumInsts);
3902SN/A
3912623SN/A    // decode the instruction
3922623SN/A    inst = gtoh(inst);
3934377Sgblack@eecs.umich.edu
3947720Sgblack@eecs.umich.edu    TheISA::PCState pcState = thread->pcState();
3954377Sgblack@eecs.umich.edu
3967720Sgblack@eecs.umich.edu    if (isRomMicroPC(pcState.microPC())) {
3975665Sgblack@eecs.umich.edu        stayAtPC = false;
3987720Sgblack@eecs.umich.edu        curStaticInst = microcodeRom.fetchMicroop(pcState.microPC(),
3997720Sgblack@eecs.umich.edu                                                  curMacroStaticInst);
4005665Sgblack@eecs.umich.edu    } else if (!curMacroStaticInst) {
4015665Sgblack@eecs.umich.edu        //We're not in the middle of a macro instruction
4024181Sgblack@eecs.umich.edu        StaticInstPtr instPtr = NULL;
4034181Sgblack@eecs.umich.edu
4049023Sgblack@eecs.umich.edu        TheISA::Decoder *decoder = &(thread->decoder);
4059023Sgblack@eecs.umich.edu
4064181Sgblack@eecs.umich.edu        //Predecode, ie bundle up an ExtMachInst
4074182Sgblack@eecs.umich.edu        //If more fetch data is needed, pass it in.
4087720Sgblack@eecs.umich.edu        Addr fetchPC = (pcState.instAddr() & PCMask) + fetchOffset;
4099023Sgblack@eecs.umich.edu        //if(decoder->needMoreBytes())
4109023Sgblack@eecs.umich.edu            decoder->moreBytes(pcState, fetchPC, inst);
4114593Sgblack@eecs.umich.edu        //else
4129023Sgblack@eecs.umich.edu        //    decoder->process();
4134377Sgblack@eecs.umich.edu
4149023Sgblack@eecs.umich.edu        //Decode an instruction if one is ready. Otherwise, we'll have to
4154377Sgblack@eecs.umich.edu        //fetch beyond the MachInst at the current pc.
4169023Sgblack@eecs.umich.edu        instPtr = decoder->decode(pcState);
4179023Sgblack@eecs.umich.edu        if (instPtr) {
4184377Sgblack@eecs.umich.edu            stayAtPC = false;
4197720Sgblack@eecs.umich.edu            thread->pcState(pcState);
4204377Sgblack@eecs.umich.edu        } else {
4214377Sgblack@eecs.umich.edu            stayAtPC = true;
4224377Sgblack@eecs.umich.edu            fetchOffset += sizeof(MachInst);
4234377Sgblack@eecs.umich.edu        }
4244181Sgblack@eecs.umich.edu
4254181Sgblack@eecs.umich.edu        //If we decoded an instruction and it's microcoded, start pulling
4264181Sgblack@eecs.umich.edu        //out micro ops
4274539Sgblack@eecs.umich.edu        if (instPtr && instPtr->isMacroop()) {
4283276Sgblack@eecs.umich.edu            curMacroStaticInst = instPtr;
4297720Sgblack@eecs.umich.edu            curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
4303280Sgblack@eecs.umich.edu        } else {
4313280Sgblack@eecs.umich.edu            curStaticInst = instPtr;
4323276Sgblack@eecs.umich.edu        }
4333276Sgblack@eecs.umich.edu    } else {
4343276Sgblack@eecs.umich.edu        //Read the next micro op from the macro op
4357720Sgblack@eecs.umich.edu        curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
4363276Sgblack@eecs.umich.edu    }
4373276Sgblack@eecs.umich.edu
4384181Sgblack@eecs.umich.edu    //If we decoded an instruction this "tick", record information about it.
4398955Sgblack@eecs.umich.edu    if (curStaticInst) {
4404522Ssaidi@eecs.umich.edu#if TRACING_ON
4417823Ssteve.reinhardt@amd.com        traceData = tracer->getInstRecord(curTick(), tc,
4427720Sgblack@eecs.umich.edu                curStaticInst, thread->pcState(), curMacroStaticInst);
4432470SN/A
4448955Sgblack@eecs.umich.edu        DPRINTF(Decode,"Decode: Decoded %s instruction: %#x\n",
4454181Sgblack@eecs.umich.edu                curStaticInst->getName(), curStaticInst->machInst);
4464522Ssaidi@eecs.umich.edu#endif // TRACING_ON
4474181Sgblack@eecs.umich.edu    }
44810061Sandreas@sandberg.pp.se
44910061Sandreas@sandberg.pp.se    if (branchPred && curStaticInst && curStaticInst->isControl()) {
45010061Sandreas@sandberg.pp.se        // Use a fake sequence number since we only have one
45110061Sandreas@sandberg.pp.se        // instruction in flight at the same time.
45210061Sandreas@sandberg.pp.se        const InstSeqNum cur_sn(0);
45310061Sandreas@sandberg.pp.se        const ThreadID tid(0);
45410061Sandreas@sandberg.pp.se        pred_pc = thread->pcState();
45510061Sandreas@sandberg.pp.se        const bool predict_taken(
45610061Sandreas@sandberg.pp.se            branchPred->predict(curStaticInst, cur_sn, pred_pc, tid));
45710061Sandreas@sandberg.pp.se
45810061Sandreas@sandberg.pp.se        if (predict_taken)
45910061Sandreas@sandberg.pp.se            ++numPredictedBranches;
46010061Sandreas@sandberg.pp.se    }
4612623SN/A}
4622623SN/A
4632623SN/Avoid
4642623SN/ABaseSimpleCPU::postExecute()
4652623SN/A{
4667720Sgblack@eecs.umich.edu    assert(curStaticInst);
4677720Sgblack@eecs.umich.edu
4687720Sgblack@eecs.umich.edu    TheISA::PCState pc = tc->pcState();
4697720Sgblack@eecs.umich.edu    Addr instAddr = pc.instAddr();
4708780Sgblack@eecs.umich.edu    if (FullSystem && thread->profile) {
4713577Sgblack@eecs.umich.edu        bool usermode = TheISA::inUserMode(tc);
4727720Sgblack@eecs.umich.edu        thread->profilePC = usermode ? 1 : instAddr;
4735086Sgblack@eecs.umich.edu        ProfileNode *node = thread->profile->consume(tc, curStaticInst);
4742623SN/A        if (node)
4752683Sktlim@umich.edu            thread->profileNode = node;
4762623SN/A    }
4772SN/A
4782623SN/A    if (curStaticInst->isMemRef()) {
4792623SN/A        numMemRefs++;
4802SN/A    }
4812SN/A
4822623SN/A    if (curStaticInst->isLoad()) {
4832623SN/A        ++numLoad;
4842623SN/A        comLoadEventQueue[0]->serviceEvents(numLoad);
4852623SN/A    }
4862SN/A
4875953Ssaidi@eecs.umich.edu    if (CPA::available()) {
4887720Sgblack@eecs.umich.edu        CPA::cpa()->swAutoBegin(tc, pc.nextInstAddr());
4895953Ssaidi@eecs.umich.edu    }
4905953Ssaidi@eecs.umich.edu
49110061Sandreas@sandberg.pp.se    if (curStaticInst->isControl()) {
49210061Sandreas@sandberg.pp.se        ++numBranches;
49310061Sandreas@sandberg.pp.se    }
49410061Sandreas@sandberg.pp.se
4957897Shestness@cs.utexas.edu    /* Power model statistics */
4967897Shestness@cs.utexas.edu    //integer alu accesses
4977897Shestness@cs.utexas.edu    if (curStaticInst->isInteger()){
4987897Shestness@cs.utexas.edu        numIntAluAccesses++;
4997897Shestness@cs.utexas.edu        numIntInsts++;
5007897Shestness@cs.utexas.edu    }
5017897Shestness@cs.utexas.edu
5027897Shestness@cs.utexas.edu    //float alu accesses
5037897Shestness@cs.utexas.edu    if (curStaticInst->isFloating()){
5047897Shestness@cs.utexas.edu        numFpAluAccesses++;
5057897Shestness@cs.utexas.edu        numFpInsts++;
5067897Shestness@cs.utexas.edu    }
5077897Shestness@cs.utexas.edu
5087897Shestness@cs.utexas.edu    //number of function calls/returns to get window accesses
5097897Shestness@cs.utexas.edu    if (curStaticInst->isCall() || curStaticInst->isReturn()){
5107897Shestness@cs.utexas.edu        numCallsReturns++;
5117897Shestness@cs.utexas.edu    }
5127897Shestness@cs.utexas.edu
5137897Shestness@cs.utexas.edu    //the number of branch predictions that will be made
5147897Shestness@cs.utexas.edu    if (curStaticInst->isCondCtrl()){
5157897Shestness@cs.utexas.edu        numCondCtrlInsts++;
5167897Shestness@cs.utexas.edu    }
5177897Shestness@cs.utexas.edu
5187897Shestness@cs.utexas.edu    //result bus acceses
5197897Shestness@cs.utexas.edu    if (curStaticInst->isLoad()){
5207897Shestness@cs.utexas.edu        numLoadInsts++;
5217897Shestness@cs.utexas.edu    }
5227897Shestness@cs.utexas.edu
5237897Shestness@cs.utexas.edu    if (curStaticInst->isStore()){
5247897Shestness@cs.utexas.edu        numStoreInsts++;
5257897Shestness@cs.utexas.edu    }
5267897Shestness@cs.utexas.edu    /* End power model statistics */
5277897Shestness@cs.utexas.edu
52810193SCurtis.Dunham@arm.com    statExecutedInstType[curStaticInst->opClass()]++;
52910193SCurtis.Dunham@arm.com
5308780Sgblack@eecs.umich.edu    if (FullSystem)
5318780Sgblack@eecs.umich.edu        traceFunctions(instAddr);
5322644Sstever@eecs.umich.edu
5332644Sstever@eecs.umich.edu    if (traceData) {
5344046Sbinkertn@umich.edu        traceData->dump();
5354046Sbinkertn@umich.edu        delete traceData;
5364046Sbinkertn@umich.edu        traceData = NULL;
5372644Sstever@eecs.umich.edu    }
53810464SAndreas.Sandberg@ARM.com
53910464SAndreas.Sandberg@ARM.com    // Call CPU instruction commit probes
54010464SAndreas.Sandberg@ARM.com    probeInstCommit(curStaticInst);
5412623SN/A}
5422SN/A
5432623SN/Avoid
54410379Sandreas.hansson@arm.comBaseSimpleCPU::advancePC(const Fault &fault)
5452623SN/A{
54610061Sandreas@sandberg.pp.se    const bool branching(thread->pcState().branching());
54710061Sandreas@sandberg.pp.se
5484377Sgblack@eecs.umich.edu    //Since we're moving to a new pc, zero out the offset
5494377Sgblack@eecs.umich.edu    fetchOffset = 0;
5502090SN/A    if (fault != NoFault) {
5513905Ssaidi@eecs.umich.edu        curMacroStaticInst = StaticInst::nullStaticInstPtr;
5527678Sgblack@eecs.umich.edu        fault->invoke(tc, curStaticInst);
5539023Sgblack@eecs.umich.edu        thread->decoder.reset();
5544377Sgblack@eecs.umich.edu    } else {
5557720Sgblack@eecs.umich.edu        if (curStaticInst) {
5567720Sgblack@eecs.umich.edu            if (curStaticInst->isLastMicroop())
5577720Sgblack@eecs.umich.edu                curMacroStaticInst = StaticInst::nullStaticInstPtr;
5587720Sgblack@eecs.umich.edu            TheISA::PCState pcState = thread->pcState();
5597720Sgblack@eecs.umich.edu            TheISA::advancePC(pcState, curStaticInst);
5607720Sgblack@eecs.umich.edu            thread->pcState(pcState);
5613276Sgblack@eecs.umich.edu        }
5622SN/A    }
56310061Sandreas@sandberg.pp.se
56410061Sandreas@sandberg.pp.se    if (branchPred && curStaticInst && curStaticInst->isControl()) {
56510061Sandreas@sandberg.pp.se        // Use a fake sequence number since we only have one
56610061Sandreas@sandberg.pp.se        // instruction in flight at the same time.
56710061Sandreas@sandberg.pp.se        const InstSeqNum cur_sn(0);
56810061Sandreas@sandberg.pp.se        const ThreadID tid(0);
56910061Sandreas@sandberg.pp.se
57010061Sandreas@sandberg.pp.se        if (pred_pc == thread->pcState()) {
57110061Sandreas@sandberg.pp.se            // Correctly predicted branch
57210061Sandreas@sandberg.pp.se            branchPred->update(cur_sn, tid);
57310061Sandreas@sandberg.pp.se        } else {
57410061Sandreas@sandberg.pp.se            // Mis-predicted branch
57510061Sandreas@sandberg.pp.se            branchPred->squash(cur_sn, pcState(),
57610061Sandreas@sandberg.pp.se                               branching, tid);
57710061Sandreas@sandberg.pp.se            ++numBranchMispred;
57810061Sandreas@sandberg.pp.se        }
57910061Sandreas@sandberg.pp.se    }
5802SN/A}
5812SN/A
5829461Snilay@cs.wisc.eduvoid
5839461Snilay@cs.wisc.eduBaseSimpleCPU::startup()
5849461Snilay@cs.wisc.edu{
5859461Snilay@cs.wisc.edu    BaseCPU::startup();
5869461Snilay@cs.wisc.edu    thread->startup();
5879461Snilay@cs.wisc.edu}
588