timing.cc revision 9152
12623SN/A/*
28948Sandreas.hansson@arm.com * Copyright (c) 2010-2012 ARM Limited
37725SAli.Saidi@ARM.com * All rights reserved
47725SAli.Saidi@ARM.com *
57725SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall
67725SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual
77725SAli.Saidi@ARM.com * property including but not limited to intellectual property relating
87725SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software
97725SAli.Saidi@ARM.com * licensed hereunder.  You may use the software subject to the license
107725SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated
117725SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software,
127725SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form.
137725SAli.Saidi@ARM.com *
142623SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
152623SN/A * All rights reserved.
162623SN/A *
172623SN/A * Redistribution and use in source and binary forms, with or without
182623SN/A * modification, are permitted provided that the following conditions are
192623SN/A * met: redistributions of source code must retain the above copyright
202623SN/A * notice, this list of conditions and the following disclaimer;
212623SN/A * redistributions in binary form must reproduce the above copyright
222623SN/A * notice, this list of conditions and the following disclaimer in the
232623SN/A * documentation and/or other materials provided with the distribution;
242623SN/A * neither the name of the copyright holders nor the names of its
252623SN/A * contributors may be used to endorse or promote products derived from
262623SN/A * this software without specific prior written permission.
272623SN/A *
282623SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292623SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302623SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312623SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322623SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332623SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342623SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352623SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362623SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372623SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382623SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392665Ssaidi@eecs.umich.edu *
402665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
412623SN/A */
422623SN/A
433170Sstever@eecs.umich.edu#include "arch/locked_mem.hh"
448105Sgblack@eecs.umich.edu#include "arch/mmapped_ipr.hh"
452623SN/A#include "arch/utility.hh"
464040Ssaidi@eecs.umich.edu#include "base/bigint.hh"
476658Snate@binkert.org#include "config/the_isa.hh"
488229Snate@binkert.org#include "cpu/simple/timing.hh"
492623SN/A#include "cpu/exetrace.hh"
508232Snate@binkert.org#include "debug/Config.hh"
519152Satgutier@umich.edu#include "debug/Drain.hh"
528232Snate@binkert.org#include "debug/ExecFaulting.hh"
538232Snate@binkert.org#include "debug/SimpleCPU.hh"
543348Sbinkertn@umich.edu#include "mem/packet.hh"
553348Sbinkertn@umich.edu#include "mem/packet_access.hh"
564762Snate@binkert.org#include "params/TimingSimpleCPU.hh"
577678Sgblack@eecs.umich.edu#include "sim/faults.hh"
588779Sgblack@eecs.umich.edu#include "sim/full_system.hh"
592901Ssaidi@eecs.umich.edu#include "sim/system.hh"
602623SN/A
612623SN/Ausing namespace std;
622623SN/Ausing namespace TheISA;
632623SN/A
642623SN/Avoid
652623SN/ATimingSimpleCPU::init()
662623SN/A{
672623SN/A    BaseCPU::init();
688921Sandreas.hansson@arm.com
698921Sandreas.hansson@arm.com    // Initialise the ThreadContext's memory proxies
708921Sandreas.hansson@arm.com    tcBase()->initMemProxies(tcBase());
718921Sandreas.hansson@arm.com
729058Satgutier@umich.edu    if (FullSystem && !params()->defer_registration) {
738779Sgblack@eecs.umich.edu        for (int i = 0; i < threadContexts.size(); ++i) {
748779Sgblack@eecs.umich.edu            ThreadContext *tc = threadContexts[i];
758779Sgblack@eecs.umich.edu            // initialize CPU, including PC
768779Sgblack@eecs.umich.edu            TheISA::initCPU(tc, _cpuId);
778779Sgblack@eecs.umich.edu        }
782623SN/A    }
792623SN/A}
802623SN/A
812623SN/Avoid
828707Sandreas.hansson@arm.comTimingSimpleCPU::TimingCPUPort::TickEvent::schedule(PacketPtr _pkt, Tick t)
832948Ssaidi@eecs.umich.edu{
842948Ssaidi@eecs.umich.edu    pkt = _pkt;
855606Snate@binkert.org    cpu->schedule(this, t);
862948Ssaidi@eecs.umich.edu}
872948Ssaidi@eecs.umich.edu
885529Snate@binkert.orgTimingSimpleCPU::TimingSimpleCPU(TimingSimpleCPUParams *p)
898707Sandreas.hansson@arm.com    : BaseSimpleCPU(p), fetchTranslation(this), icachePort(this),
908707Sandreas.hansson@arm.com    dcachePort(this), fetchEvent(this)
912623SN/A{
922623SN/A    _status = Idle;
933647Srdreslin@umich.edu
942623SN/A    ifetch_pkt = dcache_pkt = NULL;
952839Sktlim@umich.edu    drainEvent = NULL;
963222Sktlim@umich.edu    previousTick = 0;
972901Ssaidi@eecs.umich.edu    changeState(SimObject::Running);
987897Shestness@cs.utexas.edu    system->totalNumInsts = 0;
992623SN/A}
1002623SN/A
1012623SN/A
1022623SN/ATimingSimpleCPU::~TimingSimpleCPU()
1032623SN/A{
1042623SN/A}
1052623SN/A
1062623SN/Avoid
1072623SN/ATimingSimpleCPU::serialize(ostream &os)
1082623SN/A{
1092915Sktlim@umich.edu    SimObject::State so_state = SimObject::getState();
1102915Sktlim@umich.edu    SERIALIZE_ENUM(so_state);
1112623SN/A    BaseSimpleCPU::serialize(os);
1122623SN/A}
1132623SN/A
1142623SN/Avoid
1152623SN/ATimingSimpleCPU::unserialize(Checkpoint *cp, const string &section)
1162623SN/A{
1172915Sktlim@umich.edu    SimObject::State so_state;
1182915Sktlim@umich.edu    UNSERIALIZE_ENUM(so_state);
1192623SN/A    BaseSimpleCPU::unserialize(cp, section);
1202798Sktlim@umich.edu}
1212798Sktlim@umich.edu
1222901Ssaidi@eecs.umich.eduunsigned int
1232839Sktlim@umich.eduTimingSimpleCPU::drain(Event *drain_event)
1242798Sktlim@umich.edu{
1252839Sktlim@umich.edu    // TimingSimpleCPU is ready to drain if it's not waiting for
1262798Sktlim@umich.edu    // an access to complete.
1275496Ssaidi@eecs.umich.edu    if (_status == Idle || _status == Running || _status == SwitchedOut) {
1282901Ssaidi@eecs.umich.edu        changeState(SimObject::Drained);
1292901Ssaidi@eecs.umich.edu        return 0;
1302798Sktlim@umich.edu    } else {
1312839Sktlim@umich.edu        changeState(SimObject::Draining);
1322839Sktlim@umich.edu        drainEvent = drain_event;
1339152Satgutier@umich.edu        DPRINTF(Drain, "CPU not drained\n");
1342901Ssaidi@eecs.umich.edu        return 1;
1352798Sktlim@umich.edu    }
1362623SN/A}
1372623SN/A
1382623SN/Avoid
1392798Sktlim@umich.eduTimingSimpleCPU::resume()
1402623SN/A{
1415221Ssaidi@eecs.umich.edu    DPRINTF(SimpleCPU, "Resume\n");
1422798Sktlim@umich.edu    if (_status != SwitchedOut && _status != Idle) {
1434762Snate@binkert.org        assert(system->getMemoryMode() == Enums::timing);
1443201Shsul@eecs.umich.edu
1455710Scws3k@cs.virginia.edu        if (fetchEvent.scheduled())
1465710Scws3k@cs.virginia.edu           deschedule(fetchEvent);
1472915Sktlim@umich.edu
1485710Scws3k@cs.virginia.edu        schedule(fetchEvent, nextCycle());
1492623SN/A    }
1502798Sktlim@umich.edu
1512901Ssaidi@eecs.umich.edu    changeState(SimObject::Running);
1522798Sktlim@umich.edu}
1532798Sktlim@umich.edu
1542798Sktlim@umich.eduvoid
1552798Sktlim@umich.eduTimingSimpleCPU::switchOut()
1562798Sktlim@umich.edu{
1575496Ssaidi@eecs.umich.edu    assert(_status == Running || _status == Idle);
1582798Sktlim@umich.edu    _status = SwitchedOut;
1597823Ssteve.reinhardt@amd.com    numCycles += tickToCycles(curTick() - previousTick);
1602867Sktlim@umich.edu
1612867Sktlim@umich.edu    // If we've been scheduled to resume but are then told to switch out,
1622867Sktlim@umich.edu    // we'll need to cancel it.
1635710Scws3k@cs.virginia.edu    if (fetchEvent.scheduled())
1645606Snate@binkert.org        deschedule(fetchEvent);
1652623SN/A}
1662623SN/A
1672623SN/A
1682623SN/Avoid
1692623SN/ATimingSimpleCPU::takeOverFrom(BaseCPU *oldCPU)
1702623SN/A{
1718737Skoansin.tan@gmail.com    BaseCPU::takeOverFrom(oldCPU);
1722623SN/A
1732680Sktlim@umich.edu    // if any of this CPU's ThreadContexts are active, mark the CPU as
1742623SN/A    // running and schedule its tick event.
1752680Sktlim@umich.edu    for (int i = 0; i < threadContexts.size(); ++i) {
1762680Sktlim@umich.edu        ThreadContext *tc = threadContexts[i];
1772680Sktlim@umich.edu        if (tc->status() == ThreadContext::Active && _status != Running) {
1782623SN/A            _status = Running;
1792623SN/A            break;
1802623SN/A        }
1812623SN/A    }
1823201Shsul@eecs.umich.edu
1833201Shsul@eecs.umich.edu    if (_status != Running) {
1843201Shsul@eecs.umich.edu        _status = Idle;
1853201Shsul@eecs.umich.edu    }
1865169Ssaidi@eecs.umich.edu    assert(threadContexts.size() == 1);
1877823Ssteve.reinhardt@amd.com    previousTick = curTick();
1882623SN/A}
1892623SN/A
1902623SN/A
1912623SN/Avoid
1928737Skoansin.tan@gmail.comTimingSimpleCPU::activateContext(ThreadID thread_num, int delay)
1932623SN/A{
1945221Ssaidi@eecs.umich.edu    DPRINTF(SimpleCPU, "ActivateContext %d (%d cycles)\n", thread_num, delay);
1955221Ssaidi@eecs.umich.edu
1962623SN/A    assert(thread_num == 0);
1972683Sktlim@umich.edu    assert(thread);
1982623SN/A
1992623SN/A    assert(_status == Idle);
2002623SN/A
2012623SN/A    notIdleFraction++;
2022623SN/A    _status = Running;
2033686Sktlim@umich.edu
2042623SN/A    // kick things off by initiating the fetch of the next instruction
2057823Ssteve.reinhardt@amd.com    schedule(fetchEvent, nextCycle(curTick() + ticks(delay)));
2062623SN/A}
2072623SN/A
2082623SN/A
2092623SN/Avoid
2108737Skoansin.tan@gmail.comTimingSimpleCPU::suspendContext(ThreadID thread_num)
2112623SN/A{
2125221Ssaidi@eecs.umich.edu    DPRINTF(SimpleCPU, "SuspendContext %d\n", thread_num);
2135221Ssaidi@eecs.umich.edu
2142623SN/A    assert(thread_num == 0);
2152683Sktlim@umich.edu    assert(thread);
2162623SN/A
2176043Sgblack@eecs.umich.edu    if (_status == Idle)
2186043Sgblack@eecs.umich.edu        return;
2196043Sgblack@eecs.umich.edu
2202644Sstever@eecs.umich.edu    assert(_status == Running);
2212623SN/A
2222644Sstever@eecs.umich.edu    // just change status to Idle... if status != Running,
2232644Sstever@eecs.umich.edu    // completeInst() will not initiate fetch of next instruction.
2242623SN/A
2252623SN/A    notIdleFraction--;
2262623SN/A    _status = Idle;
2272623SN/A}
2282623SN/A
2295728Sgblack@eecs.umich.edubool
2305728Sgblack@eecs.umich.eduTimingSimpleCPU::handleReadPacket(PacketPtr pkt)
2315728Sgblack@eecs.umich.edu{
2325728Sgblack@eecs.umich.edu    RequestPtr req = pkt->req;
2338105Sgblack@eecs.umich.edu    if (req->isMmappedIpr()) {
2345728Sgblack@eecs.umich.edu        Tick delay;
2355728Sgblack@eecs.umich.edu        delay = TheISA::handleIprRead(thread->getTC(), pkt);
2367823Ssteve.reinhardt@amd.com        new IprEvent(pkt, this, nextCycle(curTick() + delay));
2375728Sgblack@eecs.umich.edu        _status = DcacheWaitResponse;
2385728Sgblack@eecs.umich.edu        dcache_pkt = NULL;
2398975Sandreas.hansson@arm.com    } else if (!dcachePort.sendTimingReq(pkt)) {
2405728Sgblack@eecs.umich.edu        _status = DcacheRetry;
2415728Sgblack@eecs.umich.edu        dcache_pkt = pkt;
2425728Sgblack@eecs.umich.edu    } else {
2435728Sgblack@eecs.umich.edu        _status = DcacheWaitResponse;
2445728Sgblack@eecs.umich.edu        // memory system takes ownership of packet
2455728Sgblack@eecs.umich.edu        dcache_pkt = NULL;
2465728Sgblack@eecs.umich.edu    }
2475728Sgblack@eecs.umich.edu    return dcache_pkt == NULL;
2485728Sgblack@eecs.umich.edu}
2492623SN/A
2505894Sgblack@eecs.umich.eduvoid
2516973Stjones1@inf.ed.ac.ukTimingSimpleCPU::sendData(RequestPtr req, uint8_t *data, uint64_t *res,
2526973Stjones1@inf.ed.ac.uk                          bool read)
2535744Sgblack@eecs.umich.edu{
2545894Sgblack@eecs.umich.edu    PacketPtr pkt;
2555894Sgblack@eecs.umich.edu    buildPacket(pkt, req, read);
2567691SAli.Saidi@ARM.com    pkt->dataDynamicArray<uint8_t>(data);
2575894Sgblack@eecs.umich.edu    if (req->getFlags().isSet(Request::NO_ACCESS)) {
2585894Sgblack@eecs.umich.edu        assert(!dcache_pkt);
2595894Sgblack@eecs.umich.edu        pkt->makeResponse();
2605894Sgblack@eecs.umich.edu        completeDataAccess(pkt);
2615894Sgblack@eecs.umich.edu    } else if (read) {
2625894Sgblack@eecs.umich.edu        handleReadPacket(pkt);
2635894Sgblack@eecs.umich.edu    } else {
2645894Sgblack@eecs.umich.edu        bool do_access = true;  // flag to suppress cache access
2655894Sgblack@eecs.umich.edu
2666102Sgblack@eecs.umich.edu        if (req->isLLSC()) {
2675894Sgblack@eecs.umich.edu            do_access = TheISA::handleLockedWrite(thread, req);
2685894Sgblack@eecs.umich.edu        } else if (req->isCondSwap()) {
2695894Sgblack@eecs.umich.edu            assert(res);
2705894Sgblack@eecs.umich.edu            req->setExtraData(*res);
2715894Sgblack@eecs.umich.edu        }
2725894Sgblack@eecs.umich.edu
2735894Sgblack@eecs.umich.edu        if (do_access) {
2745894Sgblack@eecs.umich.edu            dcache_pkt = pkt;
2755894Sgblack@eecs.umich.edu            handleWritePacket();
2765894Sgblack@eecs.umich.edu        } else {
2775894Sgblack@eecs.umich.edu            _status = DcacheWaitResponse;
2785894Sgblack@eecs.umich.edu            completeDataAccess(pkt);
2795894Sgblack@eecs.umich.edu        }
2805894Sgblack@eecs.umich.edu    }
2815894Sgblack@eecs.umich.edu}
2825894Sgblack@eecs.umich.edu
2835894Sgblack@eecs.umich.eduvoid
2846973Stjones1@inf.ed.ac.ukTimingSimpleCPU::sendSplitData(RequestPtr req1, RequestPtr req2,
2856973Stjones1@inf.ed.ac.uk                               RequestPtr req, uint8_t *data, bool read)
2865894Sgblack@eecs.umich.edu{
2875894Sgblack@eecs.umich.edu    PacketPtr pkt1, pkt2;
2885894Sgblack@eecs.umich.edu    buildSplitPacket(pkt1, pkt2, req1, req2, req, data, read);
2895894Sgblack@eecs.umich.edu    if (req->getFlags().isSet(Request::NO_ACCESS)) {
2905894Sgblack@eecs.umich.edu        assert(!dcache_pkt);
2915894Sgblack@eecs.umich.edu        pkt1->makeResponse();
2925894Sgblack@eecs.umich.edu        completeDataAccess(pkt1);
2935894Sgblack@eecs.umich.edu    } else if (read) {
2947911Shestness@cs.utexas.edu        SplitFragmentSenderState * send_state =
2957911Shestness@cs.utexas.edu            dynamic_cast<SplitFragmentSenderState *>(pkt1->senderState);
2965894Sgblack@eecs.umich.edu        if (handleReadPacket(pkt1)) {
2975894Sgblack@eecs.umich.edu            send_state->clearFromParent();
2987911Shestness@cs.utexas.edu            send_state = dynamic_cast<SplitFragmentSenderState *>(
2997911Shestness@cs.utexas.edu                    pkt2->senderState);
3005894Sgblack@eecs.umich.edu            if (handleReadPacket(pkt2)) {
3015894Sgblack@eecs.umich.edu                send_state->clearFromParent();
3025894Sgblack@eecs.umich.edu            }
3035894Sgblack@eecs.umich.edu        }
3045894Sgblack@eecs.umich.edu    } else {
3055894Sgblack@eecs.umich.edu        dcache_pkt = pkt1;
3067911Shestness@cs.utexas.edu        SplitFragmentSenderState * send_state =
3077911Shestness@cs.utexas.edu            dynamic_cast<SplitFragmentSenderState *>(pkt1->senderState);
3085894Sgblack@eecs.umich.edu        if (handleWritePacket()) {
3095894Sgblack@eecs.umich.edu            send_state->clearFromParent();
3105894Sgblack@eecs.umich.edu            dcache_pkt = pkt2;
3117911Shestness@cs.utexas.edu            send_state = dynamic_cast<SplitFragmentSenderState *>(
3127911Shestness@cs.utexas.edu                    pkt2->senderState);
3135894Sgblack@eecs.umich.edu            if (handleWritePacket()) {
3145894Sgblack@eecs.umich.edu                send_state->clearFromParent();
3155894Sgblack@eecs.umich.edu            }
3165894Sgblack@eecs.umich.edu        }
3175894Sgblack@eecs.umich.edu    }
3185894Sgblack@eecs.umich.edu}
3195894Sgblack@eecs.umich.edu
3205894Sgblack@eecs.umich.eduvoid
3215894Sgblack@eecs.umich.eduTimingSimpleCPU::translationFault(Fault fault)
3225894Sgblack@eecs.umich.edu{
3236739Sgblack@eecs.umich.edu    // fault may be NoFault in cases where a fault is suppressed,
3246739Sgblack@eecs.umich.edu    // for instance prefetches.
3257823Ssteve.reinhardt@amd.com    numCycles += tickToCycles(curTick() - previousTick);
3267823Ssteve.reinhardt@amd.com    previousTick = curTick();
3275894Sgblack@eecs.umich.edu
3285894Sgblack@eecs.umich.edu    if (traceData) {
3295894Sgblack@eecs.umich.edu        // Since there was a fault, we shouldn't trace this instruction.
3305894Sgblack@eecs.umich.edu        delete traceData;
3315894Sgblack@eecs.umich.edu        traceData = NULL;
3325744Sgblack@eecs.umich.edu    }
3335744Sgblack@eecs.umich.edu
3345894Sgblack@eecs.umich.edu    postExecute();
3355894Sgblack@eecs.umich.edu
3365894Sgblack@eecs.umich.edu    if (getState() == SimObject::Draining) {
3375894Sgblack@eecs.umich.edu        advancePC(fault);
3385894Sgblack@eecs.umich.edu        completeDrain();
3395894Sgblack@eecs.umich.edu    } else {
3405894Sgblack@eecs.umich.edu        advanceInst(fault);
3415894Sgblack@eecs.umich.edu    }
3425894Sgblack@eecs.umich.edu}
3435894Sgblack@eecs.umich.edu
3445894Sgblack@eecs.umich.eduvoid
3455894Sgblack@eecs.umich.eduTimingSimpleCPU::buildPacket(PacketPtr &pkt, RequestPtr req, bool read)
3465894Sgblack@eecs.umich.edu{
3475894Sgblack@eecs.umich.edu    MemCmd cmd;
3485894Sgblack@eecs.umich.edu    if (read) {
3495894Sgblack@eecs.umich.edu        cmd = MemCmd::ReadReq;
3506102Sgblack@eecs.umich.edu        if (req->isLLSC())
3515894Sgblack@eecs.umich.edu            cmd = MemCmd::LoadLockedReq;
3525894Sgblack@eecs.umich.edu    } else {
3535894Sgblack@eecs.umich.edu        cmd = MemCmd::WriteReq;
3546102Sgblack@eecs.umich.edu        if (req->isLLSC()) {
3555894Sgblack@eecs.umich.edu            cmd = MemCmd::StoreCondReq;
3565894Sgblack@eecs.umich.edu        } else if (req->isSwap()) {
3575894Sgblack@eecs.umich.edu            cmd = MemCmd::SwapReq;
3585894Sgblack@eecs.umich.edu        }
3595894Sgblack@eecs.umich.edu    }
3608949Sandreas.hansson@arm.com    pkt = new Packet(req, cmd);
3615894Sgblack@eecs.umich.edu}
3625894Sgblack@eecs.umich.edu
3635894Sgblack@eecs.umich.eduvoid
3645894Sgblack@eecs.umich.eduTimingSimpleCPU::buildSplitPacket(PacketPtr &pkt1, PacketPtr &pkt2,
3655894Sgblack@eecs.umich.edu        RequestPtr req1, RequestPtr req2, RequestPtr req,
3665894Sgblack@eecs.umich.edu        uint8_t *data, bool read)
3675894Sgblack@eecs.umich.edu{
3685894Sgblack@eecs.umich.edu    pkt1 = pkt2 = NULL;
3695894Sgblack@eecs.umich.edu
3708105Sgblack@eecs.umich.edu    assert(!req1->isMmappedIpr() && !req2->isMmappedIpr());
3715744Sgblack@eecs.umich.edu
3725894Sgblack@eecs.umich.edu    if (req->getFlags().isSet(Request::NO_ACCESS)) {
3735894Sgblack@eecs.umich.edu        buildPacket(pkt1, req, read);
3745894Sgblack@eecs.umich.edu        return;
3755894Sgblack@eecs.umich.edu    }
3765894Sgblack@eecs.umich.edu
3775894Sgblack@eecs.umich.edu    buildPacket(pkt1, req1, read);
3785894Sgblack@eecs.umich.edu    buildPacket(pkt2, req2, read);
3795894Sgblack@eecs.umich.edu
3808832SAli.Saidi@ARM.com    req->setPhys(req1->getPaddr(), req->getSize(), req1->getFlags(), dataMasterId());
3818949Sandreas.hansson@arm.com    PacketPtr pkt = new Packet(req, pkt1->cmd.responseCommand());
3825744Sgblack@eecs.umich.edu
3837691SAli.Saidi@ARM.com    pkt->dataDynamicArray<uint8_t>(data);
3845744Sgblack@eecs.umich.edu    pkt1->dataStatic<uint8_t>(data);
3855744Sgblack@eecs.umich.edu    pkt2->dataStatic<uint8_t>(data + req1->getSize());
3865744Sgblack@eecs.umich.edu
3875744Sgblack@eecs.umich.edu    SplitMainSenderState * main_send_state = new SplitMainSenderState;
3885744Sgblack@eecs.umich.edu    pkt->senderState = main_send_state;
3895744Sgblack@eecs.umich.edu    main_send_state->fragments[0] = pkt1;
3905744Sgblack@eecs.umich.edu    main_send_state->fragments[1] = pkt2;
3915744Sgblack@eecs.umich.edu    main_send_state->outstanding = 2;
3925744Sgblack@eecs.umich.edu    pkt1->senderState = new SplitFragmentSenderState(pkt, 0);
3935744Sgblack@eecs.umich.edu    pkt2->senderState = new SplitFragmentSenderState(pkt, 1);
3945744Sgblack@eecs.umich.edu}
3955744Sgblack@eecs.umich.edu
3962623SN/AFault
3978444Sgblack@eecs.umich.eduTimingSimpleCPU::readMem(Addr addr, uint8_t *data,
3988444Sgblack@eecs.umich.edu                         unsigned size, unsigned flags)
3992623SN/A{
4005728Sgblack@eecs.umich.edu    Fault fault;
4015728Sgblack@eecs.umich.edu    const int asid = 0;
4026221Snate@binkert.org    const ThreadID tid = 0;
4037720Sgblack@eecs.umich.edu    const Addr pc = thread->instAddr();
4046227Snate@binkert.org    unsigned block_size = dcachePort.peerBlockSize();
4056973Stjones1@inf.ed.ac.uk    BaseTLB::Mode mode = BaseTLB::Read;
4062623SN/A
4077045Ssteve.reinhardt@amd.com    if (traceData) {
4087045Ssteve.reinhardt@amd.com        traceData->setAddr(addr);
4097045Ssteve.reinhardt@amd.com    }
4107045Ssteve.reinhardt@amd.com
4117520Sgblack@eecs.umich.edu    RequestPtr req  = new Request(asid, addr, size,
4128832SAli.Saidi@ARM.com                                  flags, dataMasterId(), pc, _cpuId, tid);
4135728Sgblack@eecs.umich.edu
4147520Sgblack@eecs.umich.edu    Addr split_addr = roundDown(addr + size - 1, block_size);
4155744Sgblack@eecs.umich.edu    assert(split_addr <= addr || split_addr - addr < block_size);
4165728Sgblack@eecs.umich.edu
4175894Sgblack@eecs.umich.edu    _status = DTBWaitResponse;
4185744Sgblack@eecs.umich.edu    if (split_addr > addr) {
4195894Sgblack@eecs.umich.edu        RequestPtr req1, req2;
4206102Sgblack@eecs.umich.edu        assert(!req->isLLSC() && !req->isSwap());
4215894Sgblack@eecs.umich.edu        req->splitOnVaddr(split_addr, req1, req2);
4225894Sgblack@eecs.umich.edu
4236973Stjones1@inf.ed.ac.uk        WholeTranslationState *state =
4247520Sgblack@eecs.umich.edu            new WholeTranslationState(req, req1, req2, new uint8_t[size],
4256973Stjones1@inf.ed.ac.uk                                      NULL, mode);
4268486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *trans1 =
4278486Sgblack@eecs.umich.edu            new DataTranslation<TimingSimpleCPU *>(this, state, 0);
4288486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *trans2 =
4298486Sgblack@eecs.umich.edu            new DataTranslation<TimingSimpleCPU *>(this, state, 1);
4306973Stjones1@inf.ed.ac.uk
4316973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req1, tc, trans1, mode);
4326973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req2, tc, trans2, mode);
4335744Sgblack@eecs.umich.edu    } else {
4346973Stjones1@inf.ed.ac.uk        WholeTranslationState *state =
4357520Sgblack@eecs.umich.edu            new WholeTranslationState(req, new uint8_t[size], NULL, mode);
4368486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *translation
4378486Sgblack@eecs.umich.edu            = new DataTranslation<TimingSimpleCPU *>(this, state);
4386973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req, tc, translation, mode);
4392623SN/A    }
4402623SN/A
4415728Sgblack@eecs.umich.edu    return NoFault;
4422623SN/A}
4432623SN/A
4445728Sgblack@eecs.umich.edubool
4455728Sgblack@eecs.umich.eduTimingSimpleCPU::handleWritePacket()
4465728Sgblack@eecs.umich.edu{
4475728Sgblack@eecs.umich.edu    RequestPtr req = dcache_pkt->req;
4488105Sgblack@eecs.umich.edu    if (req->isMmappedIpr()) {
4495728Sgblack@eecs.umich.edu        Tick delay;
4505728Sgblack@eecs.umich.edu        delay = TheISA::handleIprWrite(thread->getTC(), dcache_pkt);
4517823Ssteve.reinhardt@amd.com        new IprEvent(dcache_pkt, this, nextCycle(curTick() + delay));
4525728Sgblack@eecs.umich.edu        _status = DcacheWaitResponse;
4535728Sgblack@eecs.umich.edu        dcache_pkt = NULL;
4548975Sandreas.hansson@arm.com    } else if (!dcachePort.sendTimingReq(dcache_pkt)) {
4555728Sgblack@eecs.umich.edu        _status = DcacheRetry;
4565728Sgblack@eecs.umich.edu    } else {
4575728Sgblack@eecs.umich.edu        _status = DcacheWaitResponse;
4585728Sgblack@eecs.umich.edu        // memory system takes ownership of packet
4595728Sgblack@eecs.umich.edu        dcache_pkt = NULL;
4605728Sgblack@eecs.umich.edu    }
4615728Sgblack@eecs.umich.edu    return dcache_pkt == NULL;
4625728Sgblack@eecs.umich.edu}
4632623SN/A
4642623SN/AFault
4658444Sgblack@eecs.umich.eduTimingSimpleCPU::writeMem(uint8_t *data, unsigned size,
4668444Sgblack@eecs.umich.edu                          Addr addr, unsigned flags, uint64_t *res)
4672623SN/A{
4688443Sgblack@eecs.umich.edu    uint8_t *newData = new uint8_t[size];
4698443Sgblack@eecs.umich.edu    memcpy(newData, data, size);
4708443Sgblack@eecs.umich.edu
4715728Sgblack@eecs.umich.edu    const int asid = 0;
4726221Snate@binkert.org    const ThreadID tid = 0;
4737720Sgblack@eecs.umich.edu    const Addr pc = thread->instAddr();
4746227Snate@binkert.org    unsigned block_size = dcachePort.peerBlockSize();
4756973Stjones1@inf.ed.ac.uk    BaseTLB::Mode mode = BaseTLB::Write;
4763169Sstever@eecs.umich.edu
4777045Ssteve.reinhardt@amd.com    if (traceData) {
4787045Ssteve.reinhardt@amd.com        traceData->setAddr(addr);
4797045Ssteve.reinhardt@amd.com    }
4807045Ssteve.reinhardt@amd.com
4817520Sgblack@eecs.umich.edu    RequestPtr req = new Request(asid, addr, size,
4828832SAli.Saidi@ARM.com                                 flags, dataMasterId(), pc, _cpuId, tid);
4835728Sgblack@eecs.umich.edu
4847520Sgblack@eecs.umich.edu    Addr split_addr = roundDown(addr + size - 1, block_size);
4855744Sgblack@eecs.umich.edu    assert(split_addr <= addr || split_addr - addr < block_size);
4865728Sgblack@eecs.umich.edu
4875894Sgblack@eecs.umich.edu    _status = DTBWaitResponse;
4885744Sgblack@eecs.umich.edu    if (split_addr > addr) {
4895894Sgblack@eecs.umich.edu        RequestPtr req1, req2;
4906102Sgblack@eecs.umich.edu        assert(!req->isLLSC() && !req->isSwap());
4915894Sgblack@eecs.umich.edu        req->splitOnVaddr(split_addr, req1, req2);
4925894Sgblack@eecs.umich.edu
4936973Stjones1@inf.ed.ac.uk        WholeTranslationState *state =
4948443Sgblack@eecs.umich.edu            new WholeTranslationState(req, req1, req2, newData, res, mode);
4958486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *trans1 =
4968486Sgblack@eecs.umich.edu            new DataTranslation<TimingSimpleCPU *>(this, state, 0);
4978486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *trans2 =
4988486Sgblack@eecs.umich.edu            new DataTranslation<TimingSimpleCPU *>(this, state, 1);
4996973Stjones1@inf.ed.ac.uk
5006973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req1, tc, trans1, mode);
5016973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req2, tc, trans2, mode);
5025744Sgblack@eecs.umich.edu    } else {
5036973Stjones1@inf.ed.ac.uk        WholeTranslationState *state =
5048443Sgblack@eecs.umich.edu            new WholeTranslationState(req, newData, res, mode);
5058486Sgblack@eecs.umich.edu        DataTranslation<TimingSimpleCPU *> *translation =
5068486Sgblack@eecs.umich.edu            new DataTranslation<TimingSimpleCPU *>(this, state);
5076973Stjones1@inf.ed.ac.uk        thread->dtb->translateTiming(req, tc, translation, mode);
5082623SN/A    }
5092623SN/A
5107045Ssteve.reinhardt@amd.com    // Translation faults will be returned via finishTranslation()
5115728Sgblack@eecs.umich.edu    return NoFault;
5122623SN/A}
5132623SN/A
5142623SN/A
5152623SN/Avoid
5166973Stjones1@inf.ed.ac.ukTimingSimpleCPU::finishTranslation(WholeTranslationState *state)
5176973Stjones1@inf.ed.ac.uk{
5186973Stjones1@inf.ed.ac.uk    _status = Running;
5196973Stjones1@inf.ed.ac.uk
5206973Stjones1@inf.ed.ac.uk    if (state->getFault() != NoFault) {
5216973Stjones1@inf.ed.ac.uk        if (state->isPrefetch()) {
5226973Stjones1@inf.ed.ac.uk            state->setNoFault();
5236973Stjones1@inf.ed.ac.uk        }
5247691SAli.Saidi@ARM.com        delete [] state->data;
5256973Stjones1@inf.ed.ac.uk        state->deleteReqs();
5266973Stjones1@inf.ed.ac.uk        translationFault(state->getFault());
5276973Stjones1@inf.ed.ac.uk    } else {
5286973Stjones1@inf.ed.ac.uk        if (!state->isSplit) {
5296973Stjones1@inf.ed.ac.uk            sendData(state->mainReq, state->data, state->res,
5306973Stjones1@inf.ed.ac.uk                     state->mode == BaseTLB::Read);
5316973Stjones1@inf.ed.ac.uk        } else {
5326973Stjones1@inf.ed.ac.uk            sendSplitData(state->sreqLow, state->sreqHigh, state->mainReq,
5336973Stjones1@inf.ed.ac.uk                          state->data, state->mode == BaseTLB::Read);
5346973Stjones1@inf.ed.ac.uk        }
5356973Stjones1@inf.ed.ac.uk    }
5366973Stjones1@inf.ed.ac.uk
5376973Stjones1@inf.ed.ac.uk    delete state;
5386973Stjones1@inf.ed.ac.uk}
5396973Stjones1@inf.ed.ac.uk
5406973Stjones1@inf.ed.ac.uk
5416973Stjones1@inf.ed.ac.ukvoid
5422623SN/ATimingSimpleCPU::fetch()
5432623SN/A{
5445221Ssaidi@eecs.umich.edu    DPRINTF(SimpleCPU, "Fetch\n");
5455221Ssaidi@eecs.umich.edu
5463387Sgblack@eecs.umich.edu    if (!curStaticInst || !curStaticInst->isDelayedCommit())
5473387Sgblack@eecs.umich.edu        checkForInterrupts();
5482631SN/A
5495348Ssaidi@eecs.umich.edu    checkPcEventQueue();
5505348Ssaidi@eecs.umich.edu
5518143SAli.Saidi@ARM.com    // We must have just got suspended by a PC event
5528143SAli.Saidi@ARM.com    if (_status == Idle)
5538143SAli.Saidi@ARM.com        return;
5548143SAli.Saidi@ARM.com
5557720Sgblack@eecs.umich.edu    TheISA::PCState pcState = thread->pcState();
5567720Sgblack@eecs.umich.edu    bool needToFetch = !isRomMicroPC(pcState.microPC()) && !curMacroStaticInst;
5572623SN/A
5587720Sgblack@eecs.umich.edu    if (needToFetch) {
5598276SAli.Saidi@ARM.com        _status = Running;
5605669Sgblack@eecs.umich.edu        Request *ifetch_req = new Request();
5615712Shsul@eecs.umich.edu        ifetch_req->setThreadContext(_cpuId, /* thread ID */ 0);
5625894Sgblack@eecs.umich.edu        setupFetchRequest(ifetch_req);
5638277SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, "Translating address %#x\n", ifetch_req->getVaddr());
5646023Snate@binkert.org        thread->itb->translateTiming(ifetch_req, tc, &fetchTranslation,
5656023Snate@binkert.org                BaseTLB::Execute);
5662623SN/A    } else {
5675669Sgblack@eecs.umich.edu        _status = IcacheWaitResponse;
5685669Sgblack@eecs.umich.edu        completeIfetch(NULL);
5695894Sgblack@eecs.umich.edu
5707823Ssteve.reinhardt@amd.com        numCycles += tickToCycles(curTick() - previousTick);
5717823Ssteve.reinhardt@amd.com        previousTick = curTick();
5725894Sgblack@eecs.umich.edu    }
5735894Sgblack@eecs.umich.edu}
5745894Sgblack@eecs.umich.edu
5755894Sgblack@eecs.umich.edu
5765894Sgblack@eecs.umich.eduvoid
5775894Sgblack@eecs.umich.eduTimingSimpleCPU::sendFetch(Fault fault, RequestPtr req, ThreadContext *tc)
5785894Sgblack@eecs.umich.edu{
5795894Sgblack@eecs.umich.edu    if (fault == NoFault) {
5808277SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, "Sending fetch for addr %#x(pa: %#x)\n",
5818277SAli.Saidi@ARM.com                req->getVaddr(), req->getPaddr());
5828949Sandreas.hansson@arm.com        ifetch_pkt = new Packet(req, MemCmd::ReadReq);
5835894Sgblack@eecs.umich.edu        ifetch_pkt->dataStatic(&inst);
5848277SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, " -- pkt addr: %#x\n", ifetch_pkt->getAddr());
5855894Sgblack@eecs.umich.edu
5868975Sandreas.hansson@arm.com        if (!icachePort.sendTimingReq(ifetch_pkt)) {
5875894Sgblack@eecs.umich.edu            // Need to wait for retry
5885894Sgblack@eecs.umich.edu            _status = IcacheRetry;
5895894Sgblack@eecs.umich.edu        } else {
5905894Sgblack@eecs.umich.edu            // Need to wait for cache to respond
5915894Sgblack@eecs.umich.edu            _status = IcacheWaitResponse;
5925894Sgblack@eecs.umich.edu            // ownership of packet transferred to memory system
5935894Sgblack@eecs.umich.edu            ifetch_pkt = NULL;
5945894Sgblack@eecs.umich.edu        }
5955894Sgblack@eecs.umich.edu    } else {
5968277SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, "Translation of addr %#x faulted\n", req->getVaddr());
5975894Sgblack@eecs.umich.edu        delete req;
5985894Sgblack@eecs.umich.edu        // fetch fault: advance directly to next instruction (fault handler)
5997945SAli.Saidi@ARM.com        _status = Running;
6005894Sgblack@eecs.umich.edu        advanceInst(fault);
6012623SN/A    }
6023222Sktlim@umich.edu
6037823Ssteve.reinhardt@amd.com    numCycles += tickToCycles(curTick() - previousTick);
6047823Ssteve.reinhardt@amd.com    previousTick = curTick();
6052623SN/A}
6062623SN/A
6072623SN/A
6082623SN/Avoid
6092644Sstever@eecs.umich.eduTimingSimpleCPU::advanceInst(Fault fault)
6102623SN/A{
6118276SAli.Saidi@ARM.com
6128276SAli.Saidi@ARM.com    if (_status == Faulting)
6138276SAli.Saidi@ARM.com        return;
6148276SAli.Saidi@ARM.com
6158276SAli.Saidi@ARM.com    if (fault != NoFault) {
6168276SAli.Saidi@ARM.com        advancePC(fault);
6178276SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, "Fault occured, scheduling fetch event\n");
6188276SAli.Saidi@ARM.com        reschedule(fetchEvent, nextCycle(), true);
6198276SAli.Saidi@ARM.com        _status = Faulting;
6208276SAli.Saidi@ARM.com        return;
6218276SAli.Saidi@ARM.com    }
6228276SAli.Saidi@ARM.com
6238276SAli.Saidi@ARM.com
6248276SAli.Saidi@ARM.com    if (!stayAtPC)
6255726Sgblack@eecs.umich.edu        advancePC(fault);
6262623SN/A
6272631SN/A    if (_status == Running) {
6282631SN/A        // kick off fetch of next instruction... callback from icache
6292631SN/A        // response will cause that instruction to be executed,
6302631SN/A        // keeping the CPU running.
6312631SN/A        fetch();
6322631SN/A    }
6332623SN/A}
6342623SN/A
6352623SN/A
6362623SN/Avoid
6373349Sbinkertn@umich.eduTimingSimpleCPU::completeIfetch(PacketPtr pkt)
6382623SN/A{
6398277SAli.Saidi@ARM.com    DPRINTF(SimpleCPU, "Complete ICache Fetch for addr %#x\n", pkt ?
6408277SAli.Saidi@ARM.com            pkt->getAddr() : 0);
6418277SAli.Saidi@ARM.com
6422623SN/A    // received a response from the icache: execute the received
6432623SN/A    // instruction
6445669Sgblack@eecs.umich.edu
6455669Sgblack@eecs.umich.edu    assert(!pkt || !pkt->isError());
6462623SN/A    assert(_status == IcacheWaitResponse);
6472798Sktlim@umich.edu
6482623SN/A    _status = Running;
6492644Sstever@eecs.umich.edu
6507823Ssteve.reinhardt@amd.com    numCycles += tickToCycles(curTick() - previousTick);
6517823Ssteve.reinhardt@amd.com    previousTick = curTick();
6523222Sktlim@umich.edu
6532839Sktlim@umich.edu    if (getState() == SimObject::Draining) {
6545669Sgblack@eecs.umich.edu        if (pkt) {
6555669Sgblack@eecs.umich.edu            delete pkt->req;
6565669Sgblack@eecs.umich.edu            delete pkt;
6575669Sgblack@eecs.umich.edu        }
6583658Sktlim@umich.edu
6592839Sktlim@umich.edu        completeDrain();
6602798Sktlim@umich.edu        return;
6612798Sktlim@umich.edu    }
6622798Sktlim@umich.edu
6632623SN/A    preExecute();
6647725SAli.Saidi@ARM.com    if (curStaticInst && curStaticInst->isMemRef()) {
6652623SN/A        // load or store: just send to dcache
6662623SN/A        Fault fault = curStaticInst->initiateAcc(this, traceData);
6677945SAli.Saidi@ARM.com
6687945SAli.Saidi@ARM.com        // If we're not running now the instruction will complete in a dcache
6697945SAli.Saidi@ARM.com        // response callback or the instruction faulted and has started an
6707945SAli.Saidi@ARM.com        // ifetch
6717945SAli.Saidi@ARM.com        if (_status == Running) {
6725894Sgblack@eecs.umich.edu            if (fault != NoFault && traceData) {
6735001Sgblack@eecs.umich.edu                // If there was a fault, we shouldn't trace this instruction.
6745001Sgblack@eecs.umich.edu                delete traceData;
6755001Sgblack@eecs.umich.edu                traceData = NULL;
6763170Sstever@eecs.umich.edu            }
6774998Sgblack@eecs.umich.edu
6782644Sstever@eecs.umich.edu            postExecute();
6795103Ssaidi@eecs.umich.edu            // @todo remove me after debugging with legion done
6805103Ssaidi@eecs.umich.edu            if (curStaticInst && (!curStaticInst->isMicroop() ||
6815103Ssaidi@eecs.umich.edu                        curStaticInst->isFirstMicroop()))
6825103Ssaidi@eecs.umich.edu                instCnt++;
6832644Sstever@eecs.umich.edu            advanceInst(fault);
6842644Sstever@eecs.umich.edu        }
6855726Sgblack@eecs.umich.edu    } else if (curStaticInst) {
6862623SN/A        // non-memory instruction: execute completely now
6872623SN/A        Fault fault = curStaticInst->execute(this, traceData);
6884998Sgblack@eecs.umich.edu
6894998Sgblack@eecs.umich.edu        // keep an instruction count
6904998Sgblack@eecs.umich.edu        if (fault == NoFault)
6914998Sgblack@eecs.umich.edu            countInst();
6927655Sali.saidi@arm.com        else if (traceData && !DTRACE(ExecFaulting)) {
6935001Sgblack@eecs.umich.edu            delete traceData;
6945001Sgblack@eecs.umich.edu            traceData = NULL;
6955001Sgblack@eecs.umich.edu        }
6964998Sgblack@eecs.umich.edu
6972644Sstever@eecs.umich.edu        postExecute();
6985103Ssaidi@eecs.umich.edu        // @todo remove me after debugging with legion done
6995103Ssaidi@eecs.umich.edu        if (curStaticInst && (!curStaticInst->isMicroop() ||
7005103Ssaidi@eecs.umich.edu                    curStaticInst->isFirstMicroop()))
7015103Ssaidi@eecs.umich.edu            instCnt++;
7022644Sstever@eecs.umich.edu        advanceInst(fault);
7035726Sgblack@eecs.umich.edu    } else {
7045726Sgblack@eecs.umich.edu        advanceInst(NoFault);
7052623SN/A    }
7063658Sktlim@umich.edu
7075669Sgblack@eecs.umich.edu    if (pkt) {
7085669Sgblack@eecs.umich.edu        delete pkt->req;
7095669Sgblack@eecs.umich.edu        delete pkt;
7105669Sgblack@eecs.umich.edu    }
7112623SN/A}
7122623SN/A
7132948Ssaidi@eecs.umich.eduvoid
7142948Ssaidi@eecs.umich.eduTimingSimpleCPU::IcachePort::ITickEvent::process()
7152948Ssaidi@eecs.umich.edu{
7162948Ssaidi@eecs.umich.edu    cpu->completeIfetch(pkt);
7172948Ssaidi@eecs.umich.edu}
7182623SN/A
7192623SN/Abool
7208975Sandreas.hansson@arm.comTimingSimpleCPU::IcachePort::recvTimingResp(PacketPtr pkt)
7212623SN/A{
7228948Sandreas.hansson@arm.com    if (!pkt->wasNacked()) {
7238277SAli.Saidi@ARM.com        DPRINTF(SimpleCPU, "Received timing response %#x\n", pkt->getAddr());
7243310Srdreslin@umich.edu        // delay processing of returned data until next CPU clock edge
7257823Ssteve.reinhardt@amd.com        Tick next_tick = cpu->nextCycle(curTick());
7262948Ssaidi@eecs.umich.edu
7277823Ssteve.reinhardt@amd.com        if (next_tick == curTick())
7283310Srdreslin@umich.edu            cpu->completeIfetch(pkt);
7293310Srdreslin@umich.edu        else
7303495Sktlim@umich.edu            tickEvent.schedule(pkt, next_tick);
7312948Ssaidi@eecs.umich.edu
7323310Srdreslin@umich.edu        return true;
7338948Sandreas.hansson@arm.com    } else {
7344433Ssaidi@eecs.umich.edu        assert(cpu->_status == IcacheWaitResponse);
7354433Ssaidi@eecs.umich.edu        pkt->reinitNacked();
7368975Sandreas.hansson@arm.com        if (!sendTimingReq(pkt)) {
7374433Ssaidi@eecs.umich.edu            cpu->_status = IcacheRetry;
7384433Ssaidi@eecs.umich.edu            cpu->ifetch_pkt = pkt;
7394433Ssaidi@eecs.umich.edu        }
7403310Srdreslin@umich.edu    }
7418948Sandreas.hansson@arm.com
7424433Ssaidi@eecs.umich.edu    return true;
7432623SN/A}
7442623SN/A
7452657Ssaidi@eecs.umich.eduvoid
7462623SN/ATimingSimpleCPU::IcachePort::recvRetry()
7472623SN/A{
7482623SN/A    // we shouldn't get a retry unless we have a packet that we're
7492623SN/A    // waiting to transmit
7502623SN/A    assert(cpu->ifetch_pkt != NULL);
7512623SN/A    assert(cpu->_status == IcacheRetry);
7523349Sbinkertn@umich.edu    PacketPtr tmp = cpu->ifetch_pkt;
7538975Sandreas.hansson@arm.com    if (sendTimingReq(tmp)) {
7542657Ssaidi@eecs.umich.edu        cpu->_status = IcacheWaitResponse;
7552657Ssaidi@eecs.umich.edu        cpu->ifetch_pkt = NULL;
7562657Ssaidi@eecs.umich.edu    }
7572623SN/A}
7582623SN/A
7592623SN/Avoid
7603349Sbinkertn@umich.eduTimingSimpleCPU::completeDataAccess(PacketPtr pkt)
7612623SN/A{
7622623SN/A    // received a response from the dcache: complete the load or store
7632623SN/A    // instruction
7644870Sstever@eecs.umich.edu    assert(!pkt->isError());
7657516Shestness@cs.utexas.edu    assert(_status == DcacheWaitResponse || _status == DTBWaitResponse ||
7667516Shestness@cs.utexas.edu           pkt->req->getFlags().isSet(Request::NO_ACCESS));
7672623SN/A
7687823Ssteve.reinhardt@amd.com    numCycles += tickToCycles(curTick() - previousTick);
7697823Ssteve.reinhardt@amd.com    previousTick = curTick();
7703184Srdreslin@umich.edu
7715728Sgblack@eecs.umich.edu    if (pkt->senderState) {
7725728Sgblack@eecs.umich.edu        SplitFragmentSenderState * send_state =
7735728Sgblack@eecs.umich.edu            dynamic_cast<SplitFragmentSenderState *>(pkt->senderState);
7745728Sgblack@eecs.umich.edu        assert(send_state);
7755728Sgblack@eecs.umich.edu        delete pkt->req;
7765728Sgblack@eecs.umich.edu        delete pkt;
7775728Sgblack@eecs.umich.edu        PacketPtr big_pkt = send_state->bigPkt;
7785728Sgblack@eecs.umich.edu        delete send_state;
7795728Sgblack@eecs.umich.edu
7805728Sgblack@eecs.umich.edu        SplitMainSenderState * main_send_state =
7815728Sgblack@eecs.umich.edu            dynamic_cast<SplitMainSenderState *>(big_pkt->senderState);
7825728Sgblack@eecs.umich.edu        assert(main_send_state);
7835728Sgblack@eecs.umich.edu        // Record the fact that this packet is no longer outstanding.
7845728Sgblack@eecs.umich.edu        assert(main_send_state->outstanding != 0);
7855728Sgblack@eecs.umich.edu        main_send_state->outstanding--;
7865728Sgblack@eecs.umich.edu
7875728Sgblack@eecs.umich.edu        if (main_send_state->outstanding) {
7885728Sgblack@eecs.umich.edu            return;
7895728Sgblack@eecs.umich.edu        } else {
7905728Sgblack@eecs.umich.edu            delete main_send_state;
7915728Sgblack@eecs.umich.edu            big_pkt->senderState = NULL;
7925728Sgblack@eecs.umich.edu            pkt = big_pkt;
7935728Sgblack@eecs.umich.edu        }
7945728Sgblack@eecs.umich.edu    }
7955728Sgblack@eecs.umich.edu
7965728Sgblack@eecs.umich.edu    _status = Running;
7975728Sgblack@eecs.umich.edu
7982623SN/A    Fault fault = curStaticInst->completeAcc(pkt, this, traceData);
7992623SN/A
8004998Sgblack@eecs.umich.edu    // keep an instruction count
8014998Sgblack@eecs.umich.edu    if (fault == NoFault)
8024998Sgblack@eecs.umich.edu        countInst();
8035001Sgblack@eecs.umich.edu    else if (traceData) {
8045001Sgblack@eecs.umich.edu        // If there was a fault, we shouldn't trace this instruction.
8055001Sgblack@eecs.umich.edu        delete traceData;
8065001Sgblack@eecs.umich.edu        traceData = NULL;
8075001Sgblack@eecs.umich.edu    }
8084998Sgblack@eecs.umich.edu
8095507Sstever@gmail.com    // the locked flag may be cleared on the response packet, so check
8105507Sstever@gmail.com    // pkt->req and not pkt to see if it was a load-locked
8116102Sgblack@eecs.umich.edu    if (pkt->isRead() && pkt->req->isLLSC()) {
8123170Sstever@eecs.umich.edu        TheISA::handleLockedRead(thread, pkt->req);
8133170Sstever@eecs.umich.edu    }
8143170Sstever@eecs.umich.edu
8152644Sstever@eecs.umich.edu    delete pkt->req;
8162644Sstever@eecs.umich.edu    delete pkt;
8172644Sstever@eecs.umich.edu
8183184Srdreslin@umich.edu    postExecute();
8193227Sktlim@umich.edu
8203201Shsul@eecs.umich.edu    if (getState() == SimObject::Draining) {
8213201Shsul@eecs.umich.edu        advancePC(fault);
8223201Shsul@eecs.umich.edu        completeDrain();
8233201Shsul@eecs.umich.edu
8243201Shsul@eecs.umich.edu        return;
8253201Shsul@eecs.umich.edu    }
8263201Shsul@eecs.umich.edu
8272644Sstever@eecs.umich.edu    advanceInst(fault);
8282623SN/A}
8292623SN/A
8302623SN/A
8312798Sktlim@umich.eduvoid
8322839Sktlim@umich.eduTimingSimpleCPU::completeDrain()
8332798Sktlim@umich.edu{
8349152Satgutier@umich.edu    DPRINTF(Drain, "CPU done draining, processing drain event\n");
8352901Ssaidi@eecs.umich.edu    changeState(SimObject::Drained);
8362839Sktlim@umich.edu    drainEvent->process();
8372798Sktlim@umich.edu}
8382623SN/A
8392623SN/Abool
8408975Sandreas.hansson@arm.comTimingSimpleCPU::DcachePort::recvTimingResp(PacketPtr pkt)
8412623SN/A{
8428948Sandreas.hansson@arm.com    if (!pkt->wasNacked()) {
8433310Srdreslin@umich.edu        // delay processing of returned data until next CPU clock edge
8447823Ssteve.reinhardt@amd.com        Tick next_tick = cpu->nextCycle(curTick());
8452948Ssaidi@eecs.umich.edu
8467823Ssteve.reinhardt@amd.com        if (next_tick == curTick()) {
8473310Srdreslin@umich.edu            cpu->completeDataAccess(pkt);
8485728Sgblack@eecs.umich.edu        } else {
8497745SAli.Saidi@ARM.com            if (!tickEvent.scheduled()) {
8507745SAli.Saidi@ARM.com                tickEvent.schedule(pkt, next_tick);
8517745SAli.Saidi@ARM.com            } else {
8527745SAli.Saidi@ARM.com                // In the case of a split transaction and a cache that is
8537745SAli.Saidi@ARM.com                // faster than a CPU we could get two responses before
8547745SAli.Saidi@ARM.com                // next_tick expires
8557745SAli.Saidi@ARM.com                if (!retryEvent.scheduled())
8568708Sandreas.hansson@arm.com                    cpu->schedule(retryEvent, next_tick);
8577745SAli.Saidi@ARM.com                return false;
8587745SAli.Saidi@ARM.com            }
8595728Sgblack@eecs.umich.edu        }
8602948Ssaidi@eecs.umich.edu
8613310Srdreslin@umich.edu        return true;
8628948Sandreas.hansson@arm.com    } else  {
8634433Ssaidi@eecs.umich.edu        assert(cpu->_status == DcacheWaitResponse);
8644433Ssaidi@eecs.umich.edu        pkt->reinitNacked();
8658975Sandreas.hansson@arm.com        if (!sendTimingReq(pkt)) {
8664433Ssaidi@eecs.umich.edu            cpu->_status = DcacheRetry;
8674433Ssaidi@eecs.umich.edu            cpu->dcache_pkt = pkt;
8684433Ssaidi@eecs.umich.edu        }
8693310Srdreslin@umich.edu    }
8708948Sandreas.hansson@arm.com
8714433Ssaidi@eecs.umich.edu    return true;
8722948Ssaidi@eecs.umich.edu}
8732948Ssaidi@eecs.umich.edu
8742948Ssaidi@eecs.umich.eduvoid
8752948Ssaidi@eecs.umich.eduTimingSimpleCPU::DcachePort::DTickEvent::process()
8762948Ssaidi@eecs.umich.edu{
8772630SN/A    cpu->completeDataAccess(pkt);
8782623SN/A}
8792623SN/A
8802657Ssaidi@eecs.umich.eduvoid
8812623SN/ATimingSimpleCPU::DcachePort::recvRetry()
8822623SN/A{
8832623SN/A    // we shouldn't get a retry unless we have a packet that we're
8842623SN/A    // waiting to transmit
8852623SN/A    assert(cpu->dcache_pkt != NULL);
8862623SN/A    assert(cpu->_status == DcacheRetry);
8873349Sbinkertn@umich.edu    PacketPtr tmp = cpu->dcache_pkt;
8885728Sgblack@eecs.umich.edu    if (tmp->senderState) {
8895728Sgblack@eecs.umich.edu        // This is a packet from a split access.
8905728Sgblack@eecs.umich.edu        SplitFragmentSenderState * send_state =
8915728Sgblack@eecs.umich.edu            dynamic_cast<SplitFragmentSenderState *>(tmp->senderState);
8925728Sgblack@eecs.umich.edu        assert(send_state);
8935728Sgblack@eecs.umich.edu        PacketPtr big_pkt = send_state->bigPkt;
8945728Sgblack@eecs.umich.edu
8955728Sgblack@eecs.umich.edu        SplitMainSenderState * main_send_state =
8965728Sgblack@eecs.umich.edu            dynamic_cast<SplitMainSenderState *>(big_pkt->senderState);
8975728Sgblack@eecs.umich.edu        assert(main_send_state);
8985728Sgblack@eecs.umich.edu
8998975Sandreas.hansson@arm.com        if (sendTimingReq(tmp)) {
9005728Sgblack@eecs.umich.edu            // If we were able to send without retrying, record that fact
9015728Sgblack@eecs.umich.edu            // and try sending the other fragment.
9025728Sgblack@eecs.umich.edu            send_state->clearFromParent();
9035728Sgblack@eecs.umich.edu            int other_index = main_send_state->getPendingFragment();
9045728Sgblack@eecs.umich.edu            if (other_index > 0) {
9055728Sgblack@eecs.umich.edu                tmp = main_send_state->fragments[other_index];
9065728Sgblack@eecs.umich.edu                cpu->dcache_pkt = tmp;
9075728Sgblack@eecs.umich.edu                if ((big_pkt->isRead() && cpu->handleReadPacket(tmp)) ||
9085728Sgblack@eecs.umich.edu                        (big_pkt->isWrite() && cpu->handleWritePacket())) {
9095728Sgblack@eecs.umich.edu                    main_send_state->fragments[other_index] = NULL;
9105728Sgblack@eecs.umich.edu                }
9115728Sgblack@eecs.umich.edu            } else {
9125728Sgblack@eecs.umich.edu                cpu->_status = DcacheWaitResponse;
9135728Sgblack@eecs.umich.edu                // memory system takes ownership of packet
9145728Sgblack@eecs.umich.edu                cpu->dcache_pkt = NULL;
9155728Sgblack@eecs.umich.edu            }
9165728Sgblack@eecs.umich.edu        }
9178975Sandreas.hansson@arm.com    } else if (sendTimingReq(tmp)) {
9182657Ssaidi@eecs.umich.edu        cpu->_status = DcacheWaitResponse;
9193170Sstever@eecs.umich.edu        // memory system takes ownership of packet
9202657Ssaidi@eecs.umich.edu        cpu->dcache_pkt = NULL;
9212657Ssaidi@eecs.umich.edu    }
9222623SN/A}
9232623SN/A
9245606Snate@binkert.orgTimingSimpleCPU::IprEvent::IprEvent(Packet *_pkt, TimingSimpleCPU *_cpu,
9255606Snate@binkert.org    Tick t)
9265606Snate@binkert.org    : pkt(_pkt), cpu(_cpu)
9275103Ssaidi@eecs.umich.edu{
9285606Snate@binkert.org    cpu->schedule(this, t);
9295103Ssaidi@eecs.umich.edu}
9305103Ssaidi@eecs.umich.edu
9315103Ssaidi@eecs.umich.eduvoid
9325103Ssaidi@eecs.umich.eduTimingSimpleCPU::IprEvent::process()
9335103Ssaidi@eecs.umich.edu{
9345103Ssaidi@eecs.umich.edu    cpu->completeDataAccess(pkt);
9355103Ssaidi@eecs.umich.edu}
9365103Ssaidi@eecs.umich.edu
9375103Ssaidi@eecs.umich.educonst char *
9385336Shines@cs.fsu.eduTimingSimpleCPU::IprEvent::description() const
9395103Ssaidi@eecs.umich.edu{
9405103Ssaidi@eecs.umich.edu    return "Timing Simple CPU Delay IPR event";
9415103Ssaidi@eecs.umich.edu}
9425103Ssaidi@eecs.umich.edu
9432623SN/A
9445315Sstever@gmail.comvoid
9455315Sstever@gmail.comTimingSimpleCPU::printAddr(Addr a)
9465315Sstever@gmail.com{
9475315Sstever@gmail.com    dcachePort.printAddr(a);
9485315Sstever@gmail.com}
9495315Sstever@gmail.com
9505315Sstever@gmail.com
9512623SN/A////////////////////////////////////////////////////////////////////////
9522623SN/A//
9532623SN/A//  TimingSimpleCPU Simulation Object
9542623SN/A//
9554762Snate@binkert.orgTimingSimpleCPU *
9564762Snate@binkert.orgTimingSimpleCPUParams::create()
9572623SN/A{
9585529Snate@binkert.org    numThreads = 1;
9598779Sgblack@eecs.umich.edu    if (!FullSystem && workload.size() != 1)
9604762Snate@binkert.org        panic("only one workload allowed");
9615529Snate@binkert.org    return new TimingSimpleCPU(this);
9622623SN/A}
963