diff options
Diffstat (limited to 'src/gpu-compute/gpu_exec_context.hh')
-rw-r--r-- | src/gpu-compute/gpu_exec_context.hh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gpu-compute/gpu_exec_context.hh b/src/gpu-compute/gpu_exec_context.hh index a3deb9b8f..f7c021c0d 100644 --- a/src/gpu-compute/gpu_exec_context.hh +++ b/src/gpu-compute/gpu_exec_context.hh @@ -36,6 +36,9 @@ #ifndef __GPU_EXEC_CONTEXT_HH__ #define __GPU_EXEC_CONTEXT_HH__ +#include "arch/gpu_isa.hh" +#include "config/the_gpu_isa.hh" + class ComputeUnit; class Wavefront; @@ -46,9 +49,13 @@ class GPUExecContext Wavefront* wavefront(); ComputeUnit* computeUnit(); + TheGpuISA::MiscReg readMiscReg(int opIdx) const; + void writeMiscReg(int opIdx, TheGpuISA::MiscReg operandVal); + protected: ComputeUnit *cu; Wavefront *wf; + TheGpuISA::GPUISA &gpuISA; }; #endif // __GPU_EXEC_CONTEXT_HH__ |