|
| | CPU (IrisBaseCPUParams *params, iris::IrisConnectionInterface *iris_if) |
| |
| | BaseCPU (BaseCPUParams *params, sc_core::sc_module *_evs) |
| |
| virtual | ~BaseCPU () |
| |
| Port & | getDataPort () override |
| | Purely virtual method that returns a reference to the data port. More...
|
| |
| Port & | getInstPort () override |
| | Purely virtual method that returns a reference to the instruction port. More...
|
| |
| void | wakeup (ThreadID tid) override |
| |
| Counter | totalInsts () const override |
| |
| Counter | totalOps () const override |
| |
| PortProxy::SendFunctionalFunc | getSendFunctional () override |
| | Returns a sendFunctional delegate for use with port proxies. More...
|
| |
| int | cpuId () const |
| | Reads this CPU's ID. More...
|
| |
| uint32_t | socketId () const |
| | Reads this CPU's Socket ID. More...
|
| |
| RequestorID | dataRequestorId () const |
| | Reads this CPU's unique data requestor ID. More...
|
| |
| RequestorID | instRequestorId () const |
| | Reads this CPU's unique instruction requestor ID. More...
|
| |
| Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
| | Get a port on this CPU. More...
|
| |
| uint32_t | taskId () const |
| | Get cpu task id. More...
|
| |
| void | taskId (uint32_t id) |
| | Set cpu task id. More...
|
| |
| uint32_t | getPid () const |
| |
| void | setPid (uint32_t pid) |
| |
| void | workItemBegin () |
| |
| void | workItemEnd () |
| |
| Tick | instCount () |
| |
| BaseInterrupts * | getInterruptController (ThreadID tid) |
| |
| void | postInterrupt (ThreadID tid, int int_num, int index) |
| |
| void | clearInterrupt (ThreadID tid, int int_num, int index) |
| |
| void | clearInterrupts (ThreadID tid) |
| |
| bool | checkInterrupts (ThreadID tid) const |
| |
| Trace::InstTracer * | getTracer () |
| | Provide access to the tracer pointer. More...
|
| |
| virtual void | activateContext (ThreadID thread_num) |
| | Notify the CPU that the indicated context is now active. More...
|
| |
| virtual void | suspendContext (ThreadID thread_num) |
| | Notify the CPU that the indicated context is now suspended. More...
|
| |
| virtual void | haltContext (ThreadID thread_num) |
| | Notify the CPU that the indicated context is now halted. More...
|
| |
| int | findContext (ThreadContext *tc) |
| | Given a Thread Context pointer return the thread num. More...
|
| |
| virtual ThreadContext * | getContext (int tn) |
| | Given a thread num get tho thread context for it. More...
|
| |
| unsigned | numContexts () |
| | Get the number of thread contexts available. More...
|
| |
| ThreadID | contextToThread (ContextID cid) |
| | Convert ContextID to threadID. More...
|
| |
| const Params * | params () const |
| |
| | BaseCPU (Params *params, bool is_checker=false) |
| |
| void | init () override |
| |
| void | startup () override |
| |
| void | regStats () override |
| |
| void | regProbePoints () override |
| |
| void | registerThreadContexts () |
| |
| void | deschedulePowerGatingEvent () |
| |
| void | schedulePowerGatingEvent () |
| |
| virtual void | switchOut () |
| | Prepare for another CPU to take over execution. More...
|
| |
| virtual void | takeOverFrom (BaseCPU *cpu) |
| | Load the state of a CPU from the previous CPU object, invoked on all new CPUs that are about to be switched in. More...
|
| |
| void | flushTLBs () |
| | Flush all TLBs in the CPU. More...
|
| |
| bool | switchedOut () const |
| | Determine if the CPU is switched out. More...
|
| |
| virtual void | verifyMemoryMode () const |
| | Verify that the system is in a memory mode supported by the CPU. More...
|
| |
| unsigned int | cacheLineSize () const |
| | Get the cache line size of the system. More...
|
| |
| void | serialize (CheckpointOut &cp) const override |
| | Serialize this object to the given output stream. More...
|
| |
| void | unserialize (CheckpointIn &cp) override |
| | Reconstruct the state of this object from a checkpoint. More...
|
| |
| virtual void | unserializeThread (CheckpointIn &cp, ThreadID tid) |
| | Unserialize one thread. More...
|
| |
| void | scheduleInstStop (ThreadID tid, Counter insts, const char *cause) |
| | Schedule an event that exits the simulation loops after a predefined number of instructions. More...
|
| |
| uint64_t | getCurrentInstCount (ThreadID tid) |
| | Get the number of instructions executed by the specified thread on this CPU. More...
|
| |
| void | traceFunctions (Addr pc) |
| |
| void | armMonitor (ThreadID tid, Addr address) |
| |
| bool | mwait (ThreadID tid, PacketPtr pkt) |
| |
| void | mwaitAtomic (ThreadID tid, ThreadContext *tc, BaseTLB *dtb) |
| |
| AddressMonitor * | getCpuAddrMonitor (ThreadID tid) |
| |
| bool | waitForRemoteGDB () const |
| |
| virtual void | probeInstCommit (const StaticInstPtr &inst, Addr pc) |
| | Helper method to trigger PMU probes for a committed instruction. More...
|
| |
template<class TC>
class Iris::CPU< TC >
Definition at line 128 of file cpu.hh.