nir: Support algebraic opts on vectors larger than 4

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6030>
This commit is contained in:
Jesse Natalie
2020-06-22 11:49:41 -07:00
parent aa581fcc69
commit d572f4dfd9

View File

@@ -348,9 +348,13 @@ class Variable(Value):
def swizzle(self):
if self.swiz is not None:
swizzles = {'x' : 0, 'y' : 1, 'z' : 2, 'w': 3}
swizzles = {'x' : 0, 'y' : 1, 'z' : 2, 'w' : 3,
'a' : 0, 'b' : 1, 'c' : 2, 'd' : 3,
'e' : 4, 'f' : 5, 'g' : 6, 'h' : 7,
'i' : 8, 'j' : 9, 'k' : 10, 'l' : 11,
'm' : 12, 'n' : 13, 'o' : 14, 'p' : 15 }
return '{' + ', '.join([str(swizzles[c]) for c in self.swiz[1:]]) + '}'
return '{0, 1, 2, 3}'
return '{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}'
_opcode_re = re.compile(r"(?P<inexact>~)?(?P<exact>!)?(?P<opcode>\w+)(?:@(?P<bits>\d+))?"
r"(?P<cond>\([^\)]+\))?")