gem5
v20.0.0.3
|
#include <gpu_dyn_inst.hh>
Public Types | |
typedef std::unordered_map< Addr, std::vector< int > > | StatusVector |
Public Member Functions | |
GPUDynInst (ComputeUnit *_cu, Wavefront *_wf, GPUStaticInst *static_inst, uint64_t instSeqNum) | |
~GPUDynInst () | |
void | execute (GPUDynInstPtr gpuDynInst) |
int | numSrcRegOperands () |
int | numDstRegOperands () |
int | getNumOperands () |
bool | isVectorRegister (int operandIdx) |
bool | isScalarRegister (int operandIdx) |
bool | isCondRegister (int operandIdx) |
int | getRegisterIndex (int operandIdx, GPUDynInstPtr gpuDynInst) |
int | getOperandSize (int operandIdx) |
bool | isDstOperand (int operandIdx) |
bool | isSrcOperand (int operandIdx) |
const std::string & | disassemble () const |
uint64_t | seqNum () const |
Enums::StorageClassType | executedAs () |
void | initiateAcc (GPUDynInstPtr gpuDynInst) |
void | completeAcc (GPUDynInstPtr gpuDynInst) |
void | updateStats () |
GPUStaticInst * | staticInstruction () |
bool | isALU () const |
accessor methods for the attributes of the underlying GPU static instruction More... | |
bool | isBranch () const |
bool | isNop () const |
bool | isReturn () const |
bool | isUnconditionalJump () const |
bool | isSpecialOp () const |
bool | isWaitcnt () const |
bool | isBarrier () const |
bool | isMemFence () const |
bool | isMemRef () const |
bool | isFlat () const |
bool | isLoad () const |
bool | isStore () const |
bool | isAtomic () const |
bool | isAtomicNoRet () const |
bool | isAtomicRet () const |
bool | isScalar () const |
bool | readsSCC () const |
bool | writesSCC () const |
bool | readsVCC () const |
bool | writesVCC () const |
bool | isAtomicAnd () const |
bool | isAtomicOr () const |
bool | isAtomicXor () const |
bool | isAtomicCAS () const |
bool | isAtomicExch () const |
bool | isAtomicAdd () const |
bool | isAtomicSub () const |
bool | isAtomicInc () const |
bool | isAtomicDec () const |
bool | isAtomicMax () const |
bool | isAtomicMin () const |
bool | isArgLoad () const |
bool | isGlobalMem () const |
bool | isLocalMem () const |
bool | isArgSeg () const |
bool | isGlobalSeg () const |
bool | isGroupSeg () const |
bool | isKernArgSeg () const |
bool | isPrivateSeg () const |
bool | isReadOnlySeg () const |
bool | isSpillSeg () const |
bool | isWorkitemScope () const |
bool | isWavefrontScope () const |
bool | isWorkgroupScope () const |
bool | isDeviceScope () const |
bool | isSystemScope () const |
bool | isNoScope () const |
bool | isRelaxedOrder () const |
bool | isAcquire () const |
bool | isRelease () const |
bool | isAcquireRelease () const |
bool | isNoOrder () const |
bool | isGloballyCoherent () const |
bool | isSystemCoherent () const |
template<typename c0 > | |
AtomicOpFunctorPtr | makeAtomicOpFunctor (c0 *reg0, c0 *reg1) |
void | setRequestFlags (RequestPtr req, bool setMemOrder=true) |
![]() | |
GPUExecContext (ComputeUnit *_cu, Wavefront *_wf) | |
Wavefront * | wavefront () |
ComputeUnit * | computeUnit () |
RegVal | readMiscReg (int opIdx) const |
void | writeMiscReg (int opIdx, RegVal operandVal) |
Public Attributes | |
std::vector< Addr > | addr |
Addr | pAddr |
uint8_t * | d_data |
uint8_t * | a_data |
uint8_t * | x_data |
VectorMask | exec_mask |
Enums::MemType | m_type |
int | equiv |
vgpr_type | v_type |
int | n_reg |
int | dst_reg |
int | dst_reg_vec [4] |
int | simdId |
int | wfDynId |
int | kern_id |
int | cu_id |
int | wfSlotId |
int | pipeId |
Tick | time |
WaitClass | latency |
uint32_t | bc [4] |
uint8_t * | rom |
int | sz_rom |
std::function< void(GPUStaticInst *, GPUDynInstPtr)> | execContinuation |
bool | useContinuation |
StatusVector | memStatusVector |
VectorMask | statusBitVector |
std::vector< int > | statusVector |
std::vector< int > | tlbHitLevel |
Private Attributes | |
GPUStaticInst * | _staticInst |
uint64_t | _seqNum |
Additional Inherited Members | |
![]() | |
ComputeUnit * | cu |
Wavefront * | wf |
TheGpuISA::GPUISA * | gpuISA |
Definition at line 85 of file gpu_dyn_inst.hh.
typedef std::unordered_map<Addr, std::vector<int> > GPUDynInst::StatusVector |
Definition at line 345 of file gpu_dyn_inst.hh.
GPUDynInst::GPUDynInst | ( | ComputeUnit * | _cu, |
Wavefront * | _wf, | ||
GPUStaticInst * | static_inst, | ||
uint64_t | instSeqNum | ||
) |
Definition at line 41 of file gpu_dyn_inst.cc.
References a_data, GPUExecContext::computeUnit(), d_data, ArmISA::i, tlbHitLevel, ComputeUnit::wfSize(), and x_data.
GPUDynInst::~GPUDynInst | ( | ) |
Definition at line 60 of file gpu_dyn_inst.cc.
void GPUDynInst::completeAcc | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 163 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::completeAcc().
const std::string & GPUDynInst::disassemble | ( | ) | const |
Definition at line 134 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::disassemble().
void GPUDynInst::execute | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 68 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::execute().
Enums::StorageClassType GPUDynInst::executedAs | ( | ) |
Definition at line 146 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::executed_as.
int GPUDynInst::getNumOperands | ( | ) |
Definition at line 86 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getNumOperands().
int GPUDynInst::getOperandSize | ( | int | operandIdx | ) |
Definition at line 116 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getOperandSize().
int GPUDynInst::getRegisterIndex | ( | int | operandIdx, |
GPUDynInstPtr | gpuDynInst | ||
) |
Definition at line 110 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getRegisterIndex().
void GPUDynInst::initiateAcc | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 153 of file gpu_dyn_inst.cc.
References _staticInst, GPUExecContext::cu, ComputeUnit::cu_id, DPRINTF, exec_mask, GPUStaticInst::initiateAcc(), simdId, time, and wfSlotId.
bool GPUDynInst::isAcquire | ( | ) | const |
Definition at line 466 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAcquire().
bool GPUDynInst::isAcquireRelease | ( | ) | const |
Definition at line 478 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAcquireRelease().
bool GPUDynInst::isALU | ( | ) | const |
accessor methods for the attributes of the underlying GPU static instruction
Definition at line 173 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isALU().
bool GPUDynInst::isArgLoad | ( | ) | const |
Definition at line 364 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isArgLoad().
bool GPUDynInst::isArgSeg | ( | ) | const |
Definition at line 382 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isArgSeg().
bool GPUDynInst::isAtomic | ( | ) | const |
Definition at line 251 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomic().
bool GPUDynInst::isAtomicAdd | ( | ) | const |
Definition at line 328 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicAdd().
bool GPUDynInst::isAtomicAnd | ( | ) | const |
Definition at line 299 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicAnd().
bool GPUDynInst::isAtomicCAS | ( | ) | const |
Definition at line 317 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicCAS().
bool GPUDynInst::isAtomicDec | ( | ) | const |
Definition at line 346 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicDec().
bool GPUDynInst::isAtomicExch | ( | ) | const |
Definition at line 322 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicExch().
bool GPUDynInst::isAtomicInc | ( | ) | const |
Definition at line 340 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicInc().
bool GPUDynInst::isAtomicMax | ( | ) | const |
Definition at line 352 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicMax().
bool GPUDynInst::isAtomicMin | ( | ) | const |
Definition at line 358 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicMin().
bool GPUDynInst::isAtomicNoRet | ( | ) | const |
Definition at line 257 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicNoRet().
bool GPUDynInst::isAtomicOr | ( | ) | const |
Definition at line 305 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicOr().
bool GPUDynInst::isAtomicRet | ( | ) | const |
Definition at line 263 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicRet().
bool GPUDynInst::isAtomicSub | ( | ) | const |
Definition at line 334 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicSub().
bool GPUDynInst::isAtomicXor | ( | ) | const |
Definition at line 311 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicXor().
bool GPUDynInst::isBarrier | ( | ) | const |
Definition at line 215 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isBarrier().
bool GPUDynInst::isBranch | ( | ) | const |
Definition at line 179 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isBranch().
bool GPUDynInst::isCondRegister | ( | int | operandIdx | ) |
Definition at line 104 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isCondRegister().
bool GPUDynInst::isDeviceScope | ( | ) | const |
Definition at line 442 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isDeviceScope().
bool GPUDynInst::isDstOperand | ( | int | operandIdx | ) |
Definition at line 122 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isDstOperand().
bool GPUDynInst::isFlat | ( | ) | const |
Definition at line 233 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isFlat().
bool GPUDynInst::isGloballyCoherent | ( | ) | const |
Definition at line 490 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGloballyCoherent().
bool GPUDynInst::isGlobalMem | ( | ) | const |
Definition at line 370 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGlobalMem().
bool GPUDynInst::isGlobalSeg | ( | ) | const |
Definition at line 388 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGlobalSeg().
bool GPUDynInst::isGroupSeg | ( | ) | const |
Definition at line 394 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGroupSeg().
bool GPUDynInst::isKernArgSeg | ( | ) | const |
Definition at line 400 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isKernArgSeg().
bool GPUDynInst::isLoad | ( | ) | const |
Definition at line 239 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isLoad().
bool GPUDynInst::isLocalMem | ( | ) | const |
Definition at line 376 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isLocalMem().
bool GPUDynInst::isMemFence | ( | ) | const |
Definition at line 221 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isMemFence().
bool GPUDynInst::isMemRef | ( | ) | const |
Definition at line 227 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isMemRef().
bool GPUDynInst::isNoOrder | ( | ) | const |
Definition at line 484 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNoOrder().
bool GPUDynInst::isNop | ( | ) | const |
Definition at line 185 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNop().
bool GPUDynInst::isNoScope | ( | ) | const |
Definition at line 454 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNoScope().
bool GPUDynInst::isPrivateSeg | ( | ) | const |
Definition at line 406 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isPrivateSeg().
bool GPUDynInst::isReadOnlySeg | ( | ) | const |
Definition at line 412 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isReadOnlySeg().
bool GPUDynInst::isRelaxedOrder | ( | ) | const |
Definition at line 460 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isRelaxedOrder().
bool GPUDynInst::isRelease | ( | ) | const |
Definition at line 472 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isRelease().
bool GPUDynInst::isReturn | ( | ) | const |
Definition at line 191 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isReturn().
bool GPUDynInst::isScalar | ( | ) | const |
Definition at line 269 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isScalar().
bool GPUDynInst::isScalarRegister | ( | int | operandIdx | ) |
Definition at line 98 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isScalarRegister().
bool GPUDynInst::isSpecialOp | ( | ) | const |
Definition at line 203 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSpecialOp().
bool GPUDynInst::isSpillSeg | ( | ) | const |
Definition at line 418 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSpillSeg().
bool GPUDynInst::isSrcOperand | ( | int | operandIdx | ) |
Definition at line 128 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSrcOperand().
bool GPUDynInst::isStore | ( | ) | const |
Definition at line 245 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isStore().
bool GPUDynInst::isSystemCoherent | ( | ) | const |
Definition at line 496 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSystemCoherent().
bool GPUDynInst::isSystemScope | ( | ) | const |
Definition at line 448 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSystemScope().
bool GPUDynInst::isUnconditionalJump | ( | ) | const |
Definition at line 197 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isUnconditionalJump().
bool GPUDynInst::isVectorRegister | ( | int | operandIdx | ) |
Definition at line 92 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isVectorRegister().
bool GPUDynInst::isWaitcnt | ( | ) | const |
Definition at line 209 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWaitcnt().
bool GPUDynInst::isWavefrontScope | ( | ) | const |
Definition at line 430 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWavefrontScope().
bool GPUDynInst::isWorkgroupScope | ( | ) | const |
Definition at line 436 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWorkgroupScope().
bool GPUDynInst::isWorkitemScope | ( | ) | const |
Definition at line 424 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWorkitemScope().
|
inline |
Definition at line 255 of file gpu_dyn_inst.hh.
References fatal.
int GPUDynInst::numDstRegOperands | ( | ) |
Definition at line 80 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::numDstRegOperands().
int GPUDynInst::numSrcRegOperands | ( | ) |
Definition at line 74 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::numSrcRegOperands().
bool GPUDynInst::readsSCC | ( | ) | const |
Definition at line 275 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::readsSCC().
bool GPUDynInst::readsVCC | ( | ) | const |
Definition at line 287 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::readsVCC().
uint64_t GPUDynInst::seqNum | ( | ) | const |
Definition at line 140 of file gpu_dyn_inst.cc.
References _seqNum.
|
inline |
Definition at line 285 of file gpu_dyn_inst.hh.
References Request::ACQUIRE, Request::ATOMIC_NO_RETURN_OP, Request::ATOMIC_RETURN_OP, Request::DEVICE_SCOPE, fatal, Request::GLOBAL_SEGMENT, Request::GROUP_SEGMENT, panic, Request::PRIVATE_SEGMENT, Request::READONLY_SEGMENT, Request::RELEASE, Request::SCOPE_VALID, Request::SPILL_SEGMENT, Request::SYSTEM_SCOPE, Request::WAVEFRONT_SCOPE, and Request::WORKGROUP_SCOPE.
|
inline |
Definition at line 169 of file gpu_dyn_inst.hh.
void GPUDynInst::updateStats | ( | ) |
Definition at line 502 of file gpu_dyn_inst.cc.
References _staticInst, GPUExecContext::cu, ComputeUnit::dynamicGMemInstrCnt, ComputeUnit::dynamicLMemInstrCnt, GPUStaticInst::isLocalMem(), ComputeUnit::pageAccesses, ComputeUnit::pageDivergenceDist, ComputeUnit::pagesTouched, and Stats::DistBase< Derived, Stor >::sample().
bool GPUDynInst::writesSCC | ( | ) | const |
Definition at line 281 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::writesSCC().
bool GPUDynInst::writesVCC | ( | ) | const |
Definition at line 293 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::writesVCC().
|
private |
Definition at line 356 of file gpu_dyn_inst.hh.
Referenced by seqNum().
|
private |
Definition at line 355 of file gpu_dyn_inst.hh.
Referenced by completeAcc(), disassemble(), execute(), executedAs(), getNumOperands(), getOperandSize(), getRegisterIndex(), initiateAcc(), isAcquire(), isAcquireRelease(), isALU(), isArgLoad(), isArgSeg(), isAtomic(), isAtomicAdd(), isAtomicAnd(), isAtomicCAS(), isAtomicDec(), isAtomicExch(), isAtomicInc(), isAtomicMax(), isAtomicMin(), isAtomicNoRet(), isAtomicOr(), isAtomicRet(), isAtomicSub(), isAtomicXor(), isBarrier(), isBranch(), isCondRegister(), isDeviceScope(), isDstOperand(), isFlat(), isGloballyCoherent(), isGlobalMem(), isGlobalSeg(), isGroupSeg(), isKernArgSeg(), isLoad(), isLocalMem(), isMemFence(), isMemRef(), isNoOrder(), isNop(), isNoScope(), isPrivateSeg(), isReadOnlySeg(), isRelaxedOrder(), isRelease(), isReturn(), isScalar(), isScalarRegister(), isSpecialOp(), isSpillSeg(), isSrcOperand(), isStore(), isSystemCoherent(), isSystemScope(), isUnconditionalJump(), isVectorRegister(), isWaitcnt(), isWavefrontScope(), isWorkgroupScope(), isWorkitemScope(), numDstRegOperands(), numSrcRegOperands(), readsSCC(), readsVCC(), updateStats(), writesSCC(), and writesVCC().
uint8_t* GPUDynInst::a_data |
Definition at line 116 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().
std::vector<Addr> GPUDynInst::addr |
Definition at line 110 of file gpu_dyn_inst.hh.
uint32_t GPUDynInst::bc[4] |
Definition at line 152 of file gpu_dyn_inst.hh.
int GPUDynInst::cu_id |
Definition at line 142 of file gpu_dyn_inst.hh.
uint8_t* GPUDynInst::d_data |
Definition at line 114 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().
int GPUDynInst::dst_reg |
Definition at line 132 of file gpu_dyn_inst.hh.
int GPUDynInst::dst_reg_vec[4] |
Definition at line 134 of file gpu_dyn_inst.hh.
int GPUDynInst::equiv |
Definition at line 126 of file gpu_dyn_inst.hh.
VectorMask GPUDynInst::exec_mask |
Definition at line 120 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
std::function<void(GPUStaticInst*, GPUDynInstPtr)> GPUDynInst::execContinuation |
Definition at line 249 of file gpu_dyn_inst.hh.
int GPUDynInst::kern_id |
Definition at line 140 of file gpu_dyn_inst.hh.
WaitClass GPUDynInst::latency |
Definition at line 150 of file gpu_dyn_inst.hh.
Enums::MemType GPUDynInst::m_type |
Definition at line 123 of file gpu_dyn_inst.hh.
StatusVector GPUDynInst::memStatusVector |
Definition at line 346 of file gpu_dyn_inst.hh.
int GPUDynInst::n_reg |
Definition at line 130 of file gpu_dyn_inst.hh.
Addr GPUDynInst::pAddr |
Definition at line 111 of file gpu_dyn_inst.hh.
int GPUDynInst::pipeId |
Definition at line 146 of file gpu_dyn_inst.hh.
uint8_t* GPUDynInst::rom |
Definition at line 155 of file gpu_dyn_inst.hh.
int GPUDynInst::simdId |
Definition at line 136 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
VectorMask GPUDynInst::statusBitVector |
Definition at line 349 of file gpu_dyn_inst.hh.
std::vector<int> GPUDynInst::statusVector |
Definition at line 351 of file gpu_dyn_inst.hh.
int GPUDynInst::sz_rom |
Definition at line 157 of file gpu_dyn_inst.hh.
Tick GPUDynInst::time |
Definition at line 148 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
std::vector<int> GPUDynInst::tlbHitLevel |
Definition at line 352 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst().
bool GPUDynInst::useContinuation |
Definition at line 252 of file gpu_dyn_inst.hh.
vgpr_type GPUDynInst::v_type |
Definition at line 128 of file gpu_dyn_inst.hh.
int GPUDynInst::wfDynId |
Definition at line 138 of file gpu_dyn_inst.hh.
int GPUDynInst::wfSlotId |
Definition at line 144 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
uint8_t* GPUDynInst::x_data |
Definition at line 118 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().