diff options
author | Ian Romanick <[email protected]> | 2018-08-18 11:46:46 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2019-05-06 22:52:28 -0700 |
commit | 158370ed2a012574bcc18e98075712da04fe22e8 (patch) | |
tree | 6d643e644c32a8d1cb079e344c7c541a8f6f0280 /src/compiler/Makefile.sources | |
parent | dc566a033cca87821d55ff0f68ee8a108eb0e2a3 (diff) |
nir/flrp: Add new lowering pass for flrp instructions
This pass will soon grow to include some optimizations that are
difficult or impossible to implement correctly within nir_opt_algebraic.
It also include the ability to generate strictly correct code which the
current nir_opt_algebraic lowering lacks (though that could be changed).
v2: Document the parameters to nir_lower_flrp. Rebase on top of
3766334923e ("compiler/nir: add lowering for 16-bit flrp")
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 7a2f790fcfa..c223e17fa13 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -245,6 +245,7 @@ NIR_FILES = \ nir/nir_lower_double_ops.c \ nir/nir_lower_drawpixels.c \ nir/nir_lower_fb_read.c \ + nir/nir_lower_flrp.c \ nir/nir_lower_fragcoord_wtrans.c \ nir/nir_lower_frexp.c \ nir/nir_lower_global_vars_to_local.c \ |