gem5
v19.0.0.0
|
#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 > | |
AtomicOpFunctor * | 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 87 of file gpu_dyn_inst.hh.
typedef std::unordered_map<Addr, std::vector<int> > GPUDynInst::StatusVector |
Definition at line 347 of file gpu_dyn_inst.hh.
GPUDynInst::GPUDynInst | ( | ComputeUnit * | _cu, |
Wavefront * | _wf, | ||
GPUStaticInst * | static_inst, | ||
uint64_t | instSeqNum | ||
) |
Definition at line 43 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 62 of file gpu_dyn_inst.cc.
void GPUDynInst::completeAcc | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 165 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::completeAcc().
const std::string & GPUDynInst::disassemble | ( | ) | const |
Definition at line 136 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::disassemble().
void GPUDynInst::execute | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 70 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::execute().
Enums::StorageClassType GPUDynInst::executedAs | ( | ) |
Definition at line 148 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::executed_as.
int GPUDynInst::getNumOperands | ( | ) |
Definition at line 88 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getNumOperands().
int GPUDynInst::getOperandSize | ( | int | operandIdx | ) |
Definition at line 118 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getOperandSize().
int GPUDynInst::getRegisterIndex | ( | int | operandIdx, |
GPUDynInstPtr | gpuDynInst | ||
) |
Definition at line 112 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::getRegisterIndex().
void GPUDynInst::initiateAcc | ( | GPUDynInstPtr | gpuDynInst | ) |
Definition at line 155 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 468 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAcquire().
bool GPUDynInst::isAcquireRelease | ( | ) | const |
Definition at line 480 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 175 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isALU().
bool GPUDynInst::isArgLoad | ( | ) | const |
Definition at line 366 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isArgLoad().
bool GPUDynInst::isArgSeg | ( | ) | const |
Definition at line 384 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isArgSeg().
bool GPUDynInst::isAtomic | ( | ) | const |
Definition at line 253 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomic().
bool GPUDynInst::isAtomicAdd | ( | ) | const |
Definition at line 330 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicAdd().
bool GPUDynInst::isAtomicAnd | ( | ) | const |
Definition at line 301 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicAnd().
bool GPUDynInst::isAtomicCAS | ( | ) | const |
Definition at line 319 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicCAS().
bool GPUDynInst::isAtomicDec | ( | ) | const |
Definition at line 348 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicDec().
bool GPUDynInst::isAtomicExch | ( | ) | const |
Definition at line 324 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicExch().
bool GPUDynInst::isAtomicInc | ( | ) | const |
Definition at line 342 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicInc().
bool GPUDynInst::isAtomicMax | ( | ) | const |
Definition at line 354 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicMax().
bool GPUDynInst::isAtomicMin | ( | ) | const |
Definition at line 360 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicMin().
bool GPUDynInst::isAtomicNoRet | ( | ) | const |
Definition at line 259 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicNoRet().
bool GPUDynInst::isAtomicOr | ( | ) | const |
Definition at line 307 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicOr().
bool GPUDynInst::isAtomicRet | ( | ) | const |
Definition at line 265 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicRet().
bool GPUDynInst::isAtomicSub | ( | ) | const |
Definition at line 336 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicSub().
bool GPUDynInst::isAtomicXor | ( | ) | const |
Definition at line 313 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isAtomicXor().
bool GPUDynInst::isBarrier | ( | ) | const |
Definition at line 217 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isBarrier().
bool GPUDynInst::isBranch | ( | ) | const |
Definition at line 181 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isBranch().
bool GPUDynInst::isCondRegister | ( | int | operandIdx | ) |
Definition at line 106 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isCondRegister().
bool GPUDynInst::isDeviceScope | ( | ) | const |
Definition at line 444 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isDeviceScope().
bool GPUDynInst::isDstOperand | ( | int | operandIdx | ) |
Definition at line 124 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isDstOperand().
bool GPUDynInst::isFlat | ( | ) | const |
Definition at line 235 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isFlat().
bool GPUDynInst::isGloballyCoherent | ( | ) | const |
Definition at line 492 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGloballyCoherent().
bool GPUDynInst::isGlobalMem | ( | ) | const |
Definition at line 372 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGlobalMem().
bool GPUDynInst::isGlobalSeg | ( | ) | const |
Definition at line 390 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGlobalSeg().
bool GPUDynInst::isGroupSeg | ( | ) | const |
Definition at line 396 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isGroupSeg().
bool GPUDynInst::isKernArgSeg | ( | ) | const |
Definition at line 402 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isKernArgSeg().
bool GPUDynInst::isLoad | ( | ) | const |
Definition at line 241 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isLoad().
bool GPUDynInst::isLocalMem | ( | ) | const |
Definition at line 378 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isLocalMem().
bool GPUDynInst::isMemFence | ( | ) | const |
Definition at line 223 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isMemFence().
bool GPUDynInst::isMemRef | ( | ) | const |
Definition at line 229 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isMemRef().
bool GPUDynInst::isNoOrder | ( | ) | const |
Definition at line 486 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNoOrder().
bool GPUDynInst::isNop | ( | ) | const |
Definition at line 187 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNop().
bool GPUDynInst::isNoScope | ( | ) | const |
Definition at line 456 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isNoScope().
bool GPUDynInst::isPrivateSeg | ( | ) | const |
Definition at line 408 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isPrivateSeg().
bool GPUDynInst::isReadOnlySeg | ( | ) | const |
Definition at line 414 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isReadOnlySeg().
bool GPUDynInst::isRelaxedOrder | ( | ) | const |
Definition at line 462 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isRelaxedOrder().
bool GPUDynInst::isRelease | ( | ) | const |
Definition at line 474 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isRelease().
bool GPUDynInst::isReturn | ( | ) | const |
Definition at line 193 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isReturn().
bool GPUDynInst::isScalar | ( | ) | const |
Definition at line 271 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isScalar().
bool GPUDynInst::isScalarRegister | ( | int | operandIdx | ) |
Definition at line 100 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isScalarRegister().
bool GPUDynInst::isSpecialOp | ( | ) | const |
Definition at line 205 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSpecialOp().
bool GPUDynInst::isSpillSeg | ( | ) | const |
Definition at line 420 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSpillSeg().
bool GPUDynInst::isSrcOperand | ( | int | operandIdx | ) |
Definition at line 130 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSrcOperand().
bool GPUDynInst::isStore | ( | ) | const |
Definition at line 247 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isStore().
bool GPUDynInst::isSystemCoherent | ( | ) | const |
Definition at line 498 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSystemCoherent().
bool GPUDynInst::isSystemScope | ( | ) | const |
Definition at line 450 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isSystemScope().
bool GPUDynInst::isUnconditionalJump | ( | ) | const |
Definition at line 199 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isUnconditionalJump().
bool GPUDynInst::isVectorRegister | ( | int | operandIdx | ) |
Definition at line 94 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isVectorRegister().
bool GPUDynInst::isWaitcnt | ( | ) | const |
Definition at line 211 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWaitcnt().
bool GPUDynInst::isWavefrontScope | ( | ) | const |
Definition at line 432 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWavefrontScope().
bool GPUDynInst::isWorkgroupScope | ( | ) | const |
Definition at line 438 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWorkgroupScope().
bool GPUDynInst::isWorkitemScope | ( | ) | const |
Definition at line 426 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::isWorkitemScope().
|
inline |
Definition at line 257 of file gpu_dyn_inst.hh.
References fatal.
int GPUDynInst::numDstRegOperands | ( | ) |
Definition at line 82 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::numDstRegOperands().
int GPUDynInst::numSrcRegOperands | ( | ) |
Definition at line 76 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::numSrcRegOperands().
bool GPUDynInst::readsSCC | ( | ) | const |
Definition at line 277 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::readsSCC().
bool GPUDynInst::readsVCC | ( | ) | const |
Definition at line 289 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::readsVCC().
uint64_t GPUDynInst::seqNum | ( | ) | const |
Definition at line 142 of file gpu_dyn_inst.cc.
References _seqNum.
|
inline |
Definition at line 287 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 171 of file gpu_dyn_inst.hh.
void GPUDynInst::updateStats | ( | ) |
Definition at line 504 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 283 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::writesSCC().
bool GPUDynInst::writesVCC | ( | ) | const |
Definition at line 295 of file gpu_dyn_inst.cc.
References _staticInst, and GPUStaticInst::writesVCC().
|
private |
Definition at line 358 of file gpu_dyn_inst.hh.
Referenced by seqNum().
|
private |
Definition at line 357 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 118 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().
std::vector<Addr> GPUDynInst::addr |
Definition at line 112 of file gpu_dyn_inst.hh.
uint32_t GPUDynInst::bc[4] |
Definition at line 154 of file gpu_dyn_inst.hh.
int GPUDynInst::cu_id |
Definition at line 144 of file gpu_dyn_inst.hh.
uint8_t* GPUDynInst::d_data |
Definition at line 116 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().
int GPUDynInst::dst_reg |
Definition at line 134 of file gpu_dyn_inst.hh.
int GPUDynInst::dst_reg_vec[4] |
Definition at line 136 of file gpu_dyn_inst.hh.
int GPUDynInst::equiv |
Definition at line 128 of file gpu_dyn_inst.hh.
VectorMask GPUDynInst::exec_mask |
Definition at line 122 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
std::function<void(GPUStaticInst*, GPUDynInstPtr)> GPUDynInst::execContinuation |
Definition at line 251 of file gpu_dyn_inst.hh.
int GPUDynInst::kern_id |
Definition at line 142 of file gpu_dyn_inst.hh.
WaitClass GPUDynInst::latency |
Definition at line 152 of file gpu_dyn_inst.hh.
Enums::MemType GPUDynInst::m_type |
Definition at line 125 of file gpu_dyn_inst.hh.
StatusVector GPUDynInst::memStatusVector |
Definition at line 348 of file gpu_dyn_inst.hh.
int GPUDynInst::n_reg |
Definition at line 132 of file gpu_dyn_inst.hh.
Addr GPUDynInst::pAddr |
Definition at line 113 of file gpu_dyn_inst.hh.
int GPUDynInst::pipeId |
Definition at line 148 of file gpu_dyn_inst.hh.
uint8_t* GPUDynInst::rom |
Definition at line 157 of file gpu_dyn_inst.hh.
int GPUDynInst::simdId |
Definition at line 138 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
VectorMask GPUDynInst::statusBitVector |
Definition at line 351 of file gpu_dyn_inst.hh.
std::vector<int> GPUDynInst::statusVector |
Definition at line 353 of file gpu_dyn_inst.hh.
int GPUDynInst::sz_rom |
Definition at line 159 of file gpu_dyn_inst.hh.
Tick GPUDynInst::time |
Definition at line 150 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
std::vector<int> GPUDynInst::tlbHitLevel |
Definition at line 354 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst().
bool GPUDynInst::useContinuation |
Definition at line 254 of file gpu_dyn_inst.hh.
vgpr_type GPUDynInst::v_type |
Definition at line 130 of file gpu_dyn_inst.hh.
int GPUDynInst::wfDynId |
Definition at line 140 of file gpu_dyn_inst.hh.
int GPUDynInst::wfSlotId |
Definition at line 146 of file gpu_dyn_inst.hh.
Referenced by initiateAcc().
uint8_t* GPUDynInst::x_data |
Definition at line 120 of file gpu_dyn_inst.hh.
Referenced by GPUDynInst(), and ~GPUDynInst().