atomic.cc revision 3673
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" 322623SN/A#include "arch/utility.hh" 332623SN/A#include "cpu/exetrace.hh" 342623SN/A#include "cpu/simple/atomic.hh" 353348Sbinkertn@umich.edu#include "mem/packet.hh" 363348Sbinkertn@umich.edu#include "mem/packet_access.hh" 372623SN/A#include "sim/builder.hh" 382901Ssaidi@eecs.umich.edu#include "sim/system.hh" 392623SN/A 402623SN/Ausing namespace std; 412623SN/Ausing namespace TheISA; 422623SN/A 432623SN/AAtomicSimpleCPU::TickEvent::TickEvent(AtomicSimpleCPU *c) 442623SN/A : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c) 452623SN/A{ 462623SN/A} 472623SN/A 482623SN/A 492623SN/Avoid 502623SN/AAtomicSimpleCPU::TickEvent::process() 512623SN/A{ 522623SN/A cpu->tick(); 532623SN/A} 542623SN/A 552623SN/Aconst char * 562623SN/AAtomicSimpleCPU::TickEvent::description() 572623SN/A{ 582623SN/A return "AtomicSimpleCPU tick event"; 592623SN/A} 602623SN/A 612856Srdreslin@umich.eduPort * 622856Srdreslin@umich.eduAtomicSimpleCPU::getPort(const std::string &if_name, int idx) 632856Srdreslin@umich.edu{ 642856Srdreslin@umich.edu if (if_name == "dcache_port") 652856Srdreslin@umich.edu return &dcachePort; 662856Srdreslin@umich.edu else if (if_name == "icache_port") 672856Srdreslin@umich.edu return &icachePort; 682856Srdreslin@umich.edu else 692856Srdreslin@umich.edu panic("No Such Port\n"); 702856Srdreslin@umich.edu} 712623SN/A 722623SN/Avoid 732623SN/AAtomicSimpleCPU::init() 742623SN/A{ 752623SN/A BaseCPU::init(); 762623SN/A#if FULL_SYSTEM 772680Sktlim@umich.edu for (int i = 0; i < threadContexts.size(); ++i) { 782680Sktlim@umich.edu ThreadContext *tc = threadContexts[i]; 792623SN/A 803673Srdreslin@umich.edu // initialize the mem pointers 813673Srdreslin@umich.edu tc->init(); 823673Srdreslin@umich.edu 832623SN/A // initialize CPU, including PC 842680Sktlim@umich.edu TheISA::initCPU(tc, tc->readCpuId()); 852623SN/A } 862623SN/A#endif 872623SN/A} 882623SN/A 892623SN/Abool 903349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvTiming(PacketPtr pkt) 912623SN/A{ 923184Srdreslin@umich.edu panic("AtomicSimpleCPU doesn't expect recvTiming callback!"); 932623SN/A return true; 942623SN/A} 952623SN/A 962623SN/ATick 973349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvAtomic(PacketPtr pkt) 982623SN/A{ 993310Srdreslin@umich.edu //Snooping a coherence request, just return 1003649Srdreslin@umich.edu return 0; 1012623SN/A} 1022623SN/A 1032623SN/Avoid 1043349Sbinkertn@umich.eduAtomicSimpleCPU::CpuPort::recvFunctional(PacketPtr pkt) 1052623SN/A{ 1063184Srdreslin@umich.edu //No internal storage to update, just return 1073184Srdreslin@umich.edu return; 1082623SN/A} 1092623SN/A 1102623SN/Avoid 1112623SN/AAtomicSimpleCPU::CpuPort::recvStatusChange(Status status) 1122623SN/A{ 1133647Srdreslin@umich.edu if (status == RangeChange) { 1143647Srdreslin@umich.edu if (!snoopRangeSent) { 1153647Srdreslin@umich.edu snoopRangeSent = true; 1163647Srdreslin@umich.edu sendStatusChange(Port::RangeChange); 1173647Srdreslin@umich.edu } 1182626SN/A return; 1193647Srdreslin@umich.edu } 1202626SN/A 1212623SN/A panic("AtomicSimpleCPU doesn't expect recvStatusChange callback!"); 1222623SN/A} 1232623SN/A 1242657Ssaidi@eecs.umich.eduvoid 1252623SN/AAtomicSimpleCPU::CpuPort::recvRetry() 1262623SN/A{ 1272623SN/A panic("AtomicSimpleCPU doesn't expect recvRetry callback!"); 1282623SN/A} 1292623SN/A 1302623SN/A 1312623SN/AAtomicSimpleCPU::AtomicSimpleCPU(Params *p) 1322623SN/A : BaseSimpleCPU(p), tickEvent(this), 1332623SN/A width(p->width), simulate_stalls(p->simulate_stalls), 1342640Sstever@eecs.umich.edu icachePort(name() + "-iport", this), dcachePort(name() + "-iport", this) 1352623SN/A{ 1362623SN/A _status = Idle; 1372623SN/A 1383647Srdreslin@umich.edu icachePort.snoopRangeSent = false; 1393647Srdreslin@umich.edu dcachePort.snoopRangeSent = false; 1403647Srdreslin@umich.edu 1412663Sstever@eecs.umich.edu ifetch_req = new Request(); 1423170Sstever@eecs.umich.edu ifetch_req->setThreadContext(p->cpu_id, 0); // Add thread ID if we add MT 1432641Sstever@eecs.umich.edu ifetch_pkt = new Packet(ifetch_req, Packet::ReadReq, Packet::Broadcast); 1442623SN/A ifetch_pkt->dataStatic(&inst); 1452623SN/A 1462663Sstever@eecs.umich.edu data_read_req = new Request(); 1473170Sstever@eecs.umich.edu data_read_req->setThreadContext(p->cpu_id, 0); // Add thread ID here too 1482641Sstever@eecs.umich.edu data_read_pkt = new Packet(data_read_req, Packet::ReadReq, 1492641Sstever@eecs.umich.edu Packet::Broadcast); 1502623SN/A data_read_pkt->dataStatic(&dataReg); 1512623SN/A 1522663Sstever@eecs.umich.edu data_write_req = new Request(); 1533170Sstever@eecs.umich.edu data_write_req->setThreadContext(p->cpu_id, 0); // Add thread ID here too 1542641Sstever@eecs.umich.edu data_write_pkt = new Packet(data_write_req, Packet::WriteReq, 1552641Sstever@eecs.umich.edu Packet::Broadcast); 1562623SN/A} 1572623SN/A 1582623SN/A 1592623SN/AAtomicSimpleCPU::~AtomicSimpleCPU() 1602623SN/A{ 1612623SN/A} 1622623SN/A 1632623SN/Avoid 1642623SN/AAtomicSimpleCPU::serialize(ostream &os) 1652623SN/A{ 1662915Sktlim@umich.edu SimObject::State so_state = SimObject::getState(); 1672915Sktlim@umich.edu SERIALIZE_ENUM(so_state); 1683177Shsul@eecs.umich.edu Status _status = status(); 1693177Shsul@eecs.umich.edu SERIALIZE_ENUM(_status); 1703145Shsul@eecs.umich.edu BaseSimpleCPU::serialize(os); 1712623SN/A nameOut(os, csprintf("%s.tickEvent", name())); 1722623SN/A tickEvent.serialize(os); 1732623SN/A} 1742623SN/A 1752623SN/Avoid 1762623SN/AAtomicSimpleCPU::unserialize(Checkpoint *cp, const string §ion) 1772623SN/A{ 1782915Sktlim@umich.edu SimObject::State so_state; 1792915Sktlim@umich.edu UNSERIALIZE_ENUM(so_state); 1803177Shsul@eecs.umich.edu UNSERIALIZE_ENUM(_status); 1813145Shsul@eecs.umich.edu BaseSimpleCPU::unserialize(cp, section); 1822915Sktlim@umich.edu tickEvent.unserialize(cp, csprintf("%s.tickEvent", section)); 1832915Sktlim@umich.edu} 1842915Sktlim@umich.edu 1852915Sktlim@umich.eduvoid 1862915Sktlim@umich.eduAtomicSimpleCPU::resume() 1872915Sktlim@umich.edu{ 1883324Shsul@eecs.umich.edu if (_status != SwitchedOut && _status != Idle) { 1893201Shsul@eecs.umich.edu assert(system->getMemoryMode() == System::Atomic); 1903324Shsul@eecs.umich.edu 1913324Shsul@eecs.umich.edu changeState(SimObject::Running); 1923324Shsul@eecs.umich.edu if (thread->status() == ThreadContext::Active) { 1933431Sgblack@eecs.umich.edu if (!tickEvent.scheduled()) { 1943495Sktlim@umich.edu tickEvent.schedule(nextCycle()); 1953431Sgblack@eecs.umich.edu } 1963324Shsul@eecs.umich.edu } 1972915Sktlim@umich.edu } 1982623SN/A} 1992623SN/A 2002623SN/Avoid 2012798Sktlim@umich.eduAtomicSimpleCPU::switchOut() 2022623SN/A{ 2032798Sktlim@umich.edu assert(status() == Running || status() == Idle); 2042798Sktlim@umich.edu _status = SwitchedOut; 2052623SN/A 2062798Sktlim@umich.edu tickEvent.squash(); 2072623SN/A} 2082623SN/A 2092623SN/A 2102623SN/Avoid 2112623SN/AAtomicSimpleCPU::takeOverFrom(BaseCPU *oldCPU) 2122623SN/A{ 2132623SN/A BaseCPU::takeOverFrom(oldCPU); 2142623SN/A 2152623SN/A assert(!tickEvent.scheduled()); 2162623SN/A 2172680Sktlim@umich.edu // if any of this CPU's ThreadContexts are active, mark the CPU as 2182623SN/A // running and schedule its tick event. 2192680Sktlim@umich.edu for (int i = 0; i < threadContexts.size(); ++i) { 2202680Sktlim@umich.edu ThreadContext *tc = threadContexts[i]; 2212680Sktlim@umich.edu if (tc->status() == ThreadContext::Active && _status != Running) { 2222623SN/A _status = Running; 2233495Sktlim@umich.edu tickEvent.schedule(nextCycle()); 2242623SN/A break; 2252623SN/A } 2262623SN/A } 2273512Sktlim@umich.edu if (_status != Running) { 2283512Sktlim@umich.edu _status = Idle; 2293512Sktlim@umich.edu } 2302623SN/A} 2312623SN/A 2322623SN/A 2332623SN/Avoid 2342623SN/AAtomicSimpleCPU::activateContext(int thread_num, int delay) 2352623SN/A{ 2362623SN/A assert(thread_num == 0); 2372683Sktlim@umich.edu assert(thread); 2382623SN/A 2392623SN/A assert(_status == Idle); 2402623SN/A assert(!tickEvent.scheduled()); 2412623SN/A 2422623SN/A notIdleFraction++; 2433430Sgblack@eecs.umich.edu //Make sure ticks are still on multiples of cycles 2443495Sktlim@umich.edu tickEvent.schedule(nextCycle(curTick + cycles(delay))); 2452623SN/A _status = Running; 2462623SN/A} 2472623SN/A 2482623SN/A 2492623SN/Avoid 2502623SN/AAtomicSimpleCPU::suspendContext(int thread_num) 2512623SN/A{ 2522623SN/A assert(thread_num == 0); 2532683Sktlim@umich.edu assert(thread); 2542623SN/A 2552623SN/A assert(_status == Running); 2562626SN/A 2572626SN/A // tick event may not be scheduled if this gets called from inside 2582626SN/A // an instruction's execution, e.g. "quiesce" 2592626SN/A if (tickEvent.scheduled()) 2602626SN/A tickEvent.deschedule(); 2612623SN/A 2622623SN/A notIdleFraction--; 2632623SN/A _status = Idle; 2642623SN/A} 2652623SN/A 2662623SN/A 2672623SN/Atemplate <class T> 2682623SN/AFault 2692623SN/AAtomicSimpleCPU::read(Addr addr, T &data, unsigned flags) 2702623SN/A{ 2713169Sstever@eecs.umich.edu // use the CPU's statically allocated read request and packet objects 2723169Sstever@eecs.umich.edu Request *req = data_read_req; 2733349Sbinkertn@umich.edu PacketPtr pkt = data_read_pkt; 2743169Sstever@eecs.umich.edu 2753169Sstever@eecs.umich.edu req->setVirt(0, addr, sizeof(T), flags, thread->readPC()); 2762623SN/A 2772623SN/A if (traceData) { 2782623SN/A traceData->setAddr(addr); 2792623SN/A } 2802623SN/A 2812623SN/A // translate to physical address 2823169Sstever@eecs.umich.edu Fault fault = thread->translateDataReadReq(req); 2832623SN/A 2842623SN/A // Now do the access. 2852623SN/A if (fault == NoFault) { 2863169Sstever@eecs.umich.edu pkt->reinitFromRequest(); 2872623SN/A 2883169Sstever@eecs.umich.edu dcache_latency = dcachePort.sendAtomic(pkt); 2892623SN/A dcache_access = true; 2902623SN/A 2913169Sstever@eecs.umich.edu assert(pkt->result == Packet::Success); 2923169Sstever@eecs.umich.edu data = pkt->get<T>(); 2933170Sstever@eecs.umich.edu 2943170Sstever@eecs.umich.edu if (req->isLocked()) { 2953170Sstever@eecs.umich.edu TheISA::handleLockedRead(thread, req); 2963170Sstever@eecs.umich.edu } 2972623SN/A } 2982623SN/A 2992623SN/A // This will need a new way to tell if it has a dcache attached. 3003172Sstever@eecs.umich.edu if (req->isUncacheable()) 3012623SN/A recordEvent("Uncached Read"); 3022623SN/A 3032623SN/A return fault; 3042623SN/A} 3052623SN/A 3062623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS 3072623SN/A 3082623SN/Atemplate 3092623SN/AFault 3102623SN/AAtomicSimpleCPU::read(Addr addr, uint64_t &data, unsigned flags); 3112623SN/A 3122623SN/Atemplate 3132623SN/AFault 3142623SN/AAtomicSimpleCPU::read(Addr addr, uint32_t &data, unsigned flags); 3152623SN/A 3162623SN/Atemplate 3172623SN/AFault 3182623SN/AAtomicSimpleCPU::read(Addr addr, uint16_t &data, unsigned flags); 3192623SN/A 3202623SN/Atemplate 3212623SN/AFault 3222623SN/AAtomicSimpleCPU::read(Addr addr, uint8_t &data, unsigned flags); 3232623SN/A 3242623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS 3252623SN/A 3262623SN/Atemplate<> 3272623SN/AFault 3282623SN/AAtomicSimpleCPU::read(Addr addr, double &data, unsigned flags) 3292623SN/A{ 3302623SN/A return read(addr, *(uint64_t*)&data, flags); 3312623SN/A} 3322623SN/A 3332623SN/Atemplate<> 3342623SN/AFault 3352623SN/AAtomicSimpleCPU::read(Addr addr, float &data, unsigned flags) 3362623SN/A{ 3372623SN/A return read(addr, *(uint32_t*)&data, flags); 3382623SN/A} 3392623SN/A 3402623SN/A 3412623SN/Atemplate<> 3422623SN/AFault 3432623SN/AAtomicSimpleCPU::read(Addr addr, int32_t &data, unsigned flags) 3442623SN/A{ 3452623SN/A return read(addr, (uint32_t&)data, flags); 3462623SN/A} 3472623SN/A 3482623SN/A 3492623SN/Atemplate <class T> 3502623SN/AFault 3512623SN/AAtomicSimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res) 3522623SN/A{ 3533169Sstever@eecs.umich.edu // use the CPU's statically allocated write request and packet objects 3543169Sstever@eecs.umich.edu Request *req = data_write_req; 3553349Sbinkertn@umich.edu PacketPtr pkt = data_write_pkt; 3563169Sstever@eecs.umich.edu 3573169Sstever@eecs.umich.edu req->setVirt(0, addr, sizeof(T), flags, thread->readPC()); 3582623SN/A 3592623SN/A if (traceData) { 3602623SN/A traceData->setAddr(addr); 3612623SN/A } 3622623SN/A 3632623SN/A // translate to physical address 3643169Sstever@eecs.umich.edu Fault fault = thread->translateDataWriteReq(req); 3652623SN/A 3662623SN/A // Now do the access. 3672623SN/A if (fault == NoFault) { 3683170Sstever@eecs.umich.edu bool do_access = true; // flag to suppress cache access 3692623SN/A 3703170Sstever@eecs.umich.edu if (req->isLocked()) { 3713170Sstever@eecs.umich.edu do_access = TheISA::handleLockedWrite(thread, req); 3723170Sstever@eecs.umich.edu } 3732623SN/A 3743170Sstever@eecs.umich.edu if (do_access) { 3753170Sstever@eecs.umich.edu data = htog(data); 3763170Sstever@eecs.umich.edu pkt->reinitFromRequest(); 3773170Sstever@eecs.umich.edu pkt->dataStatic(&data); 3782631SN/A 3793170Sstever@eecs.umich.edu dcache_latency = dcachePort.sendAtomic(pkt); 3803170Sstever@eecs.umich.edu dcache_access = true; 3813170Sstever@eecs.umich.edu 3823170Sstever@eecs.umich.edu assert(pkt->result == Packet::Success); 3833170Sstever@eecs.umich.edu } 3843170Sstever@eecs.umich.edu 3853170Sstever@eecs.umich.edu if (req->isLocked()) { 3863170Sstever@eecs.umich.edu uint64_t scResult = req->getScResult(); 3873170Sstever@eecs.umich.edu if (scResult != 0) { 3883170Sstever@eecs.umich.edu // clear failure counter 3893170Sstever@eecs.umich.edu thread->setStCondFailures(0); 3903170Sstever@eecs.umich.edu } 3913170Sstever@eecs.umich.edu if (res) { 3923170Sstever@eecs.umich.edu *res = req->getScResult(); 3933170Sstever@eecs.umich.edu } 3942631SN/A } 3952623SN/A } 3962623SN/A 3972623SN/A // This will need a new way to tell if it's hooked up to a cache or not. 3983172Sstever@eecs.umich.edu if (req->isUncacheable()) 3992623SN/A recordEvent("Uncached Write"); 4002623SN/A 4012623SN/A // If the write needs to have a fault on the access, consider calling 4022623SN/A // changeStatus() and changing it to "bad addr write" or something. 4032623SN/A return fault; 4042623SN/A} 4052623SN/A 4062623SN/A 4072623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS 4082623SN/Atemplate 4092623SN/AFault 4102623SN/AAtomicSimpleCPU::write(uint64_t data, Addr addr, 4112623SN/A unsigned flags, uint64_t *res); 4122623SN/A 4132623SN/Atemplate 4142623SN/AFault 4152623SN/AAtomicSimpleCPU::write(uint32_t data, Addr addr, 4162623SN/A unsigned flags, uint64_t *res); 4172623SN/A 4182623SN/Atemplate 4192623SN/AFault 4202623SN/AAtomicSimpleCPU::write(uint16_t data, Addr addr, 4212623SN/A unsigned flags, uint64_t *res); 4222623SN/A 4232623SN/Atemplate 4242623SN/AFault 4252623SN/AAtomicSimpleCPU::write(uint8_t data, Addr addr, 4262623SN/A unsigned flags, uint64_t *res); 4272623SN/A 4282623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS 4292623SN/A 4302623SN/Atemplate<> 4312623SN/AFault 4322623SN/AAtomicSimpleCPU::write(double data, Addr addr, unsigned flags, uint64_t *res) 4332623SN/A{ 4342623SN/A return write(*(uint64_t*)&data, addr, flags, res); 4352623SN/A} 4362623SN/A 4372623SN/Atemplate<> 4382623SN/AFault 4392623SN/AAtomicSimpleCPU::write(float data, Addr addr, unsigned flags, uint64_t *res) 4402623SN/A{ 4412623SN/A return write(*(uint32_t*)&data, addr, flags, res); 4422623SN/A} 4432623SN/A 4442623SN/A 4452623SN/Atemplate<> 4462623SN/AFault 4472623SN/AAtomicSimpleCPU::write(int32_t data, Addr addr, unsigned flags, uint64_t *res) 4482623SN/A{ 4492623SN/A return write((uint32_t)data, addr, flags, res); 4502623SN/A} 4512623SN/A 4522623SN/A 4532623SN/Avoid 4542623SN/AAtomicSimpleCPU::tick() 4552623SN/A{ 4562623SN/A Tick latency = cycles(1); // instruction takes one cycle by default 4572623SN/A 4582623SN/A for (int i = 0; i < width; ++i) { 4592623SN/A numCycles++; 4602623SN/A 4613387Sgblack@eecs.umich.edu if (!curStaticInst || !curStaticInst->isDelayedCommit()) 4623387Sgblack@eecs.umich.edu checkForInterrupts(); 4632626SN/A 4642662Sstever@eecs.umich.edu Fault fault = setupFetchRequest(ifetch_req); 4652623SN/A 4662623SN/A if (fault == NoFault) { 4672662Sstever@eecs.umich.edu ifetch_pkt->reinitFromRequest(); 4682662Sstever@eecs.umich.edu 4692662Sstever@eecs.umich.edu Tick icache_latency = icachePort.sendAtomic(ifetch_pkt); 4702623SN/A // ifetch_req is initialized to read the instruction directly 4712623SN/A // into the CPU object's inst field. 4722623SN/A 4732623SN/A dcache_access = false; // assume no dcache access 4742623SN/A preExecute(); 4752623SN/A fault = curStaticInst->execute(this, traceData); 4762623SN/A postExecute(); 4772623SN/A 4782623SN/A if (simulate_stalls) { 4792662Sstever@eecs.umich.edu Tick icache_stall = icache_latency - cycles(1); 4802623SN/A Tick dcache_stall = 4812662Sstever@eecs.umich.edu dcache_access ? dcache_latency - cycles(1) : 0; 4822803Ssaidi@eecs.umich.edu Tick stall_cycles = (icache_stall + dcache_stall) / cycles(1); 4832803Ssaidi@eecs.umich.edu if (cycles(stall_cycles) < (icache_stall + dcache_stall)) 4842803Ssaidi@eecs.umich.edu latency += cycles(stall_cycles+1); 4852803Ssaidi@eecs.umich.edu else 4862803Ssaidi@eecs.umich.edu latency += cycles(stall_cycles); 4872623SN/A } 4882623SN/A 4892623SN/A } 4902623SN/A 4912623SN/A advancePC(fault); 4922623SN/A } 4932623SN/A 4942626SN/A if (_status != Idle) 4952626SN/A tickEvent.schedule(curTick + latency); 4962623SN/A} 4972623SN/A 4982623SN/A 4992623SN/A//////////////////////////////////////////////////////////////////////// 5002623SN/A// 5012623SN/A// AtomicSimpleCPU Simulation Object 5022623SN/A// 5032623SN/ABEGIN_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 5042623SN/A 5052623SN/A Param<Counter> max_insts_any_thread; 5062623SN/A Param<Counter> max_insts_all_threads; 5072623SN/A Param<Counter> max_loads_any_thread; 5082623SN/A Param<Counter> max_loads_all_threads; 5093119Sktlim@umich.edu Param<Tick> progress_interval; 5102901Ssaidi@eecs.umich.edu SimObjectParam<System *> system; 5113170Sstever@eecs.umich.edu Param<int> cpu_id; 5122623SN/A 5132623SN/A#if FULL_SYSTEM 5143453Sgblack@eecs.umich.edu SimObjectParam<TheISA::ITB *> itb; 5153453Sgblack@eecs.umich.edu SimObjectParam<TheISA::DTB *> dtb; 5162623SN/A Param<Tick> profile; 5173617Sbinkertn@umich.edu 5183617Sbinkertn@umich.edu Param<bool> do_quiesce; 5193617Sbinkertn@umich.edu Param<bool> do_checkpoint_insts; 5203617Sbinkertn@umich.edu Param<bool> do_statistics_insts; 5212623SN/A#else 5222623SN/A SimObjectParam<Process *> workload; 5232623SN/A#endif // FULL_SYSTEM 5242623SN/A 5252623SN/A Param<int> clock; 5263661Srdreslin@umich.edu Param<int> phase; 5272623SN/A 5282623SN/A Param<bool> defer_registration; 5292623SN/A Param<int> width; 5302623SN/A Param<bool> function_trace; 5312623SN/A Param<Tick> function_trace_start; 5322623SN/A Param<bool> simulate_stalls; 5332623SN/A 5342623SN/AEND_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 5352623SN/A 5362623SN/ABEGIN_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 5372623SN/A 5382623SN/A INIT_PARAM(max_insts_any_thread, 5392623SN/A "terminate when any thread reaches this inst count"), 5402623SN/A INIT_PARAM(max_insts_all_threads, 5412623SN/A "terminate when all threads have reached this inst count"), 5422623SN/A INIT_PARAM(max_loads_any_thread, 5432623SN/A "terminate when any thread reaches this load count"), 5442623SN/A INIT_PARAM(max_loads_all_threads, 5452623SN/A "terminate when all threads have reached this load count"), 5463119Sktlim@umich.edu INIT_PARAM(progress_interval, "Progress interval"), 5472901Ssaidi@eecs.umich.edu INIT_PARAM(system, "system object"), 5483170Sstever@eecs.umich.edu INIT_PARAM(cpu_id, "processor ID"), 5492623SN/A 5502623SN/A#if FULL_SYSTEM 5512623SN/A INIT_PARAM(itb, "Instruction TLB"), 5522623SN/A INIT_PARAM(dtb, "Data TLB"), 5532623SN/A INIT_PARAM(profile, ""), 5543617Sbinkertn@umich.edu INIT_PARAM(do_quiesce, ""), 5553617Sbinkertn@umich.edu INIT_PARAM(do_checkpoint_insts, ""), 5563617Sbinkertn@umich.edu INIT_PARAM(do_statistics_insts, ""), 5572623SN/A#else 5582623SN/A INIT_PARAM(workload, "processes to run"), 5592623SN/A#endif // FULL_SYSTEM 5602623SN/A 5612623SN/A INIT_PARAM(clock, "clock speed"), 5623661Srdreslin@umich.edu INIT_PARAM_DFLT(phase, "clock phase", 0), 5632623SN/A INIT_PARAM(defer_registration, "defer system registration (for sampling)"), 5642623SN/A INIT_PARAM(width, "cpu width"), 5652623SN/A INIT_PARAM(function_trace, "Enable function trace"), 5662623SN/A INIT_PARAM(function_trace_start, "Cycle to start function trace"), 5672623SN/A INIT_PARAM(simulate_stalls, "Simulate cache stall cycles") 5682623SN/A 5692623SN/AEND_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 5702623SN/A 5712623SN/A 5722623SN/ACREATE_SIM_OBJECT(AtomicSimpleCPU) 5732623SN/A{ 5742623SN/A AtomicSimpleCPU::Params *params = new AtomicSimpleCPU::Params(); 5752623SN/A params->name = getInstanceName(); 5762623SN/A params->numberOfThreads = 1; 5772623SN/A params->max_insts_any_thread = max_insts_any_thread; 5782623SN/A params->max_insts_all_threads = max_insts_all_threads; 5792623SN/A params->max_loads_any_thread = max_loads_any_thread; 5802623SN/A params->max_loads_all_threads = max_loads_all_threads; 5813119Sktlim@umich.edu params->progress_interval = progress_interval; 5822623SN/A params->deferRegistration = defer_registration; 5833661Srdreslin@umich.edu params->phase = phase; 5842623SN/A params->clock = clock; 5852623SN/A params->functionTrace = function_trace; 5862623SN/A params->functionTraceStart = function_trace_start; 5872623SN/A params->width = width; 5882623SN/A params->simulate_stalls = simulate_stalls; 5892901Ssaidi@eecs.umich.edu params->system = system; 5903170Sstever@eecs.umich.edu params->cpu_id = cpu_id; 5912623SN/A 5922623SN/A#if FULL_SYSTEM 5932623SN/A params->itb = itb; 5942623SN/A params->dtb = dtb; 5952623SN/A params->profile = profile; 5963617Sbinkertn@umich.edu params->do_quiesce = do_quiesce; 5973617Sbinkertn@umich.edu params->do_checkpoint_insts = do_checkpoint_insts; 5983617Sbinkertn@umich.edu params->do_statistics_insts = do_statistics_insts; 5992623SN/A#else 6002623SN/A params->process = workload; 6012623SN/A#endif 6022623SN/A 6032623SN/A AtomicSimpleCPU *cpu = new AtomicSimpleCPU(params); 6042623SN/A return cpu; 6052623SN/A} 6062623SN/A 6072623SN/AREGISTER_SIM_OBJECT("AtomicSimpleCPU", AtomicSimpleCPU) 6082623SN/A 609