nir/algebraic: Add missing 64-bit extract_[iu]8 patterns
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 28 Feb 2019 04:12:46 +0000 (20:12 -0800)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 9 Mar 2019 06:24:19 +0000 (22:24 -0800)
No shader-db changes on any Intel platform.

v2: Use a loop to generate patterns.  Suggested by Jason.

Reviewed-by: Matt Turner <mattst88@gmail.com> [v1]
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/nir/nir_opt_algebraic.py

index f96c0182a29b9366b96e44ad5c339d171e41764d..d77f38f0761e51bdbad9469e8cd4f13ea91b31f1 100644 (file)
@@ -605,7 +605,9 @@ optimizations = [
 
    # Byte extraction
    (('ushr', 'a@32', 24), ('extract_u8', a, 3), '!options->lower_extract_byte'),
+   (('ushr', 'a@64', 56), ('extract_u8', a, 7), '!options->lower_extract_byte'),
    (('ishr', 'a@32', 24), ('extract_i8', a, 3), '!options->lower_extract_byte'),
+   (('ishr', 'a@64', 56), ('extract_i8', a, 7), '!options->lower_extract_byte'),
    (('iand', 0xff, a), ('extract_u8', a, 0), '!options->lower_extract_byte')
 ]
 
@@ -622,6 +624,7 @@ optimizations.extend([(('extract_u8', ('extract_u16', a, 1), 0), ('extract_u8',
 # patterns like those below.
 for op in ('extract_u8', 'extract_i8'):
    optimizations.extend([((op, ('ishl', 'a@32', 24 - 8 * i), 3), ('extract_u8', a, i)) for i in range(2, -1, -1)])
+   optimizations.extend([((op, ('ishl', 'a@64', 56 - 8 * i), 7), ('extract_u8', a, i)) for i in range(6, -1, -1)])
 
 optimizations.extend([
     # Word extraction