atomic.cc revision 4040
12623SN/A/*
22623SN/A * Copyright (c) 2002-2005 The Regents of The University of Michigan
32623SN/A * All rights reserved.
42623SN/A *
52623SN/A * Redistribution and use in source and binary forms, with or without
62623SN/A * modification, are permitted provided that the following conditions are
72623SN/A * met: redistributions of source code must retain the above copyright
82623SN/A * notice, this list of conditions and the following disclaimer;
92623SN/A * redistributions in binary form must reproduce the above copyright
102623SN/A * notice, this list of conditions and the following disclaimer in the
112623SN/A * documentation and/or other materials provided with the distribution;
122623SN/A * neither the name of the copyright holders nor the names of its
132623SN/A * contributors may be used to endorse or promote products derived from
142623SN/A * this software without specific prior written permission.
152623SN/A *
162623SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172623SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182623SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192623SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202623SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212623SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222623SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232623SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242623SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252623SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262623SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Steve Reinhardt
292623SN/A */
302623SN/A
313170Sstever@eecs.umich.edu#include "arch/locked_mem.hh"
323806Ssaidi@eecs.umich.edu#include "arch/mmaped_ipr.hh"
332623SN/A#include "arch/utility.hh"
344040Ssaidi@eecs.umich.edu#include "base/bigint.hh"
352623SN/A#include "cpu/exetrace.hh"
362623SN/A#include "cpu/simple/atomic.hh"
373348Sbinkertn@umich.edu#include "mem/packet.hh"
383348Sbinkertn@umich.edu#include "mem/packet_access.hh"
392623SN/A#include "sim/builder.hh"
402901Ssaidi@eecs.umich.edu#include "sim/system.hh"
412623SN/A
422623SN/Ausing namespace std;
432623SN/Ausing namespace TheISA;
442623SN/A
452623SN/AAtomicSimpleCPU::TickEvent::TickEvent(AtomicSimpleCPU *c)
462623SN/A    : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c)
472623SN/A{
482623SN/A}
492623SN/A
502623SN/A
512623SN/Avoid
522623SN/AAtomicSimpleCPU::TickEvent::process()
532623SN/A{
542623SN/A    cpu->tick();
552623SN/A}
562623SN/A
572623SN/Aconst char *
582623SN/AAtomicSimpleCPU::TickEvent::description()
592623SN/A{
602623SN/A    return "AtomicSimpleCPU tick event";
612623SN/A}
622623SN/A
632856Srdreslin@umich.eduPort *
642856Srdreslin@umich.eduAtomicSimpleCPU::getPort(const std::string &if_name, int idx)
652856Srdreslin@umich.edu{
662856Srdreslin@umich.edu    if (if_name == "dcache_port")
672856Srdreslin@umich.edu        return &dcachePort;
682856Srdreslin@umich.edu    else if (if_name == "icache_port")
692856Srdreslin@umich.edu        return &icachePort;
702856Srdreslin@umich.edu    else
712856Srdreslin@umich.edu        panic("No Such Port\n");
722856Srdreslin@umich.edu}
732623SN/A
742623SN/Avoid
752623SN/AAtomicSimpleCPU::init()
762623SN/A{
772623SN/A    BaseCPU::init();
782623SN/A#if FULL_SYSTEM
792680Sktlim@umich.edu    for (int i = 0; i < threadContexts.size(); ++i) {
802680Sktlim@umich.edu        ThreadContext *tc = threadContexts[i];
812623SN/A
822623SN/A        // initialize CPU, including PC
832680Sktlim@umich.edu        TheISA::initCPU(tc, tc->readCpuId());
842623SN/A    }
852623SN/A#endif
862623SN/A}
872623SN/A
882623SN/Abool
893349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvTiming(PacketPtr pkt)
902623SN/A{
913184Srdreslin@umich.edu    panic("AtomicSimpleCPU doesn't expect recvTiming callback!");
922623SN/A    return true;
932623SN/A}
942623SN/A
952623SN/ATick
963349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvAtomic(PacketPtr pkt)
972623SN/A{
983310Srdreslin@umich.edu    //Snooping a coherence request, just return
993649Srdreslin@umich.edu    return 0;
1002623SN/A}
1012623SN/A
1022623SN/Avoid
1033349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvFunctional(PacketPtr pkt)
1042623SN/A{
1053184Srdreslin@umich.edu    //No internal storage to update, just return
1063184Srdreslin@umich.edu    return;
1072623SN/A}
1082623SN/A
1092623SN/Avoid
1102623SN/AAtomicSimpleCPU::CpuPort::recvStatusChange(Status status)
1112623SN/A{
1123647Srdreslin@umich.edu    if (status == RangeChange) {
1133647Srdreslin@umich.edu        if (!snoopRangeSent) {
1143647Srdreslin@umich.edu            snoopRangeSent = true;
1153647Srdreslin@umich.edu            sendStatusChange(Port::RangeChange);
1163647Srdreslin@umich.edu        }
1172626SN/A        return;
1183647Srdreslin@umich.edu    }
1192626SN/A
1202623SN/A    panic("AtomicSimpleCPU doesn't expect recvStatusChange callback!");
1212623SN/A}
1222623SN/A
1232657Ssaidi@eecs.umich.eduvoid
1242623SN/AAtomicSimpleCPU::CpuPort::recvRetry()
1252623SN/A{
1262623SN/A    panic("AtomicSimpleCPU doesn't expect recvRetry callback!");
1272623SN/A}
1282623SN/A
1292623SN/A
1302623SN/AAtomicSimpleCPU::AtomicSimpleCPU(Params *p)
1312623SN/A    : BaseSimpleCPU(p), tickEvent(this),
1322623SN/A      width(p->width), simulate_stalls(p->simulate_stalls),
1332640Sstever@eecs.umich.edu      icachePort(name() + "-iport", this), dcachePort(name() + "-iport", this)
1342623SN/A{
1352623SN/A    _status = Idle;
1362623SN/A
1373647Srdreslin@umich.edu    icachePort.snoopRangeSent = false;
1383647Srdreslin@umich.edu    dcachePort.snoopRangeSent = false;
1393647Srdreslin@umich.edu
1402663Sstever@eecs.umich.edu    ifetch_req = new Request();
1413170Sstever@eecs.umich.edu    ifetch_req->setThreadContext(p->cpu_id, 0); // Add thread ID if we add MT
1424022Sstever@eecs.umich.edu    ifetch_pkt = new Packet(ifetch_req, MemCmd::ReadReq, Packet::Broadcast);
1432623SN/A    ifetch_pkt->dataStatic(&inst);
1442623SN/A
1452663Sstever@eecs.umich.edu    data_read_req = new Request();
1463170Sstever@eecs.umich.edu    data_read_req->setThreadContext(p->cpu_id, 0); // Add thread ID here too
1474022Sstever@eecs.umich.edu    data_read_pkt = new Packet(data_read_req, MemCmd::ReadReq,
1482641Sstever@eecs.umich.edu                               Packet::Broadcast);
1492623SN/A    data_read_pkt->dataStatic(&dataReg);
1502623SN/A
1512663Sstever@eecs.umich.edu    data_write_req = new Request();
1523170Sstever@eecs.umich.edu    data_write_req->setThreadContext(p->cpu_id, 0); // Add thread ID here too
1534022Sstever@eecs.umich.edu    data_write_pkt = new Packet(data_write_req, MemCmd::WriteReq,
1542641Sstever@eecs.umich.edu                                Packet::Broadcast);
1554040Ssaidi@eecs.umich.edu    data_swap_pkt = new Packet(data_write_req, MemCmd::SwapReq,
1564040Ssaidi@eecs.umich.edu                                Packet::Broadcast);
1572623SN/A}
1582623SN/A
1592623SN/A
1602623SN/AAtomicSimpleCPU::~AtomicSimpleCPU()
1612623SN/A{
1622623SN/A}
1632623SN/A
1642623SN/Avoid
1652623SN/AAtomicSimpleCPU::serialize(ostream &os)
1662623SN/A{
1672915Sktlim@umich.edu    SimObject::State so_state = SimObject::getState();
1682915Sktlim@umich.edu    SERIALIZE_ENUM(so_state);
1693177Shsul@eecs.umich.edu    Status _status = status();
1703177Shsul@eecs.umich.edu    SERIALIZE_ENUM(_status);
1713145Shsul@eecs.umich.edu    BaseSimpleCPU::serialize(os);
1722623SN/A    nameOut(os, csprintf("%s.tickEvent", name()));
1732623SN/A    tickEvent.serialize(os);
1742623SN/A}
1752623SN/A
1762623SN/Avoid
1772623SN/AAtomicSimpleCPU::unserialize(Checkpoint *cp, const string &section)
1782623SN/A{
1792915Sktlim@umich.edu    SimObject::State so_state;
1802915Sktlim@umich.edu    UNSERIALIZE_ENUM(so_state);
1813177Shsul@eecs.umich.edu    UNSERIALIZE_ENUM(_status);
1823145Shsul@eecs.umich.edu    BaseSimpleCPU::unserialize(cp, section);
1832915Sktlim@umich.edu    tickEvent.unserialize(cp, csprintf("%s.tickEvent", section));
1842915Sktlim@umich.edu}
1852915Sktlim@umich.edu
1862915Sktlim@umich.eduvoid
1872915Sktlim@umich.eduAtomicSimpleCPU::resume()
1882915Sktlim@umich.edu{
1893324Shsul@eecs.umich.edu    if (_status != SwitchedOut && _status != Idle) {
1903201Shsul@eecs.umich.edu        assert(system->getMemoryMode() == System::Atomic);
1913324Shsul@eecs.umich.edu
1923324Shsul@eecs.umich.edu        changeState(SimObject::Running);
1933324Shsul@eecs.umich.edu        if (thread->status() == ThreadContext::Active) {
1943431Sgblack@eecs.umich.edu            if (!tickEvent.scheduled()) {
1953495Sktlim@umich.edu                tickEvent.schedule(nextCycle());
1963431Sgblack@eecs.umich.edu            }
1973324Shsul@eecs.umich.edu        }
1982915Sktlim@umich.edu    }
1992623SN/A}
2002623SN/A
2012623SN/Avoid
2022798Sktlim@umich.eduAtomicSimpleCPU::switchOut()
2032623SN/A{
2042798Sktlim@umich.edu    assert(status() == Running || status() == Idle);
2052798Sktlim@umich.edu    _status = SwitchedOut;
2062623SN/A
2072798Sktlim@umich.edu    tickEvent.squash();
2082623SN/A}
2092623SN/A
2102623SN/A
2112623SN/Avoid
2122623SN/AAtomicSimpleCPU::takeOverFrom(BaseCPU *oldCPU)
2132623SN/A{
2142623SN/A    BaseCPU::takeOverFrom(oldCPU);
2152623SN/A
2162623SN/A    assert(!tickEvent.scheduled());
2172623SN/A
2182680Sktlim@umich.edu    // if any of this CPU's ThreadContexts are active, mark the CPU as
2192623SN/A    // running and schedule its tick event.
2202680Sktlim@umich.edu    for (int i = 0; i < threadContexts.size(); ++i) {
2212680Sktlim@umich.edu        ThreadContext *tc = threadContexts[i];
2222680Sktlim@umich.edu        if (tc->status() == ThreadContext::Active && _status != Running) {
2232623SN/A            _status = Running;
2243495Sktlim@umich.edu            tickEvent.schedule(nextCycle());
2252623SN/A            break;
2262623SN/A        }
2272623SN/A    }
2283512Sktlim@umich.edu    if (_status != Running) {
2293512Sktlim@umich.edu        _status = Idle;
2303512Sktlim@umich.edu    }
2312623SN/A}
2322623SN/A
2332623SN/A
2342623SN/Avoid
2352623SN/AAtomicSimpleCPU::activateContext(int thread_num, int delay)
2362623SN/A{
2372623SN/A    assert(thread_num == 0);
2382683Sktlim@umich.edu    assert(thread);
2392623SN/A
2402623SN/A    assert(_status == Idle);
2412623SN/A    assert(!tickEvent.scheduled());
2422623SN/A
2432623SN/A    notIdleFraction++;
2443686Sktlim@umich.edu
2453686Sktlim@umich.edu#if FULL_SYSTEM
2463686Sktlim@umich.edu    // Connect the ThreadContext's memory ports (Functional/Virtual
2473686Sktlim@umich.edu    // Ports)
2483686Sktlim@umich.edu    tc->connectMemPorts();
2493686Sktlim@umich.edu#endif
2503686Sktlim@umich.edu
2513430Sgblack@eecs.umich.edu    //Make sure ticks are still on multiples of cycles
2523495Sktlim@umich.edu    tickEvent.schedule(nextCycle(curTick + cycles(delay)));
2532623SN/A    _status = Running;
2542623SN/A}
2552623SN/A
2562623SN/A
2572623SN/Avoid
2582623SN/AAtomicSimpleCPU::suspendContext(int thread_num)
2592623SN/A{
2602623SN/A    assert(thread_num == 0);
2612683Sktlim@umich.edu    assert(thread);
2622623SN/A
2632623SN/A    assert(_status == Running);
2642626SN/A
2652626SN/A    // tick event may not be scheduled if this gets called from inside
2662626SN/A    // an instruction's execution, e.g. "quiesce"
2672626SN/A    if (tickEvent.scheduled())
2682626SN/A        tickEvent.deschedule();
2692623SN/A
2702623SN/A    notIdleFraction--;
2712623SN/A    _status = Idle;
2722623SN/A}
2732623SN/A
2742623SN/A
2752623SN/Atemplate <class T>
2762623SN/AFault
2772623SN/AAtomicSimpleCPU::read(Addr addr, T &data, unsigned flags)
2782623SN/A{
2793169Sstever@eecs.umich.edu    // use the CPU's statically allocated read request and packet objects
2803169Sstever@eecs.umich.edu    Request *req = data_read_req;
2813349Sbinkertn@umich.edu    PacketPtr pkt = data_read_pkt;
2823169Sstever@eecs.umich.edu
2833169Sstever@eecs.umich.edu    req->setVirt(0, addr, sizeof(T), flags, thread->readPC());
2842623SN/A
2852623SN/A    if (traceData) {
2862623SN/A        traceData->setAddr(addr);
2872623SN/A    }
2882623SN/A
2892623SN/A    // translate to physical address
2903169Sstever@eecs.umich.edu    Fault fault = thread->translateDataReadReq(req);
2912623SN/A
2922623SN/A    // Now do the access.
2932623SN/A    if (fault == NoFault) {
2943169Sstever@eecs.umich.edu        pkt->reinitFromRequest();
2952623SN/A
2963806Ssaidi@eecs.umich.edu        if (req->isMmapedIpr())
2973806Ssaidi@eecs.umich.edu            dcache_latency = TheISA::handleIprRead(thread->getTC(),pkt);
2983806Ssaidi@eecs.umich.edu        else
2993806Ssaidi@eecs.umich.edu            dcache_latency = dcachePort.sendAtomic(pkt);
3002623SN/A        dcache_access = true;
3013814Ssaidi@eecs.umich.edu#if !defined(NDEBUG)
3023814Ssaidi@eecs.umich.edu        if (pkt->result != Packet::Success)
3033814Ssaidi@eecs.umich.edu            panic("Unable to find responder for address pa = %#X va = %#X\n",
3043814Ssaidi@eecs.umich.edu                    pkt->req->getPaddr(), pkt->req->getVaddr());
3053814Ssaidi@eecs.umich.edu#endif
3063169Sstever@eecs.umich.edu        data = pkt->get<T>();
3073170Sstever@eecs.umich.edu
3083170Sstever@eecs.umich.edu        if (req->isLocked()) {
3093170Sstever@eecs.umich.edu            TheISA::handleLockedRead(thread, req);
3103170Sstever@eecs.umich.edu        }
3112623SN/A    }
3122623SN/A
3132623SN/A    // This will need a new way to tell if it has a dcache attached.
3143172Sstever@eecs.umich.edu    if (req->isUncacheable())
3152623SN/A        recordEvent("Uncached Read");
3162623SN/A
3172623SN/A    return fault;
3182623SN/A}
3192623SN/A
3202623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS
3212623SN/A
3222623SN/Atemplate
3232623SN/AFault
3244040Ssaidi@eecs.umich.eduAtomicSimpleCPU::read(Addr addr, Twin64_t &data, unsigned flags);
3254040Ssaidi@eecs.umich.edu
3264040Ssaidi@eecs.umich.edutemplate
3274040Ssaidi@eecs.umich.eduFault
3282623SN/AAtomicSimpleCPU::read(Addr addr, uint64_t &data, unsigned flags);
3292623SN/A
3302623SN/Atemplate
3312623SN/AFault
3322623SN/AAtomicSimpleCPU::read(Addr addr, uint32_t &data, unsigned flags);
3332623SN/A
3342623SN/Atemplate
3352623SN/AFault
3362623SN/AAtomicSimpleCPU::read(Addr addr, uint16_t &data, unsigned flags);
3372623SN/A
3382623SN/Atemplate
3392623SN/AFault
3402623SN/AAtomicSimpleCPU::read(Addr addr, uint8_t &data, unsigned flags);
3412623SN/A
3422623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS
3432623SN/A
3442623SN/Atemplate<>
3452623SN/AFault
3462623SN/AAtomicSimpleCPU::read(Addr addr, double &data, unsigned flags)
3472623SN/A{
3482623SN/A    return read(addr, *(uint64_t*)&data, flags);
3492623SN/A}
3502623SN/A
3512623SN/Atemplate<>
3522623SN/AFault
3532623SN/AAtomicSimpleCPU::read(Addr addr, float &data, unsigned flags)
3542623SN/A{
3552623SN/A    return read(addr, *(uint32_t*)&data, flags);
3562623SN/A}
3572623SN/A
3582623SN/A
3592623SN/Atemplate<>
3602623SN/AFault
3612623SN/AAtomicSimpleCPU::read(Addr addr, int32_t &data, unsigned flags)
3622623SN/A{
3632623SN/A    return read(addr, (uint32_t&)data, flags);
3642623SN/A}
3652623SN/A
3662623SN/A
3672623SN/Atemplate <class T>
3682623SN/AFault
3692623SN/AAtomicSimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res)
3702623SN/A{
3713169Sstever@eecs.umich.edu    // use the CPU's statically allocated write request and packet objects
3723169Sstever@eecs.umich.edu    Request *req = data_write_req;
3734040Ssaidi@eecs.umich.edu    PacketPtr pkt;
3743169Sstever@eecs.umich.edu
3753169Sstever@eecs.umich.edu    req->setVirt(0, addr, sizeof(T), flags, thread->readPC());
3762623SN/A
3774040Ssaidi@eecs.umich.edu    if (req->isSwap())
3784040Ssaidi@eecs.umich.edu        pkt = data_swap_pkt;
3794040Ssaidi@eecs.umich.edu    else
3804040Ssaidi@eecs.umich.edu        pkt = data_write_pkt;
3814040Ssaidi@eecs.umich.edu
3822623SN/A    if (traceData) {
3832623SN/A        traceData->setAddr(addr);
3842623SN/A    }
3852623SN/A
3862623SN/A    // translate to physical address
3873169Sstever@eecs.umich.edu    Fault fault = thread->translateDataWriteReq(req);
3882623SN/A
3892623SN/A    // Now do the access.
3902623SN/A    if (fault == NoFault) {
3913170Sstever@eecs.umich.edu        bool do_access = true;  // flag to suppress cache access
3922623SN/A
3933170Sstever@eecs.umich.edu        if (req->isLocked()) {
3943170Sstever@eecs.umich.edu            do_access = TheISA::handleLockedWrite(thread, req);
3953170Sstever@eecs.umich.edu        }
3964040Ssaidi@eecs.umich.edu        if (req->isCondSwap()) {
3974040Ssaidi@eecs.umich.edu             assert(res);
3984040Ssaidi@eecs.umich.edu             req->setExtraData(*res);
3994040Ssaidi@eecs.umich.edu        }
4004040Ssaidi@eecs.umich.edu
4012623SN/A
4023170Sstever@eecs.umich.edu        if (do_access) {
4033170Sstever@eecs.umich.edu            pkt->reinitFromRequest();
4043170Sstever@eecs.umich.edu            pkt->dataStatic(&data);
4052631SN/A
4063806Ssaidi@eecs.umich.edu            if (req->isMmapedIpr()) {
4073806Ssaidi@eecs.umich.edu                dcache_latency = TheISA::handleIprWrite(thread->getTC(), pkt);
4083806Ssaidi@eecs.umich.edu            } else {
4093806Ssaidi@eecs.umich.edu                data = htog(data);
4103806Ssaidi@eecs.umich.edu                dcache_latency = dcachePort.sendAtomic(pkt);
4113806Ssaidi@eecs.umich.edu            }
4123170Sstever@eecs.umich.edu            dcache_access = true;
4133170Sstever@eecs.umich.edu
4143814Ssaidi@eecs.umich.edu#if !defined(NDEBUG)
4153814Ssaidi@eecs.umich.edu            if (pkt->result != Packet::Success)
4163814Ssaidi@eecs.umich.edu                panic("Unable to find responder for address pa = %#X va = %#X\n",
4173814Ssaidi@eecs.umich.edu                        pkt->req->getPaddr(), pkt->req->getVaddr());
4183814Ssaidi@eecs.umich.edu#endif
4193170Sstever@eecs.umich.edu        }
4203170Sstever@eecs.umich.edu
4214040Ssaidi@eecs.umich.edu        if (req->isSwap()) {
4224040Ssaidi@eecs.umich.edu            assert(res);
4234040Ssaidi@eecs.umich.edu            *res = pkt->get<T>();
4244040Ssaidi@eecs.umich.edu        }
4254040Ssaidi@eecs.umich.edu
4263170Sstever@eecs.umich.edu        if (req->isLocked()) {
4274040Ssaidi@eecs.umich.edu            uint64_t scResult = req->getExtraData();
4283170Sstever@eecs.umich.edu            if (scResult != 0) {
4293170Sstever@eecs.umich.edu                // clear failure counter
4303170Sstever@eecs.umich.edu                thread->setStCondFailures(0);
4313170Sstever@eecs.umich.edu            }
4323170Sstever@eecs.umich.edu            if (res) {
4334040Ssaidi@eecs.umich.edu                *res = req->getExtraData();
4343170Sstever@eecs.umich.edu            }
4352631SN/A        }
4362623SN/A    }
4372623SN/A
4382623SN/A    // This will need a new way to tell if it's hooked up to a cache or not.
4393172Sstever@eecs.umich.edu    if (req->isUncacheable())
4402623SN/A        recordEvent("Uncached Write");
4412623SN/A
4422623SN/A    // If the write needs to have a fault on the access, consider calling
4432623SN/A    // changeStatus() and changing it to "bad addr write" or something.
4442623SN/A    return fault;
4452623SN/A}
4462623SN/A
4472623SN/A
4482623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS
4492623SN/Atemplate
4502623SN/AFault
4512623SN/AAtomicSimpleCPU::write(uint64_t data, Addr addr,
4522623SN/A                       unsigned flags, uint64_t *res);
4532623SN/A
4542623SN/Atemplate
4552623SN/AFault
4562623SN/AAtomicSimpleCPU::write(uint32_t data, Addr addr,
4572623SN/A                       unsigned flags, uint64_t *res);
4582623SN/A
4592623SN/Atemplate
4602623SN/AFault
4612623SN/AAtomicSimpleCPU::write(uint16_t data, Addr addr,
4622623SN/A                       unsigned flags, uint64_t *res);
4632623SN/A
4642623SN/Atemplate
4652623SN/AFault
4662623SN/AAtomicSimpleCPU::write(uint8_t data, Addr addr,
4672623SN/A                       unsigned flags, uint64_t *res);
4682623SN/A
4692623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS
4702623SN/A
4712623SN/Atemplate<>
4722623SN/AFault
4732623SN/AAtomicSimpleCPU::write(double data, Addr addr, unsigned flags, uint64_t *res)
4742623SN/A{
4752623SN/A    return write(*(uint64_t*)&data, addr, flags, res);
4762623SN/A}
4772623SN/A
4782623SN/Atemplate<>
4792623SN/AFault
4802623SN/AAtomicSimpleCPU::write(float data, Addr addr, unsigned flags, uint64_t *res)
4812623SN/A{
4822623SN/A    return write(*(uint32_t*)&data, addr, flags, res);
4832623SN/A}
4842623SN/A
4852623SN/A
4862623SN/Atemplate<>
4872623SN/AFault
4882623SN/AAtomicSimpleCPU::write(int32_t data, Addr addr, unsigned flags, uint64_t *res)
4892623SN/A{
4902623SN/A    return write((uint32_t)data, addr, flags, res);
4912623SN/A}
4922623SN/A
4932623SN/A
4942623SN/Avoid
4952623SN/AAtomicSimpleCPU::tick()
4962623SN/A{
4972623SN/A    Tick latency = cycles(1); // instruction takes one cycle by default
4982623SN/A
4992623SN/A    for (int i = 0; i < width; ++i) {
5002623SN/A        numCycles++;
5012623SN/A
5023387Sgblack@eecs.umich.edu        if (!curStaticInst || !curStaticInst->isDelayedCommit())
5033387Sgblack@eecs.umich.edu            checkForInterrupts();
5042626SN/A
5052662Sstever@eecs.umich.edu        Fault fault = setupFetchRequest(ifetch_req);
5062623SN/A
5072623SN/A        if (fault == NoFault) {
5082662Sstever@eecs.umich.edu            ifetch_pkt->reinitFromRequest();
5092662Sstever@eecs.umich.edu
5102662Sstever@eecs.umich.edu            Tick icache_latency = icachePort.sendAtomic(ifetch_pkt);
5112623SN/A            // ifetch_req is initialized to read the instruction directly
5122623SN/A            // into the CPU object's inst field.
5132623SN/A
5142623SN/A            dcache_access = false; // assume no dcache access
5152623SN/A            preExecute();
5163814Ssaidi@eecs.umich.edu
5172623SN/A            fault = curStaticInst->execute(this, traceData);
5182623SN/A            postExecute();
5192623SN/A
5203814Ssaidi@eecs.umich.edu            // @todo remove me after debugging with legion done
5213814Ssaidi@eecs.umich.edu            if (curStaticInst && (!curStaticInst->isMicroOp() ||
5223901Ssaidi@eecs.umich.edu                        curStaticInst->isFirstMicroOp()))
5233814Ssaidi@eecs.umich.edu                instCnt++;
5243814Ssaidi@eecs.umich.edu
5252623SN/A            if (simulate_stalls) {
5262662Sstever@eecs.umich.edu                Tick icache_stall = icache_latency - cycles(1);
5272623SN/A                Tick dcache_stall =
5282662Sstever@eecs.umich.edu                    dcache_access ? dcache_latency - cycles(1) : 0;
5292803Ssaidi@eecs.umich.edu                Tick stall_cycles = (icache_stall + dcache_stall) / cycles(1);
5302803Ssaidi@eecs.umich.edu                if (cycles(stall_cycles) < (icache_stall + dcache_stall))
5312803Ssaidi@eecs.umich.edu                    latency += cycles(stall_cycles+1);
5322803Ssaidi@eecs.umich.edu                else
5332803Ssaidi@eecs.umich.edu                    latency += cycles(stall_cycles);
5342623SN/A            }
5352623SN/A
5362623SN/A        }
5372623SN/A
5382623SN/A        advancePC(fault);
5392623SN/A    }
5402623SN/A
5412626SN/A    if (_status != Idle)
5422626SN/A        tickEvent.schedule(curTick + latency);
5432623SN/A}
5442623SN/A
5452623SN/A
5462623SN/A////////////////////////////////////////////////////////////////////////
5472623SN/A//
5482623SN/A//  AtomicSimpleCPU Simulation Object
5492623SN/A//
5502623SN/ABEGIN_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU)
5512623SN/A
5522623SN/A    Param<Counter> max_insts_any_thread;
5532623SN/A    Param<Counter> max_insts_all_threads;
5542623SN/A    Param<Counter> max_loads_any_thread;
5552623SN/A    Param<Counter> max_loads_all_threads;
5563119Sktlim@umich.edu    Param<Tick> progress_interval;
5572901Ssaidi@eecs.umich.edu    SimObjectParam<System *> system;
5583170Sstever@eecs.umich.edu    Param<int> cpu_id;
5592623SN/A
5602623SN/A#if FULL_SYSTEM
5613453Sgblack@eecs.umich.edu    SimObjectParam<TheISA::ITB *> itb;
5623453Sgblack@eecs.umich.edu    SimObjectParam<TheISA::DTB *> dtb;
5632623SN/A    Param<Tick> profile;
5643617Sbinkertn@umich.edu
5653617Sbinkertn@umich.edu    Param<bool> do_quiesce;
5663617Sbinkertn@umich.edu    Param<bool> do_checkpoint_insts;
5673617Sbinkertn@umich.edu    Param<bool> do_statistics_insts;
5682623SN/A#else
5692623SN/A    SimObjectParam<Process *> workload;
5702623SN/A#endif // FULL_SYSTEM
5712623SN/A
5722623SN/A    Param<int> clock;
5733661Srdreslin@umich.edu    Param<int> phase;
5742623SN/A
5752623SN/A    Param<bool> defer_registration;
5762623SN/A    Param<int> width;
5772623SN/A    Param<bool> function_trace;
5782623SN/A    Param<Tick> function_trace_start;
5792623SN/A    Param<bool> simulate_stalls;
5802623SN/A
5812623SN/AEND_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU)
5822623SN/A
5832623SN/ABEGIN_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU)
5842623SN/A
5852623SN/A    INIT_PARAM(max_insts_any_thread,
5862623SN/A               "terminate when any thread reaches this inst count"),
5872623SN/A    INIT_PARAM(max_insts_all_threads,
5882623SN/A               "terminate when all threads have reached this inst count"),
5892623SN/A    INIT_PARAM(max_loads_any_thread,
5902623SN/A               "terminate when any thread reaches this load count"),
5912623SN/A    INIT_PARAM(max_loads_all_threads,
5922623SN/A               "terminate when all threads have reached this load count"),
5933119Sktlim@umich.edu    INIT_PARAM(progress_interval, "Progress interval"),
5942901Ssaidi@eecs.umich.edu    INIT_PARAM(system, "system object"),
5953170Sstever@eecs.umich.edu    INIT_PARAM(cpu_id, "processor ID"),
5962623SN/A
5972623SN/A#if FULL_SYSTEM
5982623SN/A    INIT_PARAM(itb, "Instruction TLB"),
5992623SN/A    INIT_PARAM(dtb, "Data TLB"),
6002623SN/A    INIT_PARAM(profile, ""),
6013617Sbinkertn@umich.edu    INIT_PARAM(do_quiesce, ""),
6023617Sbinkertn@umich.edu    INIT_PARAM(do_checkpoint_insts, ""),
6033617Sbinkertn@umich.edu    INIT_PARAM(do_statistics_insts, ""),
6042623SN/A#else
6052623SN/A    INIT_PARAM(workload, "processes to run"),
6062623SN/A#endif // FULL_SYSTEM
6072623SN/A
6082623SN/A    INIT_PARAM(clock, "clock speed"),
6093661Srdreslin@umich.edu    INIT_PARAM_DFLT(phase, "clock phase", 0),
6102623SN/A    INIT_PARAM(defer_registration, "defer system registration (for sampling)"),
6112623SN/A    INIT_PARAM(width, "cpu width"),
6122623SN/A    INIT_PARAM(function_trace, "Enable function trace"),
6132623SN/A    INIT_PARAM(function_trace_start, "Cycle to start function trace"),
6142623SN/A    INIT_PARAM(simulate_stalls, "Simulate cache stall cycles")
6152623SN/A
6162623SN/AEND_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU)
6172623SN/A
6182623SN/A
6192623SN/ACREATE_SIM_OBJECT(AtomicSimpleCPU)
6202623SN/A{
6212623SN/A    AtomicSimpleCPU::Params *params = new AtomicSimpleCPU::Params();
6222623SN/A    params->name = getInstanceName();
6232623SN/A    params->numberOfThreads = 1;
6242623SN/A    params->max_insts_any_thread = max_insts_any_thread;
6252623SN/A    params->max_insts_all_threads = max_insts_all_threads;
6262623SN/A    params->max_loads_any_thread = max_loads_any_thread;
6272623SN/A    params->max_loads_all_threads = max_loads_all_threads;
6283119Sktlim@umich.edu    params->progress_interval = progress_interval;
6292623SN/A    params->deferRegistration = defer_registration;
6303661Srdreslin@umich.edu    params->phase = phase;
6312623SN/A    params->clock = clock;
6322623SN/A    params->functionTrace = function_trace;
6332623SN/A    params->functionTraceStart = function_trace_start;
6342623SN/A    params->width = width;
6352623SN/A    params->simulate_stalls = simulate_stalls;
6362901Ssaidi@eecs.umich.edu    params->system = system;
6373170Sstever@eecs.umich.edu    params->cpu_id = cpu_id;
6382623SN/A
6392623SN/A#if FULL_SYSTEM
6402623SN/A    params->itb = itb;
6412623SN/A    params->dtb = dtb;
6422623SN/A    params->profile = profile;
6433617Sbinkertn@umich.edu    params->do_quiesce = do_quiesce;
6443617Sbinkertn@umich.edu    params->do_checkpoint_insts = do_checkpoint_insts;
6453617Sbinkertn@umich.edu    params->do_statistics_insts = do_statistics_insts;
6462623SN/A#else
6472623SN/A    params->process = workload;
6482623SN/A#endif
6492623SN/A
6502623SN/A    AtomicSimpleCPU *cpu = new AtomicSimpleCPU(params);
6512623SN/A    return cpu;
6522623SN/A}
6532623SN/A
6542623SN/AREGISTER_SIM_OBJECT("AtomicSimpleCPU", AtomicSimpleCPU)
6552623SN/A
656