gem5 v24.0.0.0
|
#include <wavefront.hh>
Classes | |
struct | WavefrontStats |
Public Types | |
enum | status_e { S_STOPPED , S_RETURNING , S_RUNNING , S_STALLED , S_STALLED_SLEEP , S_WAITCNT , S_BARRIER } |
typedef WavefrontParams | Params |
Public Types inherited from gem5::SimObject | |
typedef SimObjectParams | Params |
Public Member Functions | |
void | freeResources () |
GPUDynInstPtr | nextInstr () |
void | setStatus (status_e newStatus) |
status_e | getStatus () |
void | resizeRegFiles (int num_vregs, int num_sregs) |
bool | isGmInstruction (GPUDynInstPtr ii) |
bool | isLmInstruction (GPUDynInstPtr ii) |
bool | isOldestInstWaitcnt () |
bool | isOldestInstSleep () |
bool | isOldestInstGMem () |
bool | isOldestInstLMem () |
bool | isOldestInstPrivMem () |
bool | isOldestInstFlatMem () |
bool | isOldestInstVectorALU () |
bool | isOldestInstScalarALU () |
bool | isOldestInstScalarMem () |
bool | isOldestInstBarrier () |
void | computeActualWgSz (HSAQueueEntry *task) |
void | initRegState (HSAQueueEntry *task, int wgSizeInWorkItems) |
Wavefront (const Params &p) | |
~Wavefront () | |
virtual void | init () |
init() is called after all C++ SimObjects have been created and all ports are connected. | |
void | setParent (ComputeUnit *cu) |
void | validateRequestCounters () |
void | start (uint64_t _wfDynId, uint64_t _base_ptr) |
void | exec () |
std::vector< int > | reserveResources () |
bool | stopFetch () |
Addr | pc () const |
void | pc (Addr new_pc) |
VectorMask & | execMask () |
bool | execMask (int lane) const |
void | discardFetch () |
bool | waitCntsSatisfied () |
void | setWaitCnts (int vm_wait_cnt, int exp_wait_cnt, int lgkm_wait_cnt) |
void | clearWaitCnts () |
void | incVMemInstsIssued () |
void | incExpInstsIssued () |
void | incLGKMInstsIssued () |
void | decVMemInstsIssued () |
void | decExpInstsIssued () |
void | decLGKMInstsIssued () |
void | freeRegisterFile () |
Freeing VRF space. | |
bool | sleepDone () |
void | setSleepTime (int sleep_time) |
TheGpuISA::GPUISA & | gpuISA () |
void | barrierId (int bar_id) |
int | barrierId () const |
bool | hasBarrier () const |
void | releaseBarrier () |
Public Member Functions inherited from gem5::SimObject | |
const Params & | params () const |
SimObject (const Params &p) | |
virtual | ~SimObject () |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. | |
virtual void | regProbePoints () |
Register probe points for this object. | |
virtual void | regProbeListeners () |
Register probe listeners for this object. | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. | |
virtual Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) |
Get a port with a given name and index. | |
virtual void | startup () |
startup() is the final initialization call before simulation. | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. | |
Public Member Functions inherited from gem5::EventManager | |
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) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
Public Member Functions inherited from gem5::Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Member Functions inherited from gem5::Drainable | |
DrainState | drainState () const |
Return the current drain state of an object. | |
virtual void | notifyFork () |
Notify a child process of a fork. | |
Public Member Functions inherited from gem5::statistics::Group | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. | |
virtual | ~Group () |
virtual void | regStats () |
Callback to set stat parameters. | |
virtual void | resetStats () |
Callback to reset stats. | |
virtual void | preDumpStats () |
Callback before stats are dumped. | |
void | addStat (statistics::Info *info) |
Register a stat with this group. | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. | |
void | mergeStatGroup (Group *block) |
Merge the contents (stats & children) of a block to this block. | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Public Member Functions inherited from gem5::Named | |
Named (const std::string &name_) | |
virtual | ~Named ()=default |
virtual std::string | name () const |
Private Member Functions | |
void | reserveGmResource (GPUDynInstPtr ii) |
void | reserveLmResource (GPUDynInstPtr ii) |
Private Attributes | |
TheGpuISA::GPUISA | _gpuISA |
int | vmWaitCnt |
the following are used for waitcnt instructions vmWaitCnt: once set, we wait for the oustanding number of vector mem instructions to be at, or below vmWaitCnt. | |
int | expWaitCnt |
int | lgkmWaitCnt |
int | vmemInstsIssued |
int | expInstsIssued |
int | lgkmInstsIssued |
int | sleepCnt |
status_e | status |
Addr | _pc |
VectorMask | _execMask |
int | barId |
Additional Inherited Members | |
Static Public Member Functions inherited from gem5::SimObject | |
static void | serializeAll (const std::string &cpt_dir) |
Create a checkpoint by serializing all SimObjects in the system. | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. | |
static void | setSimObjectResolver (SimObjectResolver *resolver) |
There is a single object name resolver, and it is only set when simulation is restoring from checkpoints. | |
static SimObjectResolver * | getSimObjectResolver () |
There is a single object name resolver, and it is only set when simulation is restoring from checkpoints. | |
Static Public Member Functions inherited from gem5::Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. | |
static void | generateCheckpointOut (const std::string &cpt_dir, std::ofstream &outstream) |
Generate a checkpoint file so that the serialization can be routed to it. | |
Protected Member Functions inherited from gem5::Drainable | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. | |
void | signalDrainDone () const |
Signal that an object is drained. | |
Protected Attributes inherited from gem5::SimObject | |
const SimObjectParams & | _params |
Cached copy of the object parameters. | |
Protected Attributes inherited from gem5::EventManager | |
EventQueue * | eventq |
A pointer to this object's event queue. | |
Definition at line 60 of file wavefront.hh.
typedef WavefrontParams gem5::Wavefront::Params |
Definition at line 251 of file wavefront.hh.
Definition at line 63 of file wavefront.hh.
gem5::Wavefront::Wavefront | ( | const Params & | p | ) |
Definition at line 49 of file wavefront.cc.
References _execMask, dropFetch, execUnitId, gem5::ArmISA::i, lastAddr, lastInstExec, lastNonIdleTick, lastTrace, ldsChunk, maxSgprs, maxVgprs, memTraceBusy, oldDgpr, oldDgprTcnt, oldVgpr, oldVgprTcnt, outstandingReqs, outstandingReqsRdGm, outstandingReqsRdLm, outstandingReqsWrGm, outstandingReqsWrLm, gem5::MipsISA::p, pendingFetch, rawDist, rdGmReqsInPipe, rdLmReqsInPipe, reservedScalarRegs, reservedVectorRegs, S_STOPPED, scalarOutstandingReqsRdGm, scalarOutstandingReqsWrGm, scalarRdGmReqsInPipe, scalarWrGmReqsInPipe, startSgprIndex, startVgprIndex, status, vecReads, workItemFlatId, workItemId, wrGmReqsInPipe, and wrLmReqsInPipe.
gem5::Wavefront::~Wavefront | ( | ) |
Definition at line 568 of file wavefront.cc.
int gem5::Wavefront::barrierId | ( | ) | const |
Definition at line 1498 of file wavefront.cc.
References barId.
void gem5::Wavefront::barrierId | ( | int | bar_id | ) |
Definition at line 1490 of file wavefront.cc.
References barId, and gem5::WFBarrier::InvalidID.
Referenced by gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), and gem5::ComputeUnit::releaseWFsFromBarrier().
void gem5::Wavefront::clearWaitCnts | ( | ) |
Definition at line 1389 of file wavefront.cc.
References expWaitCnt, lgkmWaitCnt, S_RUNNING, status, and vmWaitCnt.
Referenced by waitCntsSatisfied().
void gem5::Wavefront::computeActualWgSz | ( | HSAQueueEntry * | task | ) |
Definition at line 1479 of file wavefront.cc.
References actualWgSz, actualWgSzTotal, gem5::ArmISA::d, gridSz, gem5::HSAQueueEntry::MAX_DIM, gem5::HSAQueueEntry::wgId(), and workGroupSz.
void gem5::Wavefront::decExpInstsIssued | ( | ) |
Definition at line 1427 of file wavefront.cc.
References expInstsIssued.
Referenced by gem5::VegaISA::Inst_FLAT__FLAT_STORE_BYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_BYTE::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORD::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX4::execute(), and gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_SHORT::execute().
void gem5::Wavefront::decLGKMInstsIssued | ( | ) |
Definition at line 1433 of file wavefront.cc.
References lgkmInstsIssued.
Referenced by gem5::VegaISA::Inst_FLAT::atomicExecute(), gem5::VegaISA::Inst_DS__DS_ADD_F32::execute(), gem5::VegaISA::Inst_DS__DS_ADD_U32::execute(), gem5::VegaISA::Inst_DS__DS_ADD_U64::execute(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_OR_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ2ST64_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2ST64_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ_I8::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16_D16::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16_D16_HI::execute(), gem5::VegaISA::Inst_DS__DS_READ_U8::execute(), gem5::VegaISA::Inst_DS__DS_SWIZZLE_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2ST64_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2ST64_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B16::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B8::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B8_D16_HI::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_SBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_UBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_USHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_BYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_SOPP__S_ICACHE_INV::execute(), and gem5::GPUDynInst::resolveFlatSegment().
void gem5::Wavefront::decVMemInstsIssued | ( | ) |
Definition at line 1421 of file wavefront.cc.
References vmemInstsIssued.
Referenced by gem5::VegaISA::Inst_FLAT::atomicExecute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_SBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_UBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_USHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_BYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_ATOMIC_CMPSWAP::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORD::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX3::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_SHORT_D16::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_UBYTE::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_USHORT::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_BYTE::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORD::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_SHORT::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_WBINVL1::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_WBINVL1_VOL::execute(), and gem5::GPUDynInst::resolveFlatSegment().
void gem5::Wavefront::discardFetch | ( | ) |
clear the fetch buffer for this wave in order to remove any stale inst data
Definition at line 1262 of file wavefront.cc.
References computeUnit, dropFetch, gem5::ComputeUnit::fetchStage, gem5::FetchStage::fetchUnit(), gem5::FetchUnit::flushBuf(), instructionBuffer, pendingFetch, simdId, and wfSlotId.
Referenced by exec().
void gem5::Wavefront::exec | ( | ) |
if this wave is in S_WAITCNT state, then it should enter exec() precisely one time before the waitcnts are satisfied, in order to execute the waitcnt instruction itself thus we assert that the waitcnt is the oldest instruction. if we enter exec() with active waitcnts, and we're not executing the waitcnt instruction, something must be wrong
we return here to avoid spurious errors related to flat insts and their address segment resolution.
Definition at line 917 of file wavefront.cc.
References _gpuISA, gem5::ComputeUnit::ComputeUnitStats::activeLanesPerGMemInstrDist, gem5::ComputeUnit::ComputeUnitStats::activeLanesPerLMemInstrDist, computeUnit, gem5::ComputeUnit::ComputeUnitStats::controlFlowDivergenceDist, gem5::ComputeUnit::cu_id, gem5::Clocked::cyclesToTicks(), gem5::ComputeUnit::deleteFromPipeMap(), discardFetch(), DPRINTF, execMask(), gem5::ComputeUnit::ComputeUnitStats::execRateDist, fatal, gem5::ComputeUnit::getTokenManager(), gem5::Shader::hsail_mode, gem5::Shader::incVectorInstDstOperand(), gem5::Shader::incVectorInstSrcOperand(), gem5::ComputeUnit::ComputeUnitStats::instCyclesLdsPerSimd, gem5::ComputeUnit::ComputeUnitStats::instCyclesScMemPerSimd, gem5::ComputeUnit::ComputeUnitStats::instCyclesVMemPerSimd, gem5::ComputeUnit::instExecPerSimd, gem5::ComputeUnit::ComputeUnitStats::instInterleave, instructionBuffer, isGmInstruction(), isLmInstruction(), isOldestInstWaitcnt(), gem5::ComputeUnit::issuePeriod, gem5::ComputeUnit::lastExecCycle, lastInstExec, gem5::statistics::none, gem5::ComputeUnit::ComputeUnitStats::numInstrExecuted, gem5::Wavefront::WavefrontStats::numInstrExecuted, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecuted, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedF16, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedF32, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedF64, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedFMA16, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedFMA32, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedFMA64, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAC16, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAC32, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAC64, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAD16, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAD32, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMAD64, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMFMA, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMFMAF16, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMFMAF32, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMFMAF64, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedMFMAI8, gem5::ComputeUnit::ComputeUnitStats::numVecOpsExecutedTwoOpFP, panic, pc(), rawDist, gem5::Wavefront::WavefrontStats::readsPerWrite, gem5::TokenManager::recvTokens(), gem5::ComputeUnit::rfc, S_RETURNING, S_STALLED, S_STOPPED, S_WAITCNT, gem5::statistics::DistBase< Derived, Stor >::sample(), scalarAlu, gem5::ComputeUnit::scalarALUs, gem5::ComputeUnit::scalarMemUnit, gem5::ArmISA::set, gem5::WaitClass::set(), gem5::ComputeUnit::shader, simdId, gem5::Shader::SIMT, gem5::ComputeUnit::srf, gem5::ComputeUnit::srf_scm_bus_latency, gem5::ComputeUnit::srfToScalarMemPipeBus, gem5::ComputeUnit::stats, stats, status, gem5::ComputeUnit::ComputeUnitStats::totalCycles, gem5::ComputeUnit::updateInstStats(), gem5::statistics::ScalarBase< Derived, Stor >::value(), gem5::Wavefront::WavefrontStats::vecRawDistance, vecReads, gem5::ComputeUnit::vectorALUs, gem5::ComputeUnit::vectorGlobalMemUnit, gem5::ComputeUnit::vectorSharedMemUnit, gem5::ComputeUnit::vrf, gem5::ComputeUnit::vrf_gm_bus_latency, gem5::ComputeUnit::vrf_lm_bus_latency, gem5::ComputeUnit::vrfToGlobalMemPipeBus, gem5::ComputeUnit::vrfToLocalMemPipeBus, wfDynId, and wfSlotId.
Referenced by gem5::ExecStage::exec().
VectorMask & gem5::Wavefront::execMask | ( | ) |
Definition at line 1451 of file wavefront.cc.
References _execMask.
Referenced by gem5::VegaISA::Inst_DS::calcAddr(), gem5::VegaISA::Inst_VOP3P::dotHelper(), exec(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_SOP1__S_AND_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_ANDN2_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_NAND_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_NOR_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_OR_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_ORN2_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_XNOR_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_XOR_SAVEEXEC_B64::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_EXECNZ::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_EXECZ::execute(), gem5::VegaISA::Inst_VOP1__V_ACCVGPR_MOV_B32::execute(), gem5::VegaISA::Inst_VOP1__V_BFREV_B32::execute(), gem5::VegaISA::Inst_VOP1__V_CEIL_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CEIL_F64::execute(), gem5::VegaISA::Inst_VOP1__V_COS_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F16_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_F16::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_F64::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_I32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_U32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_UBYTE0::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_UBYTE1::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_UBYTE2::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F32_UBYTE3::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F64_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F64_I32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_F64_U32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_FLR_I32_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_I32_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_I32_F64::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_RPI_I32_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_U32_F32::execute(), gem5::VegaISA::Inst_VOP1__V_CVT_U32_F64::execute(), gem5::VegaISA::Inst_VOP1__V_EXP_F32::execute(), gem5::VegaISA::Inst_VOP1__V_EXP_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP1__V_FFBH_I32::execute(), gem5::VegaISA::Inst_VOP1__V_FFBH_U32::execute(), gem5::VegaISA::Inst_VOP1__V_FFBL_B32::execute(), gem5::VegaISA::Inst_VOP1__V_FLOOR_F32::execute(), gem5::VegaISA::Inst_VOP1__V_FLOOR_F64::execute(), gem5::VegaISA::Inst_VOP1__V_FRACT_F32::execute(), gem5::VegaISA::Inst_VOP1__V_FRACT_F64::execute(), gem5::VegaISA::Inst_VOP1__V_FREXP_EXP_I32_F32::execute(), gem5::VegaISA::Inst_VOP1__V_FREXP_EXP_I32_F64::execute(), gem5::VegaISA::Inst_VOP1__V_FREXP_MANT_F32::execute(), gem5::VegaISA::Inst_VOP1__V_FREXP_MANT_F64::execute(), gem5::VegaISA::Inst_VOP1__V_LOG_F32::execute(), gem5::VegaISA::Inst_VOP1__V_LOG_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP1__V_MOV_B32::execute(), gem5::VegaISA::Inst_VOP1__V_MOV_B64::execute(), gem5::VegaISA::Inst_VOP1__V_NOT_B32::execute(), gem5::VegaISA::Inst_VOP1__V_RCP_F32::execute(), gem5::VegaISA::Inst_VOP1__V_RCP_F64::execute(), gem5::VegaISA::Inst_VOP1__V_RCP_IFLAG_F32::execute(), gem5::VegaISA::Inst_VOP1__V_READFIRSTLANE_B32::execute(), gem5::VegaISA::Inst_VOP1__V_RNDNE_F32::execute(), gem5::VegaISA::Inst_VOP1__V_RNDNE_F64::execute(), gem5::VegaISA::Inst_VOP1__V_RSQ_F32::execute(), gem5::VegaISA::Inst_VOP1__V_RSQ_F64::execute(), gem5::VegaISA::Inst_VOP1__V_SIN_F32::execute(), gem5::VegaISA::Inst_VOP1__V_SQRT_F32::execute(), gem5::VegaISA::Inst_VOP1__V_SQRT_F64::execute(), gem5::VegaISA::Inst_VOP1__V_TRUNC_F32::execute(), gem5::VegaISA::Inst_VOP1__V_TRUNC_F64::execute(), gem5::VegaISA::Inst_VOP2__V_ADD_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_ADD_F32::execute(), gem5::VegaISA::Inst_VOP2__V_ADD_U16::execute(), gem5::VegaISA::Inst_VOP2__V_ADD_U32::execute(), gem5::VegaISA::Inst_VOP2__V_ADDC_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_AND_B32::execute(), gem5::VegaISA::Inst_VOP2__V_ASHRREV_I16::execute(), gem5::VegaISA::Inst_VOP2__V_ASHRREV_I32::execute(), gem5::VegaISA::Inst_VOP2__V_CNDMASK_B32::execute(), gem5::VegaISA::Inst_VOP2__V_FMAC_F32::execute(), gem5::VegaISA::Inst_VOP2__V_LSHLREV_B16::execute(), gem5::VegaISA::Inst_VOP2__V_LSHLREV_B32::execute(), gem5::VegaISA::Inst_VOP2__V_LSHRREV_B16::execute(), gem5::VegaISA::Inst_VOP2__V_LSHRREV_B32::execute(), gem5::VegaISA::Inst_VOP2__V_MAC_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MADAK_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MADMK_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MAX_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MAX_I16::execute(), gem5::VegaISA::Inst_VOP2__V_MAX_I32::execute(), gem5::VegaISA::Inst_VOP2__V_MAX_U16::execute(), gem5::VegaISA::Inst_VOP2__V_MAX_U32::execute(), gem5::VegaISA::Inst_VOP2__V_MIN_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MIN_I16::execute(), gem5::VegaISA::Inst_VOP2__V_MIN_I32::execute(), gem5::VegaISA::Inst_VOP2__V_MIN_U16::execute(), gem5::VegaISA::Inst_VOP2__V_MIN_U32::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_HI_I32_I24::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_HI_U32_U24::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_I32_I24::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP2__V_MUL_LO_U16::execute(), gem5::VegaISA::Inst_VOP2__V_OR_B32::execute(), gem5::VegaISA::Inst_VOP2__V_SUB_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_SUB_F32::execute(), gem5::VegaISA::Inst_VOP2__V_SUB_U16::execute(), gem5::VegaISA::Inst_VOP2__V_SUB_U32::execute(), gem5::VegaISA::Inst_VOP2__V_SUBB_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_SUBBREV_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_SUBREV_CO_U32::execute(), gem5::VegaISA::Inst_VOP2__V_SUBREV_F32::execute(), gem5::VegaISA::Inst_VOP2__V_SUBREV_U16::execute(), gem5::VegaISA::Inst_VOP2__V_SUBREV_U32::execute(), gem5::VegaISA::Inst_VOP2__V_XNOR_B32::execute(), gem5::VegaISA::Inst_VOP2__V_XOR_B32::execute(), gem5::VegaISA::Inst_VOP3__V_ADD3_U32::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_F32::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_F64::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_LSHL_U32::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_U16::execute(), gem5::VegaISA::Inst_VOP3__V_ADD_U32::execute(), gem5::VegaISA::Inst_VOP3__V_ADDC_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_ALIGNBIT_B32::execute(), gem5::VegaISA::Inst_VOP3__V_ALIGNBYTE_B32::execute(), gem5::VegaISA::Inst_VOP3__V_AND_B32::execute(), gem5::VegaISA::Inst_VOP3__V_AND_OR_B32::execute(), gem5::VegaISA::Inst_VOP3__V_ASHRREV_I16::execute(), gem5::VegaISA::Inst_VOP3__V_ASHRREV_I32::execute(), gem5::VegaISA::Inst_VOP3__V_ASHRREV_I64::execute(), gem5::VegaISA::Inst_VOP3__V_BCNT_U32_B32::execute(), gem5::VegaISA::Inst_VOP3__V_BFE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_BFE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_BFI_B32::execute(), gem5::VegaISA::Inst_VOP3__V_BFM_B32::execute(), gem5::VegaISA::Inst_VOP3__V_BFREV_B32::execute(), gem5::VegaISA::Inst_VOP3__V_CEIL_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CEIL_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_CLASS_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_CLASS_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_EQ_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_F_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_GT_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LG_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_LT_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NEQ_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NEQ_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NGE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NGE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NGT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NGT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLG_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_NLT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_O_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_O_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_T_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_TRU_F16::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_TRU_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_TRU_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_U_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMP_U_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_CLASS_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_CLASS_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_EQ_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_F16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_F_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_GT_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LG_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_LT_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NE_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NEQ_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NEQ_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NGE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NGE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NGT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NGT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLG_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_NLT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_O_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_O_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_I16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_I64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_U16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_T_U64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_TRU_F16::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_TRU_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_TRU_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_U_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CMPX_U_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CNDMASK_B32::execute(), gem5::VegaISA::Inst_VOP3__V_COS_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F16_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_F16::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_UBYTE0::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_UBYTE1::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_UBYTE2::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F32_UBYTE3::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F64_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F64_I32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_F64_U32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_FLR_I32_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_I32_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_I32_F64::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_PK_FP8_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_PK_U8_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_RPI_I32_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_U32_F32::execute(), gem5::VegaISA::Inst_VOP3__V_CVT_U32_F64::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_FIXUP_F32::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_FIXUP_F64::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_FMAS_F32::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_FMAS_F64::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_SCALE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_DIV_SCALE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_EXP_F32::execute(), gem5::VegaISA::Inst_VOP3__V_EXP_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FFBH_I32::execute(), gem5::VegaISA::Inst_VOP3__V_FFBH_U32::execute(), gem5::VegaISA::Inst_VOP3__V_FFBL_B32::execute(), gem5::VegaISA::Inst_VOP3__V_FLOOR_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FLOOR_F64::execute(), gem5::VegaISA::Inst_VOP3__V_FMA_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FMA_F64::execute(), gem5::VegaISA::Inst_VOP3__V_FMAC_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FRACT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FRACT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_FREXP_EXP_I32_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FREXP_EXP_I32_F64::execute(), gem5::VegaISA::Inst_VOP3__V_FREXP_MANT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_FREXP_MANT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_LDEXP_F32::execute(), gem5::VegaISA::Inst_VOP3__V_LDEXP_F64::execute(), gem5::VegaISA::Inst_VOP3__V_LERP_U8::execute(), gem5::VegaISA::Inst_VOP3__V_LOG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_LOG_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP3__V_LSHL_ADD_U32::execute(), gem5::VegaISA::Inst_VOP3__V_LSHL_ADD_U64::execute(), gem5::VegaISA::Inst_VOP3__V_LSHL_OR_B32::execute(), gem5::VegaISA::Inst_VOP3__V_LSHLREV_B16::execute(), gem5::VegaISA::Inst_VOP3__V_LSHLREV_B32::execute(), gem5::VegaISA::Inst_VOP3__V_LSHLREV_B64::execute(), gem5::VegaISA::Inst_VOP3__V_LSHRREV_B16::execute(), gem5::VegaISA::Inst_VOP3__V_LSHRREV_B32::execute(), gem5::VegaISA::Inst_VOP3__V_LSHRREV_B64::execute(), gem5::VegaISA::Inst_VOP3__V_MAC_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_I16::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_I32_I24::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_I64_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_U16::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_U32_U24::execute(), gem5::VegaISA::Inst_VOP3__V_MAD_U64_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX3_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX3_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX3_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_F64::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_I16::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_U16::execute(), gem5::VegaISA::Inst_VOP3__V_MAX_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MBCNT_HI_U32_B32::execute(), gem5::VegaISA::Inst_VOP3__V_MBCNT_LO_U32_B32::execute(), gem5::VegaISA::Inst_VOP3__V_MED3_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MED3_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MED3_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN3_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN3_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN3_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_F64::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_I16::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_U16::execute(), gem5::VegaISA::Inst_VOP3__V_MIN_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MOV_B32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_F64::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_HI_I32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_HI_I32_I24::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_HI_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_HI_U32_U24::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_I32_I24::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_LEGACY_F32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_LO_U16::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_LO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_MUL_U32_U24::execute(), gem5::VegaISA::Inst_VOP3__V_NOT_B32::execute(), gem5::VegaISA::Inst_VOP3__V_OR3_B32::execute(), gem5::VegaISA::Inst_VOP3__V_OR_B32::execute(), gem5::VegaISA::Inst_VOP3__V_PERM_B32::execute(), gem5::VegaISA::Inst_VOP3__V_RCP_F32::execute(), gem5::VegaISA::Inst_VOP3__V_RCP_F64::execute(), gem5::VegaISA::Inst_VOP3__V_RCP_IFLAG_F32::execute(), gem5::VegaISA::Inst_VOP3__V_RNDNE_F32::execute(), gem5::VegaISA::Inst_VOP3__V_RNDNE_F64::execute(), gem5::VegaISA::Inst_VOP3__V_RSQ_F32::execute(), gem5::VegaISA::Inst_VOP3__V_RSQ_F64::execute(), gem5::VegaISA::Inst_VOP3__V_SAD_HI_U8::execute(), gem5::VegaISA::Inst_VOP3__V_SAD_U16::execute(), gem5::VegaISA::Inst_VOP3__V_SAD_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SAD_U8::execute(), gem5::VegaISA::Inst_VOP3__V_SIN_F32::execute(), gem5::VegaISA::Inst_VOP3__V_SQRT_F32::execute(), gem5::VegaISA::Inst_VOP3__V_SQRT_F64::execute(), gem5::VegaISA::Inst_VOP3__V_SUB_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SUB_F32::execute(), gem5::VegaISA::Inst_VOP3__V_SUB_U16::execute(), gem5::VegaISA::Inst_VOP3__V_SUB_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SUBB_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SUBBREV_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SUBREV_CO_U32::execute(), gem5::VegaISA::Inst_VOP3__V_SUBREV_F32::execute(), gem5::VegaISA::Inst_VOP3__V_SUBREV_U16::execute(), gem5::VegaISA::Inst_VOP3__V_SUBREV_U32::execute(), gem5::VegaISA::Inst_VOP3__V_TRUNC_F32::execute(), gem5::VegaISA::Inst_VOP3__V_TRUNC_F64::execute(), gem5::VegaISA::Inst_VOP3__V_XAD_U32::execute(), gem5::VegaISA::Inst_VOP3__V_XOR_B32::execute(), gem5::VegaISA::Inst_VOP3P__V_ACCVGPR_READ::execute(), gem5::VegaISA::Inst_VOP3P__V_ACCVGPR_WRITE::execute(), gem5::VegaISA::Inst_VOP3P__V_PK_ADD_F32::execute(), gem5::VegaISA::Inst_VOP3P__V_PK_FMA_F32::execute(), gem5::VegaISA::Inst_VOP3P__V_PK_MOV_B32::execute(), gem5::VegaISA::Inst_VOP3P__V_PK_MUL_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_CLASS_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_CLASS_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_EQ_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_F_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_GT_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LG_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LG_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_LT_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NEQ_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NEQ_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NGE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NGE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NGT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NGT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLG_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLG_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_NLT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_O_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_O_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_T_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_TRU_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_TRU_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_U_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMP_U_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_CLASS_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_CLASS_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_EQ_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_F_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_GT_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LG_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LG_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_LT_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NE_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NEQ_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NEQ_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NGE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NGE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NGT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NGT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLE_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLE_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLG_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLG_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLT_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_NLT_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_O_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_O_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_I16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_I32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_I64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_U16::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_U32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_T_U64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_TRU_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_TRU_F64::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_U_F32::execute(), gem5::VegaISA::Inst_VOPC__V_CMPX_U_F64::execute(), gem5::VectorRegisterFile::printReg(), gem5::VegaISA::Inst_VOP2::sdwaDstHelper(), gem5::VegaISA::Inst_VOP3P::vop3pHelper(), gem5::VegaISA::Inst_VOP3P::vop3pHelper(), gem5::VegaISA::ScalarOperand< DataType, Const, NumDwords >::write(), and gem5::VegaISA::VecOperand< DataType, Const, NumDwords >::write().
bool gem5::Wavefront::execMask | ( | int | lane | ) | const |
Definition at line 1457 of file wavefront.cc.
References _execMask.
void gem5::Wavefront::freeRegisterFile | ( | ) |
Freeing VRF space.
Definition at line 1463 of file wavefront.cc.
References computeUnit, gem5::ArmISA::i, gem5::RegisterManager::mapVgpr(), maxVgprs, gem5::ComputeUnit::registerManager, reservedVectorRegs, simdId, startVgprIndex, gem5::ComputeUnit::vrf, and gem5::RegisterManager::vrfPoolMgrs.
void gem5::Wavefront::freeResources | ( | ) |
Definition at line 796 of file wavefront.cc.
References execUnitId.
Referenced by gem5::ExecStage::exec().
|
inline |
Definition at line 141 of file wavefront.hh.
References status.
Referenced by gem5::FetchUnit::exec(), gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), and gem5::ComputeUnit::releaseWFsFromBarrier().
|
inline |
Definition at line 296 of file wavefront.hh.
References _gpuISA.
bool gem5::Wavefront::hasBarrier | ( | ) | const |
Definition at line 1504 of file wavefront.cc.
References barId, and gem5::WFBarrier::InvalidID.
Referenced by gem5::ScheduleStage::addToSchList(), gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), and gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute().
void gem5::Wavefront::incExpInstsIssued | ( | ) |
Definition at line 1409 of file wavefront.cc.
References expInstsIssued.
Referenced by gem5::ScheduleStage::exec().
void gem5::Wavefront::incLGKMInstsIssued | ( | ) |
Definition at line 1415 of file wavefront.cc.
References lgkmInstsIssued.
Referenced by gem5::ScheduleStage::exec().
void gem5::Wavefront::incVMemInstsIssued | ( | ) |
Definition at line 1403 of file wavefront.cc.
References vmemInstsIssued.
Referenced by gem5::ScheduleStage::exec().
|
virtual |
init() is called after all C++ SimObjects have been created and all ports are connected.
Initializations that are independent of unserialization but rely on a fully instantiated and connected SimObject graph should be done here.
Reimplemented from gem5::SimObject.
Definition at line 103 of file wavefront.cc.
References computeUnit, globalMem, localMem, gem5::ComputeUnit::mapWaveToGlobalMem(), gem5::ComputeUnit::mapWaveToLocalMem(), gem5::ComputeUnit::mapWaveToScalarAlu(), gem5::ComputeUnit::mapWaveToScalarAluGlobalIdx(), gem5::ComputeUnit::mapWaveToScalarMem(), reservedScalarRegs, reservedVectorRegs, scalarAlu, scalarAluGlobalIdx, scalarMem, startSgprIndex, and startVgprIndex.
void gem5::Wavefront::initRegState | ( | HSAQueueEntry * | task, |
int | wgSizeInWorkItems ) |
Since flat scratch init is needed for this kernel, this kernel is going to have flat memory instructions and we need to initialize the hidden private base for this queue. scratch_resource_descriptor[0] has this queue's scratch base address. scratch_backing_memory_location has the offset to this queue's scratch base address from the SH_HIDDEN_PRIVATE_BASE_VMID. Ideally, we only require this queue's scratch base address for address calculation (stored in scratch_resource_descriptor[0]). But that address calculation shoule be done by first finding the queue's scratch base address using the calculation "SH_HIDDEN_PRIVATE_BASE_VMID + offset". So, we initialize SH_HIDDEN_PRIVATE_BASE_VMID.
For more details see: http://rocm-documentation.readthedocs.io/en/latest/ ROCm_Compiler_SDK/ROCm-Native-ISA.html#flat-scratch
https://github.com/ROCm-Developer-Tools/ ROCm-ComputeABI-Doc/blob/master/AMDGPU-ABI.md #flat-addressing
the compute_tmpring_size_wavesize specifies the number of kB allocated per wavefront, hence the multiplication by 1024.
to get the per wavefront offset into the scratch memory, we also multiply this by the wfId. the wfId stored in the Wavefront class, however, is the wave ID within the WG, whereas here we need the global WFID because the scratch space will be divided amongst all waves in the kernel. to get the global ID we multiply the WGID by the WG size, then add the WFID of the wave within its WG.
Definition at line 118 of file wavefront.cc.
References gem5::HSAQueueEntry::accumOffset(), accumOffset, gem5::HSAQueueEntry::amdQueue, archFlatScratchAddr, gem5::bits(), gem5::_amd_queue_t::compute_tmpring_size_wavesize, computeUnit, gem5::ComputeUnit::cu_id, gem5::DispatchId, gem5::HSAQueueEntry::dispatchId(), gem5::DispatchPtr, gem5::divCeil(), DPRINTF, fatal, gem5::FlatScratchInit, gem5::HSAQueueEntry::gfxVersion(), gfxVersion, gem5::HSAQueueEntry::hostAMDQueueAddr, gem5::HSAQueueEntry::hostDispPktAddr(), gem5::Shader::initShHiddenPrivateBase(), gem5::HSAQueueEntry::kernargAddr(), gem5::KernargSegPtr, gem5::RegisterManager::mapSgpr(), gem5::RegisterManager::mapVgpr(), gem5::NumScalarInitFields, gem5::NumVectorInitFields, gem5::PrivateSegBuf, gem5::PrivateSegSize, gem5::HSAQueueEntry::privMemPerItem(), gem5::PrivSegWaveByteOffset, gem5::QueuePtr, rawDist, gem5::ComputeUnit::registerManager, gem5::_amd_queue_t::scratch_backing_memory_location, gem5::_amd_queue_t::scratch_resource_descriptor, gem5::_amd_queue_t::scratch_workitem_byte_size, gem5::HSAQueueEntry::sgprBitEnabled(), gem5::ComputeUnit::shader, simdId, gem5::ComputeUnit::srf, gem5::HSAQueueEntry::vgprBitEnabled(), gem5::ComputeUnit::vrf, wfDynId, wfId, gem5::ComputeUnit::wfSize(), wfSlotId, wgId, wgSz, workGroupId, gem5::WorkgroupIdX, gem5::WorkgroupIdY, gem5::WorkgroupIdZ, gem5::WorkgroupInfo, workItemId, gem5::WorkitemIdX, gem5::WorkitemIdY, and gem5::WorkitemIdZ.
bool gem5::Wavefront::isGmInstruction | ( | GPUDynInstPtr | ii | ) |
Definition at line 621 of file wavefront.cc.
Referenced by exec().
bool gem5::Wavefront::isLmInstruction | ( | GPUDynInstPtr | ii | ) |
Definition at line 632 of file wavefront.cc.
Referenced by exec().
bool gem5::Wavefront::isOldestInstBarrier | ( | ) |
Definition at line 704 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
Referenced by gem5::ScheduleStage::addToSchList().
bool gem5::Wavefront::isOldestInstFlatMem | ( | ) |
Definition at line 769 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstGMem | ( | ) |
Definition at line 717 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstLMem | ( | ) |
Definition at line 743 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstPrivMem | ( | ) |
Definition at line 756 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstScalarALU | ( | ) |
Definition at line 674 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstScalarMem | ( | ) |
Definition at line 730 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstSleep | ( | ) |
Definition at line 643 of file wavefront.cc.
References instructionBuffer.
Referenced by gem5::ScheduleStage::addToSchList().
bool gem5::Wavefront::isOldestInstVectorALU | ( | ) |
Definition at line 689 of file wavefront.cc.
References instructionBuffer, S_STOPPED, and status.
bool gem5::Wavefront::isOldestInstWaitcnt | ( | ) |
Definition at line 657 of file wavefront.cc.
References instructionBuffer.
Referenced by gem5::ScheduleStage::addToSchList(), and exec().
GPUDynInstPtr gem5::Wavefront::nextInstr | ( | ) |
Definition at line 1243 of file wavefront.cc.
References computeUnit, instructionBuffer, and gem5::ComputeUnit::pipeMap.
Referenced by gem5::ScoreboardCheckStage::exec().
Addr gem5::Wavefront::pc | ( | ) | const |
Definition at line 1439 of file wavefront.cc.
References _pc.
Referenced by gem5::VegaISA::GPUISA::advancePC(), exec(), gem5::VegaISA::Inst_SOP1__S_SETPC_B64::execute(), gem5::VegaISA::Inst_SOP1__S_SWAPPC_B64::execute(), gem5::VegaISA::Inst_SOPP__S_BRANCH::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_EXECNZ::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_EXECZ::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_SCC0::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_SCC1::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_VCCNZ::execute(), gem5::VegaISA::Inst_SOPP__S_CBRANCH_VCCZ::execute(), gem5::FetchUnit::initiateFetch(), gem5::GPUDynInst::pc(), and gem5::GPUDynInst::pc().
void gem5::Wavefront::pc | ( | Addr | new_pc | ) |
Definition at line 1445 of file wavefront.cc.
References _pc.
void gem5::Wavefront::releaseBarrier | ( | ) |
Definition at line 1510 of file wavefront.cc.
References barId, and gem5::WFBarrier::InvalidID.
Referenced by gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute().
|
private |
Definition at line 815 of file wavefront.cc.
References execUnitId, globalMem, panic, rdGmReqsInPipe, scalarMem, scalarRdGmReqsInPipe, scalarWrGmReqsInPipe, and wrGmReqsInPipe.
Referenced by reserveResources().
|
private |
Definition at line 845 of file wavefront.cc.
References execUnitId, fatal_if, localMem, panic, rdLmReqsInPipe, and wrLmReqsInPipe.
Referenced by reserveResources().
std::vector< int > gem5::Wavefront::reserveResources | ( | ) |
Definition at line 863 of file wavefront.cc.
References execUnitId, fatal_if, flatGmUnitId, flatLmUnitId, instructionBuffer, panic, reserveGmResource(), reserveLmResource(), scalarAluGlobalIdx, and simdId.
Referenced by gem5::ScheduleStage::reserveResources().
void gem5::Wavefront::resizeRegFiles | ( | int | num_vregs, |
int | num_sregs ) |
Definition at line 562 of file wavefront.cc.
|
inline |
Definition at line 257 of file wavefront.hh.
References computeUnit.
void gem5::Wavefront::setSleepTime | ( | int | sleep_time | ) |
Definition at line 1337 of file wavefront.cc.
References sleepCnt.
void gem5::Wavefront::setStatus | ( | status_e | newStatus | ) |
Definition at line 573 of file wavefront.cc.
References computeUnit, gem5::ComputeUnit::cu_id, gem5::curTick(), gem5::ComputeUnit::idleCUTimeout, gem5::ComputeUnit::idleWfs, lastNonIdleTick, gem5::Shader::n_wf, gem5::ComputeUnit::numVectorALUs, panic_if, S_BARRIER, S_STALLED, S_STOPPED, S_WAITCNT, gem5::ComputeUnit::shader, and status.
Referenced by gem5::ScheduleStage::addToSchList(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), and gem5::ComputeUnit::releaseWFsFromBarrier().
void gem5::Wavefront::setWaitCnts | ( | int | vm_wait_cnt, |
int | exp_wait_cnt, | ||
int | lgkm_wait_cnt ) |
prior waitcnts should be satisfied, at which time the WF resets them back to -1, indicating they are no longer active
if the instruction encoding indicates a waitcnt of 0xf, that means the waitcnt is not being used
Definition at line 1344 of file wavefront.cc.
References expWaitCnt, lgkmWaitCnt, S_WAITCNT, status, and vmWaitCnt.
bool gem5::Wavefront::sleepDone | ( | ) |
Definition at line 1318 of file wavefront.cc.
References S_RUNNING, S_STALLED_SLEEP, sleepCnt, and status.
void gem5::Wavefront::start | ( | uint64_t | _wfDynId, |
uint64_t | _base_ptr ) |
Definition at line 610 of file wavefront.cc.
References _pc, gem5::init_pc(), maxVgprs, S_RUNNING, status, vecReads, and wfDynId.
bool gem5::Wavefront::stopFetch | ( | ) |
Definition at line 782 of file wavefront.cc.
References instructionBuffer.
Referenced by gem5::FetchUnit::exec().
void gem5::Wavefront::validateRequestCounters | ( | ) |
Definition at line 801 of file wavefront.cc.
References outstandingReqs, panic_if, rdGmReqsInPipe, rdLmReqsInPipe, simdId, wfDynId, wfSlotId, wrGmReqsInPipe, and wrLmReqsInPipe.
Referenced by gem5::GlobalMemPipeline::issueRequest(), gem5::LocalMemPipeline::issueRequest(), and gem5::ScalarMemPipeline::issueRequest().
bool gem5::Wavefront::waitCntsSatisfied | ( | ) |
If we reach here, that means an s_waitcnt instruction was executed and the waitcnts are set by the execute method. Check if waitcnts are satisfied.
Definition at line 1275 of file wavefront.cc.
References clearWaitCnts(), expInstsIssued, expWaitCnt, lgkmInstsIssued, lgkmWaitCnt, vmemInstsIssued, and vmWaitCnt.
|
private |
Definition at line 337 of file wavefront.hh.
Referenced by execMask(), execMask(), and Wavefront().
|
private |
Definition at line 307 of file wavefront.hh.
|
private |
Definition at line 336 of file wavefront.hh.
uint32_t gem5::Wavefront::accumOffset |
Definition at line 137 of file wavefront.hh.
Referenced by gem5::VegaISA::Inst_VOP1__V_ACCVGPR_MOV_B32::execute(), gem5::VegaISA::Inst_VOP3P__V_ACCVGPR_READ::execute(), gem5::VegaISA::Inst_VOP3P__V_ACCVGPR_WRITE::execute(), and initRegState().
uint32_t gem5::Wavefront::actualWgSz[3] |
Definition at line 167 of file wavefront.hh.
Referenced by computeActualWgSz().
uint32_t gem5::Wavefront::actualWgSzTotal |
Definition at line 168 of file wavefront.hh.
Referenced by computeActualWgSz().
Addr gem5::Wavefront::archFlatScratchAddr = 0 |
Definition at line 209 of file wavefront.hh.
Referenced by initRegState(), and gem5::GPUDynInst::resolveFlatSegment().
|
private |
Definition at line 338 of file wavefront.hh.
Referenced by barrierId(), barrierId(), hasBarrier(), and releaseBarrier().
ComputeUnit* gem5::Wavefront::computeUnit |
Definition at line 108 of file wavefront.hh.
Referenced by discardFetch(), gem5::GlobalMemPipeline::exec(), gem5::LocalMemPipeline::exec(), gem5::ScalarMemPipeline::exec(), exec(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_SWIZZLE_B32::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), freeRegisterFile(), init(), initRegState(), nextInstr(), gem5::GPUDispatcher::notifyWgCompl(), gem5::GPUDynInst::resolveFlatSegment(), setParent(), and setStatus().
uint8_t* gem5::Wavefront::context |
Definition at line 249 of file wavefront.hh.
uint32_t gem5::Wavefront::dispatchId |
Definition at line 173 of file wavefront.hh.
Referenced by gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute().
bool gem5::Wavefront::dropFetch |
Definition at line 114 of file wavefront.hh.
Referenced by discardFetch(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::FetchUnit::fetch(), gem5::FetchUnit::processFetchReturn(), gem5::ComputeUnit::ITLBPort::recvTimingResp(), and Wavefront().
int gem5::Wavefront::execUnitId |
Definition at line 104 of file wavefront.hh.
Referenced by gem5::VegaISA::Inst_FLAT::atomicExecute(), gem5::VegaISA::Inst_DS__DS_ADD_F32::execute(), gem5::VegaISA::Inst_DS__DS_ADD_U32::execute(), gem5::VegaISA::Inst_DS__DS_ADD_U64::execute(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_OR_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ2ST64_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ2ST64_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ_B128::execute(), gem5::VegaISA::Inst_DS__DS_READ_B32::execute(), gem5::VegaISA::Inst_DS__DS_READ_B64::execute(), gem5::VegaISA::Inst_DS__DS_READ_B96::execute(), gem5::VegaISA::Inst_DS__DS_READ_I8::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16_D16::execute(), gem5::VegaISA::Inst_DS__DS_READ_U16_D16_HI::execute(), gem5::VegaISA::Inst_DS__DS_READ_U8::execute(), gem5::VegaISA::Inst_DS__DS_SWIZZLE_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2ST64_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE2ST64_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B128::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B16::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B32::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B64::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B8::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B8_D16_HI::execute(), gem5::VegaISA::Inst_DS__DS_WRITE_B96::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_SBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_UBYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_LOAD_USHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_BYTE::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORD::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT::execute(), gem5::VegaISA::Inst_FLAT__FLAT_STORE_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_ATOMIC_CMPSWAP::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORD::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX3::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_SHORT_D16::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_SHORT_D16_HI::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_UBYTE::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_LOAD_USHORT::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_BYTE::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORD::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX3::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_STORE_SHORT::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_WBINVL1::execute(), gem5::VegaISA::Inst_MUBUF__BUFFER_WBINVL1_VOL::execute(), gem5::VegaISA::Inst_SMEM__S_BUFFER_LOAD_DWORD::execute(), gem5::VegaISA::Inst_SMEM__S_BUFFER_LOAD_DWORDX16::execute(), gem5::VegaISA::Inst_SMEM__S_BUFFER_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_SMEM__S_BUFFER_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_SMEM__S_BUFFER_LOAD_DWORDX8::execute(), gem5::VegaISA::Inst_SMEM__S_LOAD_DWORD::execute(), gem5::VegaISA::Inst_SMEM__S_LOAD_DWORDX16::execute(), gem5::VegaISA::Inst_SMEM__S_LOAD_DWORDX2::execute(), gem5::VegaISA::Inst_SMEM__S_LOAD_DWORDX4::execute(), gem5::VegaISA::Inst_SMEM__S_LOAD_DWORDX8::execute(), gem5::VegaISA::Inst_SMEM__S_STORE_DWORD::execute(), gem5::VegaISA::Inst_SMEM__S_STORE_DWORDX2::execute(), gem5::VegaISA::Inst_SMEM__S_STORE_DWORDX4::execute(), gem5::VegaISA::Inst_SOPP__S_ICACHE_INV::execute(), freeResources(), reserveGmResource(), reserveLmResource(), reserveResources(), gem5::GPUDynInst::resolveFlatSegment(), and Wavefront().
|
private |
Definition at line 332 of file wavefront.hh.
Referenced by decExpInstsIssued(), incExpInstsIssued(), and waitCntsSatisfied().
|
private |
Definition at line 329 of file wavefront.hh.
Referenced by clearWaitCnts(), setWaitCnts(), and waitCntsSatisfied().
int gem5::Wavefront::flatGmUnitId |
Definition at line 106 of file wavefront.hh.
Referenced by reserveResources(), and gem5::GPUDynInst::resolveFlatSegment().
int gem5::Wavefront::flatLmUnitId |
Definition at line 105 of file wavefront.hh.
Referenced by reserveResources(), and gem5::GPUDynInst::resolveFlatSegment().
GfxVersion gem5::Wavefront::gfxVersion |
Definition at line 96 of file wavefront.hh.
Referenced by initRegState().
int gem5::Wavefront::globalMem |
Definition at line 128 of file wavefront.hh.
Referenced by init(), reserveGmResource(), and gem5::ScheduleStage::reserveResources().
uint32_t gem5::Wavefront::gridSz[3] |
Definition at line 163 of file wavefront.hh.
Referenced by computeActualWgSz().
VectorMask gem5::Wavefront::initMask |
Definition at line 226 of file wavefront.hh.
std::deque<GPUDynInstPtr> gem5::Wavefront::instructionBuffer |
Definition at line 111 of file wavefront.hh.
Referenced by discardFetch(), gem5::ExecStage::dumpDispList(), gem5::ScheduleStage::exec(), exec(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), isOldestInstBarrier(), isOldestInstFlatMem(), isOldestInstGMem(), isOldestInstLMem(), isOldestInstPrivMem(), isOldestInstScalarALU(), isOldestInstScalarMem(), isOldestInstSleep(), isOldestInstVectorALU(), isOldestInstWaitcnt(), nextInstr(), gem5::FetchUnit::processFetchReturn(), gem5::ComputeUnit::ITLBPort::recvTimingResp(), reserveResources(), gem5::ScheduleStage::scheduleRfDestOperands(), and stopFetch().
int gem5::Wavefront::kernId |
Definition at line 99 of file wavefront.hh.
Referenced by gem5::GPUDynInst::GPUDynInst(), gem5::GPUDispatcher::isReachingKernelEnd(), and gem5::GPUDispatcher::notifyWgCompl().
std::vector<Addr> gem5::Wavefront::lastAddr |
Definition at line 157 of file wavefront.hh.
Referenced by Wavefront().
uint64_t gem5::Wavefront::lastInstExec |
Definition at line 236 of file wavefront.hh.
Referenced by exec(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), and Wavefront().
Tick gem5::Wavefront::lastNonIdleTick |
Definition at line 116 of file wavefront.hh.
Referenced by setStatus(), and Wavefront().
uint64_t gem5::Wavefront::lastTrace |
Definition at line 196 of file wavefront.hh.
Referenced by Wavefront().
LdsChunk* gem5::Wavefront::ldsChunk |
Definition at line 230 of file wavefront.hh.
Referenced by gem5::VegaISA::Inst_DS::initAtomicAccess(), gem5::VegaISA::Inst_FLAT::initAtomicAccess(), gem5::VegaISA::Inst_DS::initDualMemRead(), gem5::VegaISA::Inst_DS::initDualMemWrite(), gem5::VegaISA::Inst_DS::initMemRead(), gem5::VegaISA::Inst_FLAT::initMemRead(), gem5::VegaISA::Inst_DS::initMemWrite(), gem5::VegaISA::Inst_FLAT::initMemWrite(), and Wavefront().
|
private |
Definition at line 333 of file wavefront.hh.
Referenced by decLGKMInstsIssued(), incLGKMInstsIssued(), and waitCntsSatisfied().
|
private |
Definition at line 330 of file wavefront.hh.
Referenced by clearWaitCnts(), setWaitCnts(), and waitCntsSatisfied().
int gem5::Wavefront::localMem |
Definition at line 129 of file wavefront.hh.
Referenced by gem5::ScheduleStage::arbitrateVrfToLdsBus(), init(), reserveLmResource(), gem5::ScheduleStage::reserveResources(), and gem5::ScheduleStage::scheduleRfDestOperands().
uint32_t gem5::Wavefront::maxDynWaveId |
Definition at line 172 of file wavefront.hh.
int gem5::Wavefront::maxIbSize |
Definition at line 109 of file wavefront.hh.
Referenced by gem5::FetchUnit::FetchBufDesc::allocateBuf().
uint32_t gem5::Wavefront::maxSgprs |
Definition at line 135 of file wavefront.hh.
Referenced by resizeRegFiles(), gem5::GPUDynInst::resolveFlatSegment(), and Wavefront().
uint32_t gem5::Wavefront::maxVgprs |
Definition at line 133 of file wavefront.hh.
Referenced by freeRegisterFile(), resizeRegFiles(), start(), and Wavefront().
int gem5::Wavefront::memTraceBusy |
Definition at line 195 of file wavefront.hh.
Referenced by Wavefront().
std::vector<uint64_t> gem5::Wavefront::oldDgpr |
Definition at line 219 of file wavefront.hh.
Referenced by Wavefront().
uint32_t gem5::Wavefront::oldDgprId |
Definition at line 221 of file wavefront.hh.
uint64_t gem5::Wavefront::oldDgprTcnt |
Definition at line 223 of file wavefront.hh.
Referenced by Wavefront().
std::vector<uint32_t> gem5::Wavefront::oldVgpr |
Definition at line 212 of file wavefront.hh.
Referenced by Wavefront().
uint32_t gem5::Wavefront::oldVgprId |
Definition at line 214 of file wavefront.hh.
uint64_t gem5::Wavefront::oldVgprTcnt |
Definition at line 216 of file wavefront.hh.
Referenced by Wavefront().
int gem5::Wavefront::outstandingReqs |
Definition at line 175 of file wavefront.hh.
Referenced by gem5::GlobalMemPipeline::issueRequest(), gem5::LocalMemPipeline::issueRequest(), gem5::ScalarMemPipeline::issueRequest(), validateRequestCounters(), and Wavefront().
int gem5::Wavefront::outstandingReqsRdGm |
Definition at line 181 of file wavefront.hh.
Referenced by gem5::GlobalMemPipeline::issueRequest(), and Wavefront().
int gem5::Wavefront::outstandingReqsRdLm |
Definition at line 183 of file wavefront.hh.
Referenced by gem5::LocalMemPipeline::issueRequest(), and Wavefront().
int gem5::Wavefront::outstandingReqsWrGm |
Definition at line 177 of file wavefront.hh.
Referenced by gem5::GlobalMemPipeline::issueRequest(), and Wavefront().
int gem5::Wavefront::outstandingReqsWrLm |
Definition at line 179 of file wavefront.hh.
Referenced by gem5::LocalMemPipeline::issueRequest(), and Wavefront().
bool gem5::Wavefront::pendingFetch |
Definition at line 113 of file wavefront.hh.
Referenced by discardFetch(), gem5::FetchUnit::exec(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::FetchUnit::fetch(), gem5::FetchUnit::processFetchReturn(), gem5::ComputeUnit::ITLBPort::recvTimingResp(), and Wavefront().
std::unordered_map<int,uint64_t> gem5::Wavefront::rawDist |
Definition at line 240 of file wavefront.hh.
Referenced by exec(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), initRegState(), and Wavefront().
int gem5::Wavefront::rdGmReqsInPipe |
Definition at line 189 of file wavefront.hh.
Referenced by gem5::GlobalMemPipeline::issueRequest(), reserveGmResource(), gem5::GPUDynInst::resolveFlatSegment(), validateRequestCounters(), and Wavefront().
int gem5::Wavefront::rdLmReqsInPipe |
Definition at line 188 of file wavefront.hh.
Referenced by gem5::ScheduleStage::dispatchReady(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_SWIZZLE_B32::execute(), gem5::LocalMemPipeline::issueRequest(), reserveLmResource(), gem5::GPUDynInst::resolveFlatSegment(), validateRequestCounters(), and Wavefront().
int gem5::Wavefront::reservedScalarRegs |
Definition at line 200 of file wavefront.hh.
Referenced by gem5::GPUStaticInst::generateVirtToPhysMap(), init(), gem5::VegaISA::ScalarOperand< DataType, Const, NumDwords >::regIdx(), and Wavefront().
int gem5::Wavefront::reservedVectorRegs |
Definition at line 198 of file wavefront.hh.
Referenced by freeRegisterFile(), init(), and Wavefront().
int gem5::Wavefront::scalarAlu |
Definition at line 123 of file wavefront.hh.
Referenced by gem5::ScheduleStage::dispatchReady(), exec(), and init().
int gem5::Wavefront::scalarAluGlobalIdx |
Definition at line 127 of file wavefront.hh.
Referenced by init(), and reserveResources().
int gem5::Wavefront::scalarMem |
Definition at line 130 of file wavefront.hh.
Referenced by init(), and reserveGmResource().
int gem5::Wavefront::scalarOutstandingReqsRdGm |
Definition at line 185 of file wavefront.hh.
Referenced by gem5::ScalarMemPipeline::issueRequest(), and Wavefront().
int gem5::Wavefront::scalarOutstandingReqsWrGm |
Definition at line 187 of file wavefront.hh.
Referenced by gem5::ScalarMemPipeline::issueRequest(), and Wavefront().
int gem5::Wavefront::scalarRdGmReqsInPipe |
Definition at line 192 of file wavefront.hh.
Referenced by gem5::ScheduleStage::dispatchReady(), gem5::ScalarMemPipeline::issueRequest(), reserveGmResource(), and Wavefront().
int gem5::Wavefront::scalarWrGmReqsInPipe |
Definition at line 193 of file wavefront.hh.
Referenced by gem5::ScheduleStage::dispatchReady(), gem5::ScalarMemPipeline::issueRequest(), reserveGmResource(), and Wavefront().
const int gem5::Wavefront::simdId |
Definition at line 101 of file wavefront.hh.
Referenced by gem5::ScheduleStage::addToSchList(), gem5::ScheduleStage::checkRfOperandReadComplete(), discardFetch(), gem5::ScheduleStage::dispatchReady(), gem5::ExecStage::dumpDispList(), gem5::ExecStage::exec(), gem5::ScoreboardCheckStage::exec(), exec(), gem5::VegaISA::Inst_DS__DS_BPERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_PERMUTE_B32::execute(), gem5::VegaISA::Inst_DS__DS_SWIZZLE_B32::execute(), gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::FetchStage::fetch(), gem5::FetchUnit::fetch(), freeRegisterFile(), gem5::GPUDynInst::GPUDynInst(), gem5::FetchUnit::initiateFetch(), initRegState(), gem5::ScalarRegisterFile::printReg(), gem5::VectorRegisterFile::printReg(), gem5::FetchStage::processFetchReturn(), gem5::FetchUnit::processFetchReturn(), gem5::VegaISA::ScalarOperand< DataType, Const, NumDwords >::read(), gem5::VegaISA::VecOperand< DataType, Const, NumDwords >::read(), gem5::ComputeUnit::SQCPort::recvReqRetry(), gem5::ScheduleStage::reserveResources(), reserveResources(), gem5::ScheduleStage::schedRfWrites(), validateRequestCounters(), gem5::VegaISA::ScalarOperand< DataType, Const, NumDwords >::write(), and gem5::VegaISA::VecOperand< DataType, Const, NumDwords >::write().
|
private |
Definition at line 334 of file wavefront.hh.
Referenced by setSleepTime(), and sleepDone().
uint32_t gem5::Wavefront::startSgprIndex |
Definition at line 206 of file wavefront.hh.
Referenced by init(), and Wavefront().
uint32_t gem5::Wavefront::startVgprIndex |
Definition at line 203 of file wavefront.hh.
Referenced by freeRegisterFile(), init(), and Wavefront().
gem5::Wavefront::WavefrontStats gem5::Wavefront::stats |
|
private |
Definition at line 335 of file wavefront.hh.
Referenced by clearWaitCnts(), exec(), getStatus(), isOldestInstBarrier(), isOldestInstFlatMem(), isOldestInstGMem(), isOldestInstLMem(), isOldestInstPrivMem(), isOldestInstScalarALU(), isOldestInstScalarMem(), isOldestInstVectorALU(), setStatus(), setWaitCnts(), sleepDone(), start(), and Wavefront().
std::vector<int> gem5::Wavefront::vecReads |
Definition at line 244 of file wavefront.hh.
Referenced by exec(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), start(), and Wavefront().
|
private |
Definition at line 331 of file wavefront.hh.
Referenced by decVMemInstsIssued(), incVMemInstsIssued(), and waitCntsSatisfied().
|
private |
the following are used for waitcnt instructions vmWaitCnt: once set, we wait for the oustanding number of vector mem instructions to be at, or below vmWaitCnt.
expWaitCnt: once set, we wait for the outstanding number outstanding VM writes or EXP insts to be at, or below expWaitCnt.
lgkmWaitCnt: once set, we wait for the oustanding number of LDS, GDS, scalar memory, and message instructions to be at, or below lgkmCount. we currently do not support GDS/message ops.
Definition at line 328 of file wavefront.hh.
Referenced by clearWaitCnts(), setWaitCnts(), and waitCntsSatisfied().
uint64_t gem5::Wavefront::wfDynId |
Definition at line 233 of file wavefront.hh.
Referenced by gem5::OFSchedulingPolicy::__chooseWave(), gem5::ScheduleStage::addToSchList(), gem5::ScheduleStage::checkRfOperandReadComplete(), gem5::ExecStage::dumpDispList(), gem5::ExecStage::exec(), gem5::ScoreboardCheckStage::exec(), exec(), gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::GPUDynInst::GPUDynInst(), gem5::FetchUnit::initiateFetch(), initRegState(), gem5::ScalarRegisterFile::printReg(), gem5::VectorRegisterFile::printReg(), gem5::ScheduleStage::reserveResources(), start(), and validateRequestCounters().
uint32_t gem5::Wavefront::wfId |
Definition at line 171 of file wavefront.hh.
Referenced by initRegState().
const int gem5::Wavefront::wfSlotId |
Definition at line 98 of file wavefront.hh.
Referenced by discardFetch(), gem5::FetchUnit::exec(), exec(), gem5::VegaISA::Inst_SOPP__S_BARRIER::execute(), gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::FetchUnit::fetch(), gem5::GPUDynInst::GPUDynInst(), gem5::FetchUnit::init(), gem5::FetchUnit::initiateFetch(), initRegState(), gem5::ScalarRegisterFile::printReg(), gem5::VectorRegisterFile::printReg(), gem5::FetchUnit::processFetchReturn(), gem5::ComputeUnit::SQCPort::recvReqRetry(), and validateRequestCounters().
uint32_t gem5::Wavefront::wgId |
Definition at line 164 of file wavefront.hh.
Referenced by gem5::VegaISA::Inst_SOPP__S_ENDPGM::execute(), gem5::GPUDynInst::GPUDynInst(), initRegState(), and gem5::GPUDispatcher::notifyWgCompl().
uint32_t gem5::Wavefront::wgSz |
Definition at line 165 of file wavefront.hh.
Referenced by initRegState().
uint32_t gem5::Wavefront::workGroupId[3] |
Definition at line 161 of file wavefront.hh.
Referenced by initRegState().
uint32_t gem5::Wavefront::workGroupSz[3] |
Definition at line 162 of file wavefront.hh.
Referenced by computeActualWgSz().
std::vector<uint32_t> gem5::Wavefront::workItemFlatId |
Definition at line 159 of file wavefront.hh.
Referenced by Wavefront().
std::vector<uint32_t> gem5::Wavefront::workItemId[3] |
Definition at line 158 of file wavefront.hh.
Referenced by initRegState(), and Wavefront().
int gem5::Wavefront::wrGmReqsInPipe |
Definition at line 191 of file wavefront.hh.
Referenced by gem5::GlobalMemPipeline::issueRequest(), reserveGmResource(), gem5::GPUDynInst::resolveFlatSegment(), validateRequestCounters(), and Wavefront().
int gem5::Wavefront::wrLmReqsInPipe |
Definition at line 190 of file wavefront.hh.
Referenced by gem5::ScheduleStage::dispatchReady(), gem5::LocalMemPipeline::issueRequest(), reserveLmResource(), gem5::GPUDynInst::resolveFlatSegment(), validateRequestCounters(), and Wavefront().