nir: const_index helpers
authorRob Clark <robclark@freedesktop.org>
Wed, 13 Jan 2016 23:43:14 +0000 (18:43 -0500)
committerRob Clark <robclark@freedesktop.org>
Tue, 9 Feb 2016 22:30:33 +0000 (17:30 -0500)
commit1df3ecc1b87d95130165283154a13ea5b9a498d4
treed007d515e3d34dc94d2a821f9fe679d3c687ce23
parent8b0f6de73d7bf5cc2b9bb189e5a3fe4d48dd1017
nir: const_index helpers

Direct access to intr->const_index[n], where different slots have
different meanings, is somewhat confusing.

Instead, let's put some extra info in nir_intrinsic_infos[] about which
slots map to what, and add some get/set helpers.  The helpers validate
that the field being accessed (base/writemask/etc) is applicable for the
intrinsic opc, for some extra safety.  And nir_print can use this to
dump out decoded const_index fields.

Signed-off-by: Rob Clark <robclark@freedesktop.org>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/nir/nir.h
src/compiler/nir/nir_intrinsics.c
src/compiler/nir/nir_intrinsics.h
src/compiler/nir/nir_print.c