base.cc revision 10464
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),
9110061Sandreas@sandberg.pp.se      traceData(NULL), thread(NULL)
92224SN/A{
938793Sgblack@eecs.umich.edu    if (FullSystem)
949384SAndreas.Sandberg@arm.com        thread = new SimpleThread(this, 0, p->system, p->itb, p->dtb,
959384SAndreas.Sandberg@arm.com                                  p->isa[0]);
968793Sgblack@eecs.umich.edu    else
978820Sgblack@eecs.umich.edu        thread = new SimpleThread(this, /* thread_num */ 0, p->system,
989384SAndreas.Sandberg@arm.com                                  p->workload[0], p->itb, p->dtb, p->isa[0]);
992SN/A
1006029Ssteve.reinhardt@amd.com    thread->setStatus(ThreadContext::Halted);
1012672Sktlim@umich.edu
1022683Sktlim@umich.edu    tc = thread->getTC();
1032SN/A
1048733Sgeoffrey.blake@arm.com    if (p->checker) {
1058733Sgeoffrey.blake@arm.com        BaseCPU *temp_checker = p->checker;
1068733Sgeoffrey.blake@arm.com        checker = dynamic_cast<CheckerCPU *>(temp_checker);
1078733Sgeoffrey.blake@arm.com        checker->setSystem(p->system);
1088733Sgeoffrey.blake@arm.com        // Manipulate thread context
1098733Sgeoffrey.blake@arm.com        ThreadContext *cpu_tc = tc;
1108733Sgeoffrey.blake@arm.com        tc = new CheckerThreadContext<ThreadContext>(cpu_tc, this->checker);
1118733Sgeoffrey.blake@arm.com    } else {
1128733Sgeoffrey.blake@arm.com        checker = NULL;
1138733Sgeoffrey.blake@arm.com    }
1148733Sgeoffrey.blake@arm.com
1152SN/A    numInst = 0;
116334SN/A    startNumInst = 0;
1178834Satgutier@umich.edu    numOp = 0;
1188834Satgutier@umich.edu    startNumOp = 0;
119140SN/A    numLoad = 0;
120334SN/A    startNumLoad = 0;
1212SN/A    lastIcacheStall = 0;
1222SN/A    lastDcacheStall = 0;
1232SN/A
1242680Sktlim@umich.edu    threadContexts.push_back(tc);
1254377Sgblack@eecs.umich.edu
1265169Ssaidi@eecs.umich.edu
1274377Sgblack@eecs.umich.edu    fetchOffset = 0;
1284377Sgblack@eecs.umich.edu    stayAtPC = false;
1292SN/A}
1302SN/A
1312623SN/ABaseSimpleCPU::~BaseSimpleCPU()
1322SN/A{
1332SN/A}
1342SN/A
135180SN/Avoid
1368737Skoansin.tan@gmail.comBaseSimpleCPU::haltContext(ThreadID thread_num)
137393SN/A{
138393SN/A    // for now, these are equivalent
139393SN/A    suspendContext(thread_num);
140393SN/A}
141384SN/A
142189SN/A
143189SN/Avoid
1442623SN/ABaseSimpleCPU::regStats()
1452SN/A{
146729SN/A    using namespace Stats;
147334SN/A
1482SN/A    BaseCPU::regStats();
1492SN/A
1502SN/A    numInsts
1518834Satgutier@umich.edu        .name(name() + ".committedInsts")
1528834Satgutier@umich.edu        .desc("Number of instructions committed")
1538834Satgutier@umich.edu        ;
1548834Satgutier@umich.edu
1558834Satgutier@umich.edu    numOps
1568834Satgutier@umich.edu        .name(name() + ".committedOps")
1578834Satgutier@umich.edu        .desc("Number of ops (including micro ops) committed")
1582SN/A        ;
1592SN/A
1607897Shestness@cs.utexas.edu    numIntAluAccesses
1617897Shestness@cs.utexas.edu        .name(name() + ".num_int_alu_accesses")
1627897Shestness@cs.utexas.edu        .desc("Number of integer alu accesses")
1637897Shestness@cs.utexas.edu        ;
1647897Shestness@cs.utexas.edu
1657897Shestness@cs.utexas.edu    numFpAluAccesses
1667897Shestness@cs.utexas.edu        .name(name() + ".num_fp_alu_accesses")
1677897Shestness@cs.utexas.edu        .desc("Number of float alu accesses")
1687897Shestness@cs.utexas.edu        ;
1697897Shestness@cs.utexas.edu
1707897Shestness@cs.utexas.edu    numCallsReturns
1717897Shestness@cs.utexas.edu        .name(name() + ".num_func_calls")
1727897Shestness@cs.utexas.edu        .desc("number of times a function call or return occured")
1737897Shestness@cs.utexas.edu        ;
1747897Shestness@cs.utexas.edu
1757897Shestness@cs.utexas.edu    numCondCtrlInsts
1767897Shestness@cs.utexas.edu        .name(name() + ".num_conditional_control_insts")
1777897Shestness@cs.utexas.edu        .desc("number of instructions that are conditional controls")
1787897Shestness@cs.utexas.edu        ;
1797897Shestness@cs.utexas.edu
1807897Shestness@cs.utexas.edu    numIntInsts
1817897Shestness@cs.utexas.edu        .name(name() + ".num_int_insts")
1827897Shestness@cs.utexas.edu        .desc("number of integer instructions")
1837897Shestness@cs.utexas.edu        ;
1847897Shestness@cs.utexas.edu
1857897Shestness@cs.utexas.edu    numFpInsts
1867897Shestness@cs.utexas.edu        .name(name() + ".num_fp_insts")
1877897Shestness@cs.utexas.edu        .desc("number of float instructions")
1887897Shestness@cs.utexas.edu        ;
1897897Shestness@cs.utexas.edu
1907897Shestness@cs.utexas.edu    numIntRegReads
1917897Shestness@cs.utexas.edu        .name(name() + ".num_int_register_reads")
1927897Shestness@cs.utexas.edu        .desc("number of times the integer registers were read")
1937897Shestness@cs.utexas.edu        ;
1947897Shestness@cs.utexas.edu
1957897Shestness@cs.utexas.edu    numIntRegWrites
1967897Shestness@cs.utexas.edu        .name(name() + ".num_int_register_writes")
1977897Shestness@cs.utexas.edu        .desc("number of times the integer registers were written")
1987897Shestness@cs.utexas.edu        ;
1997897Shestness@cs.utexas.edu
2007897Shestness@cs.utexas.edu    numFpRegReads
2017897Shestness@cs.utexas.edu        .name(name() + ".num_fp_register_reads")
2027897Shestness@cs.utexas.edu        .desc("number of times the floating registers were read")
2037897Shestness@cs.utexas.edu        ;
2047897Shestness@cs.utexas.edu
2057897Shestness@cs.utexas.edu    numFpRegWrites
2067897Shestness@cs.utexas.edu        .name(name() + ".num_fp_register_writes")
2077897Shestness@cs.utexas.edu        .desc("number of times the floating registers were written")
2087897Shestness@cs.utexas.edu        ;
2097897Shestness@cs.utexas.edu
2109920Syasuko.eckert@amd.com    numCCRegReads
2119920Syasuko.eckert@amd.com        .name(name() + ".num_cc_register_reads")
2129920Syasuko.eckert@amd.com        .desc("number of times the CC registers were read")
2139920Syasuko.eckert@amd.com        .flags(nozero)
2149920Syasuko.eckert@amd.com        ;
2159920Syasuko.eckert@amd.com
2169920Syasuko.eckert@amd.com    numCCRegWrites
2179920Syasuko.eckert@amd.com        .name(name() + ".num_cc_register_writes")
2189920Syasuko.eckert@amd.com        .desc("number of times the CC registers were written")
2199920Syasuko.eckert@amd.com        .flags(nozero)
2209920Syasuko.eckert@amd.com        ;
2219920Syasuko.eckert@amd.com
2222SN/A    numMemRefs
2237897Shestness@cs.utexas.edu        .name(name()+".num_mem_refs")
2247897Shestness@cs.utexas.edu        .desc("number of memory refs")
2257897Shestness@cs.utexas.edu        ;
2267897Shestness@cs.utexas.edu
2277897Shestness@cs.utexas.edu    numStoreInsts
2287897Shestness@cs.utexas.edu        .name(name() + ".num_store_insts")
2297897Shestness@cs.utexas.edu        .desc("Number of store instructions")
2307897Shestness@cs.utexas.edu        ;
2317897Shestness@cs.utexas.edu
2327897Shestness@cs.utexas.edu    numLoadInsts
2337897Shestness@cs.utexas.edu        .name(name() + ".num_load_insts")
2347897Shestness@cs.utexas.edu        .desc("Number of load instructions")
2352SN/A        ;
2362SN/A
2371001SN/A    notIdleFraction
2381001SN/A        .name(name() + ".not_idle_fraction")
2391001SN/A        .desc("Percentage of non-idle cycles")
2401001SN/A        ;
2411001SN/A
2422SN/A    idleFraction
2432SN/A        .name(name() + ".idle_fraction")
2442SN/A        .desc("Percentage of idle cycles")
2452SN/A        ;
2462SN/A
2477897Shestness@cs.utexas.edu    numBusyCycles
2487897Shestness@cs.utexas.edu        .name(name() + ".num_busy_cycles")
2497897Shestness@cs.utexas.edu        .desc("Number of busy cycles")
2507897Shestness@cs.utexas.edu        ;
2517897Shestness@cs.utexas.edu
2527897Shestness@cs.utexas.edu    numIdleCycles
2537897Shestness@cs.utexas.edu        .name(name()+".num_idle_cycles")
2547897Shestness@cs.utexas.edu        .desc("Number of idle cycles")
2557897Shestness@cs.utexas.edu        ;
2567897Shestness@cs.utexas.edu
2572SN/A    icacheStallCycles
2582SN/A        .name(name() + ".icache_stall_cycles")
2592SN/A        .desc("ICache total stall cycles")
2602SN/A        .prereq(icacheStallCycles)
2612SN/A        ;
2622SN/A
2632SN/A    dcacheStallCycles
2642SN/A        .name(name() + ".dcache_stall_cycles")
2652SN/A        .desc("DCache total stall cycles")
2662SN/A        .prereq(dcacheStallCycles)
2672SN/A        ;
2682SN/A
2692390SN/A    icacheRetryCycles
2702390SN/A        .name(name() + ".icache_retry_cycles")
2712390SN/A        .desc("ICache total retry cycles")
2722390SN/A        .prereq(icacheRetryCycles)
2732390SN/A        ;
2742390SN/A
2752390SN/A    dcacheRetryCycles
2762390SN/A        .name(name() + ".dcache_retry_cycles")
2772390SN/A        .desc("DCache total retry cycles")
2782390SN/A        .prereq(dcacheRetryCycles)
2792390SN/A        ;
2802390SN/A
28110193SCurtis.Dunham@arm.com    statExecutedInstType
28210193SCurtis.Dunham@arm.com        .init(Enums::Num_OpClass)
28310193SCurtis.Dunham@arm.com        .name(name() + ".op_class")
28410193SCurtis.Dunham@arm.com        .desc("Class of executed instruction")
28510193SCurtis.Dunham@arm.com        .flags(total | pdf | dist)
28610193SCurtis.Dunham@arm.com        ;
28710193SCurtis.Dunham@arm.com    for (unsigned i = 0; i < Num_OpClasses; ++i) {
28810193SCurtis.Dunham@arm.com        statExecutedInstType.subname(i, Enums::OpClassStrings[i]);
28910193SCurtis.Dunham@arm.com    }
29010193SCurtis.Dunham@arm.com
291385SN/A    idleFraction = constant(1.0) - notIdleFraction;
2927897Shestness@cs.utexas.edu    numIdleCycles = idleFraction * numCycles;
2937897Shestness@cs.utexas.edu    numBusyCycles = (notIdleFraction)*numCycles;
29410061Sandreas@sandberg.pp.se
29510061Sandreas@sandberg.pp.se    numBranches
29610061Sandreas@sandberg.pp.se        .name(name() + ".Branches")
29710061Sandreas@sandberg.pp.se        .desc("Number of branches fetched")
29810061Sandreas@sandberg.pp.se        .prereq(numBranches);
29910061Sandreas@sandberg.pp.se
30010061Sandreas@sandberg.pp.se    numPredictedBranches
30110061Sandreas@sandberg.pp.se        .name(name() + ".predictedBranches")
30210061Sandreas@sandberg.pp.se        .desc("Number of branches predicted as taken")
30310061Sandreas@sandberg.pp.se        .prereq(numPredictedBranches);
30410061Sandreas@sandberg.pp.se
30510061Sandreas@sandberg.pp.se    numBranchMispred
30610061Sandreas@sandberg.pp.se        .name(name() + ".BranchMispred")
30710061Sandreas@sandberg.pp.se        .desc("Number of branch mispredictions")
30810061Sandreas@sandberg.pp.se        .prereq(numBranchMispred);
3092SN/A}
3102SN/A
3112SN/Avoid
3122623SN/ABaseSimpleCPU::resetStats()
313334SN/A{
3142361SN/A//    startNumInst = numInst;
3155496Ssaidi@eecs.umich.edu     notIdleFraction = (_status != Idle);
316334SN/A}
317334SN/A
318334SN/Avoid
3199448SAndreas.Sandberg@ARM.comBaseSimpleCPU::serializeThread(ostream &os, ThreadID tid)
3202SN/A{
3219448SAndreas.Sandberg@ARM.com    assert(_status == Idle || _status == Running);
3229448SAndreas.Sandberg@ARM.com    assert(tid == 0);
3239448SAndreas.Sandberg@ARM.com
3242683Sktlim@umich.edu    thread->serialize(os);
3252SN/A}
3262SN/A
3272SN/Avoid
3289448SAndreas.Sandberg@ARM.comBaseSimpleCPU::unserializeThread(Checkpoint *cp, const string &section,
3299448SAndreas.Sandberg@ARM.com                                 ThreadID tid)
3302SN/A{
3319448SAndreas.Sandberg@ARM.com    if (tid != 0)
3329448SAndreas.Sandberg@ARM.com        fatal("Trying to load more than one thread into a SimpleCPU\n");
3339448SAndreas.Sandberg@ARM.com    thread->unserialize(cp, section);
3342SN/A}
3352SN/A
3362SN/Avoid
3376221Snate@binkert.orgchange_thread_state(ThreadID tid, int activate, int priority)
3382SN/A{
3392SN/A}
3402SN/A
3412SN/AAddr
3422623SN/ABaseSimpleCPU::dbg_vtophys(Addr addr)
3432SN/A{
3442680Sktlim@umich.edu    return vtophys(tc, addr);
3452SN/A}
3462SN/A
3472SN/Avoid
3485807Snate@binkert.orgBaseSimpleCPU::wakeup()
3492SN/A{
3505807Snate@binkert.org    if (thread->status() != ThreadContext::Suspended)
3515807Snate@binkert.org        return;
3522SN/A
3535807Snate@binkert.org    DPRINTF(Quiesce,"Suspended Processor awoke\n");
3545807Snate@binkert.org    thread->activate();
3552SN/A}
3562SN/A
3572SN/Avoid
3582623SN/ABaseSimpleCPU::checkForInterrupts()
3592SN/A{
3605704Snate@binkert.org    if (checkInterrupts(tc)) {
3615647Sgblack@eecs.umich.edu        Fault interrupt = interrupts->getInterrupt(tc);
3622SN/A
3633520Sgblack@eecs.umich.edu        if (interrupt != NoFault) {
3647338SAli.Saidi@ARM.com            fetchOffset = 0;
3655647Sgblack@eecs.umich.edu            interrupts->updateIntrInfo(tc);
3663520Sgblack@eecs.umich.edu            interrupt->invoke(tc);
3679023Sgblack@eecs.umich.edu            thread->decoder.reset();
3682SN/A        }
3692SN/A    }
3702623SN/A}
3712SN/A
3722623SN/A
3735894Sgblack@eecs.umich.eduvoid
3742662Sstever@eecs.umich.eduBaseSimpleCPU::setupFetchRequest(Request *req)
3752623SN/A{
3767720Sgblack@eecs.umich.edu    Addr instAddr = thread->instAddr();
3774495Sacolyte@umich.edu
3782623SN/A    // set up memory request for instruction fetch
3797720Sgblack@eecs.umich.edu    DPRINTF(Fetch, "Fetch: PC:%08p\n", instAddr);
3802623SN/A
3817720Sgblack@eecs.umich.edu    Addr fetchPC = (instAddr & PCMask) + fetchOffset;
3828832SAli.Saidi@ARM.com    req->setVirt(0, fetchPC, sizeof(MachInst), Request::INST_FETCH, instMasterId(),
3838832SAli.Saidi@ARM.com            instAddr);
3842623SN/A}
3852623SN/A
3862623SN/A
3872623SN/Avoid
3882623SN/ABaseSimpleCPU::preExecute()
3892623SN/A{
3902SN/A    // maintain $r0 semantics
3912683Sktlim@umich.edu    thread->setIntReg(ZeroReg, 0);
3922427SN/A#if THE_ISA == ALPHA_ISA
3932683Sktlim@umich.edu    thread->setFloatReg(ZeroReg, 0.0);
3942427SN/A#endif // ALPHA_ISA
3952SN/A
3962623SN/A    // check for instruction-count-based events
3972623SN/A    comInstEventQueue[0]->serviceEvents(numInst);
3987897Shestness@cs.utexas.edu    system->instEventQueue.serviceEvents(system->totalNumInsts);
3992SN/A
4002623SN/A    // decode the instruction
4012623SN/A    inst = gtoh(inst);
4024377Sgblack@eecs.umich.edu
4037720Sgblack@eecs.umich.edu    TheISA::PCState pcState = thread->pcState();
4044377Sgblack@eecs.umich.edu
4057720Sgblack@eecs.umich.edu    if (isRomMicroPC(pcState.microPC())) {
4065665Sgblack@eecs.umich.edu        stayAtPC = false;
4077720Sgblack@eecs.umich.edu        curStaticInst = microcodeRom.fetchMicroop(pcState.microPC(),
4087720Sgblack@eecs.umich.edu                                                  curMacroStaticInst);
4095665Sgblack@eecs.umich.edu    } else if (!curMacroStaticInst) {
4105665Sgblack@eecs.umich.edu        //We're not in the middle of a macro instruction
4114181Sgblack@eecs.umich.edu        StaticInstPtr instPtr = NULL;
4124181Sgblack@eecs.umich.edu
4139023Sgblack@eecs.umich.edu        TheISA::Decoder *decoder = &(thread->decoder);
4149023Sgblack@eecs.umich.edu
4154181Sgblack@eecs.umich.edu        //Predecode, ie bundle up an ExtMachInst
4164182Sgblack@eecs.umich.edu        //If more fetch data is needed, pass it in.
4177720Sgblack@eecs.umich.edu        Addr fetchPC = (pcState.instAddr() & PCMask) + fetchOffset;
4189023Sgblack@eecs.umich.edu        //if(decoder->needMoreBytes())
4199023Sgblack@eecs.umich.edu            decoder->moreBytes(pcState, fetchPC, inst);
4204593Sgblack@eecs.umich.edu        //else
4219023Sgblack@eecs.umich.edu        //    decoder->process();
4224377Sgblack@eecs.umich.edu
4239023Sgblack@eecs.umich.edu        //Decode an instruction if one is ready. Otherwise, we'll have to
4244377Sgblack@eecs.umich.edu        //fetch beyond the MachInst at the current pc.
4259023Sgblack@eecs.umich.edu        instPtr = decoder->decode(pcState);
4269023Sgblack@eecs.umich.edu        if (instPtr) {
4274377Sgblack@eecs.umich.edu            stayAtPC = false;
4287720Sgblack@eecs.umich.edu            thread->pcState(pcState);
4294377Sgblack@eecs.umich.edu        } else {
4304377Sgblack@eecs.umich.edu            stayAtPC = true;
4314377Sgblack@eecs.umich.edu            fetchOffset += sizeof(MachInst);
4324377Sgblack@eecs.umich.edu        }
4334181Sgblack@eecs.umich.edu
4344181Sgblack@eecs.umich.edu        //If we decoded an instruction and it's microcoded, start pulling
4354181Sgblack@eecs.umich.edu        //out micro ops
4364539Sgblack@eecs.umich.edu        if (instPtr && instPtr->isMacroop()) {
4373276Sgblack@eecs.umich.edu            curMacroStaticInst = instPtr;
4387720Sgblack@eecs.umich.edu            curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
4393280Sgblack@eecs.umich.edu        } else {
4403280Sgblack@eecs.umich.edu            curStaticInst = instPtr;
4413276Sgblack@eecs.umich.edu        }
4423276Sgblack@eecs.umich.edu    } else {
4433276Sgblack@eecs.umich.edu        //Read the next micro op from the macro op
4447720Sgblack@eecs.umich.edu        curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
4453276Sgblack@eecs.umich.edu    }
4463276Sgblack@eecs.umich.edu
4474181Sgblack@eecs.umich.edu    //If we decoded an instruction this "tick", record information about it.
4488955Sgblack@eecs.umich.edu    if (curStaticInst) {
4494522Ssaidi@eecs.umich.edu#if TRACING_ON
4507823Ssteve.reinhardt@amd.com        traceData = tracer->getInstRecord(curTick(), tc,
4517720Sgblack@eecs.umich.edu                curStaticInst, thread->pcState(), curMacroStaticInst);
4522470SN/A
4538955Sgblack@eecs.umich.edu        DPRINTF(Decode,"Decode: Decoded %s instruction: %#x\n",
4544181Sgblack@eecs.umich.edu                curStaticInst->getName(), curStaticInst->machInst);
4554522Ssaidi@eecs.umich.edu#endif // TRACING_ON
4564181Sgblack@eecs.umich.edu    }
45710061Sandreas@sandberg.pp.se
45810061Sandreas@sandberg.pp.se    if (branchPred && curStaticInst && curStaticInst->isControl()) {
45910061Sandreas@sandberg.pp.se        // Use a fake sequence number since we only have one
46010061Sandreas@sandberg.pp.se        // instruction in flight at the same time.
46110061Sandreas@sandberg.pp.se        const InstSeqNum cur_sn(0);
46210061Sandreas@sandberg.pp.se        const ThreadID tid(0);
46310061Sandreas@sandberg.pp.se        pred_pc = thread->pcState();
46410061Sandreas@sandberg.pp.se        const bool predict_taken(
46510061Sandreas@sandberg.pp.se            branchPred->predict(curStaticInst, cur_sn, pred_pc, tid));
46610061Sandreas@sandberg.pp.se
46710061Sandreas@sandberg.pp.se        if (predict_taken)
46810061Sandreas@sandberg.pp.se            ++numPredictedBranches;
46910061Sandreas@sandberg.pp.se    }
4702623SN/A}
4712623SN/A
4722623SN/Avoid
4732623SN/ABaseSimpleCPU::postExecute()
4742623SN/A{
4757720Sgblack@eecs.umich.edu    assert(curStaticInst);
4767720Sgblack@eecs.umich.edu
4777720Sgblack@eecs.umich.edu    TheISA::PCState pc = tc->pcState();
4787720Sgblack@eecs.umich.edu    Addr instAddr = pc.instAddr();
4798780Sgblack@eecs.umich.edu    if (FullSystem && thread->profile) {
4803577Sgblack@eecs.umich.edu        bool usermode = TheISA::inUserMode(tc);
4817720Sgblack@eecs.umich.edu        thread->profilePC = usermode ? 1 : instAddr;
4825086Sgblack@eecs.umich.edu        ProfileNode *node = thread->profile->consume(tc, curStaticInst);
4832623SN/A        if (node)
4842683Sktlim@umich.edu            thread->profileNode = node;
4852623SN/A    }
4862SN/A
4872623SN/A    if (curStaticInst->isMemRef()) {
4882623SN/A        numMemRefs++;
4892SN/A    }
4902SN/A
4912623SN/A    if (curStaticInst->isLoad()) {
4922623SN/A        ++numLoad;
4932623SN/A        comLoadEventQueue[0]->serviceEvents(numLoad);
4942623SN/A    }
4952SN/A
4965953Ssaidi@eecs.umich.edu    if (CPA::available()) {
4977720Sgblack@eecs.umich.edu        CPA::cpa()->swAutoBegin(tc, pc.nextInstAddr());
4985953Ssaidi@eecs.umich.edu    }
4995953Ssaidi@eecs.umich.edu
50010061Sandreas@sandberg.pp.se    if (curStaticInst->isControl()) {
50110061Sandreas@sandberg.pp.se        ++numBranches;
50210061Sandreas@sandberg.pp.se    }
50310061Sandreas@sandberg.pp.se
5047897Shestness@cs.utexas.edu    /* Power model statistics */
5057897Shestness@cs.utexas.edu    //integer alu accesses
5067897Shestness@cs.utexas.edu    if (curStaticInst->isInteger()){
5077897Shestness@cs.utexas.edu        numIntAluAccesses++;
5087897Shestness@cs.utexas.edu        numIntInsts++;
5097897Shestness@cs.utexas.edu    }
5107897Shestness@cs.utexas.edu
5117897Shestness@cs.utexas.edu    //float alu accesses
5127897Shestness@cs.utexas.edu    if (curStaticInst->isFloating()){
5137897Shestness@cs.utexas.edu        numFpAluAccesses++;
5147897Shestness@cs.utexas.edu        numFpInsts++;
5157897Shestness@cs.utexas.edu    }
5167897Shestness@cs.utexas.edu
5177897Shestness@cs.utexas.edu    //number of function calls/returns to get window accesses
5187897Shestness@cs.utexas.edu    if (curStaticInst->isCall() || curStaticInst->isReturn()){
5197897Shestness@cs.utexas.edu        numCallsReturns++;
5207897Shestness@cs.utexas.edu    }
5217897Shestness@cs.utexas.edu
5227897Shestness@cs.utexas.edu    //the number of branch predictions that will be made
5237897Shestness@cs.utexas.edu    if (curStaticInst->isCondCtrl()){
5247897Shestness@cs.utexas.edu        numCondCtrlInsts++;
5257897Shestness@cs.utexas.edu    }
5267897Shestness@cs.utexas.edu
5277897Shestness@cs.utexas.edu    //result bus acceses
5287897Shestness@cs.utexas.edu    if (curStaticInst->isLoad()){
5297897Shestness@cs.utexas.edu        numLoadInsts++;
5307897Shestness@cs.utexas.edu    }
5317897Shestness@cs.utexas.edu
5327897Shestness@cs.utexas.edu    if (curStaticInst->isStore()){
5337897Shestness@cs.utexas.edu        numStoreInsts++;
5347897Shestness@cs.utexas.edu    }
5357897Shestness@cs.utexas.edu    /* End power model statistics */
5367897Shestness@cs.utexas.edu
53710193SCurtis.Dunham@arm.com    statExecutedInstType[curStaticInst->opClass()]++;
53810193SCurtis.Dunham@arm.com
5398780Sgblack@eecs.umich.edu    if (FullSystem)
5408780Sgblack@eecs.umich.edu        traceFunctions(instAddr);
5412644Sstever@eecs.umich.edu
5422644Sstever@eecs.umich.edu    if (traceData) {
5434046Sbinkertn@umich.edu        traceData->dump();
5444046Sbinkertn@umich.edu        delete traceData;
5454046Sbinkertn@umich.edu        traceData = NULL;
5462644Sstever@eecs.umich.edu    }
54710464SAndreas.Sandberg@ARM.com
54810464SAndreas.Sandberg@ARM.com    // Call CPU instruction commit probes
54910464SAndreas.Sandberg@ARM.com    probeInstCommit(curStaticInst);
5502623SN/A}
5512SN/A
5522623SN/Avoid
55310379Sandreas.hansson@arm.comBaseSimpleCPU::advancePC(const Fault &fault)
5542623SN/A{
55510061Sandreas@sandberg.pp.se    const bool branching(thread->pcState().branching());
55610061Sandreas@sandberg.pp.se
5574377Sgblack@eecs.umich.edu    //Since we're moving to a new pc, zero out the offset
5584377Sgblack@eecs.umich.edu    fetchOffset = 0;
5592090SN/A    if (fault != NoFault) {
5603905Ssaidi@eecs.umich.edu        curMacroStaticInst = StaticInst::nullStaticInstPtr;
5617678Sgblack@eecs.umich.edu        fault->invoke(tc, curStaticInst);
5629023Sgblack@eecs.umich.edu        thread->decoder.reset();
5634377Sgblack@eecs.umich.edu    } else {
5647720Sgblack@eecs.umich.edu        if (curStaticInst) {
5657720Sgblack@eecs.umich.edu            if (curStaticInst->isLastMicroop())
5667720Sgblack@eecs.umich.edu                curMacroStaticInst = StaticInst::nullStaticInstPtr;
5677720Sgblack@eecs.umich.edu            TheISA::PCState pcState = thread->pcState();
5687720Sgblack@eecs.umich.edu            TheISA::advancePC(pcState, curStaticInst);
5697720Sgblack@eecs.umich.edu            thread->pcState(pcState);
5703276Sgblack@eecs.umich.edu        }
5712SN/A    }
57210061Sandreas@sandberg.pp.se
57310061Sandreas@sandberg.pp.se    if (branchPred && curStaticInst && curStaticInst->isControl()) {
57410061Sandreas@sandberg.pp.se        // Use a fake sequence number since we only have one
57510061Sandreas@sandberg.pp.se        // instruction in flight at the same time.
57610061Sandreas@sandberg.pp.se        const InstSeqNum cur_sn(0);
57710061Sandreas@sandberg.pp.se        const ThreadID tid(0);
57810061Sandreas@sandberg.pp.se
57910061Sandreas@sandberg.pp.se        if (pred_pc == thread->pcState()) {
58010061Sandreas@sandberg.pp.se            // Correctly predicted branch
58110061Sandreas@sandberg.pp.se            branchPred->update(cur_sn, tid);
58210061Sandreas@sandberg.pp.se        } else {
58310061Sandreas@sandberg.pp.se            // Mis-predicted branch
58410061Sandreas@sandberg.pp.se            branchPred->squash(cur_sn, pcState(),
58510061Sandreas@sandberg.pp.se                               branching, tid);
58610061Sandreas@sandberg.pp.se            ++numBranchMispred;
58710061Sandreas@sandberg.pp.se        }
58810061Sandreas@sandberg.pp.se    }
5892SN/A}
5902SN/A
5919461Snilay@cs.wisc.eduvoid
5929461Snilay@cs.wisc.eduBaseSimpleCPU::startup()
5939461Snilay@cs.wisc.edu{
5949461Snilay@cs.wisc.edu    BaseCPU::startup();
5959461Snilay@cs.wisc.edu    thread->startup();
5969461Snilay@cs.wisc.edu}
597