atomic.cc revision 4925
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"
394762Snate@binkert.org#include "params/AtomicSimpleCPU.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{
604873Sstever@eecs.umich.edu    return "AtomicSimpleCPU tick";
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
1294192Sktlim@umich.eduvoid
1304192Sktlim@umich.eduAtomicSimpleCPU::DcachePort::setPeer(Port *port)
1314192Sktlim@umich.edu{
1324192Sktlim@umich.edu    Port::setPeer(port);
1334192Sktlim@umich.edu
1344192Sktlim@umich.edu#if FULL_SYSTEM
1354192Sktlim@umich.edu    // Update the ThreadContext's memory ports (Functional/Virtual
1364192Sktlim@umich.edu    // Ports)
1374192Sktlim@umich.edu    cpu->tcBase()->connectMemPorts();
1384192Sktlim@umich.edu#endif
1394192Sktlim@umich.edu}
1402623SN/A
1412623SN/AAtomicSimpleCPU::AtomicSimpleCPU(Params *p)
1422623SN/A    : BaseSimpleCPU(p), tickEvent(this),
1432623SN/A      width(p->width), simulate_stalls(p->simulate_stalls),
1442640Sstever@eecs.umich.edu      icachePort(name() + "-iport", this), dcachePort(name() + "-iport", this)
1452623SN/A{
1462623SN/A    _status = Idle;
1472623SN/A
1483647Srdreslin@umich.edu    icachePort.snoopRangeSent = false;
1493647Srdreslin@umich.edu    dcachePort.snoopRangeSent = false;
1503647Srdreslin@umich.edu
1514870Sstever@eecs.umich.edu    ifetch_req.setThreadContext(p->cpu_id, 0); // Add thread ID if we add MT
1524870Sstever@eecs.umich.edu    data_read_req.setThreadContext(p->cpu_id, 0); // Add thread ID here too
1534870Sstever@eecs.umich.edu    data_write_req.setThreadContext(p->cpu_id, 0); // Add thread ID here too
1542623SN/A}
1552623SN/A
1562623SN/A
1572623SN/AAtomicSimpleCPU::~AtomicSimpleCPU()
1582623SN/A{
1592623SN/A}
1602623SN/A
1612623SN/Avoid
1622623SN/AAtomicSimpleCPU::serialize(ostream &os)
1632623SN/A{
1642915Sktlim@umich.edu    SimObject::State so_state = SimObject::getState();
1652915Sktlim@umich.edu    SERIALIZE_ENUM(so_state);
1663177Shsul@eecs.umich.edu    Status _status = status();
1673177Shsul@eecs.umich.edu    SERIALIZE_ENUM(_status);
1683145Shsul@eecs.umich.edu    BaseSimpleCPU::serialize(os);
1692623SN/A    nameOut(os, csprintf("%s.tickEvent", name()));
1702623SN/A    tickEvent.serialize(os);
1712623SN/A}
1722623SN/A
1732623SN/Avoid
1742623SN/AAtomicSimpleCPU::unserialize(Checkpoint *cp, const string &section)
1752623SN/A{
1762915Sktlim@umich.edu    SimObject::State so_state;
1772915Sktlim@umich.edu    UNSERIALIZE_ENUM(so_state);
1783177Shsul@eecs.umich.edu    UNSERIALIZE_ENUM(_status);
1793145Shsul@eecs.umich.edu    BaseSimpleCPU::unserialize(cp, section);
1802915Sktlim@umich.edu    tickEvent.unserialize(cp, csprintf("%s.tickEvent", section));
1812915Sktlim@umich.edu}
1822915Sktlim@umich.edu
1832915Sktlim@umich.eduvoid
1842915Sktlim@umich.eduAtomicSimpleCPU::resume()
1852915Sktlim@umich.edu{
1863324Shsul@eecs.umich.edu    if (_status != SwitchedOut && _status != Idle) {
1874762Snate@binkert.org        assert(system->getMemoryMode() == Enums::atomic);
1883324Shsul@eecs.umich.edu
1893324Shsul@eecs.umich.edu        changeState(SimObject::Running);
1903324Shsul@eecs.umich.edu        if (thread->status() == ThreadContext::Active) {
1913431Sgblack@eecs.umich.edu            if (!tickEvent.scheduled()) {
1923495Sktlim@umich.edu                tickEvent.schedule(nextCycle());
1933431Sgblack@eecs.umich.edu            }
1943324Shsul@eecs.umich.edu        }
1952915Sktlim@umich.edu    }
1962623SN/A}
1972623SN/A
1982623SN/Avoid
1992798Sktlim@umich.eduAtomicSimpleCPU::switchOut()
2002623SN/A{
2012798Sktlim@umich.edu    assert(status() == Running || status() == Idle);
2022798Sktlim@umich.edu    _status = SwitchedOut;
2032623SN/A
2042798Sktlim@umich.edu    tickEvent.squash();
2052623SN/A}
2062623SN/A
2072623SN/A
2082623SN/Avoid
2092623SN/AAtomicSimpleCPU::takeOverFrom(BaseCPU *oldCPU)
2102623SN/A{
2114192Sktlim@umich.edu    BaseCPU::takeOverFrom(oldCPU, &icachePort, &dcachePort);
2122623SN/A
2132623SN/A    assert(!tickEvent.scheduled());
2142623SN/A
2152680Sktlim@umich.edu    // if any of this CPU's ThreadContexts are active, mark the CPU as
2162623SN/A    // running and schedule its tick event.
2172680Sktlim@umich.edu    for (int i = 0; i < threadContexts.size(); ++i) {
2182680Sktlim@umich.edu        ThreadContext *tc = threadContexts[i];
2192680Sktlim@umich.edu        if (tc->status() == ThreadContext::Active && _status != Running) {
2202623SN/A            _status = Running;
2213495Sktlim@umich.edu            tickEvent.schedule(nextCycle());
2222623SN/A            break;
2232623SN/A        }
2242623SN/A    }
2253512Sktlim@umich.edu    if (_status != Running) {
2263512Sktlim@umich.edu        _status = Idle;
2273512Sktlim@umich.edu    }
2282623SN/A}
2292623SN/A
2302623SN/A
2312623SN/Avoid
2322623SN/AAtomicSimpleCPU::activateContext(int thread_num, int delay)
2332623SN/A{
2342623SN/A    assert(thread_num == 0);
2352683Sktlim@umich.edu    assert(thread);
2362623SN/A
2372623SN/A    assert(_status == Idle);
2382623SN/A    assert(!tickEvent.scheduled());
2392623SN/A
2402623SN/A    notIdleFraction++;
2413686Sktlim@umich.edu
2423430Sgblack@eecs.umich.edu    //Make sure ticks are still on multiples of cycles
2433495Sktlim@umich.edu    tickEvent.schedule(nextCycle(curTick + cycles(delay)));
2442623SN/A    _status = Running;
2452623SN/A}
2462623SN/A
2472623SN/A
2482623SN/Avoid
2492623SN/AAtomicSimpleCPU::suspendContext(int thread_num)
2502623SN/A{
2512623SN/A    assert(thread_num == 0);
2522683Sktlim@umich.edu    assert(thread);
2532623SN/A
2542623SN/A    assert(_status == Running);
2552626SN/A
2562626SN/A    // tick event may not be scheduled if this gets called from inside
2572626SN/A    // an instruction's execution, e.g. "quiesce"
2582626SN/A    if (tickEvent.scheduled())
2592626SN/A        tickEvent.deschedule();
2602623SN/A
2612623SN/A    notIdleFraction--;
2622623SN/A    _status = Idle;
2632623SN/A}
2642623SN/A
2652623SN/A
2662623SN/Atemplate <class T>
2672623SN/AFault
2682623SN/AAtomicSimpleCPU::read(Addr addr, T &data, unsigned flags)
2692623SN/A{
2703169Sstever@eecs.umich.edu    // use the CPU's statically allocated read request and packet objects
2714870Sstever@eecs.umich.edu    Request *req = &data_read_req;
2723169Sstever@eecs.umich.edu    req->setVirt(0, addr, sizeof(T), flags, thread->readPC());
2732623SN/A
2742623SN/A    if (traceData) {
2752623SN/A        traceData->setAddr(addr);
2762623SN/A    }
2772623SN/A
2782623SN/A    // translate to physical address
2793169Sstever@eecs.umich.edu    Fault fault = thread->translateDataReadReq(req);
2802623SN/A
2812623SN/A    // Now do the access.
2822623SN/A    if (fault == NoFault) {
2834878Sstever@eecs.umich.edu        Packet pkt =
2844878Sstever@eecs.umich.edu            Packet(req,
2854878Sstever@eecs.umich.edu                   req->isLocked() ? MemCmd::LoadLockedReq : MemCmd::ReadReq,
2864878Sstever@eecs.umich.edu                   Packet::Broadcast);
2874870Sstever@eecs.umich.edu        pkt.dataStatic(&data);
2882623SN/A
2893806Ssaidi@eecs.umich.edu        if (req->isMmapedIpr())
2904870Sstever@eecs.umich.edu            dcache_latency = TheISA::handleIprRead(thread->getTC(), &pkt);
2913806Ssaidi@eecs.umich.edu        else
2924870Sstever@eecs.umich.edu            dcache_latency = dcachePort.sendAtomic(&pkt);
2932623SN/A        dcache_access = true;
2944870Sstever@eecs.umich.edu        assert(!pkt.isError());
2953170Sstever@eecs.umich.edu
2964925Sstever@eecs.umich.edu        data = gtoh(data);
2974925Sstever@eecs.umich.edu
2983170Sstever@eecs.umich.edu        if (req->isLocked()) {
2993170Sstever@eecs.umich.edu            TheISA::handleLockedRead(thread, req);
3003170Sstever@eecs.umich.edu        }
3012623SN/A    }
3022623SN/A
3032623SN/A    // This will need a new way to tell if it has a dcache attached.
3043172Sstever@eecs.umich.edu    if (req->isUncacheable())
3052623SN/A        recordEvent("Uncached Read");
3062623SN/A
3072623SN/A    return fault;
3082623SN/A}
3092623SN/A
3102623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS
3112623SN/A
3122623SN/Atemplate
3132623SN/AFault
3144115Ssaidi@eecs.umich.eduAtomicSimpleCPU::read(Addr addr, Twin32_t &data, unsigned flags);
3154115Ssaidi@eecs.umich.edu
3164115Ssaidi@eecs.umich.edutemplate
3174115Ssaidi@eecs.umich.eduFault
3184040Ssaidi@eecs.umich.eduAtomicSimpleCPU::read(Addr addr, Twin64_t &data, unsigned flags);
3194040Ssaidi@eecs.umich.edu
3204040Ssaidi@eecs.umich.edutemplate
3214040Ssaidi@eecs.umich.eduFault
3222623SN/AAtomicSimpleCPU::read(Addr addr, uint64_t &data, unsigned flags);
3232623SN/A
3242623SN/Atemplate
3252623SN/AFault
3262623SN/AAtomicSimpleCPU::read(Addr addr, uint32_t &data, unsigned flags);
3272623SN/A
3282623SN/Atemplate
3292623SN/AFault
3302623SN/AAtomicSimpleCPU::read(Addr addr, uint16_t &data, unsigned flags);
3312623SN/A
3322623SN/Atemplate
3332623SN/AFault
3342623SN/AAtomicSimpleCPU::read(Addr addr, uint8_t &data, unsigned flags);
3352623SN/A
3362623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS
3372623SN/A
3382623SN/Atemplate<>
3392623SN/AFault
3402623SN/AAtomicSimpleCPU::read(Addr addr, double &data, unsigned flags)
3412623SN/A{
3422623SN/A    return read(addr, *(uint64_t*)&data, flags);
3432623SN/A}
3442623SN/A
3452623SN/Atemplate<>
3462623SN/AFault
3472623SN/AAtomicSimpleCPU::read(Addr addr, float &data, unsigned flags)
3482623SN/A{
3492623SN/A    return read(addr, *(uint32_t*)&data, flags);
3502623SN/A}
3512623SN/A
3522623SN/A
3532623SN/Atemplate<>
3542623SN/AFault
3552623SN/AAtomicSimpleCPU::read(Addr addr, int32_t &data, unsigned flags)
3562623SN/A{
3572623SN/A    return read(addr, (uint32_t&)data, flags);
3582623SN/A}
3592623SN/A
3602623SN/A
3612623SN/Atemplate <class T>
3622623SN/AFault
3632623SN/AAtomicSimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res)
3642623SN/A{
3653169Sstever@eecs.umich.edu    // use the CPU's statically allocated write request and packet objects
3664870Sstever@eecs.umich.edu    Request *req = &data_write_req;
3673169Sstever@eecs.umich.edu    req->setVirt(0, addr, sizeof(T), flags, thread->readPC());
3682623SN/A
3692623SN/A    if (traceData) {
3702623SN/A        traceData->setAddr(addr);
3712623SN/A    }
3722623SN/A
3732623SN/A    // translate to physical address
3743169Sstever@eecs.umich.edu    Fault fault = thread->translateDataWriteReq(req);
3752623SN/A
3762623SN/A    // Now do the access.
3772623SN/A    if (fault == NoFault) {
3784878Sstever@eecs.umich.edu        MemCmd cmd = MemCmd::WriteReq; // default
3793170Sstever@eecs.umich.edu        bool do_access = true;  // flag to suppress cache access
3802623SN/A
3813170Sstever@eecs.umich.edu        if (req->isLocked()) {
3824878Sstever@eecs.umich.edu            cmd = MemCmd::StoreCondReq;
3833170Sstever@eecs.umich.edu            do_access = TheISA::handleLockedWrite(thread, req);
3844878Sstever@eecs.umich.edu        } else if (req->isSwap()) {
3854878Sstever@eecs.umich.edu            cmd = MemCmd::SwapReq;
3864878Sstever@eecs.umich.edu            if (req->isCondSwap()) {
3874878Sstever@eecs.umich.edu                assert(res);
3884878Sstever@eecs.umich.edu                req->setExtraData(*res);
3894878Sstever@eecs.umich.edu            }
3904040Ssaidi@eecs.umich.edu        }
3914040Ssaidi@eecs.umich.edu
3923170Sstever@eecs.umich.edu        if (do_access) {
3934878Sstever@eecs.umich.edu            Packet pkt = Packet(req, cmd, Packet::Broadcast);
3944878Sstever@eecs.umich.edu            pkt.dataStatic(&data);
3952631SN/A
3963806Ssaidi@eecs.umich.edu            if (req->isMmapedIpr()) {
3974870Sstever@eecs.umich.edu                dcache_latency = TheISA::handleIprWrite(thread->getTC(), &pkt);
3983806Ssaidi@eecs.umich.edu            } else {
3993806Ssaidi@eecs.umich.edu                data = htog(data);
4004870Sstever@eecs.umich.edu                dcache_latency = dcachePort.sendAtomic(&pkt);
4013806Ssaidi@eecs.umich.edu            }
4023170Sstever@eecs.umich.edu            dcache_access = true;
4034870Sstever@eecs.umich.edu            assert(!pkt.isError());
4043170Sstever@eecs.umich.edu
4054878Sstever@eecs.umich.edu            if (req->isSwap()) {
4064878Sstever@eecs.umich.edu                assert(res);
4074878Sstever@eecs.umich.edu                *res = pkt.get<T>();
4084878Sstever@eecs.umich.edu            }
4093170Sstever@eecs.umich.edu        }
4103170Sstever@eecs.umich.edu
4114878Sstever@eecs.umich.edu        if (res && !req->isSwap()) {
4124052Ssaidi@eecs.umich.edu            *res = req->getExtraData();
4132631SN/A        }
4142623SN/A    }
4152623SN/A
4162623SN/A    // This will need a new way to tell if it's hooked up to a cache or not.
4173172Sstever@eecs.umich.edu    if (req->isUncacheable())
4182623SN/A        recordEvent("Uncached Write");
4192623SN/A
4202623SN/A    // If the write needs to have a fault on the access, consider calling
4212623SN/A    // changeStatus() and changing it to "bad addr write" or something.
4222623SN/A    return fault;
4232623SN/A}
4242623SN/A
4252623SN/A
4262623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS
4274224Sgblack@eecs.umich.edu
4284224Sgblack@eecs.umich.edutemplate
4294224Sgblack@eecs.umich.eduFault
4304224Sgblack@eecs.umich.eduAtomicSimpleCPU::write(Twin32_t data, Addr addr,
4314224Sgblack@eecs.umich.edu                       unsigned flags, uint64_t *res);
4324224Sgblack@eecs.umich.edu
4334224Sgblack@eecs.umich.edutemplate
4344224Sgblack@eecs.umich.eduFault
4354224Sgblack@eecs.umich.eduAtomicSimpleCPU::write(Twin64_t data, Addr addr,
4364224Sgblack@eecs.umich.edu                       unsigned flags, uint64_t *res);
4374224Sgblack@eecs.umich.edu
4382623SN/Atemplate
4392623SN/AFault
4402623SN/AAtomicSimpleCPU::write(uint64_t data, Addr addr,
4412623SN/A                       unsigned flags, uint64_t *res);
4422623SN/A
4432623SN/Atemplate
4442623SN/AFault
4452623SN/AAtomicSimpleCPU::write(uint32_t data, Addr addr,
4462623SN/A                       unsigned flags, uint64_t *res);
4472623SN/A
4482623SN/Atemplate
4492623SN/AFault
4502623SN/AAtomicSimpleCPU::write(uint16_t data, Addr addr,
4512623SN/A                       unsigned flags, uint64_t *res);
4522623SN/A
4532623SN/Atemplate
4542623SN/AFault
4552623SN/AAtomicSimpleCPU::write(uint8_t data, Addr addr,
4562623SN/A                       unsigned flags, uint64_t *res);
4572623SN/A
4582623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS
4592623SN/A
4602623SN/Atemplate<>
4612623SN/AFault
4622623SN/AAtomicSimpleCPU::write(double data, Addr addr, unsigned flags, uint64_t *res)
4632623SN/A{
4642623SN/A    return write(*(uint64_t*)&data, addr, flags, res);
4652623SN/A}
4662623SN/A
4672623SN/Atemplate<>
4682623SN/AFault
4692623SN/AAtomicSimpleCPU::write(float data, Addr addr, unsigned flags, uint64_t *res)
4702623SN/A{
4712623SN/A    return write(*(uint32_t*)&data, addr, flags, res);
4722623SN/A}
4732623SN/A
4742623SN/A
4752623SN/Atemplate<>
4762623SN/AFault
4772623SN/AAtomicSimpleCPU::write(int32_t data, Addr addr, unsigned flags, uint64_t *res)
4782623SN/A{
4792623SN/A    return write((uint32_t)data, addr, flags, res);
4802623SN/A}
4812623SN/A
4822623SN/A
4832623SN/Avoid
4842623SN/AAtomicSimpleCPU::tick()
4852623SN/A{
4862623SN/A    Tick latency = cycles(1); // instruction takes one cycle by default
4872623SN/A
4882623SN/A    for (int i = 0; i < width; ++i) {
4892623SN/A        numCycles++;
4902623SN/A
4913387Sgblack@eecs.umich.edu        if (!curStaticInst || !curStaticInst->isDelayedCommit())
4923387Sgblack@eecs.umich.edu            checkForInterrupts();
4932626SN/A
4944870Sstever@eecs.umich.edu        Fault fault = setupFetchRequest(&ifetch_req);
4952623SN/A
4962623SN/A        if (fault == NoFault) {
4974182Sgblack@eecs.umich.edu            Tick icache_latency = 0;
4984182Sgblack@eecs.umich.edu            bool icache_access = false;
4994182Sgblack@eecs.umich.edu            dcache_access = false; // assume no dcache access
5002662Sstever@eecs.umich.edu
5014182Sgblack@eecs.umich.edu            //Fetch more instruction memory if necessary
5024593Sgblack@eecs.umich.edu            //if(predecoder.needMoreBytes())
5034593Sgblack@eecs.umich.edu            //{
5044182Sgblack@eecs.umich.edu                icache_access = true;
5054870Sstever@eecs.umich.edu                Packet ifetch_pkt = Packet(&ifetch_req, MemCmd::ReadReq,
5064870Sstever@eecs.umich.edu                                           Packet::Broadcast);
5074870Sstever@eecs.umich.edu                ifetch_pkt.dataStatic(&inst);
5082623SN/A
5094870Sstever@eecs.umich.edu                icache_latency = icachePort.sendAtomic(&ifetch_pkt);
5104182Sgblack@eecs.umich.edu                // ifetch_req is initialized to read the instruction directly
5114182Sgblack@eecs.umich.edu                // into the CPU object's inst field.
5124593Sgblack@eecs.umich.edu            //}
5134182Sgblack@eecs.umich.edu
5142623SN/A            preExecute();
5153814Ssaidi@eecs.umich.edu
5164182Sgblack@eecs.umich.edu            if(curStaticInst)
5174182Sgblack@eecs.umich.edu            {
5184182Sgblack@eecs.umich.edu                fault = curStaticInst->execute(this, traceData);
5194182Sgblack@eecs.umich.edu                postExecute();
5204182Sgblack@eecs.umich.edu            }
5212623SN/A
5223814Ssaidi@eecs.umich.edu            // @todo remove me after debugging with legion done
5234539Sgblack@eecs.umich.edu            if (curStaticInst && (!curStaticInst->isMicroop() ||
5244539Sgblack@eecs.umich.edu                        curStaticInst->isFirstMicroop()))
5253814Ssaidi@eecs.umich.edu                instCnt++;
5263814Ssaidi@eecs.umich.edu
5272623SN/A            if (simulate_stalls) {
5284182Sgblack@eecs.umich.edu                Tick icache_stall =
5294182Sgblack@eecs.umich.edu                    icache_access ? icache_latency - cycles(1) : 0;
5302623SN/A                Tick dcache_stall =
5312662Sstever@eecs.umich.edu                    dcache_access ? dcache_latency - cycles(1) : 0;
5322803Ssaidi@eecs.umich.edu                Tick stall_cycles = (icache_stall + dcache_stall) / cycles(1);
5332803Ssaidi@eecs.umich.edu                if (cycles(stall_cycles) < (icache_stall + dcache_stall))
5342803Ssaidi@eecs.umich.edu                    latency += cycles(stall_cycles+1);
5352803Ssaidi@eecs.umich.edu                else
5362803Ssaidi@eecs.umich.edu                    latency += cycles(stall_cycles);
5372623SN/A            }
5382623SN/A
5392623SN/A        }
5404377Sgblack@eecs.umich.edu        if(fault != NoFault || !stayAtPC)
5414182Sgblack@eecs.umich.edu            advancePC(fault);
5422623SN/A    }
5432623SN/A
5442626SN/A    if (_status != Idle)
5452626SN/A        tickEvent.schedule(curTick + latency);
5462623SN/A}
5472623SN/A
5482623SN/A
5492623SN/A////////////////////////////////////////////////////////////////////////
5502623SN/A//
5512623SN/A//  AtomicSimpleCPU Simulation Object
5522623SN/A//
5534762Snate@binkert.orgAtomicSimpleCPU *
5544762Snate@binkert.orgAtomicSimpleCPUParams::create()
5552623SN/A{
5562623SN/A    AtomicSimpleCPU::Params *params = new AtomicSimpleCPU::Params();
5574762Snate@binkert.org    params->name = name;
5582623SN/A    params->numberOfThreads = 1;
5592623SN/A    params->max_insts_any_thread = max_insts_any_thread;
5602623SN/A    params->max_insts_all_threads = max_insts_all_threads;
5612623SN/A    params->max_loads_any_thread = max_loads_any_thread;
5622623SN/A    params->max_loads_all_threads = max_loads_all_threads;
5633119Sktlim@umich.edu    params->progress_interval = progress_interval;
5642623SN/A    params->deferRegistration = defer_registration;
5653661Srdreslin@umich.edu    params->phase = phase;
5662623SN/A    params->clock = clock;
5672623SN/A    params->functionTrace = function_trace;
5682623SN/A    params->functionTraceStart = function_trace_start;
5692623SN/A    params->width = width;
5702623SN/A    params->simulate_stalls = simulate_stalls;
5712901Ssaidi@eecs.umich.edu    params->system = system;
5723170Sstever@eecs.umich.edu    params->cpu_id = cpu_id;
5732623SN/A
5742623SN/A#if FULL_SYSTEM
5752623SN/A    params->itb = itb;
5762623SN/A    params->dtb = dtb;
5772623SN/A    params->profile = profile;
5783617Sbinkertn@umich.edu    params->do_quiesce = do_quiesce;
5793617Sbinkertn@umich.edu    params->do_checkpoint_insts = do_checkpoint_insts;
5803617Sbinkertn@umich.edu    params->do_statistics_insts = do_statistics_insts;
5812623SN/A#else
5824762Snate@binkert.org    if (workload.size() != 1)
5834762Snate@binkert.org        panic("only one workload allowed");
5844762Snate@binkert.org    params->process = workload[0];
5852623SN/A#endif
5862623SN/A
5872623SN/A    AtomicSimpleCPU *cpu = new AtomicSimpleCPU(params);
5882623SN/A    return cpu;
5892623SN/A}
590