Mesa (master): nir/algebraic: Add missing 64-bit extract_[iu]8 patterns

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sat Mar 9 06:24:51 UTC 2019


Module: Mesa
Branch: master
Commit: 55c1ac4b753d48fa2d97172216202264313e76b7
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=55c1ac4b753d48fa2d97172216202264313e76b7

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Wed Feb 27 20:12:46 2019 -0800

nir/algebraic: Add missing 64-bit extract_[iu]8 patterns

No shader-db changes on any Intel platform.

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

Reviewed-by: Matt Turner <mattst88 at gmail.com> [v1]
Reviewed-by: Dylan Baker <dylan at pnwbakers.com>
Acked-by: Jason Ekstrand <jason at jlekstrand.net>

---

 src/compiler/nir/nir_opt_algebraic.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/compiler/nir/nir_opt_algebraic.py b/src/compiler/nir/nir_opt_algebraic.py
index f96c0182a29..d77f38f0761 100644
--- a/src/compiler/nir/nir_opt_algebraic.py
+++ b/src/compiler/nir/nir_opt_algebraic.py
@@ -605,7 +605,9 @@ optimizations = [
 
    # Byte extraction
    (('ushr', 'a at 32', 24), ('extract_u8', a, 3), '!options->lower_extract_byte'),
+   (('ushr', 'a at 64', 56), ('extract_u8', a, 7), '!options->lower_extract_byte'),
    (('ishr', 'a at 32', 24), ('extract_i8', a, 3), '!options->lower_extract_byte'),
+   (('ishr', 'a at 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 at 32', 24 - 8 * i), 3), ('extract_u8', a, i)) for i in range(2, -1, -1)])
+   optimizations.extend([((op, ('ishl', 'a at 64', 56 - 8 * i), 7), ('extract_u8', a, i)) for i in range(6, -1, -1)])
 
 optimizations.extend([
     # Word extraction




More information about the mesa-commit mailing list