gpu-compute: add gpu_isa.hh to switch hdrs, add GPUISA to WF
authorTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:47:38 +0000 (22:47 -0400)
committerTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:47:38 +0000 (22:47 -0400)
commitd327cdba078e0956596513b518731e9ec730723f
tree0ad01f9fa3061d6846c019bd075103f55ad74689
parent98d8a7051d8caa9b5aebebe5bf16f9d731c34c0e
gpu-compute: add gpu_isa.hh to switch hdrs, add GPUISA to WF

the GPUISA class is meant to encapsulate any ISA-specific behavior - special
register accesses, isa-specific WF/kernel state, etc. - in a generic enough
way so that it may be used in ISA-agnostic code.

gpu-compute: use the GPUISA object to advance the PC

the GPU model treats the PC as a pointer to individual instruction objects -
which are store in a contiguous array - and not a byte address to be fetched
from the real memory system. this is ok for HSAIL because all instructions
are considered by the model to be the same size.

in machine ISA, however, instructions may be 32b or 64b, and branches are
calculated by advancing the PC by the number of words (4 byte chunks) it
needs to advance in the real instruction stream. because of this there is
a mismatch between the PC we use to index into the instruction array, and
the actual byte address PC the ISA expects. here we move the PC advance
calculation to the ISA so that differences in the instrucion sizes may be
accounted for in generic way.
src/arch/SConscript
src/arch/hsail/gpu_isa.hh [new file with mode: 0644]
src/gpu-compute/fetch_unit.cc
src/gpu-compute/gpu_exec_context.cc
src/gpu-compute/gpu_exec_context.hh
src/gpu-compute/wavefront.cc
src/gpu-compute/wavefront.hh