nir: Rework conversion opcodes
authorJason Ekstrand <jason.ekstrand@intel.com>
Wed, 8 Mar 2017 03:54:37 +0000 (19:54 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Tue, 14 Mar 2017 14:36:40 +0000 (07:36 -0700)
commit762a6333f21fd8606f69db6060027c4522d46678
treef77c695fa16a5d869175773229d0195c22060c93
parent7107b321557e421e33fe92221133cf4a08eb7c6c
nir: Rework conversion opcodes

The NIR story on conversion opcodes is a mess.  We've had way too many
of them, naming is inconsistent, and which ones have explicit sizes was
sort-of random.  This commit re-organizes things and makes them all
consistent:

 - All non-bool conversion opcodes now have the explicit size in the
   destination and are named <src_type>2<dst_type><size>.

 - Integer <-> integer conversion opcodes now only come in i2i and u2u
   forms (i2u and u2i have been removed) since the only difference
   between the different integer conversions is whether or not they
   sign-extend when up-converting.

 - Boolean conversion opcodes all have the explicit size on the bool and
   are named <src_type>2<dst_type>.

Making things consistent also allows nir_type_conversion_op to be moved
to nir_opcodes.c and auto-generated using mako.  This will make adding
int8, int16, and float16 versions much easier when the time comes.

Reviewed-by: Eric Anholt <eric@anholt.net>
22 files changed:
src/amd/common/ac_nir_to_llvm.c
src/amd/vulkan/radv_meta_blit2d.c
src/compiler/glsl/glsl_to_nir.cpp
src/compiler/nir/nir.c
src/compiler/nir/nir_builder.h
src/compiler/nir/nir_lower_double_ops.c
src/compiler/nir/nir_lower_idiv.c
src/compiler/nir/nir_lower_tex.c
src/compiler/nir/nir_opcodes.py
src/compiler/nir/nir_opcodes_c.py
src/compiler/nir/nir_opt_algebraic.py
src/gallium/auxiliary/nir/tgsi_to_nir.c
src/gallium/drivers/freedreno/ir3/ir3_compiler_nir.c
src/gallium/drivers/vc4/vc4_nir_lower_blend.c
src/gallium/drivers/vc4/vc4_nir_lower_io.c
src/gallium/drivers/vc4/vc4_program.c
src/intel/blorp/blorp_blit.c
src/intel/compiler/brw_fs_nir.cpp
src/intel/compiler/brw_nir_attribute_workarounds.c
src/intel/compiler/brw_vec4_nir.cpp
src/intel/vulkan/anv_nir_lower_input_attachments.c
src/mesa/program/prog_to_nir.c