gem5
v20.1.0.0
|
#include <thread_context.hh>
Classes | |
struct | BpInfo |
Public Types | |
typedef std::map< std::string, iris::ResourceInfo > | ResourceMap |
typedef std::vector< iris::ResourceId > | ResourceIds |
typedef std::map< int, std::string > | IdxNameMap |
Public Types inherited from ThreadContext | |
enum | Status { Active, Suspended, Halting, Halted } |
Public Member Functions | |
ThreadContext (::BaseCPU *cpu, int id, System *system, ::BaseTLB *dtb, ::BaseTLB *itb, ::BaseISA *isa, iris::IrisConnectionInterface *iris_if, const std::string &iris_path) | |
virtual | ~ThreadContext () |
virtual bool | translateAddress (Addr &paddr, Addr vaddr)=0 |
bool | schedule (PCEvent *e) override |
bool | remove (PCEvent *e) override |
void | scheduleInstCountEvent (Event *event, Tick count) override |
void | descheduleInstCountEvent (Event *event) override |
Tick | getCurrentInstCount () override |
::BaseCPU * | getCpuPtr () override |
int | cpuId () const override |
uint32_t | socketId () const override |
int | threadId () const override |
void | setThreadId (int id) override |
int | contextId () const override |
void | setContextId (int id) override |
BaseTLB * | getITBPtr () override |
BaseTLB * | getDTBPtr () override |
CheckerCPU * | getCheckerCpuPtr () override |
ArmISA::Decoder * | getDecoderPtr () override |
System * | getSystemPtr () override |
BaseISA * | getIsaPtr () override |
PortProxy & | getPhysProxy () override |
PortProxy & | getVirtProxy () override |
void | initMemProxies (::ThreadContext *tc) override |
Process * | getProcessPtr () override |
void | setProcessPtr (Process *p) override |
Status | status () const override |
void | setStatus (Status new_status) override |
void | activate () override |
Set the status to Active. More... | |
void | suspend () override |
Set the status to Suspended. More... | |
void | halt () override |
Set the status to Halted. More... | |
void | takeOverFrom (::ThreadContext *old_context) override |
void | regStats (const std::string &name) override |
Tick | readLastActivate () override |
Tick | readLastSuspend () override |
void | copyArchRegs (::ThreadContext *tc) override |
void | clearArchRegs () override |
RegVal | readIntReg (RegIndex reg_idx) const override |
RegVal | readFloatReg (RegIndex reg_idx) const override |
const VecRegContainer & | readVecReg (const RegId ®) const override |
VecRegContainer & | getWritableVecReg (const RegId ®) override |
const VecElem & | readVecElem (const RegId ®) const override |
const VecPredRegContainer & | readVecPredReg (const RegId ®) const override |
VecPredRegContainer & | getWritableVecPredReg (const RegId ®) override |
RegVal | readCCReg (RegIndex reg_idx) const override |
void | setIntReg (RegIndex reg_idx, RegVal val) override |
void | setFloatReg (RegIndex reg_idx, RegVal val) override |
void | setVecReg (const RegId ®, const VecRegContainer &val) override |
void | setVecElem (const RegId ®, const VecElem &val) override |
void | setVecPredReg (const RegId ®, const VecPredRegContainer &val) override |
void | setCCReg (RegIndex reg_idx, RegVal val) override |
void | pcStateNoRecord (const ArmISA::PCState &val) override |
MicroPC | microPC () const override |
ArmISA::PCState | pcState () const override |
void | pcState (const ArmISA::PCState &val) override |
Addr | instAddr () const override |
Addr | nextInstAddr () const override |
RegVal | readMiscRegNoEffect (RegIndex misc_reg) const override |
RegVal | readMiscReg (RegIndex misc_reg) override |
void | setMiscRegNoEffect (RegIndex misc_reg, const RegVal val) override |
void | setMiscReg (RegIndex misc_reg, const RegVal val) override |
RegId | flattenRegId (const RegId ®Id) const override |
unsigned | readStCondFailures () const override |
void | setStCondFailures (unsigned sc_failures) override |
Counter | readFuncExeInst () const override |
void | htmAbortTransaction (uint64_t htm_uid, HtmFailureFaultCause cause) override |
BaseHTMCheckpointPtr & | getHtmCheckpointPtr () override |
void | setHtmCheckpointPtr (BaseHTMCheckpointPtr cpt) override |
ConstVecLane8 | readVec8BitLaneReg (const RegId ®) const override |
Vector Register Lane Interfaces. More... | |
ConstVecLane16 | readVec16BitLaneReg (const RegId ®) const override |
Reads source vector 16bit operand. More... | |
ConstVecLane32 | readVec32BitLaneReg (const RegId ®) const override |
Reads source vector 32bit operand. More... | |
ConstVecLane64 | readVec64BitLaneReg (const RegId ®) const override |
Reads source vector 64bit operand. More... | |
void | setVecLane (const RegId ®, const LaneData< LaneSize::Byte > &val) override |
Write a lane of the destination vector register. More... | |
void | setVecLane (const RegId ®, const LaneData< LaneSize::TwoByte > &val) override |
void | setVecLane (const RegId ®, const LaneData< LaneSize::FourByte > &val) override |
void | setVecLane (const RegId ®, const LaneData< LaneSize::EightByte > &val) override |
RegVal | readIntRegFlat (RegIndex idx) const override |
Flat register interfaces. More... | |
void | setIntRegFlat (RegIndex idx, uint64_t val) override |
RegVal | readFloatRegFlat (RegIndex idx) const override |
void | setFloatRegFlat (RegIndex idx, RegVal val) override |
const VecRegContainer & | readVecRegFlat (RegIndex idx) const override |
VecRegContainer & | getWritableVecRegFlat (RegIndex idx) override |
void | setVecRegFlat (RegIndex idx, const VecRegContainer &val) override |
const VecElem & | readVecElemFlat (RegIndex idx, const ElemIndex &elemIdx) const override |
void | setVecElemFlat (RegIndex idx, const ElemIndex &elemIdx, const VecElem &val) override |
const VecPredRegContainer & | readVecPredRegFlat (RegIndex idx) const override |
VecPredRegContainer & | getWritableVecPredRegFlat (RegIndex idx) override |
void | setVecPredRegFlat (RegIndex idx, const VecPredRegContainer &val) override |
RegVal | readCCRegFlat (RegIndex idx) const override |
void | setCCRegFlat (RegIndex idx, RegVal val) override |
Public Member Functions inherited from ThreadContext | |
virtual void | initMemProxies (ThreadContext *tc)=0 |
Initialise the physical and virtual port proxies and tie them to the data port of the CPU. More... | |
void | quiesce () |
Quiesce thread context. More... | |
void | quiesceTick (Tick resume) |
Quiesce, suspend, and schedule activate at resume. More... | |
virtual void | takeOverFrom (ThreadContext *old_context)=0 |
virtual void | copyArchRegs (ThreadContext *tc)=0 |
virtual void | pcState (const TheISA::PCState &val)=0 |
void | setNPC (Addr val) |
virtual void | pcStateNoRecord (const TheISA::PCState &val)=0 |
virtual void | syscall ()=0 |
virtual int | exit () |
Protected Types | |
using | BpId = uint64_t |
using | BpInfoPtr = std::unique_ptr< BpInfo > |
using | BpInfoMap = std::map< Addr, BpInfoPtr > |
using | BpInfoIt = BpInfoMap::iterator |
Protected Types inherited from ThreadContext | |
typedef TheISA::MachInst | MachInst |
using | VecRegContainer = TheISA::VecRegContainer |
using | VecElem = TheISA::VecElem |
using | VecPredRegContainer = TheISA::VecPredRegContainer |
Protected Member Functions | |
virtual void | initFromIrisInstance (const ResourceMap &resources) |
iris::ResourceId | extractResourceId (const ResourceMap &resources, const std::string &name) |
void | extractResourceMap (ResourceIds &ids, const ResourceMap &resources, const IdxNameMap &idx_names) |
void | maintainStepping () |
BpInfoIt | getOrAllocBp (Addr pc) |
void | installBp (BpInfoIt it) |
void | uninstallBp (BpInfoIt it) |
void | delBp (BpInfoIt it) |
virtual const std::vector< iris::MemorySpaceId > & | getBpSpaceIds () const =0 |
iris::IrisErrorCode | instanceRegistryChanged (uint64_t esId, const iris::IrisValueMap &fields, uint64_t time, uint64_t sInstId, bool syncEc, std::string &error_message_out) |
iris::IrisErrorCode | phaseInitLeave (uint64_t esId, const iris::IrisValueMap &fields, uint64_t time, uint64_t sInstId, bool syncEc, std::string &error_message_out) |
iris::IrisErrorCode | simulationTimeEvent (uint64_t esId, const iris::IrisValueMap &fields, uint64_t time, uint64_t sInstId, bool syncEc, std::string &error_message_out) |
iris::IrisErrorCode | breakpointHit (uint64_t esId, const iris::IrisValueMap &fields, uint64_t time, uint64_t sInstId, bool syncEc, std::string &error_message_out) |
iris::IrisErrorCode | semihostingEvent (uint64_t esId, const iris::IrisValueMap &fields, uint64_t time, uint64_t sInstId, bool syncEc, std::string &error_message_out) |
iris::IrisCppAdapter & | call () const |
iris::IrisCppAdapter & | noThrow () const |
bool | translateAddress (Addr &paddr, iris::MemorySpaceId p_space, Addr vaddr, iris::MemorySpaceId v_space) |
Additional Inherited Members | |
Static Public Member Functions inherited from ThreadContext | |
static void | compare (ThreadContext *one, ThreadContext *two) |
function to compare two thread contexts (for debugging) More... | |
Public Attributes inherited from ThreadContext | |
int | intResult = DefaultIntResult |
double | floatResult = DefaultFloatResult |
int | intOffset = 0 |
Static Public Attributes inherited from ThreadContext | |
static const int | ints [] |
static const double | floats [] |
static const int | DefaultIntResult = 0 |
static const double | DefaultFloatResult = 0.0 |
Definition at line 47 of file thread_context.hh.
|
protected |
Definition at line 110 of file thread_context.hh.
|
protected |
Definition at line 127 of file thread_context.hh.
|
protected |
Definition at line 126 of file thread_context.hh.
|
protected |
Definition at line 125 of file thread_context.hh.
typedef std::map<int, std::string> Iris::ThreadContext::IdxNameMap |
Definition at line 53 of file thread_context.hh.
typedef std::vector<iris::ResourceId> Iris::ThreadContext::ResourceIds |
Definition at line 52 of file thread_context.hh.
typedef std::map<std::string, iris::ResourceInfo> Iris::ThreadContext::ResourceMap |
Definition at line 50 of file thread_context.hh.
ThreadContext::ThreadContext | ( | ::BaseCPU * | cpu, |
int | id, | ||
System * | system, | ||
::BaseTLB * | dtb, | ||
::BaseTLB * | itb, | ||
::BaseISA * | isa, | ||
iris::IrisConnectionInterface * | iris_if, | ||
const std::string & | iris_path | ||
) |
Definition at line 306 of file thread_context.cc.
References _instId, breakpointEventStreamId, call(), client, enableAfterPseudoEvent, initEventStreamId, noThrow(), regEventStreamId, semihostingEventStreamId, EventBase::Sim_Exit_Pri, and timeEventStreamId.
|
virtual |
Reimplemented from ThreadContext.
Definition at line 373 of file thread_context.cc.
References call(), client, enableAfterPseudoEvent, getCpuPtr(), initEventStreamId, regEventStreamId, Event::scheduled(), and timeEventStreamId.
|
inlineoverridevirtual |
Set the status to Active.
Implements ThreadContext.
Definition at line 237 of file thread_context.hh.
References ThreadContext::Active, and setStatus().
|
protected |
Definition at line 264 of file thread_context.cc.
References ArmISA::e, getOrAllocBp(), and MipsISA::pc.
|
inlineprotected |
Definition at line 163 of file thread_context.hh.
References client.
Referenced by getCurrentInstCount(), initFromIrisInstance(), installBp(), maintainStepping(), pcState(), phaseInitLeave(), readCCRegFlat(), readIntReg(), readIntRegFlat(), readMiscRegNoEffect(), readVecPredReg(), readVecReg(), scheduleInstCountEvent(), semihostingEvent(), setCCRegFlat(), setIntReg(), setIntRegFlat(), setMiscRegNoEffect(), setStatus(), simulationTimeEvent(), ThreadContext(), uninstallBp(), and ~ThreadContext().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverride |
Definition at line 262 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 186 of file thread_context.hh.
References _cpu, and BaseCPU::cpuId().
|
protected |
Definition at line 178 of file thread_context.cc.
References bps, panic_if, and uninstallBp().
Referenced by remove().
|
overridevirtual |
Implements ThreadContext.
Definition at line 461 of file thread_context.cc.
References comInstEventQueue, EventQueue::deschedule(), MipsISA::event, and maintainStepping().
|
protected |
Definition at line 93 of file thread_context.cc.
References name().
Referenced by extractResourceMap(), and FastModel::CortexA76TC::initFromIrisInstance().
|
protected |
Definition at line 100 of file thread_context.cc.
References extractResourceId(), ArmISA::ids, and name().
Referenced by FastModel::CortexA76TC::initFromIrisInstance().
|
protectedpure virtual |
Implemented in FastModel::CortexA76TC.
Referenced by installBp().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 205 of file thread_context.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 185 of file thread_context.hh.
References _cpu.
Referenced by semihostingEvent(), setStatus(), and ~ThreadContext().
|
overridevirtual |
Implements ThreadContext.
Definition at line 468 of file thread_context.cc.
References _instId, call(), X86ISA::count, and panic_if.
Referenced by maintainStepping(), and scheduleInstCountEvent().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
protected |
Definition at line 145 of file thread_context.cc.
References bps, panic_if, and MipsISA::pc.
Referenced by breakpointHit(), remove(), and schedule().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 212 of file thread_context.hh.
References _cpu, and BaseCPU::system.
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Set the status to Halted.
Implements ThreadContext.
Definition at line 239 of file thread_context.hh.
References ThreadContext::Halted, and setStatus().
|
inlineoverridevirtual |
|
protectedvirtual |
Reimplemented in FastModel::CortexA76TC.
Definition at line 56 of file thread_context.cc.
References _instId, _status, ThreadContext::Active, bps, breakpointEventStreamId, call(), client, Stats::enabled(), installBp(), memorySpaces, semihostingEventStreamId, suspend(), ThreadContext::Suspended, and translations.
Referenced by phaseInitLeave().
|
override |
Definition at line 477 of file thread_context.cc.
References _cpu, BaseCPU::cacheLineSize(), FullSystem, Iris::BaseCPU::getSendFunctional(), SETranslatingPortProxy::NextPage, physProxy, and virtProxy.
|
overridevirtual |
|
protected |
Definition at line 158 of file thread_context.cc.
References _instId, call(), getBpSpaceIds(), ArmISA::id, and MipsISA::pc.
Referenced by initFromIrisInstance(), and schedule().
|
protected |
Definition at line 190 of file thread_context.cc.
References _instId, _irisPath, MipsISA::event, ArmISA::id, name(), and panic.
|
protected |
Definition at line 116 of file thread_context.cc.
References _instId, call(), comInstEventQueue, EventQueue::empty(), getCurrentInstCount(), EventQueue::nextTick(), and EventQueue::serviceEvents().
Referenced by descheduleInstCountEvent(), scheduleInstCountEvent(), and simulationTimeEvent().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 400 of file thread_context.hh.
|
overridevirtual |
|
inlineprotected |
Definition at line 164 of file thread_context.hh.
References client.
Referenced by ThreadContext(), and translateAddress().
|
overridevirtual |
Implements ThreadContext.
Definition at line 513 of file thread_context.cc.
References _instId, addr, call(), ArmISA::itState(), ArmISA::MISCREG_CPSR, MipsISA::pc, pcRscId, and readMiscRegNoEffect().
Referenced by instAddr(), nextInstAddr(), and pcStateNoRecord().
|
override |
Definition at line 538 of file thread_context.cc.
References _instId, call(), ArmISA::MISCREG_CPSR, MipsISA::pc, pcRscId, readMiscRegNoEffect(), and X86ISA::val.
|
inlineoverride |
Definition at line 399 of file thread_context.hh.
References pcState(), and X86ISA::val.
|
protected |
Definition at line 212 of file thread_context.cc.
References _instId, call(), initFromIrisInstance(), and name().
Implements ThreadContext.
Definition at line 361 of file thread_context.hh.
References readCCRegFlat().
Implements ThreadContext.
Definition at line 632 of file thread_context.cc.
References _instId, call(), and ccRegIds.
Referenced by readCCReg(), and FastModel::CortexA76TC::readCCRegFlat().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 578 of file thread_context.cc.
References _instId, call(), intReg32Ids, intReg64Ids, ArmISA::MISCREG_CPSR, and readMiscRegNoEffect().
Referenced by semihostingEvent().
Flat register interfaces.
Some architectures have different registers visible in different modes. Such architectures "flatten" a register (see flattenRegId()) to map it into the gem5 register file. This interface provides a flat interface to the underlying register file, which allows for example serialization code to access all registers.
Implements ThreadContext.
Definition at line 607 of file thread_context.cc.
References _instId, call(), and flattenedIntIds.
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 409 of file thread_context.hh.
References readMiscRegNoEffect().
Implements ThreadContext.
Definition at line 563 of file thread_context.cc.
References _instId, call(), and miscRegIds.
Referenced by pcState(), readIntReg(), FastModel::CortexA76TC::readIntRegFlat(), readMiscReg(), FastModel::CortexA76TC::setCCRegFlat(), setIntReg(), and FastModel::CortexA76TC::setIntRegFlat().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Reads source vector 16bit operand.
Implements ThreadContext.
Definition at line 302 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
Reads source vector 32bit operand.
Implements ThreadContext.
Definition at line 309 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
Reads source vector 64bit operand.
Implements ThreadContext.
Definition at line 316 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
Vector Register Lane Interfaces.
Reads source vector 8bit operand.
Implements ThreadContext.
Definition at line 295 of file thread_context.hh.
References panic.
|
overridevirtual |
Implements ThreadContext.
Definition at line 679 of file thread_context.cc.
References _instId, call(), RegId::index(), ArmISA::offset, X86ISA::reg, vecPredRegIds, and vecPredRegs.
Referenced by readVecPredRegFlat().
|
overridevirtual |
Implements ThreadContext.
Definition at line 708 of file thread_context.cc.
References readVecPredReg(), and VecPredRegClass.
|
overridevirtual |
Implements ThreadContext.
Definition at line 651 of file thread_context.cc.
References _instId, call(), RegId::index(), X86ISA::reg, vecRegIds, and vecRegs.
Referenced by readVecRegFlat().
|
overridevirtual |
Implements ThreadContext.
Definition at line 673 of file thread_context.cc.
References readVecReg(), and VecRegClass.
|
inlineoverridevirtual |
Reimplemented from ThreadContext.
Definition at line 247 of file thread_context.hh.
|
overridevirtual |
Implements PCEventScope.
Definition at line 408 of file thread_context.cc.
References delBp(), ArmISA::e, and getOrAllocBp().
|
overridevirtual |
Implements PCEventScope.
Definition at line 396 of file thread_context.cc.
References _instId, ArmISA::e, getOrAllocBp(), and installBp().
Implements ThreadContext.
Definition at line 450 of file thread_context.cc.
References call(), comInstEventQueue, X86ISA::count, MipsISA::event, getCurrentInstCount(), maintainStepping(), and EventQueue::schedule().
|
protected |
Definition at line 285 of file thread_context.cc.
References _instId, call(), ArmSystem::callSemihosting(), curTick(), enableAfterPseudoEvent, getCpuPtr(), readIntReg(), and Event::scheduled().
Implements ThreadContext.
Definition at line 394 of file thread_context.hh.
References setCCRegFlat(), and X86ISA::val.
Implements ThreadContext.
Definition at line 642 of file thread_context.cc.
References _instId, call(), ccRegIds, panic_if, and X86ISA::val.
Referenced by setCCReg(), and FastModel::CortexA76TC::setCCRegFlat().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 193 of file thread_context.hh.
References _contextId, and ArmISA::id.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 591 of file thread_context.cc.
References _instId, call(), intReg32Ids, intReg64Ids, ArmISA::MISCREG_CPSR, readMiscRegNoEffect(), and X86ISA::val.
|
overridevirtual |
Implements ThreadContext.
Definition at line 620 of file thread_context.cc.
References _instId, call(), flattenedIntIds, panic_if, and X86ISA::val.
Implements ThreadContext.
Definition at line 416 of file thread_context.hh.
References setMiscRegNoEffect(), and X86ISA::val.
Referenced by FastModel::CortexA76TC::setIntRegFlat().
Implements ThreadContext.
Definition at line 571 of file thread_context.cc.
References _instId, call(), miscRegIds, and X86ISA::val.
Referenced by setMiscReg().
|
inlineoverridevirtual |
|
overridevirtual |
Implements ThreadContext.
Definition at line 498 of file thread_context.cc.
References _instId, _status, ThreadContext::Active, call(), enableAfterPseudoEvent, getCpuPtr(), and Event::scheduled().
Referenced by activate(), halt(), and suspend().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 190 of file thread_context.hh.
References _threadId, and ArmISA::id.
|
inlineoverridevirtual |
Write a lane of the destination vector register.
Implements ThreadContext.
Definition at line 323 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
protected |
Definition at line 242 of file thread_context.cc.
References call(), and maintainStepping().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 187 of file thread_context.hh.
References _cpu, and BaseCPU::socketId().
|
overridevirtual |
|
inlineoverridevirtual |
Set the status to Suspended.
Implements ThreadContext.
Definition at line 238 of file thread_context.hh.
References setStatus(), and ThreadContext::Suspended.
Referenced by initFromIrisInstance().
|
inlineoverride |
Definition at line 242 of file thread_context.hh.
References panic.
|
inlineoverridevirtual |
Implemented in FastModel::CortexA76TC.
|
protected |
Definition at line 420 of file thread_context.cc.
References _instId, noThrow(), panic, translations, MipsISA::vaddr, and warn.
|
protected |
Definition at line 170 of file thread_context.cc.
References _instId, and call().
Referenced by delBp().
|
protected |
Definition at line 58 of file thread_context.hh.
Referenced by contextId(), and setContextId().
|
protected |
Definition at line 56 of file thread_context.hh.
Referenced by cpuId(), getCpuPtr(), getSystemPtr(), initMemProxies(), and socketId().
|
protected |
Definition at line 60 of file thread_context.hh.
Referenced by getDTBPtr().
|
protected |
Definition at line 65 of file thread_context.hh.
Referenced by getCurrentInstCount(), initFromIrisInstance(), installBp(), instanceRegistryChanged(), maintainStepping(), pcState(), phaseInitLeave(), readCCRegFlat(), readIntReg(), readIntRegFlat(), readMiscRegNoEffect(), readVecPredReg(), readVecReg(), schedule(), semihostingEvent(), setCCRegFlat(), setIntReg(), setIntRegFlat(), setMiscRegNoEffect(), setStatus(), ThreadContext(), translateAddress(), and uninstallBp().
|
protected |
Definition at line 64 of file thread_context.hh.
Referenced by instanceRegistryChanged().
|
protected |
Definition at line 62 of file thread_context.hh.
Referenced by getIsaPtr().
|
protected |
Definition at line 61 of file thread_context.hh.
Referenced by getITBPtr().
Definition at line 72 of file thread_context.hh.
Referenced by initFromIrisInstance(), setStatus(), and status().
|
protected |
Definition at line 59 of file thread_context.hh.
|
protected |
Definition at line 57 of file thread_context.hh.
Referenced by setThreadId(), and threadId().
|
protected |
Definition at line 129 of file thread_context.hh.
Referenced by delBp(), getOrAllocBp(), and initFromIrisInstance().
|
protected |
Definition at line 159 of file thread_context.hh.
Referenced by initFromIrisInstance(), and ThreadContext().
|
protected |
Definition at line 87 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), readCCRegFlat(), and setCCRegFlat().
|
mutableprotected |
Definition at line 162 of file thread_context.hh.
Referenced by call(), initFromIrisInstance(), noThrow(), ThreadContext(), and ~ThreadContext().
|
protected |
Definition at line 103 of file thread_context.hh.
Referenced by descheduleInstCountEvent(), maintainStepping(), and scheduleInstCountEvent().
|
protected |
Definition at line 73 of file thread_context.hh.
Referenced by semihostingEvent(), setStatus(), ThreadContext(), and ~ThreadContext().
|
protected |
Definition at line 86 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), readIntRegFlat(), and setIntRegFlat().
|
protected |
Definition at line 90 of file thread_context.hh.
|
protected |
Definition at line 157 of file thread_context.hh.
Referenced by ThreadContext(), and ~ThreadContext().
|
protected |
Definition at line 84 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), readIntReg(), and setIntReg().
|
protected |
Definition at line 85 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), readIntReg(), and setIntReg().
|
protected |
Definition at line 95 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::getBpSpaceIds(), initFromIrisInstance(), and FastModel::CortexA76TC::translateAddress().
|
protected |
Definition at line 83 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), readMiscRegNoEffect(), and setMiscRegNoEffect().
|
protected |
Definition at line 89 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), and pcState().
|
protected |
Definition at line 99 of file thread_context.hh.
Referenced by getPhysProxy(), and initMemProxies().
|
protected |
Definition at line 156 of file thread_context.hh.
Referenced by ThreadContext(), and ~ThreadContext().
|
protected |
Definition at line 160 of file thread_context.hh.
Referenced by initFromIrisInstance(), and ThreadContext().
|
protected |
Definition at line 158 of file thread_context.hh.
Referenced by ThreadContext(), and ~ThreadContext().
|
protected |
Definition at line 96 of file thread_context.hh.
Referenced by initFromIrisInstance(), and translateAddress().
|
protected |
Definition at line 93 of file thread_context.hh.
Referenced by readVecPredReg().
|
mutableprotected |
Definition at line 70 of file thread_context.hh.
Referenced by readVecPredReg().
|
protected |
Definition at line 92 of file thread_context.hh.
Referenced by FastModel::CortexA76TC::initFromIrisInstance(), and readVecReg().
|
mutableprotected |
Definition at line 69 of file thread_context.hh.
Referenced by readVecReg().
|
protected |
Definition at line 98 of file thread_context.hh.
Referenced by getVirtProxy(), and initMemProxies().