timing.cc revision 5310:4164e6bfcc8a
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 */
30
31#include "arch/locked_mem.hh"
32#include "arch/mmaped_ipr.hh"
33#include "arch/utility.hh"
34#include "base/bigint.hh"
35#include "cpu/exetrace.hh"
36#include "cpu/simple/timing.hh"
37#include "mem/packet.hh"
38#include "mem/packet_access.hh"
39#include "params/TimingSimpleCPU.hh"
40#include "sim/system.hh"
41
42using namespace std;
43using namespace TheISA;
44
45Port *
46TimingSimpleCPU::getPort(const std::string &if_name, int idx)
47{
48    if (if_name == "dcache_port")
49        return &dcachePort;
50    else if (if_name == "icache_port")
51        return &icachePort;
52    else
53        panic("No Such Port\n");
54}
55
56void
57TimingSimpleCPU::init()
58{
59    BaseCPU::init();
60    cpuId = tc->readCpuId();
61#if FULL_SYSTEM
62    for (int i = 0; i < threadContexts.size(); ++i) {
63        ThreadContext *tc = threadContexts[i];
64
65        // initialize CPU, including PC
66        TheISA::initCPU(tc, cpuId);
67    }
68#endif
69}
70
71Tick
72TimingSimpleCPU::CpuPort::recvAtomic(PacketPtr pkt)
73{
74    panic("TimingSimpleCPU doesn't expect recvAtomic callback!");
75    return curTick;
76}
77
78void
79TimingSimpleCPU::CpuPort::recvFunctional(PacketPtr pkt)
80{
81    //No internal storage to update, jusst return
82    return;
83}
84
85void
86TimingSimpleCPU::CpuPort::recvStatusChange(Status status)
87{
88    if (status == RangeChange) {
89        if (!snoopRangeSent) {
90            snoopRangeSent = true;
91            sendStatusChange(Port::RangeChange);
92        }
93        return;
94    }
95
96    panic("TimingSimpleCPU doesn't expect recvStatusChange callback!");
97}
98
99
100void
101TimingSimpleCPU::CpuPort::TickEvent::schedule(PacketPtr _pkt, Tick t)
102{
103    pkt = _pkt;
104    Event::schedule(t);
105}
106
107TimingSimpleCPU::TimingSimpleCPU(Params *p)
108    : BaseSimpleCPU(p), icachePort(this, p->clock), dcachePort(this, p->clock)
109{
110    _status = Idle;
111
112    icachePort.snoopRangeSent = false;
113    dcachePort.snoopRangeSent = false;
114
115    ifetch_pkt = dcache_pkt = NULL;
116    drainEvent = NULL;
117    fetchEvent = NULL;
118    previousTick = 0;
119    changeState(SimObject::Running);
120}
121
122
123TimingSimpleCPU::~TimingSimpleCPU()
124{
125}
126
127void
128TimingSimpleCPU::serialize(ostream &os)
129{
130    SimObject::State so_state = SimObject::getState();
131    SERIALIZE_ENUM(so_state);
132    BaseSimpleCPU::serialize(os);
133}
134
135void
136TimingSimpleCPU::unserialize(Checkpoint *cp, const string &section)
137{
138    SimObject::State so_state;
139    UNSERIALIZE_ENUM(so_state);
140    BaseSimpleCPU::unserialize(cp, section);
141}
142
143unsigned int
144TimingSimpleCPU::drain(Event *drain_event)
145{
146    // TimingSimpleCPU is ready to drain if it's not waiting for
147    // an access to complete.
148    if (status() == Idle || status() == Running || status() == SwitchedOut) {
149        changeState(SimObject::Drained);
150        return 0;
151    } else {
152        changeState(SimObject::Draining);
153        drainEvent = drain_event;
154        return 1;
155    }
156}
157
158void
159TimingSimpleCPU::resume()
160{
161    DPRINTF(SimpleCPU, "Resume\n");
162    if (_status != SwitchedOut && _status != Idle) {
163        assert(system->getMemoryMode() == Enums::timing);
164
165        // Delete the old event if it existed.
166        if (fetchEvent) {
167            if (fetchEvent->scheduled())
168                fetchEvent->deschedule();
169
170            delete fetchEvent;
171        }
172
173        fetchEvent = new FetchEvent(this, nextCycle());
174    }
175
176    changeState(SimObject::Running);
177}
178
179void
180TimingSimpleCPU::switchOut()
181{
182    assert(status() == Running || status() == Idle);
183    _status = SwitchedOut;
184    numCycles += tickToCycles(curTick - previousTick);
185
186    // If we've been scheduled to resume but are then told to switch out,
187    // we'll need to cancel it.
188    if (fetchEvent && fetchEvent->scheduled())
189        fetchEvent->deschedule();
190}
191
192
193void
194TimingSimpleCPU::takeOverFrom(BaseCPU *oldCPU)
195{
196    BaseCPU::takeOverFrom(oldCPU, &icachePort, &dcachePort);
197
198    // if any of this CPU's ThreadContexts are active, mark the CPU as
199    // running and schedule its tick event.
200    for (int i = 0; i < threadContexts.size(); ++i) {
201        ThreadContext *tc = threadContexts[i];
202        if (tc->status() == ThreadContext::Active && _status != Running) {
203            _status = Running;
204            break;
205        }
206    }
207
208    if (_status != Running) {
209        _status = Idle;
210    }
211    assert(threadContexts.size() == 1);
212    cpuId = tc->readCpuId();
213    previousTick = curTick;
214}
215
216
217void
218TimingSimpleCPU::activateContext(int thread_num, int delay)
219{
220    DPRINTF(SimpleCPU, "ActivateContext %d (%d cycles)\n", thread_num, delay);
221
222    assert(thread_num == 0);
223    assert(thread);
224
225    assert(_status == Idle);
226
227    notIdleFraction++;
228    _status = Running;
229
230    // kick things off by initiating the fetch of the next instruction
231    fetchEvent = new FetchEvent(this, nextCycle(curTick + ticks(delay)));
232}
233
234
235void
236TimingSimpleCPU::suspendContext(int thread_num)
237{
238    DPRINTF(SimpleCPU, "SuspendContext %d\n", thread_num);
239
240    assert(thread_num == 0);
241    assert(thread);
242
243    assert(_status == Running);
244
245    // just change status to Idle... if status != Running,
246    // completeInst() will not initiate fetch of next instruction.
247
248    notIdleFraction--;
249    _status = Idle;
250}
251
252
253template <class T>
254Fault
255TimingSimpleCPU::read(Addr addr, T &data, unsigned flags)
256{
257    Request *req =
258        new Request(/* asid */ 0, addr, sizeof(T), flags, thread->readPC(),
259                    cpuId, /* thread ID */ 0);
260
261    if (traceData) {
262        traceData->setAddr(req->getVaddr());
263    }
264
265   // translate to physical address
266    Fault fault = thread->translateDataReadReq(req);
267
268    // Now do the access.
269    if (fault == NoFault) {
270        PacketPtr pkt =
271            new Packet(req,
272                       (req->isLocked() ?
273                        MemCmd::LoadLockedReq : MemCmd::ReadReq),
274                       Packet::Broadcast);
275        pkt->dataDynamic<T>(new T);
276
277        if (req->isMmapedIpr()) {
278            Tick delay;
279            delay = TheISA::handleIprRead(thread->getTC(), pkt);
280            new IprEvent(pkt, this, nextCycle(curTick + delay));
281            _status = DcacheWaitResponse;
282            dcache_pkt = NULL;
283        } else if (!dcachePort.sendTiming(pkt)) {
284            _status = DcacheRetry;
285            dcache_pkt = pkt;
286        } else {
287            _status = DcacheWaitResponse;
288            // memory system takes ownership of packet
289            dcache_pkt = NULL;
290        }
291
292        // This will need a new way to tell if it has a dcache attached.
293        if (req->isUncacheable())
294            recordEvent("Uncached Read");
295    } else {
296        delete req;
297    }
298
299    return fault;
300}
301
302Fault
303TimingSimpleCPU::translateDataReadAddr(Addr vaddr, Addr &paddr,
304        int size, unsigned flags)
305{
306    Request *req =
307        new Request(0, vaddr, size, flags, thread->readPC(), cpuId, 0);
308
309    if (traceData) {
310        traceData->setAddr(vaddr);
311    }
312
313    Fault fault = thread->translateDataWriteReq(req);
314
315    if (fault == NoFault)
316        paddr = req->getPaddr();
317
318    delete req;
319    return fault;
320}
321
322#ifndef DOXYGEN_SHOULD_SKIP_THIS
323
324template
325Fault
326TimingSimpleCPU::read(Addr addr, Twin64_t &data, unsigned flags);
327
328template
329Fault
330TimingSimpleCPU::read(Addr addr, Twin32_t &data, unsigned flags);
331
332template
333Fault
334TimingSimpleCPU::read(Addr addr, uint64_t &data, unsigned flags);
335
336template
337Fault
338TimingSimpleCPU::read(Addr addr, uint32_t &data, unsigned flags);
339
340template
341Fault
342TimingSimpleCPU::read(Addr addr, uint16_t &data, unsigned flags);
343
344template
345Fault
346TimingSimpleCPU::read(Addr addr, uint8_t &data, unsigned flags);
347
348#endif //DOXYGEN_SHOULD_SKIP_THIS
349
350template<>
351Fault
352TimingSimpleCPU::read(Addr addr, double &data, unsigned flags)
353{
354    return read(addr, *(uint64_t*)&data, flags);
355}
356
357template<>
358Fault
359TimingSimpleCPU::read(Addr addr, float &data, unsigned flags)
360{
361    return read(addr, *(uint32_t*)&data, flags);
362}
363
364
365template<>
366Fault
367TimingSimpleCPU::read(Addr addr, int32_t &data, unsigned flags)
368{
369    return read(addr, (uint32_t&)data, flags);
370}
371
372
373template <class T>
374Fault
375TimingSimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res)
376{
377    Request *req =
378        new Request(/* asid */ 0, addr, sizeof(T), flags, thread->readPC(),
379                    cpuId, /* thread ID */ 0);
380
381    if (traceData) {
382        traceData->setAddr(req->getVaddr());
383    }
384
385    // translate to physical address
386    Fault fault = thread->translateDataWriteReq(req);
387
388    // Now do the access.
389    if (fault == NoFault) {
390        MemCmd cmd = MemCmd::WriteReq; // default
391        bool do_access = true;  // flag to suppress cache access
392
393        if (req->isLocked()) {
394            cmd = MemCmd::StoreCondReq;
395            do_access = TheISA::handleLockedWrite(thread, req);
396        } else if (req->isSwap()) {
397            cmd = MemCmd::SwapReq;
398            if (req->isCondSwap()) {
399                assert(res);
400                req->setExtraData(*res);
401            }
402        }
403
404        // Note: need to allocate dcache_pkt even if do_access is
405        // false, as it's used unconditionally to call completeAcc().
406        assert(dcache_pkt == NULL);
407        dcache_pkt = new Packet(req, cmd, Packet::Broadcast);
408        dcache_pkt->allocate();
409        dcache_pkt->set(data);
410
411        if (do_access) {
412            if (req->isMmapedIpr()) {
413                Tick delay;
414                dcache_pkt->set(htog(data));
415                delay = TheISA::handleIprWrite(thread->getTC(), dcache_pkt);
416                new IprEvent(dcache_pkt, this, nextCycle(curTick + delay));
417                _status = DcacheWaitResponse;
418                dcache_pkt = NULL;
419            } else if (!dcachePort.sendTiming(dcache_pkt)) {
420                _status = DcacheRetry;
421            } else {
422                _status = DcacheWaitResponse;
423                // memory system takes ownership of packet
424                dcache_pkt = NULL;
425            }
426        }
427        // This will need a new way to tell if it's hooked up to a cache or not.
428        if (req->isUncacheable())
429            recordEvent("Uncached Write");
430    } else {
431        delete req;
432    }
433
434
435    // If the write needs to have a fault on the access, consider calling
436    // changeStatus() and changing it to "bad addr write" or something.
437    return fault;
438}
439
440Fault
441TimingSimpleCPU::translateDataWriteAddr(Addr vaddr, Addr &paddr,
442        int size, unsigned flags)
443{
444    Request *req =
445        new Request(0, vaddr, size, flags, thread->readPC(), cpuId, 0);
446
447    if (traceData) {
448        traceData->setAddr(vaddr);
449    }
450
451    Fault fault = thread->translateDataWriteReq(req);
452
453    if (fault == NoFault)
454        paddr = req->getPaddr();
455
456    delete req;
457    return fault;
458}
459
460
461#ifndef DOXYGEN_SHOULD_SKIP_THIS
462template
463Fault
464TimingSimpleCPU::write(Twin32_t data, Addr addr,
465                       unsigned flags, uint64_t *res);
466
467template
468Fault
469TimingSimpleCPU::write(Twin64_t data, Addr addr,
470                       unsigned flags, uint64_t *res);
471
472template
473Fault
474TimingSimpleCPU::write(uint64_t data, Addr addr,
475                       unsigned flags, uint64_t *res);
476
477template
478Fault
479TimingSimpleCPU::write(uint32_t data, Addr addr,
480                       unsigned flags, uint64_t *res);
481
482template
483Fault
484TimingSimpleCPU::write(uint16_t data, Addr addr,
485                       unsigned flags, uint64_t *res);
486
487template
488Fault
489TimingSimpleCPU::write(uint8_t data, Addr addr,
490                       unsigned flags, uint64_t *res);
491
492#endif //DOXYGEN_SHOULD_SKIP_THIS
493
494template<>
495Fault
496TimingSimpleCPU::write(double data, Addr addr, unsigned flags, uint64_t *res)
497{
498    return write(*(uint64_t*)&data, addr, flags, res);
499}
500
501template<>
502Fault
503TimingSimpleCPU::write(float data, Addr addr, unsigned flags, uint64_t *res)
504{
505    return write(*(uint32_t*)&data, addr, flags, res);
506}
507
508
509template<>
510Fault
511TimingSimpleCPU::write(int32_t data, Addr addr, unsigned flags, uint64_t *res)
512{
513    return write((uint32_t)data, addr, flags, res);
514}
515
516
517void
518TimingSimpleCPU::fetch()
519{
520    DPRINTF(SimpleCPU, "Fetch\n");
521
522    if (!curStaticInst || !curStaticInst->isDelayedCommit())
523        checkForInterrupts();
524
525    Request *ifetch_req = new Request();
526    ifetch_req->setThreadContext(cpuId, /* thread ID */ 0);
527    Fault fault = setupFetchRequest(ifetch_req);
528
529    ifetch_pkt = new Packet(ifetch_req, MemCmd::ReadReq, Packet::Broadcast);
530    ifetch_pkt->dataStatic(&inst);
531
532    if (fault == NoFault) {
533        if (!icachePort.sendTiming(ifetch_pkt)) {
534            // Need to wait for retry
535            _status = IcacheRetry;
536        } else {
537            // Need to wait for cache to respond
538            _status = IcacheWaitResponse;
539            // ownership of packet transferred to memory system
540            ifetch_pkt = NULL;
541        }
542    } else {
543        delete ifetch_req;
544        delete ifetch_pkt;
545        // fetch fault: advance directly to next instruction (fault handler)
546        advanceInst(fault);
547    }
548
549    numCycles += tickToCycles(curTick - previousTick);
550    previousTick = curTick;
551}
552
553
554void
555TimingSimpleCPU::advanceInst(Fault fault)
556{
557    advancePC(fault);
558
559    if (_status == Running) {
560        // kick off fetch of next instruction... callback from icache
561        // response will cause that instruction to be executed,
562        // keeping the CPU running.
563        fetch();
564    }
565}
566
567
568void
569TimingSimpleCPU::completeIfetch(PacketPtr pkt)
570{
571    DPRINTF(SimpleCPU, "Complete ICache Fetch\n");
572
573    // received a response from the icache: execute the received
574    // instruction
575    assert(!pkt->isError());
576    assert(_status == IcacheWaitResponse);
577
578    _status = Running;
579
580    numCycles += tickToCycles(curTick - previousTick);
581    previousTick = curTick;
582
583    if (getState() == SimObject::Draining) {
584        delete pkt->req;
585        delete pkt;
586
587        completeDrain();
588        return;
589    }
590
591    preExecute();
592    if (curStaticInst->isMemRef() && !curStaticInst->isDataPrefetch()) {
593        // load or store: just send to dcache
594        Fault fault = curStaticInst->initiateAcc(this, traceData);
595        if (_status != Running) {
596            // instruction will complete in dcache response callback
597            assert(_status == DcacheWaitResponse || _status == DcacheRetry);
598            assert(fault == NoFault);
599        } else {
600            if (fault == NoFault) {
601                // early fail on store conditional: complete now
602                assert(dcache_pkt != NULL);
603                fault = curStaticInst->completeAcc(dcache_pkt, this,
604                                                   traceData);
605                delete dcache_pkt->req;
606                delete dcache_pkt;
607                dcache_pkt = NULL;
608
609                // keep an instruction count
610                if (fault == NoFault)
611                    countInst();
612            } else if (traceData) {
613                // If there was a fault, we shouldn't trace this instruction.
614                delete traceData;
615                traceData = NULL;
616            }
617
618            postExecute();
619            // @todo remove me after debugging with legion done
620            if (curStaticInst && (!curStaticInst->isMicroop() ||
621                        curStaticInst->isFirstMicroop()))
622                instCnt++;
623            advanceInst(fault);
624        }
625    } else {
626        // non-memory instruction: execute completely now
627        Fault fault = curStaticInst->execute(this, traceData);
628
629        // keep an instruction count
630        if (fault == NoFault)
631            countInst();
632        else if (traceData) {
633            // If there was a fault, we shouldn't trace this instruction.
634            delete traceData;
635            traceData = NULL;
636        }
637
638        postExecute();
639        // @todo remove me after debugging with legion done
640        if (curStaticInst && (!curStaticInst->isMicroop() ||
641                    curStaticInst->isFirstMicroop()))
642            instCnt++;
643        advanceInst(fault);
644    }
645
646    delete pkt->req;
647    delete pkt;
648}
649
650void
651TimingSimpleCPU::IcachePort::ITickEvent::process()
652{
653    cpu->completeIfetch(pkt);
654}
655
656bool
657TimingSimpleCPU::IcachePort::recvTiming(PacketPtr pkt)
658{
659    if (pkt->isResponse() && !pkt->wasNacked()) {
660        // delay processing of returned data until next CPU clock edge
661        Tick next_tick = cpu->nextCycle(curTick);
662
663        if (next_tick == curTick)
664            cpu->completeIfetch(pkt);
665        else
666            tickEvent.schedule(pkt, next_tick);
667
668        return true;
669    }
670    else if (pkt->wasNacked()) {
671        assert(cpu->_status == IcacheWaitResponse);
672        pkt->reinitNacked();
673        if (!sendTiming(pkt)) {
674            cpu->_status = IcacheRetry;
675            cpu->ifetch_pkt = pkt;
676        }
677    }
678    //Snooping a Coherence Request, do nothing
679    return true;
680}
681
682void
683TimingSimpleCPU::IcachePort::recvRetry()
684{
685    // we shouldn't get a retry unless we have a packet that we're
686    // waiting to transmit
687    assert(cpu->ifetch_pkt != NULL);
688    assert(cpu->_status == IcacheRetry);
689    PacketPtr tmp = cpu->ifetch_pkt;
690    if (sendTiming(tmp)) {
691        cpu->_status = IcacheWaitResponse;
692        cpu->ifetch_pkt = NULL;
693    }
694}
695
696void
697TimingSimpleCPU::completeDataAccess(PacketPtr pkt)
698{
699    // received a response from the dcache: complete the load or store
700    // instruction
701    assert(!pkt->isError());
702    assert(_status == DcacheWaitResponse);
703    _status = Running;
704
705    numCycles += tickToCycles(curTick - previousTick);
706    previousTick = curTick;
707
708    Fault fault = curStaticInst->completeAcc(pkt, this, traceData);
709
710    // keep an instruction count
711    if (fault == NoFault)
712        countInst();
713    else if (traceData) {
714        // If there was a fault, we shouldn't trace this instruction.
715        delete traceData;
716        traceData = NULL;
717    }
718
719    if (pkt->isRead() && pkt->isLocked()) {
720        TheISA::handleLockedRead(thread, pkt->req);
721    }
722
723    delete pkt->req;
724    delete pkt;
725
726    postExecute();
727
728    if (getState() == SimObject::Draining) {
729        advancePC(fault);
730        completeDrain();
731
732        return;
733    }
734
735    advanceInst(fault);
736}
737
738
739void
740TimingSimpleCPU::completeDrain()
741{
742    DPRINTF(Config, "Done draining\n");
743    changeState(SimObject::Drained);
744    drainEvent->process();
745}
746
747void
748TimingSimpleCPU::DcachePort::setPeer(Port *port)
749{
750    Port::setPeer(port);
751
752#if FULL_SYSTEM
753    // Update the ThreadContext's memory ports (Functional/Virtual
754    // Ports)
755    cpu->tcBase()->connectMemPorts();
756#endif
757}
758
759bool
760TimingSimpleCPU::DcachePort::recvTiming(PacketPtr pkt)
761{
762    if (pkt->isResponse() && !pkt->wasNacked()) {
763        // delay processing of returned data until next CPU clock edge
764        Tick next_tick = cpu->nextCycle(curTick);
765
766        if (next_tick == curTick)
767            cpu->completeDataAccess(pkt);
768        else
769            tickEvent.schedule(pkt, next_tick);
770
771        return true;
772    }
773    else if (pkt->wasNacked()) {
774        assert(cpu->_status == DcacheWaitResponse);
775        pkt->reinitNacked();
776        if (!sendTiming(pkt)) {
777            cpu->_status = DcacheRetry;
778            cpu->dcache_pkt = pkt;
779        }
780    }
781    //Snooping a Coherence Request, do nothing
782    return true;
783}
784
785void
786TimingSimpleCPU::DcachePort::DTickEvent::process()
787{
788    cpu->completeDataAccess(pkt);
789}
790
791void
792TimingSimpleCPU::DcachePort::recvRetry()
793{
794    // we shouldn't get a retry unless we have a packet that we're
795    // waiting to transmit
796    assert(cpu->dcache_pkt != NULL);
797    assert(cpu->_status == DcacheRetry);
798    PacketPtr tmp = cpu->dcache_pkt;
799    if (sendTiming(tmp)) {
800        cpu->_status = DcacheWaitResponse;
801        // memory system takes ownership of packet
802        cpu->dcache_pkt = NULL;
803    }
804}
805
806TimingSimpleCPU::IprEvent::IprEvent(Packet *_pkt, TimingSimpleCPU *_cpu, Tick t)
807    : Event(&mainEventQueue), pkt(_pkt), cpu(_cpu)
808{
809    schedule(t);
810}
811
812void
813TimingSimpleCPU::IprEvent::process()
814{
815    cpu->completeDataAccess(pkt);
816}
817
818const char *
819TimingSimpleCPU::IprEvent::description()
820{
821    return "Timing Simple CPU Delay IPR event";
822}
823
824
825////////////////////////////////////////////////////////////////////////
826//
827//  TimingSimpleCPU Simulation Object
828//
829TimingSimpleCPU *
830TimingSimpleCPUParams::create()
831{
832    TimingSimpleCPU::Params *params = new TimingSimpleCPU::Params();
833    params->name = name;
834    params->numberOfThreads = 1;
835    params->max_insts_any_thread = max_insts_any_thread;
836    params->max_insts_all_threads = max_insts_all_threads;
837    params->max_loads_any_thread = max_loads_any_thread;
838    params->max_loads_all_threads = max_loads_all_threads;
839    params->progress_interval = progress_interval;
840    params->deferRegistration = defer_registration;
841    params->clock = clock;
842    params->phase = phase;
843    params->functionTrace = function_trace;
844    params->functionTraceStart = function_trace_start;
845    params->system = system;
846    params->cpu_id = cpu_id;
847    params->tracer = tracer;
848
849    params->itb = itb;
850    params->dtb = dtb;
851#if FULL_SYSTEM
852    params->profile = profile;
853    params->do_quiesce = do_quiesce;
854    params->do_checkpoint_insts = do_checkpoint_insts;
855    params->do_statistics_insts = do_statistics_insts;
856#else
857    if (workload.size() != 1)
858        panic("only one workload allowed");
859    params->process = workload[0];
860#endif
861
862    TimingSimpleCPU *cpu = new TimingSimpleCPU(params);
863    return cpu;
864}
865