atomic.cc revision 2856
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 312623SN/A#include "arch/utility.hh" 322623SN/A#include "cpu/exetrace.hh" 332623SN/A#include "cpu/simple/atomic.hh" 342623SN/A#include "mem/packet_impl.hh" 352623SN/A#include "sim/builder.hh" 362623SN/A 372623SN/Ausing namespace std; 382623SN/Ausing namespace TheISA; 392623SN/A 402623SN/AAtomicSimpleCPU::TickEvent::TickEvent(AtomicSimpleCPU *c) 412623SN/A : Event(&mainEventQueue, CPU_Tick_Pri), cpu(c) 422623SN/A{ 432623SN/A} 442623SN/A 452623SN/A 462623SN/Avoid 472623SN/AAtomicSimpleCPU::TickEvent::process() 482623SN/A{ 492623SN/A cpu->tick(); 502623SN/A} 512623SN/A 522623SN/Aconst char * 532623SN/AAtomicSimpleCPU::TickEvent::description() 542623SN/A{ 552623SN/A return "AtomicSimpleCPU tick event"; 562623SN/A} 572623SN/A 582856Srdreslin@umich.eduPort * 592856Srdreslin@umich.eduAtomicSimpleCPU::getPort(const std::string &if_name, int idx) 602856Srdreslin@umich.edu{ 612856Srdreslin@umich.edu if (if_name == "dcache_port") 622856Srdreslin@umich.edu return &dcachePort; 632856Srdreslin@umich.edu else if (if_name == "icache_port") 642856Srdreslin@umich.edu return &icachePort; 652856Srdreslin@umich.edu else 662856Srdreslin@umich.edu panic("No Such Port\n"); 672856Srdreslin@umich.edu} 682623SN/A 692623SN/Avoid 702623SN/AAtomicSimpleCPU::init() 712623SN/A{ 722623SN/A //Create Memory Ports (conect them up) 732856Srdreslin@umich.edu// Port *mem_dport = mem->getPort(""); 742856Srdreslin@umich.edu// dcachePort.setPeer(mem_dport); 752856Srdreslin@umich.edu// mem_dport->setPeer(&dcachePort); 762623SN/A 772856Srdreslin@umich.edu// Port *mem_iport = mem->getPort(""); 782856Srdreslin@umich.edu// icachePort.setPeer(mem_iport); 792856Srdreslin@umich.edu// mem_iport->setPeer(&icachePort); 802623SN/A 812623SN/A BaseCPU::init(); 822623SN/A#if FULL_SYSTEM 832680Sktlim@umich.edu for (int i = 0; i < threadContexts.size(); ++i) { 842680Sktlim@umich.edu ThreadContext *tc = threadContexts[i]; 852623SN/A 862623SN/A // initialize CPU, including PC 872680Sktlim@umich.edu TheISA::initCPU(tc, tc->readCpuId()); 882623SN/A } 892623SN/A#endif 902623SN/A} 912623SN/A 922623SN/Abool 932630SN/AAtomicSimpleCPU::CpuPort::recvTiming(Packet *pkt) 942623SN/A{ 952623SN/A panic("AtomicSimpleCPU doesn't expect recvAtomic callback!"); 962623SN/A return true; 972623SN/A} 982623SN/A 992623SN/ATick 1002630SN/AAtomicSimpleCPU::CpuPort::recvAtomic(Packet *pkt) 1012623SN/A{ 1022623SN/A panic("AtomicSimpleCPU doesn't expect recvAtomic callback!"); 1032623SN/A return curTick; 1042623SN/A} 1052623SN/A 1062623SN/Avoid 1072630SN/AAtomicSimpleCPU::CpuPort::recvFunctional(Packet *pkt) 1082623SN/A{ 1092623SN/A panic("AtomicSimpleCPU doesn't expect recvFunctional callback!"); 1102623SN/A} 1112623SN/A 1122623SN/Avoid 1132623SN/AAtomicSimpleCPU::CpuPort::recvStatusChange(Status status) 1142623SN/A{ 1152626SN/A if (status == RangeChange) 1162626SN/A return; 1172626SN/A 1182623SN/A panic("AtomicSimpleCPU doesn't expect recvStatusChange callback!"); 1192623SN/A} 1202623SN/A 1212657Ssaidi@eecs.umich.eduvoid 1222623SN/AAtomicSimpleCPU::CpuPort::recvRetry() 1232623SN/A{ 1242623SN/A panic("AtomicSimpleCPU doesn't expect recvRetry callback!"); 1252623SN/A} 1262623SN/A 1272623SN/A 1282623SN/AAtomicSimpleCPU::AtomicSimpleCPU(Params *p) 1292623SN/A : BaseSimpleCPU(p), tickEvent(this), 1302623SN/A width(p->width), simulate_stalls(p->simulate_stalls), 1312640Sstever@eecs.umich.edu icachePort(name() + "-iport", this), dcachePort(name() + "-iport", this) 1322623SN/A{ 1332623SN/A _status = Idle; 1342623SN/A 1352663Sstever@eecs.umich.edu // @todo fix me and get the real cpu id & thread number!!! 1362663Sstever@eecs.umich.edu ifetch_req = new Request(); 1372827Srdreslin@umich.edu ifetch_req->setThreadContext(0,0); //Need CPU/Thread IDS HERE 1382641Sstever@eecs.umich.edu ifetch_pkt = new Packet(ifetch_req, Packet::ReadReq, Packet::Broadcast); 1392623SN/A ifetch_pkt->dataStatic(&inst); 1402623SN/A 1412663Sstever@eecs.umich.edu data_read_req = new Request(); 1422827Srdreslin@umich.edu data_read_req->setThreadContext(0,0); //Need CPU/Thread IDS HERE 1432641Sstever@eecs.umich.edu data_read_pkt = new Packet(data_read_req, Packet::ReadReq, 1442641Sstever@eecs.umich.edu Packet::Broadcast); 1452623SN/A data_read_pkt->dataStatic(&dataReg); 1462623SN/A 1472663Sstever@eecs.umich.edu data_write_req = new Request(); 1482827Srdreslin@umich.edu data_write_req->setThreadContext(0,0); //Need CPU/Thread IDS HERE 1492641Sstever@eecs.umich.edu data_write_pkt = new Packet(data_write_req, Packet::WriteReq, 1502641Sstever@eecs.umich.edu Packet::Broadcast); 1512623SN/A} 1522623SN/A 1532623SN/A 1542623SN/AAtomicSimpleCPU::~AtomicSimpleCPU() 1552623SN/A{ 1562623SN/A} 1572623SN/A 1582623SN/Avoid 1592623SN/AAtomicSimpleCPU::serialize(ostream &os) 1602623SN/A{ 1612798Sktlim@umich.edu SERIALIZE_ENUM(_status); 1622623SN/A BaseSimpleCPU::serialize(os); 1632623SN/A nameOut(os, csprintf("%s.tickEvent", name())); 1642623SN/A tickEvent.serialize(os); 1652623SN/A} 1662623SN/A 1672623SN/Avoid 1682623SN/AAtomicSimpleCPU::unserialize(Checkpoint *cp, const string §ion) 1692623SN/A{ 1702798Sktlim@umich.edu UNSERIALIZE_ENUM(_status); 1712623SN/A BaseSimpleCPU::unserialize(cp, section); 1722623SN/A tickEvent.unserialize(cp, csprintf("%s.tickEvent", section)); 1732623SN/A} 1742623SN/A 1752623SN/Avoid 1762798Sktlim@umich.eduAtomicSimpleCPU::switchOut() 1772623SN/A{ 1782798Sktlim@umich.edu assert(status() == Running || status() == Idle); 1792798Sktlim@umich.edu _status = SwitchedOut; 1802623SN/A 1812798Sktlim@umich.edu tickEvent.squash(); 1822623SN/A} 1832623SN/A 1842623SN/A 1852623SN/Avoid 1862623SN/AAtomicSimpleCPU::takeOverFrom(BaseCPU *oldCPU) 1872623SN/A{ 1882623SN/A BaseCPU::takeOverFrom(oldCPU); 1892623SN/A 1902623SN/A assert(!tickEvent.scheduled()); 1912623SN/A 1922680Sktlim@umich.edu // if any of this CPU's ThreadContexts are active, mark the CPU as 1932623SN/A // running and schedule its tick event. 1942680Sktlim@umich.edu for (int i = 0; i < threadContexts.size(); ++i) { 1952680Sktlim@umich.edu ThreadContext *tc = threadContexts[i]; 1962680Sktlim@umich.edu if (tc->status() == ThreadContext::Active && _status != Running) { 1972623SN/A _status = Running; 1982623SN/A tickEvent.schedule(curTick); 1992623SN/A break; 2002623SN/A } 2012623SN/A } 2022623SN/A} 2032623SN/A 2042623SN/A 2052623SN/Avoid 2062623SN/AAtomicSimpleCPU::activateContext(int thread_num, int delay) 2072623SN/A{ 2082623SN/A assert(thread_num == 0); 2092683Sktlim@umich.edu assert(thread); 2102623SN/A 2112623SN/A assert(_status == Idle); 2122623SN/A assert(!tickEvent.scheduled()); 2132623SN/A 2142623SN/A notIdleFraction++; 2152623SN/A tickEvent.schedule(curTick + cycles(delay)); 2162623SN/A _status = Running; 2172623SN/A} 2182623SN/A 2192623SN/A 2202623SN/Avoid 2212623SN/AAtomicSimpleCPU::suspendContext(int thread_num) 2222623SN/A{ 2232623SN/A assert(thread_num == 0); 2242683Sktlim@umich.edu assert(thread); 2252623SN/A 2262623SN/A assert(_status == Running); 2272626SN/A 2282626SN/A // tick event may not be scheduled if this gets called from inside 2292626SN/A // an instruction's execution, e.g. "quiesce" 2302626SN/A if (tickEvent.scheduled()) 2312626SN/A tickEvent.deschedule(); 2322623SN/A 2332623SN/A notIdleFraction--; 2342623SN/A _status = Idle; 2352623SN/A} 2362623SN/A 2372623SN/A 2382623SN/Atemplate <class T> 2392623SN/AFault 2402623SN/AAtomicSimpleCPU::read(Addr addr, T &data, unsigned flags) 2412623SN/A{ 2422683Sktlim@umich.edu data_read_req->setVirt(0, addr, sizeof(T), flags, thread->readPC()); 2432623SN/A 2442623SN/A if (traceData) { 2452623SN/A traceData->setAddr(addr); 2462623SN/A } 2472623SN/A 2482623SN/A // translate to physical address 2492683Sktlim@umich.edu Fault fault = thread->translateDataReadReq(data_read_req); 2502623SN/A 2512623SN/A // Now do the access. 2522623SN/A if (fault == NoFault) { 2532641Sstever@eecs.umich.edu data_read_pkt->reinitFromRequest(); 2542623SN/A 2552662Sstever@eecs.umich.edu dcache_latency = dcachePort.sendAtomic(data_read_pkt); 2562623SN/A dcache_access = true; 2572623SN/A 2582641Sstever@eecs.umich.edu assert(data_read_pkt->result == Packet::Success); 2592623SN/A data = data_read_pkt->get<T>(); 2602623SN/A 2612623SN/A } 2622623SN/A 2632623SN/A // This will need a new way to tell if it has a dcache attached. 2642623SN/A if (data_read_req->getFlags() & UNCACHEABLE) 2652623SN/A recordEvent("Uncached Read"); 2662623SN/A 2672623SN/A return fault; 2682623SN/A} 2692623SN/A 2702623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS 2712623SN/A 2722623SN/Atemplate 2732623SN/AFault 2742623SN/AAtomicSimpleCPU::read(Addr addr, uint64_t &data, unsigned flags); 2752623SN/A 2762623SN/Atemplate 2772623SN/AFault 2782623SN/AAtomicSimpleCPU::read(Addr addr, uint32_t &data, unsigned flags); 2792623SN/A 2802623SN/Atemplate 2812623SN/AFault 2822623SN/AAtomicSimpleCPU::read(Addr addr, uint16_t &data, unsigned flags); 2832623SN/A 2842623SN/Atemplate 2852623SN/AFault 2862623SN/AAtomicSimpleCPU::read(Addr addr, uint8_t &data, unsigned flags); 2872623SN/A 2882623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS 2892623SN/A 2902623SN/Atemplate<> 2912623SN/AFault 2922623SN/AAtomicSimpleCPU::read(Addr addr, double &data, unsigned flags) 2932623SN/A{ 2942623SN/A return read(addr, *(uint64_t*)&data, flags); 2952623SN/A} 2962623SN/A 2972623SN/Atemplate<> 2982623SN/AFault 2992623SN/AAtomicSimpleCPU::read(Addr addr, float &data, unsigned flags) 3002623SN/A{ 3012623SN/A return read(addr, *(uint32_t*)&data, flags); 3022623SN/A} 3032623SN/A 3042623SN/A 3052623SN/Atemplate<> 3062623SN/AFault 3072623SN/AAtomicSimpleCPU::read(Addr addr, int32_t &data, unsigned flags) 3082623SN/A{ 3092623SN/A return read(addr, (uint32_t&)data, flags); 3102623SN/A} 3112623SN/A 3122623SN/A 3132623SN/Atemplate <class T> 3142623SN/AFault 3152623SN/AAtomicSimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res) 3162623SN/A{ 3172683Sktlim@umich.edu data_write_req->setVirt(0, addr, sizeof(T), flags, thread->readPC()); 3182623SN/A 3192623SN/A if (traceData) { 3202623SN/A traceData->setAddr(addr); 3212623SN/A } 3222623SN/A 3232623SN/A // translate to physical address 3242683Sktlim@umich.edu Fault fault = thread->translateDataWriteReq(data_write_req); 3252623SN/A 3262623SN/A // Now do the access. 3272623SN/A if (fault == NoFault) { 3282623SN/A data = htog(data); 3292662Sstever@eecs.umich.edu data_write_pkt->reinitFromRequest(); 3302623SN/A data_write_pkt->dataStatic(&data); 3312623SN/A 3322662Sstever@eecs.umich.edu dcache_latency = dcachePort.sendAtomic(data_write_pkt); 3332623SN/A dcache_access = true; 3342623SN/A 3352641Sstever@eecs.umich.edu assert(data_write_pkt->result == Packet::Success); 3362631SN/A 3372631SN/A if (res && data_write_req->getFlags() & LOCKED) { 3382631SN/A *res = data_write_req->getScResult(); 3392631SN/A } 3402623SN/A } 3412623SN/A 3422623SN/A // This will need a new way to tell if it's hooked up to a cache or not. 3432623SN/A if (data_write_req->getFlags() & UNCACHEABLE) 3442623SN/A recordEvent("Uncached Write"); 3452623SN/A 3462623SN/A // If the write needs to have a fault on the access, consider calling 3472623SN/A // changeStatus() and changing it to "bad addr write" or something. 3482623SN/A return fault; 3492623SN/A} 3502623SN/A 3512623SN/A 3522623SN/A#ifndef DOXYGEN_SHOULD_SKIP_THIS 3532623SN/Atemplate 3542623SN/AFault 3552623SN/AAtomicSimpleCPU::write(uint64_t data, Addr addr, 3562623SN/A unsigned flags, uint64_t *res); 3572623SN/A 3582623SN/Atemplate 3592623SN/AFault 3602623SN/AAtomicSimpleCPU::write(uint32_t data, Addr addr, 3612623SN/A unsigned flags, uint64_t *res); 3622623SN/A 3632623SN/Atemplate 3642623SN/AFault 3652623SN/AAtomicSimpleCPU::write(uint16_t data, Addr addr, 3662623SN/A unsigned flags, uint64_t *res); 3672623SN/A 3682623SN/Atemplate 3692623SN/AFault 3702623SN/AAtomicSimpleCPU::write(uint8_t data, Addr addr, 3712623SN/A unsigned flags, uint64_t *res); 3722623SN/A 3732623SN/A#endif //DOXYGEN_SHOULD_SKIP_THIS 3742623SN/A 3752623SN/Atemplate<> 3762623SN/AFault 3772623SN/AAtomicSimpleCPU::write(double data, Addr addr, unsigned flags, uint64_t *res) 3782623SN/A{ 3792623SN/A return write(*(uint64_t*)&data, addr, flags, res); 3802623SN/A} 3812623SN/A 3822623SN/Atemplate<> 3832623SN/AFault 3842623SN/AAtomicSimpleCPU::write(float data, Addr addr, unsigned flags, uint64_t *res) 3852623SN/A{ 3862623SN/A return write(*(uint32_t*)&data, addr, flags, res); 3872623SN/A} 3882623SN/A 3892623SN/A 3902623SN/Atemplate<> 3912623SN/AFault 3922623SN/AAtomicSimpleCPU::write(int32_t data, Addr addr, unsigned flags, uint64_t *res) 3932623SN/A{ 3942623SN/A return write((uint32_t)data, addr, flags, res); 3952623SN/A} 3962623SN/A 3972623SN/A 3982623SN/Avoid 3992623SN/AAtomicSimpleCPU::tick() 4002623SN/A{ 4012623SN/A Tick latency = cycles(1); // instruction takes one cycle by default 4022623SN/A 4032623SN/A for (int i = 0; i < width; ++i) { 4042623SN/A numCycles++; 4052623SN/A 4062626SN/A checkForInterrupts(); 4072626SN/A 4082662Sstever@eecs.umich.edu Fault fault = setupFetchRequest(ifetch_req); 4092623SN/A 4102623SN/A if (fault == NoFault) { 4112662Sstever@eecs.umich.edu ifetch_pkt->reinitFromRequest(); 4122662Sstever@eecs.umich.edu 4132662Sstever@eecs.umich.edu Tick icache_latency = icachePort.sendAtomic(ifetch_pkt); 4142623SN/A // ifetch_req is initialized to read the instruction directly 4152623SN/A // into the CPU object's inst field. 4162623SN/A 4172623SN/A dcache_access = false; // assume no dcache access 4182623SN/A preExecute(); 4192623SN/A fault = curStaticInst->execute(this, traceData); 4202623SN/A postExecute(); 4212623SN/A 4222623SN/A if (simulate_stalls) { 4232662Sstever@eecs.umich.edu Tick icache_stall = icache_latency - cycles(1); 4242623SN/A Tick dcache_stall = 4252662Sstever@eecs.umich.edu dcache_access ? dcache_latency - cycles(1) : 0; 4262803Ssaidi@eecs.umich.edu Tick stall_cycles = (icache_stall + dcache_stall) / cycles(1); 4272803Ssaidi@eecs.umich.edu if (cycles(stall_cycles) < (icache_stall + dcache_stall)) 4282803Ssaidi@eecs.umich.edu latency += cycles(stall_cycles+1); 4292803Ssaidi@eecs.umich.edu else 4302803Ssaidi@eecs.umich.edu latency += cycles(stall_cycles); 4312623SN/A } 4322623SN/A 4332623SN/A } 4342623SN/A 4352623SN/A advancePC(fault); 4362623SN/A } 4372623SN/A 4382626SN/A if (_status != Idle) 4392626SN/A tickEvent.schedule(curTick + latency); 4402623SN/A} 4412623SN/A 4422623SN/A 4432623SN/A//////////////////////////////////////////////////////////////////////// 4442623SN/A// 4452623SN/A// AtomicSimpleCPU Simulation Object 4462623SN/A// 4472623SN/ABEGIN_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 4482623SN/A 4492623SN/A Param<Counter> max_insts_any_thread; 4502623SN/A Param<Counter> max_insts_all_threads; 4512623SN/A Param<Counter> max_loads_any_thread; 4522623SN/A Param<Counter> max_loads_all_threads; 4532623SN/A SimObjectParam<MemObject *> mem; 4542623SN/A 4552623SN/A#if FULL_SYSTEM 4562623SN/A SimObjectParam<AlphaITB *> itb; 4572623SN/A SimObjectParam<AlphaDTB *> dtb; 4582623SN/A SimObjectParam<System *> system; 4592623SN/A Param<int> cpu_id; 4602623SN/A Param<Tick> profile; 4612623SN/A#else 4622623SN/A SimObjectParam<Process *> workload; 4632623SN/A#endif // FULL_SYSTEM 4642623SN/A 4652623SN/A Param<int> clock; 4662623SN/A 4672623SN/A Param<bool> defer_registration; 4682623SN/A Param<int> width; 4692623SN/A Param<bool> function_trace; 4702623SN/A Param<Tick> function_trace_start; 4712623SN/A Param<bool> simulate_stalls; 4722623SN/A 4732623SN/AEND_DECLARE_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 4742623SN/A 4752623SN/ABEGIN_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 4762623SN/A 4772623SN/A INIT_PARAM(max_insts_any_thread, 4782623SN/A "terminate when any thread reaches this inst count"), 4792623SN/A INIT_PARAM(max_insts_all_threads, 4802623SN/A "terminate when all threads have reached this inst count"), 4812623SN/A INIT_PARAM(max_loads_any_thread, 4822623SN/A "terminate when any thread reaches this load count"), 4832623SN/A INIT_PARAM(max_loads_all_threads, 4842623SN/A "terminate when all threads have reached this load count"), 4852623SN/A INIT_PARAM(mem, "memory"), 4862623SN/A 4872623SN/A#if FULL_SYSTEM 4882623SN/A INIT_PARAM(itb, "Instruction TLB"), 4892623SN/A INIT_PARAM(dtb, "Data TLB"), 4902623SN/A INIT_PARAM(system, "system object"), 4912623SN/A INIT_PARAM(cpu_id, "processor ID"), 4922623SN/A INIT_PARAM(profile, ""), 4932623SN/A#else 4942623SN/A INIT_PARAM(workload, "processes to run"), 4952623SN/A#endif // FULL_SYSTEM 4962623SN/A 4972623SN/A INIT_PARAM(clock, "clock speed"), 4982623SN/A INIT_PARAM(defer_registration, "defer system registration (for sampling)"), 4992623SN/A INIT_PARAM(width, "cpu width"), 5002623SN/A INIT_PARAM(function_trace, "Enable function trace"), 5012623SN/A INIT_PARAM(function_trace_start, "Cycle to start function trace"), 5022623SN/A INIT_PARAM(simulate_stalls, "Simulate cache stall cycles") 5032623SN/A 5042623SN/AEND_INIT_SIM_OBJECT_PARAMS(AtomicSimpleCPU) 5052623SN/A 5062623SN/A 5072623SN/ACREATE_SIM_OBJECT(AtomicSimpleCPU) 5082623SN/A{ 5092623SN/A AtomicSimpleCPU::Params *params = new AtomicSimpleCPU::Params(); 5102623SN/A params->name = getInstanceName(); 5112623SN/A params->numberOfThreads = 1; 5122623SN/A params->max_insts_any_thread = max_insts_any_thread; 5132623SN/A params->max_insts_all_threads = max_insts_all_threads; 5142623SN/A params->max_loads_any_thread = max_loads_any_thread; 5152623SN/A params->max_loads_all_threads = max_loads_all_threads; 5162623SN/A params->deferRegistration = defer_registration; 5172623SN/A params->clock = clock; 5182623SN/A params->functionTrace = function_trace; 5192623SN/A params->functionTraceStart = function_trace_start; 5202623SN/A params->width = width; 5212623SN/A params->simulate_stalls = simulate_stalls; 5222623SN/A params->mem = mem; 5232623SN/A 5242623SN/A#if FULL_SYSTEM 5252623SN/A params->itb = itb; 5262623SN/A params->dtb = dtb; 5272623SN/A params->system = system; 5282623SN/A params->cpu_id = cpu_id; 5292623SN/A params->profile = profile; 5302623SN/A#else 5312623SN/A params->process = workload; 5322623SN/A#endif 5332623SN/A 5342623SN/A AtomicSimpleCPU *cpu = new AtomicSimpleCPU(params); 5352623SN/A return cpu; 5362623SN/A} 5372623SN/A 5382623SN/AREGISTER_SIM_OBJECT("AtomicSimpleCPU", AtomicSimpleCPU) 5392623SN/A 540