|
| DerivO3CPU (DerivO3CPUParams *p) |
|
| FullO3CPU (DerivO3CPUParams *params) |
| Constructs a CPU with the given parameters. More...
|
|
| ~FullO3CPU () |
| Destructor. More...
|
|
void | regStats () override |
| Registers statistics. More...
|
|
void | regProbePoints () override |
| Register probe points. More...
|
|
void | demapPage (Addr vaddr, uint64_t asn) |
|
void | demapInstPage (Addr vaddr, uint64_t asn) |
|
void | demapDataPage (Addr vaddr, uint64_t asn) |
|
void | tick () |
| Ticks CPU, calling tick() on each stage, and checking the overall activity to see if the CPU should deschedule itself. More...
|
|
void | init () override |
| Initialize the CPU. More...
|
|
void | startup () override |
| startup() is the final initialization call before simulation. More...
|
|
int | numActiveThreads () |
| Returns the Number of Active Threads in the CPU. More...
|
|
void | activateThread (ThreadID tid) |
| Add Thread to Active Threads List. More...
|
|
void | deactivateThread (ThreadID tid) |
| Remove Thread from Active Threads List. More...
|
|
void | insertThread (ThreadID tid) |
| Setup CPU to insert a thread's context. More...
|
|
void | removeThread (ThreadID tid) |
| Remove all of a thread's context from CPU. More...
|
|
Counter | totalInsts () const override |
| Count the Total Instructions Committed in the CPU. More...
|
|
Counter | totalOps () const override |
| Count the Total Ops (including micro ops) committed in the CPU. More...
|
|
void | activateContext (ThreadID tid) override |
| Add Thread to Active Threads List. More...
|
|
void | suspendContext (ThreadID tid) override |
| Remove Thread from Active Threads List. More...
|
|
void | haltContext (ThreadID tid) override |
| Remove Thread from Active Threads List && Remove Thread Context from CPU. More...
|
|
void | updateThreadPriority () |
| Update The Order In Which We Process Threads. More...
|
|
bool | isDraining () const |
| Is the CPU draining? More...
|
|
void | serializeThread (CheckpointOut &cp, ThreadID tid) const override |
| Serialize a single thread. More...
|
|
void | unserializeThread (CheckpointIn &cp, ThreadID tid) override |
| Unserialize one thread. More...
|
|
void | addThreadToExitingList (ThreadID tid) |
| Insert tid to the list of threads trying to exit. More...
|
|
bool | isThreadExiting (ThreadID tid) const |
| Is the thread trying to exit? More...
|
|
void | scheduleThreadExitEvent (ThreadID tid) |
| If a thread is trying to exit and its corresponding trap event has been completed, schedule an event to terminate the thread. More...
|
|
void | exitThreads () |
| Terminate all threads that are ready to exit. More...
|
|
void | syscall (ThreadID tid, Fault *fault) |
| Executes a syscall. More...
|
|
DrainState | drain () override |
| Starts draining the CPU's pipeline of all instructions in order to stop all memory accesses. More...
|
|
void | drainResume () override |
| Resumes execution after a drain. More...
|
|
void | commitDrained (ThreadID tid) |
| Commit has reached a safe point to drain a thread. More...
|
|
void | switchOut () override |
| Switches out this CPU. More...
|
|
void | takeOverFrom (BaseCPU *oldCPU) override |
| Takes over from another CPU. More...
|
|
void | verifyMemoryMode () const override |
| Verify that the system is in a memory mode supported by the CPU. More...
|
|
InstSeqNum | getAndIncrementInstSeq () |
| Get the current instruction sequence number, and increment it. More...
|
|
void | trap (const Fault &fault, ThreadID tid, const StaticInstPtr &inst) |
| Traps to handle given fault. More...
|
|
void | setVectorsAsReady (ThreadID tid) |
| Mark vector fields in scoreboard as ready right after switching vector mode, since software may read vectors at this time. More...
|
|
void | switchRenameMode (ThreadID tid, UnifiedFreeList *freelist) |
| Check if a change in renaming is needed for vector registers. More...
|
|
Fault | getInterrupts () |
| Returns the Fault for any valid interrupt. More...
|
|
void | processInterrupts (const Fault &interrupt) |
| Processes any an interrupt fault. More...
|
|
void | halt () |
| Halts the CPU. More...
|
|
RegVal | readMiscRegNoEffect (int misc_reg, ThreadID tid) const |
| Register accessors. More...
|
|
RegVal | readMiscReg (int misc_reg, ThreadID tid) |
| Reads a misc. More...
|
|
void | setMiscRegNoEffect (int misc_reg, RegVal val, ThreadID tid) |
| Sets a miscellaneous register. More...
|
|
void | setMiscReg (int misc_reg, RegVal val, ThreadID tid) |
| Sets a misc. More...
|
|
RegVal | readIntReg (PhysRegIdPtr phys_reg) |
|
RegVal | readFloatReg (PhysRegIdPtr phys_reg) |
|
const VecRegContainer & | readVecReg (PhysRegIdPtr reg_idx) const |
|
VecRegContainer & | getWritableVecReg (PhysRegIdPtr reg_idx) |
| Read physical vector register for modification. More...
|
|
Enums::VecRegRenameMode | vecRenameMode () const |
| Returns current vector renaming mode. More...
|
|
void | vecRenameMode (Enums::VecRegRenameMode vec_mode) |
| Sets the current vector renaming mode. More...
|
|
VecLaneT< VecElem, true > | readVecLane (PhysRegIdPtr phys_reg) const |
| Read physical vector register lane. More...
|
|
VecLaneT< VecElem, true > | readVecLane (PhysRegIdPtr phys_reg) const |
| Read physical vector register lane. More...
|
|
void | setVecLane (PhysRegIdPtr phys_reg, const LD &val) |
| Write a lane of the destination vector register. More...
|
|
const VecElem & | readVecElem (PhysRegIdPtr reg_idx) const |
|
const VecPredRegContainer & | readVecPredReg (PhysRegIdPtr reg_idx) const |
|
VecPredRegContainer & | getWritableVecPredReg (PhysRegIdPtr reg_idx) |
|
RegVal | readCCReg (PhysRegIdPtr phys_reg) |
|
void | setIntReg (PhysRegIdPtr phys_reg, RegVal val) |
|
void | setFloatReg (PhysRegIdPtr phys_reg, RegVal val) |
|
void | setVecReg (PhysRegIdPtr reg_idx, const VecRegContainer &val) |
|
void | setVecElem (PhysRegIdPtr reg_idx, const VecElem &val) |
|
void | setVecPredReg (PhysRegIdPtr reg_idx, const VecPredRegContainer &val) |
|
void | setCCReg (PhysRegIdPtr phys_reg, RegVal val) |
|
RegVal | readArchIntReg (int reg_idx, ThreadID tid) |
|
RegVal | readArchFloatReg (int reg_idx, ThreadID tid) |
|
const VecRegContainer & | readArchVecReg (int reg_idx, ThreadID tid) const |
|
VecRegContainer & | getWritableArchVecReg (int reg_idx, ThreadID tid) |
| Read architectural vector register for modification. More...
|
|
VecLaneT< VecElem, true > | readArchVecLane (int reg_idx, int lId, ThreadID tid) const |
| Read architectural vector register lane. More...
|
|
void | setArchVecLane (int reg_idx, int lId, ThreadID tid, const LD &val) |
| Write a lane of the destination vector register. More...
|
|
const VecElem & | readArchVecElem (const RegIndex ®_idx, const ElemIndex &ldx, ThreadID tid) const |
|
const VecPredRegContainer & | readArchVecPredReg (int reg_idx, ThreadID tid) const |
|
VecPredRegContainer & | getWritableArchVecPredReg (int reg_idx, ThreadID tid) |
|
RegVal | readArchCCReg (int reg_idx, ThreadID tid) |
|
void | setArchIntReg (int reg_idx, RegVal val, ThreadID tid) |
| Architectural register accessors. More...
|
|
void | setArchFloatReg (int reg_idx, RegVal val, ThreadID tid) |
|
void | setArchVecPredReg (int reg_idx, const VecPredRegContainer &val, ThreadID tid) |
|
void | setArchVecReg (int reg_idx, const VecRegContainer &val, ThreadID tid) |
|
void | setArchVecElem (const RegIndex ®_idx, const ElemIndex &ldx, const VecElem &val, ThreadID tid) |
|
void | setArchCCReg (int reg_idx, RegVal val, ThreadID tid) |
|
void | pcState (const TheISA::PCState &newPCState, ThreadID tid) |
| Sets the commit PC state of a specific thread. More...
|
|
TheISA::PCState | pcState (ThreadID tid) |
| Reads the commit PC state of a specific thread. More...
|
|
Addr | instAddr (ThreadID tid) |
| Reads the commit PC of a specific thread. More...
|
|
MicroPC | microPC (ThreadID tid) |
| Reads the commit micro PC of a specific thread. More...
|
|
Addr | nextInstAddr (ThreadID tid) |
| Reads the next PC of a specific thread. More...
|
|
void | squashFromTC (ThreadID tid) |
| Initiates a squash of all in-flight instructions for a given thread. More...
|
|
ListIt | addInst (const DynInstPtr &inst) |
| Function to add instruction onto the head of the list of the instructions. More...
|
|
void | instDone (ThreadID tid, const DynInstPtr &inst) |
| Function to tell the CPU that an instruction has completed. More...
|
|
void | removeFrontInst (const DynInstPtr &inst) |
| Remove an instruction from the front end of the list. More...
|
|
void | removeInstsNotInROB (ThreadID tid) |
| Remove all instructions that are not currently in the ROB. More...
|
|
void | removeInstsUntil (const InstSeqNum &seq_num, ThreadID tid) |
| Remove all instructions younger than the given sequence number. More...
|
|
void | squashInstIt (const ListIt &instIt, ThreadID tid) |
| Removes the instruction pointed to by the iterator. More...
|
|
void | cleanUpRemovedInsts () |
| Cleans up all instructions on the remove list. More...
|
|
void | dumpInsts () |
| Debug function to print all instructions on the list. More...
|
|
void | activityThisCycle () |
| Records that there was time buffer activity this cycle. More...
|
|
void | activateStage (const StageIdx idx) |
| Changes a stage's status to active within the activity recorder. More...
|
|
void | deactivateStage (const StageIdx idx) |
| Changes a stage's status to inactive within the activity recorder. More...
|
|
void | wakeCPU () |
| Wakes the CPU, rescheduling the CPU if it's not already active. More...
|
|
virtual void | wakeup (ThreadID tid) override |
|
ThreadID | getFreeTid () |
| Gets a free thread id. More...
|
|
ThreadContext * | tcBase (ThreadID tid) |
| Returns a pointer to a thread context. More...
|
|
Fault | pushRequest (const DynInstPtr &inst, bool isLoad, uint8_t *data, unsigned int size, Addr addr, Request::Flags flags, uint64_t *res, AtomicOpFunctorPtr amo_op=nullptr, const std::vector< bool > &byte_enable=std::vector< bool >()) |
| CPU pushRequest function, forwards request to LSQ. More...
|
|
Fault | read (LSQRequest *req, int load_idx) |
| CPU read function, forwards read to LSQ. More...
|
|
Fault | write (LSQRequest *req, uint8_t *data, int store_idx) |
| CPU write function, forwards write to LSQ. More...
|
|
Port & | getInstPort () override |
| Used by the fetch unit to get a hold of the instruction port. More...
|
|
Port & | getDataPort () override |
| Get the dcache port (used to find block size for translations). More...
|
|
| BaseO3CPU (BaseCPUParams *params) |
|
virtual PortProxy::SendFunctionalFunc | getSendFunctional () |
| 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...
|
|
MasterID | dataMasterId () const |
| Reads this CPU's unique data requestor ID. More...
|
|
MasterID | instMasterId () 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 (ThreadContext *tc) const |
|
void | processProfileEvent () |
|
Trace::InstTracer * | getTracer () |
| Provide access to the tracer pointer. 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) |
|
virtual | ~BaseCPU () |
|
void | registerThreadContexts () |
|
void | deschedulePowerGatingEvent () |
|
void | schedulePowerGatingEvent () |
|
void | flushTLBs () |
| Flush all TLBs in the CPU. More...
|
|
bool | switchedOut () const |
| Determine if the CPU is switched out. 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...
|
|
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...
|
|
| ClockedObject (const ClockedObjectParams *p) |
|
const Params * | params () const |
|
void | serialize (CheckpointOut &cp) const override |
| Serialize an object. More...
|
|
void | unserialize (CheckpointIn &cp) override |
| Unserialize an object. More...
|
|
virtual | ~SimObject () |
|
virtual const std::string | name () const |
|
virtual void | loadState (CheckpointIn &cp) |
| loadState() is called on each SimObject when restoring from a checkpoint. More...
|
|
virtual void | initState () |
| initState() is called on each SimObject when not restoring from a checkpoint. More...
|
|
virtual void | regProbeListeners () |
| Register probe listeners for this object. More...
|
|
ProbeManager * | getProbeManager () |
| Get the probe manager for this object. More...
|
|
virtual void | memWriteback () |
| Write back dirty buffers to memory using functional writes. More...
|
|
virtual void | memInvalidate () |
| Invalidate the contents of memory buffers. More...
|
|
void | serialize (CheckpointOut &cp) const override |
| Serialize an object. More...
|
|
void | unserialize (CheckpointIn &cp) override |
| Unserialize an object. More...
|
|
const Params * | params () const |
|
| SimObject (const Params *_params) |
|
EventQueue * | eventQueue () const |
|
void | schedule (Event &event, Tick when) |
|
void | deschedule (Event &event) |
|
void | reschedule (Event &event, Tick when, bool always=false) |
|
void | schedule (Event *event, Tick when) |
|
void | deschedule (Event *event) |
|
void | reschedule (Event *event, Tick when, bool always=false) |
|
void | wakeupEventQueue (Tick when=(Tick) -1) |
|
void | setCurTick (Tick newVal) |
|
| EventManager (EventManager &em) |
|
| EventManager (EventManager *em) |
|
| EventManager (EventQueue *eq) |
|
| Serializable () |
|
virtual | ~Serializable () |
|
void | serializeSection (CheckpointOut &cp, const char *name) const |
| Serialize an object into a new section. More...
|
|
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
|
void | unserializeSection (CheckpointIn &cp, const char *name) |
| Unserialize an a child object. More...
|
|
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
|
DrainState | drainState () const |
| Return the current drain state of an object. More...
|
|
virtual void | notifyFork () |
| Notify a child process of a fork. More...
|
|
| Group (Group *parent, const char *name=nullptr) |
| Construct a new statistics group. More...
|
|
virtual | ~Group () |
|
virtual void | resetStats () |
| Callback to reset stats. More...
|
|
virtual void | preDumpStats () |
| Callback before stats are dumped. More...
|
|
void | addStat (Stats::Info *info) |
| Register a stat with this group. More...
|
|
const std::map< std::string, Group * > & | getStatGroups () const |
| Get all child groups associated with this object. More...
|
|
const std::vector< Info * > & | getStats () const |
| Get all stats associated with this object. More...
|
|
void | addStatGroup (const char *name, Group *block) |
| Add a stat block as a child of this block. More...
|
|
const Info * | resolveStat (std::string name) const |
| Resolve a stat by its name within this group. More...
|
|
| Group ()=delete |
|
| Group (const Group &)=delete |
|
Group & | operator= (const Group &)=delete |
|
void | updateClockPeriod () |
| Update the tick to the current tick. More...
|
|
Tick | clockEdge (Cycles cycles=Cycles(0)) const |
| Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More...
|
|
Cycles | curCycle () const |
| Determine the current cycle, corresponding to a tick aligned to a clock edge. More...
|
|
Tick | nextCycle () const |
| Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More...
|
|
uint64_t | frequency () const |
|
Tick | clockPeriod () const |
|
double | voltage () const |
|
Cycles | ticksToCycles (Tick t) const |
|
Tick | cyclesToTicks (Cycles c) const |
|