nir: add new constant folding infrastructure
authorJason Ekstrand <jason.ekstrand@intel.com>
Fri, 23 Jan 2015 21:38:46 +0000 (13:38 -0800)
committerJason Ekstrand <jason.ekstrand@intel.com>
Sun, 25 Jan 2015 05:35:35 +0000 (21:35 -0800)
commit89285e4d47a65e52547180dca46ecfd81b2996e9
tree225a05167f500fe131f6780355122a714f0f2303
parentfa4bc6c1309e8ece8c0f18e8031bf7c92064fc35
nir: add new constant folding infrastructure

Add a required field to the Opcode class, const_expr, that contains an
expression or statement that computes the result of the opcode given known
constant inputs. Then take those const_expr's and expand them into a function
that takes an opcode and an array of constant inputs and spits out the constant
result. This means that when adding opcodes, there's one less place to update,
and almost all the opcodes are self-documenting since the information on how to
compute the result is right next to the definition.

The helper functions in nir_constant_expressions.c were taken from
ir_constant_expressions.cpp.

v3 Jason Ekstrand <jason.ekstrand@iastate.edu>
 - Use mako to generate one function per opcode instead of doing piles of
   string splicing

v4 Jason Ekstrand <jason.ekstrand@iastate.edu>
 - More comments and better indentation in the mako
 - Add a description of the constant expression language in nir_opcodes.py
 - Added nir_constant_expressions.py to EXTRA_DIST in Makefile.am

Signed-off-by: Jason Ekstrand <jason.ekstrand@intel.com>
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
src/glsl/Makefile.am
src/glsl/Makefile.sources
src/glsl/nir/.gitignore
src/glsl/nir/nir_constant_expressions.h [new file with mode: 0644]
src/glsl/nir/nir_constant_expressions.py [new file with mode: 0644]
src/glsl/nir/nir_opcodes.py