gpu-compute, hsail: pass GPUDynInstPtr to getRegisterIndex()
authorTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:47:49 +0000 (22:47 -0400)
committerTony Gutierrez <anthony.gutierrez@amd.com>
Thu, 27 Oct 2016 02:47:49 +0000 (22:47 -0400)
commitb63eb1302b006682bd227a5e236f7b3b95e9b8e8
tree87d8422e6bbc7cd88e33d9408e2010c2bdd3c337
parentaa7364276f16bbe6aa300b43bc57ff1b73be42a7
gpu-compute, hsail: pass GPUDynInstPtr to getRegisterIndex()

for HSAIL an operand's indices into the register files may be calculated
trivially, because the operands are always read from a register file, or are
an immediate.

for machine ISA, however, an op selector may specify special registers, or
may specify special SGPRs with an alias op selector value. the location of
some of the special registers values are dependent on the size of the RF
in some cases. here we add a way for the underlying getRegisterIndex()
method to know about the size of the RFs, so that it may find the relative
positions of the special register values.
src/arch/hsail/insts/branch.hh
src/arch/hsail/insts/decl.hh
src/arch/hsail/insts/mem.hh
src/gpu-compute/condition_register_state.cc
src/gpu-compute/condition_register_state.hh
src/gpu-compute/gpu_dyn_inst.cc
src/gpu-compute/gpu_dyn_inst.hh
src/gpu-compute/gpu_static_inst.hh
src/gpu-compute/vector_register_file.cc