| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929 |
- #
- # Copyright (C) 2014 Intel Corporation
- #
- # Permission is hereby granted, free of charge, to any person obtaining a
- # copy of this software and associated documentation files (the "Software"),
- # to deal in the Software without restriction, including without limitation
- # the rights to use, copy, modify, merge, publish, distribute, sublicense,
- # and/or sell copies of the Software, and to permit persons to whom the
- # Software is furnished to do so, subject to the following conditions:
- #
- # The above copyright notice and this permission notice (including the next
- # paragraph) shall be included in all copies or substantial portions of the
- # Software.
- #
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- # IN THE SOFTWARE.
- #
- # Authors:
- # Jason Ekstrand (jason@jlekstrand.net)
-
- from __future__ import print_function
-
- from collections import OrderedDict
- import nir_algebraic
- import itertools
-
- # Convenience variables
- a = 'a'
- b = 'b'
- c = 'c'
- d = 'd'
-
- # Written in the form (<search>, <replace>) where <search> is an expression
- # and <replace> is either an expression or a value. An expression is
- # defined as a tuple of the form ([~]<op>, <src0>, <src1>, <src2>, <src3>)
- # where each source is either an expression or a value. A value can be
- # either a numeric constant or a string representing a variable name.
- #
- # If the opcode in a search expression is prefixed by a '~' character, this
- # indicates that the operation is inexact. Such operations will only get
- # applied to SSA values that do not have the exact bit set. This should be
- # used by by any optimizations that are not bit-for-bit exact. It should not,
- # however, be used for backend-requested lowering operations as those need to
- # happen regardless of precision.
- #
- # Variable names are specified as "[#]name[@type][(cond)]" where "#" inicates
- # that the given variable will only match constants and the type indicates that
- # the given variable will only match values from ALU instructions with the
- # given output type, and (cond) specifies an additional condition function
- # (see nir_search_helpers.h).
- #
- # For constants, you have to be careful to make sure that it is the right
- # type because python is unaware of the source and destination types of the
- # opcodes.
- #
- # All expression types can have a bit-size specified. For opcodes, this
- # looks like "op@32", for variables it is "a@32" or "a@uint32" to specify a
- # type and size, and for literals, you can write "2.0@32". In the search half
- # of the expression this indicates that it should only match that particular
- # bit-size. In the replace half of the expression this indicates that the
- # constructed value should have that bit-size.
-
- optimizations = [
-
- (('imul', a, '#b@32(is_pos_power_of_two)'), ('ishl', a, ('find_lsb', b))),
- (('imul', a, '#b@32(is_neg_power_of_two)'), ('ineg', ('ishl', a, ('find_lsb', ('iabs', b))))),
- (('udiv', a, 1), a),
- (('idiv', a, 1), a),
- (('umod', a, 1), 0),
- (('imod', a, 1), 0),
- (('udiv', a, '#b@32(is_pos_power_of_two)'), ('ushr', a, ('find_lsb', b))),
- (('idiv', a, '#b@32(is_pos_power_of_two)'), ('imul', ('isign', a), ('ushr', ('iabs', a), ('find_lsb', b))), 'options->lower_idiv'),
- (('idiv', a, '#b@32(is_neg_power_of_two)'), ('ineg', ('imul', ('isign', a), ('ushr', ('iabs', a), ('find_lsb', ('iabs', b))))), 'options->lower_idiv'),
- (('umod', a, '#b(is_pos_power_of_two)'), ('iand', a, ('isub', b, 1))),
-
- (('fneg', ('fneg', a)), a),
- (('ineg', ('ineg', a)), a),
- (('fabs', ('fabs', a)), ('fabs', a)),
- (('fabs', ('fneg', a)), ('fabs', a)),
- (('fabs', ('u2f32', a)), ('u2f32', a)),
- (('iabs', ('iabs', a)), ('iabs', a)),
- (('iabs', ('ineg', a)), ('iabs', a)),
- (('~fadd', a, 0.0), a),
- (('iadd', a, 0), a),
- (('usadd_4x8', a, 0), a),
- (('usadd_4x8', a, ~0), ~0),
- (('~fadd', ('fmul', a, b), ('fmul', a, c)), ('fmul', a, ('fadd', b, c))),
- (('iadd', ('imul', a, b), ('imul', a, c)), ('imul', a, ('iadd', b, c))),
- (('~fadd', ('fneg', a), a), 0.0),
- (('iadd', ('ineg', a), a), 0),
- (('iadd', ('ineg', a), ('iadd', a, b)), b),
- (('iadd', a, ('iadd', ('ineg', a), b)), b),
- (('~fadd', ('fneg', a), ('fadd', a, b)), b),
- (('~fadd', a, ('fadd', ('fneg', a), b)), b),
- (('~fmul', a, 0.0), 0.0),
- (('imul', a, 0), 0),
- (('umul_unorm_4x8', a, 0), 0),
- (('umul_unorm_4x8', a, ~0), a),
- (('fmul', a, 1.0), a),
- (('imul', a, 1), a),
- (('fmul', a, -1.0), ('fneg', a)),
- (('imul', a, -1), ('ineg', a)),
- # If a < 0: fsign(a)*a*a => -1*a*a => -a*a => abs(a)*a
- # If a > 0: fsign(a)*a*a => 1*a*a => a*a => abs(a)*a
- # If a == 0: fsign(a)*a*a => 0*0*0 => abs(0)*0
- (('fmul', ('fsign', a), ('fmul', a, a)), ('fmul', ('fabs', a), a)),
- (('fmul', ('fmul', ('fsign', a), a), a), ('fmul', ('fabs', a), a)),
- (('~ffma', 0.0, a, b), b),
- (('~ffma', a, 0.0, b), b),
- (('~ffma', a, b, 0.0), ('fmul', a, b)),
- (('ffma', a, 1.0, b), ('fadd', a, b)),
- (('ffma', 1.0, a, b), ('fadd', a, b)),
- (('~flrp', a, b, 0.0), a),
- (('~flrp', a, b, 1.0), b),
- (('~flrp', a, a, b), a),
- (('~flrp', 0.0, a, b), ('fmul', a, b)),
- (('~flrp', a, b, ('b2f', c)), ('bcsel', c, b, a), 'options->lower_flrp32'),
- (('~flrp', a, 0.0, c), ('fadd', ('fmul', ('fneg', a), c), a)),
- (('flrp@32', a, b, c), ('fadd', ('fmul', c, ('fsub', b, a)), a), 'options->lower_flrp32'),
- (('flrp@64', a, b, c), ('fadd', ('fmul', c, ('fsub', b, a)), a), 'options->lower_flrp64'),
- (('ffract', a), ('fsub', a, ('ffloor', a)), 'options->lower_ffract'),
- (('~fadd', ('fmul', a, ('fadd', 1.0, ('fneg', ('b2f', c)))), ('fmul', b, ('b2f', c))), ('bcsel', c, b, a), 'options->lower_flrp32'),
- (('~fadd@32', ('fmul', a, ('fadd', 1.0, ('fneg', c ))), ('fmul', b, c )), ('flrp', a, b, c), '!options->lower_flrp32'),
- (('~fadd@64', ('fmul', a, ('fadd', 1.0, ('fneg', c ))), ('fmul', b, c )), ('flrp', a, b, c), '!options->lower_flrp64'),
- (('~fadd', a, ('fmul', ('b2f', c), ('fadd', b, ('fneg', a)))), ('bcsel', c, b, a), 'options->lower_flrp32'),
- (('~fadd@32', a, ('fmul', c , ('fadd', b, ('fneg', a)))), ('flrp', a, b, c), '!options->lower_flrp32'),
- (('~fadd@64', a, ('fmul', c , ('fadd', b, ('fneg', a)))), ('flrp', a, b, c), '!options->lower_flrp64'),
- (('ffma', a, b, c), ('fadd', ('fmul', a, b), c), 'options->lower_ffma'),
- (('~fadd', ('fmul', a, b), c), ('ffma', a, b, c), 'options->fuse_ffma'),
-
- (('fdot4', ('vec4', a, b, c, 1.0), d), ('fdph', ('vec3', a, b, c), d)),
- (('fdot4', ('vec4', a, 0.0, 0.0, 0.0), b), ('fmul', a, b)),
- (('fdot4', ('vec4', a, b, 0.0, 0.0), c), ('fdot2', ('vec2', a, b), c)),
- (('fdot4', ('vec4', a, b, c, 0.0), d), ('fdot3', ('vec3', a, b, c), d)),
-
- (('fdot3', ('vec3', a, 0.0, 0.0), b), ('fmul', a, b)),
- (('fdot3', ('vec3', a, b, 0.0), c), ('fdot2', ('vec2', a, b), c)),
-
- # (a * #b + #c) << #d
- # ((a * #b) << #d) + (#c << #d)
- # (a * (#b << #d)) + (#c << #d)
- (('ishl', ('iadd', ('imul', a, '#b'), '#c'), '#d'),
- ('iadd', ('imul', a, ('ishl', b, d)), ('ishl', c, d))),
-
- # (a * #b) << #c
- # a * (#b << #c)
- (('ishl', ('imul', a, '#b'), '#c'), ('imul', a, ('ishl', b, c))),
-
- # Comparison simplifications
- (('~inot', ('flt', a, b)), ('fge', a, b)),
- (('~inot', ('fge', a, b)), ('flt', a, b)),
- (('~inot', ('feq', a, b)), ('fne', a, b)),
- (('~inot', ('fne', a, b)), ('feq', a, b)),
- (('inot', ('ilt', a, b)), ('ige', a, b)),
- (('inot', ('ult', a, b)), ('uge', a, b)),
- (('inot', ('ige', a, b)), ('ilt', a, b)),
- (('inot', ('uge', a, b)), ('ult', a, b)),
- (('inot', ('ieq', a, b)), ('ine', a, b)),
- (('inot', ('ine', a, b)), ('ieq', a, b)),
-
- # 0.0 >= b2f(a)
- # b2f(a) <= 0.0
- # b2f(a) == 0.0 because b2f(a) can only be 0 or 1
- # inot(a)
- (('fge', 0.0, ('b2f', a)), ('inot', a)),
-
- (('fge', ('fneg', ('b2f', a)), 0.0), ('inot', a)),
-
- (('fne', ('fadd', ('b2f', a), ('b2f', b)), 0.0), ('ior', a, b)),
- (('fne', ('fmax', ('b2f', a), ('b2f', b)), 0.0), ('ior', a, b)),
- (('fne', ('bcsel', a, 1.0, ('b2f', b)) , 0.0), ('ior', a, b)),
- (('fne', ('b2f', a), ('fneg', ('b2f', b))), ('ior', a, b)),
- (('fne', ('fmul', ('b2f', a), ('b2f', b)), 0.0), ('iand', a, b)),
- (('fne', ('fmin', ('b2f', a), ('b2f', b)), 0.0), ('iand', a, b)),
- (('fne', ('bcsel', a, ('b2f', b), 0.0) , 0.0), ('iand', a, b)),
- (('fne', ('fadd', ('b2f', a), ('fneg', ('b2f', b))), 0.0), ('ixor', a, b)),
- (('fne', ('b2f', a) , ('b2f', b) ), ('ixor', a, b)),
- (('fne', ('fneg', ('b2f', a)), ('fneg', ('b2f', b))), ('ixor', a, b)),
- (('feq', ('fadd', ('b2f', a), ('b2f', b)), 0.0), ('inot', ('ior', a, b))),
- (('feq', ('fmax', ('b2f', a), ('b2f', b)), 0.0), ('inot', ('ior', a, b))),
- (('feq', ('bcsel', a, 1.0, ('b2f', b)) , 0.0), ('inot', ('ior', a, b))),
- (('feq', ('b2f', a), ('fneg', ('b2f', b))), ('inot', ('ior', a, b))),
- (('feq', ('fmul', ('b2f', a), ('b2f', b)), 0.0), ('inot', ('iand', a, b))),
- (('feq', ('fmin', ('b2f', a), ('b2f', b)), 0.0), ('inot', ('iand', a, b))),
- (('feq', ('bcsel', a, ('b2f', b), 0.0) , 0.0), ('inot', ('iand', a, b))),
- (('feq', ('fadd', ('b2f', a), ('fneg', ('b2f', b))), 0.0), ('ieq', a, b)),
- (('feq', ('b2f', a) , ('b2f', b) ), ('ieq', a, b)),
- (('feq', ('fneg', ('b2f', a)), ('fneg', ('b2f', b))), ('ieq', a, b)),
-
- # -(b2f(a) + b2f(b)) < 0
- # 0 < b2f(a) + b2f(b)
- # 0 != b2f(a) + b2f(b) b2f must be 0 or 1, so the sum is non-negative
- # a || b
- (('flt', ('fneg', ('fadd', ('b2f', a), ('b2f', b))), 0.0), ('ior', a, b)),
- (('flt', 0.0, ('fadd', ('b2f', a), ('b2f', b))), ('ior', a, b)),
-
- # -(b2f(a) + b2f(b)) >= 0
- # 0 >= b2f(a) + b2f(b)
- # 0 == b2f(a) + b2f(b) b2f must be 0 or 1, so the sum is non-negative
- # !(a || b)
- (('fge', ('fneg', ('fadd', ('b2f', a), ('b2f', b))), 0.0), ('inot', ('ior', a, b))),
- (('fge', 0.0, ('fadd', ('b2f', a), ('b2f', b))), ('inot', ('ior', a, b))),
-
- # Some optimizations (below) convert things like (a < b || c < b) into
- # (min(a, c) < b). However, this interfers with the previous optimizations
- # that try to remove comparisons with negated sums of b2f. This just
- # breaks that apart.
- (('flt', ('fmin', c, ('fneg', ('fadd', ('b2f', a), ('b2f', b)))), 0.0),
- ('ior', ('flt', c, 0.0), ('ior', a, b))),
-
- (('~flt', ('fadd', a, b), a), ('flt', b, 0.0)),
- (('~fge', ('fadd', a, b), a), ('fge', b, 0.0)),
- (('~feq', ('fadd', a, b), a), ('feq', b, 0.0)),
- (('~fne', ('fadd', a, b), a), ('fne', b, 0.0)),
-
- # Cannot remove the addition from ilt or ige due to overflow.
- (('ieq', ('iadd', a, b), a), ('ieq', b, 0)),
- (('ine', ('iadd', a, b), a), ('ine', b, 0)),
-
- # fmin(-b2f(a), b) >= 0.0
- # -b2f(a) >= 0.0 && b >= 0.0
- # -b2f(a) == 0.0 && b >= 0.0 -b2f can only be 0 or -1, never >0
- # b2f(a) == 0.0 && b >= 0.0
- # a == False && b >= 0.0
- # !a && b >= 0.0
- #
- # The fge in the second replacement is not a typo. I leave the proof that
- # "fmin(-b2f(a), b) >= 0 <=> fmin(-b2f(a), b) == 0" as an exercise for the
- # reader.
- (('fge', ('fmin', ('fneg', ('b2f', a)), b), 0.0), ('iand', ('inot', a), ('fge', b, 0.0))),
- (('feq', ('fmin', ('fneg', ('b2f', a)), b), 0.0), ('iand', ('inot', a), ('fge', b, 0.0))),
-
- (('feq', ('b2f', a), 0.0), ('inot', a)),
- (('fne', ('b2f', a), 0.0), a),
- (('ieq', ('b2i', a), 0), ('inot', a)),
- (('ine', ('b2i', a), 0), a),
-
- (('fne', ('u2f32', a), 0.0), ('ine', a, 0)),
- (('feq', ('u2f32', a), 0.0), ('ieq', a, 0)),
- (('fge', ('u2f32', a), 0.0), True),
- (('fge', 0.0, ('u2f32', a)), ('uge', 0, a)), # ieq instead?
- (('flt', ('u2f32', a), 0.0), False),
- (('flt', 0.0, ('u2f32', a)), ('ult', 0, a)), # ine instead?
- (('fne', ('i2f32', a), 0.0), ('ine', a, 0)),
- (('feq', ('i2f32', a), 0.0), ('ieq', a, 0)),
- (('fge', ('i2f32', a), 0.0), ('ige', a, 0)),
- (('fge', 0.0, ('i2f32', a)), ('ige', 0, a)),
- (('flt', ('i2f32', a), 0.0), ('ilt', a, 0)),
- (('flt', 0.0, ('i2f32', a)), ('ilt', 0, a)),
-
- # 0.0 < fabs(a)
- # fabs(a) > 0.0
- # fabs(a) != 0.0 because fabs(a) must be >= 0
- # a != 0.0
- (('~flt', 0.0, ('fabs', a)), ('fne', a, 0.0)),
-
- # -fabs(a) < 0.0
- # fabs(a) > 0.0
- (('~flt', ('fneg', ('fabs', a)), 0.0), ('fne', a, 0.0)),
-
- # 0.0 >= fabs(a)
- # 0.0 == fabs(a) because fabs(a) must be >= 0
- # 0.0 == a
- (('fge', 0.0, ('fabs', a)), ('feq', a, 0.0)),
-
- # -fabs(a) >= 0.0
- # 0.0 >= fabs(a)
- (('fge', ('fneg', ('fabs', a)), 0.0), ('feq', a, 0.0)),
-
- (('fmax', ('b2f(is_used_once)', a), ('b2f', b)), ('b2f', ('ior', a, b))),
- (('fmax', ('fneg(is_used_once)', ('b2f(is_used_once)', a)), ('fneg', ('b2f', b))), ('fneg', ('b2f', ('ior', a, b)))),
- (('fmin', ('b2f(is_used_once)', a), ('b2f', b)), ('b2f', ('iand', a, b))),
- (('fmin', ('fneg(is_used_once)', ('b2f(is_used_once)', a)), ('fneg', ('b2f', b))), ('fneg', ('b2f', ('iand', a, b)))),
-
- # fmin(b2f(a), b)
- # bcsel(a, fmin(b2f(a), b), fmin(b2f(a), b))
- # bcsel(a, fmin(b2f(True), b), fmin(b2f(False), b))
- # bcsel(a, fmin(1.0, b), fmin(0.0, b))
- #
- # Since b is a constant, constant folding will eliminate the fmin and the
- # fmax. If b is > 1.0, the bcsel will be replaced with a b2f.
- (('fmin', ('b2f', a), '#b'), ('bcsel', a, ('fmin', b, 1.0), ('fmin', b, 0.0))),
-
- (('flt', ('fadd(is_used_once)', a, ('fneg', b)), 0.0), ('flt', a, b)),
-
- (('fge', ('fneg', ('fabs', a)), 0.0), ('feq', a, 0.0)),
- (('~bcsel', ('flt', b, a), b, a), ('fmin', a, b)),
- (('~bcsel', ('flt', a, b), b, a), ('fmax', a, b)),
- (('~bcsel', ('fge', a, b), b, a), ('fmin', a, b)),
- (('~bcsel', ('fge', b, a), b, a), ('fmax', a, b)),
- (('bcsel', ('inot', a), b, c), ('bcsel', a, c, b)),
- (('bcsel', a, ('bcsel', a, b, c), d), ('bcsel', a, b, d)),
- (('bcsel', a, b, ('bcsel', a, c, d)), ('bcsel', a, b, d)),
- (('bcsel', a, ('bcsel', b, c, d), ('bcsel(is_used_once)', b, c, 'e')), ('bcsel', b, c, ('bcsel', a, d, 'e'))),
- (('bcsel', a, ('bcsel(is_used_once)', b, c, d), ('bcsel', b, c, 'e')), ('bcsel', b, c, ('bcsel', a, d, 'e'))),
- (('bcsel', a, ('bcsel', b, c, d), ('bcsel(is_used_once)', b, 'e', d)), ('bcsel', b, ('bcsel', a, c, 'e'), d)),
- (('bcsel', a, ('bcsel(is_used_once)', b, c, d), ('bcsel', b, 'e', d)), ('bcsel', b, ('bcsel', a, c, 'e'), d)),
- (('bcsel', a, True, 'b@bool'), ('ior', a, b)),
- (('fmin', a, a), a),
- (('fmax', a, a), a),
- (('imin', a, a), a),
- (('imax', a, a), a),
- (('umin', a, a), a),
- (('umax', a, a), a),
- (('fmax', ('fmax', a, b), b), ('fmax', a, b)),
- (('umax', ('umax', a, b), b), ('umax', a, b)),
- (('imax', ('imax', a, b), b), ('imax', a, b)),
- (('fmin', ('fmin', a, b), b), ('fmin', a, b)),
- (('umin', ('umin', a, b), b), ('umin', a, b)),
- (('imin', ('imin', a, b), b), ('imin', a, b)),
- (('fmax', a, ('fneg', a)), ('fabs', a)),
- (('imax', a, ('ineg', a)), ('iabs', a)),
- (('fmin', a, ('fneg', a)), ('fneg', ('fabs', a))),
- (('imin', a, ('ineg', a)), ('ineg', ('iabs', a))),
- (('fmin', a, ('fneg', ('fabs', a))), ('fneg', ('fabs', a))),
- (('imin', a, ('ineg', ('iabs', a))), ('ineg', ('iabs', a))),
- (('fmin', a, ('fabs', a)), a),
- (('imin', a, ('iabs', a)), a),
- (('fmax', a, ('fneg', ('fabs', a))), a),
- (('imax', a, ('ineg', ('iabs', a))), a),
- (('fmax', a, ('fabs', a)), ('fabs', a)),
- (('imax', a, ('iabs', a)), ('iabs', a)),
- (('fmax', a, ('fneg', a)), ('fabs', a)),
- (('imax', a, ('ineg', a)), ('iabs', a)),
- (('~fmin', ('fmax', a, 0.0), 1.0), ('fsat', a), '!options->lower_fsat'),
- (('~fmax', ('fmin', a, 1.0), 0.0), ('fsat', a), '!options->lower_fsat'),
- (('fsat', ('fsign', a)), ('b2f', ('flt', 0.0, a))),
- (('fsat', a), ('fmin', ('fmax', a, 0.0), 1.0), 'options->lower_fsat'),
- (('fsat', ('fsat', a)), ('fsat', a)),
- (('fmin', ('fmax', ('fmin', ('fmax', a, b), c), b), c), ('fmin', ('fmax', a, b), c)),
- (('imin', ('imax', ('imin', ('imax', a, b), c), b), c), ('imin', ('imax', a, b), c)),
- (('umin', ('umax', ('umin', ('umax', a, b), c), b), c), ('umin', ('umax', a, b), c)),
- (('fmax', ('fsat', a), '#b@32(is_zero_to_one)'), ('fsat', ('fmax', a, b))),
- (('fmin', ('fsat', a), '#b@32(is_zero_to_one)'), ('fsat', ('fmin', a, b))),
- (('extract_u8', ('imin', ('imax', a, 0), 0xff), 0), ('imin', ('imax', a, 0), 0xff)),
- (('~ior', ('flt(is_used_once)', a, b), ('flt', a, c)), ('flt', a, ('fmax', b, c))),
- (('~ior', ('flt(is_used_once)', a, c), ('flt', b, c)), ('flt', ('fmin', a, b), c)),
- (('~ior', ('fge(is_used_once)', a, b), ('fge', a, c)), ('fge', a, ('fmin', b, c))),
- (('~ior', ('fge(is_used_once)', a, c), ('fge', b, c)), ('fge', ('fmax', a, b), c)),
- (('~ior', ('flt', a, '#b'), ('flt', a, '#c')), ('flt', a, ('fmax', b, c))),
- (('~ior', ('flt', '#a', c), ('flt', '#b', c)), ('flt', ('fmin', a, b), c)),
- (('~ior', ('fge', a, '#b'), ('fge', a, '#c')), ('fge', a, ('fmin', b, c))),
- (('~ior', ('fge', '#a', c), ('fge', '#b', c)), ('fge', ('fmax', a, b), c)),
- (('~iand', ('flt(is_used_once)', a, b), ('flt', a, c)), ('flt', a, ('fmin', b, c))),
- (('~iand', ('flt(is_used_once)', a, c), ('flt', b, c)), ('flt', ('fmax', a, b), c)),
- (('~iand', ('fge(is_used_once)', a, b), ('fge', a, c)), ('fge', a, ('fmax', b, c))),
- (('~iand', ('fge(is_used_once)', a, c), ('fge', b, c)), ('fge', ('fmin', a, b), c)),
- (('~iand', ('flt', a, '#b'), ('flt', a, '#c')), ('flt', a, ('fmin', b, c))),
- (('~iand', ('flt', '#a', c), ('flt', '#b', c)), ('flt', ('fmax', a, b), c)),
- (('~iand', ('fge', a, '#b'), ('fge', a, '#c')), ('fge', a, ('fmax', b, c))),
- (('~iand', ('fge', '#a', c), ('fge', '#b', c)), ('fge', ('fmin', a, b), c)),
-
- (('ior', ('ilt(is_used_once)', a, b), ('ilt', a, c)), ('ilt', a, ('imax', b, c))),
- (('ior', ('ilt(is_used_once)', a, c), ('ilt', b, c)), ('ilt', ('imin', a, b), c)),
- (('ior', ('ige(is_used_once)', a, b), ('ige', a, c)), ('ige', a, ('imin', b, c))),
- (('ior', ('ige(is_used_once)', a, c), ('ige', b, c)), ('ige', ('imax', a, b), c)),
- (('ior', ('ult(is_used_once)', a, b), ('ult', a, c)), ('ult', a, ('umax', b, c))),
- (('ior', ('ult(is_used_once)', a, c), ('ult', b, c)), ('ult', ('umin', a, b), c)),
- (('ior', ('uge(is_used_once)', a, b), ('uge', a, c)), ('uge', a, ('umin', b, c))),
- (('ior', ('uge(is_used_once)', a, c), ('uge', b, c)), ('uge', ('umax', a, b), c)),
- (('iand', ('ilt(is_used_once)', a, b), ('ilt', a, c)), ('ilt', a, ('imin', b, c))),
- (('iand', ('ilt(is_used_once)', a, c), ('ilt', b, c)), ('ilt', ('imax', a, b), c)),
- (('iand', ('ige(is_used_once)', a, b), ('ige', a, c)), ('ige', a, ('imax', b, c))),
- (('iand', ('ige(is_used_once)', a, c), ('ige', b, c)), ('ige', ('imin', a, b), c)),
- (('iand', ('ult(is_used_once)', a, b), ('ult', a, c)), ('ult', a, ('umin', b, c))),
- (('iand', ('ult(is_used_once)', a, c), ('ult', b, c)), ('ult', ('umax', a, b), c)),
- (('iand', ('uge(is_used_once)', a, b), ('uge', a, c)), ('uge', a, ('umax', b, c))),
- (('iand', ('uge(is_used_once)', a, c), ('uge', b, c)), ('uge', ('umin', a, b), c)),
-
- (('ior', 'a@bool', ('ieq', a, False)), True),
- (('ior', 'a@bool', ('inot', a)), True),
-
- (('iand', ('ieq', 'a@32', 0), ('ieq', 'b@32', 0)), ('ieq', ('ior', 'a@32', 'b@32'), 0)),
-
- # These patterns can result when (a < b || a < c) => (a < min(b, c))
- # transformations occur before constant propagation and loop-unrolling.
- (('~flt', a, ('fmax', b, a)), ('flt', a, b)),
- (('~flt', ('fmin', a, b), a), ('flt', b, a)),
- (('~fge', a, ('fmin', b, a)), True),
- (('~fge', ('fmax', a, b), a), True),
- (('~flt', a, ('fmin', b, a)), False),
- (('~flt', ('fmax', a, b), a), False),
- (('~fge', a, ('fmax', b, a)), ('fge', a, b)),
- (('~fge', ('fmin', a, b), a), ('fge', b, a)),
-
- (('ilt', a, ('imax', b, a)), ('ilt', a, b)),
- (('ilt', ('imin', a, b), a), ('ilt', b, a)),
- (('ige', a, ('imin', b, a)), True),
- (('ige', ('imax', a, b), a), True),
- (('ult', a, ('umax', b, a)), ('ult', a, b)),
- (('ult', ('umin', a, b), a), ('ult', b, a)),
- (('uge', a, ('umin', b, a)), True),
- (('uge', ('umax', a, b), a), True),
- (('ilt', a, ('imin', b, a)), False),
- (('ilt', ('imax', a, b), a), False),
- (('ige', a, ('imax', b, a)), ('ige', a, b)),
- (('ige', ('imin', a, b), a), ('ige', b, a)),
- (('ult', a, ('umin', b, a)), False),
- (('ult', ('umax', a, b), a), False),
- (('uge', a, ('umax', b, a)), ('uge', a, b)),
- (('uge', ('umin', a, b), a), ('uge', b, a)),
-
- (('ilt', '#a', ('imax', '#b', c)), ('ior', ('ilt', a, b), ('ilt', a, c))),
- (('ilt', ('imin', '#a', b), '#c'), ('ior', ('ilt', a, c), ('ilt', b, c))),
- (('ige', '#a', ('imin', '#b', c)), ('ior', ('ige', a, b), ('ige', a, c))),
- (('ige', ('imax', '#a', b), '#c'), ('ior', ('ige', a, c), ('ige', b, c))),
- (('ult', '#a', ('umax', '#b', c)), ('ior', ('ult', a, b), ('ult', a, c))),
- (('ult', ('umin', '#a', b), '#c'), ('ior', ('ult', a, c), ('ult', b, c))),
- (('uge', '#a', ('umin', '#b', c)), ('ior', ('uge', a, b), ('uge', a, c))),
- (('uge', ('umax', '#a', b), '#c'), ('ior', ('uge', a, c), ('uge', b, c))),
- (('ilt', '#a', ('imin', '#b', c)), ('iand', ('ilt', a, b), ('ilt', a, c))),
- (('ilt', ('imax', '#a', b), '#c'), ('iand', ('ilt', a, c), ('ilt', b, c))),
- (('ige', '#a', ('imax', '#b', c)), ('iand', ('ige', a, b), ('ige', a, c))),
- (('ige', ('imin', '#a', b), '#c'), ('iand', ('ige', a, c), ('ige', b, c))),
- (('ult', '#a', ('umin', '#b', c)), ('iand', ('ult', a, b), ('ult', a, c))),
- (('ult', ('umax', '#a', b), '#c'), ('iand', ('ult', a, c), ('ult', b, c))),
- (('uge', '#a', ('umax', '#b', c)), ('iand', ('uge', a, b), ('uge', a, c))),
- (('uge', ('umin', '#a', b), '#c'), ('iand', ('uge', a, c), ('uge', b, c))),
-
- (('fabs', ('slt', a, b)), ('slt', a, b)),
- (('fabs', ('sge', a, b)), ('sge', a, b)),
- (('fabs', ('seq', a, b)), ('seq', a, b)),
- (('fabs', ('sne', a, b)), ('sne', a, b)),
- (('slt', a, b), ('b2f', ('flt', a, b)), 'options->lower_scmp'),
- (('sge', a, b), ('b2f', ('fge', a, b)), 'options->lower_scmp'),
- (('seq', a, b), ('b2f', ('feq', a, b)), 'options->lower_scmp'),
- (('sne', a, b), ('b2f', ('fne', a, b)), 'options->lower_scmp'),
- (('fne', ('fneg', a), a), ('fne', a, 0.0)),
- (('feq', ('fneg', a), a), ('feq', a, 0.0)),
- # Emulating booleans
- (('imul', ('b2i', a), ('b2i', b)), ('b2i', ('iand', a, b))),
- (('fmul', ('b2f', a), ('b2f', b)), ('b2f', ('iand', a, b))),
- (('fsat', ('fadd', ('b2f', a), ('b2f', b))), ('b2f', ('ior', a, b))),
- (('iand', 'a@bool', 1.0), ('b2f', a), '!options->lower_b2f'),
- # True/False are ~0 and 0 in NIR. b2i of True is 1, and -1 is ~0 (True).
- (('ineg', ('b2i@32', a)), a),
- (('flt', ('fneg', ('b2f', a)), 0), a), # Generated by TGSI KILL_IF.
- (('flt', ('fsub', 0.0, ('b2f', a)), 0), a), # Generated by TGSI KILL_IF.
- # Comparison with the same args. Note that these are not done for
- # the float versions because NaN always returns false on float
- # inequalities.
- (('ilt', a, a), False),
- (('ige', a, a), True),
- (('ieq', a, a), True),
- (('ine', a, a), False),
- (('ult', a, a), False),
- (('uge', a, a), True),
- # Logical and bit operations
- (('fand', a, 0.0), 0.0),
- (('iand', a, a), a),
- (('iand', a, ~0), a),
- (('iand', a, 0), 0),
- (('ior', a, a), a),
- (('ior', a, 0), a),
- (('ior', a, True), True),
- (('fxor', a, a), 0.0),
- (('ixor', a, a), 0),
- (('ixor', a, 0), a),
- (('inot', ('inot', a)), a),
- (('ior', ('iand', a, b), b), b),
- (('ior', ('ior', a, b), b), ('ior', a, b)),
- (('iand', ('ior', a, b), b), b),
- (('iand', ('iand', a, b), b), ('iand', a, b)),
- # DeMorgan's Laws
- (('iand', ('inot', a), ('inot', b)), ('inot', ('ior', a, b))),
- (('ior', ('inot', a), ('inot', b)), ('inot', ('iand', a, b))),
- # Shift optimizations
- (('ishl', 0, a), 0),
- (('ishl', a, 0), a),
- (('ishr', 0, a), 0),
- (('ishr', a, 0), a),
- (('ushr', 0, a), 0),
- (('ushr', a, 0), a),
- (('iand', 0xff, ('ushr@32', a, 24)), ('ushr', a, 24)),
- (('iand', 0xffff, ('ushr@32', a, 16)), ('ushr', a, 16)),
- # Exponential/logarithmic identities
- (('~fexp2', ('flog2', a)), a), # 2^lg2(a) = a
- (('~flog2', ('fexp2', a)), a), # lg2(2^a) = a
- (('fpow', a, b), ('fexp2', ('fmul', ('flog2', a), b)), 'options->lower_fpow'), # a^b = 2^(lg2(a)*b)
- (('~fexp2', ('fmul', ('flog2', a), b)), ('fpow', a, b), '!options->lower_fpow'), # 2^(lg2(a)*b) = a^b
- (('~fexp2', ('fadd', ('fmul', ('flog2', a), b), ('fmul', ('flog2', c), d))),
- ('~fmul', ('fpow', a, b), ('fpow', c, d)), '!options->lower_fpow'), # 2^(lg2(a) * b + lg2(c) + d) = a^b * c^d
- (('~fexp2', ('fmul', ('flog2', a), 2.0)), ('fmul', a, a)),
- (('~fexp2', ('fmul', ('flog2', a), 4.0)), ('fmul', ('fmul', a, a), ('fmul', a, a))),
- (('~fpow', a, 1.0), a),
- (('~fpow', a, 2.0), ('fmul', a, a)),
- (('~fpow', a, 4.0), ('fmul', ('fmul', a, a), ('fmul', a, a))),
- (('~fpow', 2.0, a), ('fexp2', a)),
- (('~fpow', ('fpow', a, 2.2), 0.454545), a),
- (('~fpow', ('fabs', ('fpow', a, 2.2)), 0.454545), ('fabs', a)),
- (('~fsqrt', ('fexp2', a)), ('fexp2', ('fmul', 0.5, a))),
- (('~frcp', ('fexp2', a)), ('fexp2', ('fneg', a))),
- (('~frsq', ('fexp2', a)), ('fexp2', ('fmul', -0.5, a))),
- (('~flog2', ('fsqrt', a)), ('fmul', 0.5, ('flog2', a))),
- (('~flog2', ('frcp', a)), ('fneg', ('flog2', a))),
- (('~flog2', ('frsq', a)), ('fmul', -0.5, ('flog2', a))),
- (('~flog2', ('fpow', a, b)), ('fmul', b, ('flog2', a))),
- (('~fmul', ('fexp2(is_used_once)', a), ('fexp2(is_used_once)', b)), ('fexp2', ('fadd', a, b))),
- # Division and reciprocal
- (('~fdiv', 1.0, a), ('frcp', a)),
- (('fdiv', a, b), ('fmul', a, ('frcp', b)), 'options->lower_fdiv'),
- (('~frcp', ('frcp', a)), a),
- (('~frcp', ('fsqrt', a)), ('frsq', a)),
- (('fsqrt', a), ('frcp', ('frsq', a)), 'options->lower_fsqrt'),
- (('~frcp', ('frsq', a)), ('fsqrt', a), '!options->lower_fsqrt'),
- # Boolean simplifications
- (('ieq', 'a@bool', True), a),
- (('ine(is_not_used_by_if)', 'a@bool', True), ('inot', a)),
- (('ine', 'a@bool', False), a),
- (('ieq(is_not_used_by_if)', 'a@bool', False), ('inot', 'a')),
- (('bcsel', a, True, False), a),
- (('bcsel', a, False, True), ('inot', a)),
- (('bcsel@32', a, 1.0, 0.0), ('b2f', a)),
- (('bcsel@32', a, 0.0, 1.0), ('b2f', ('inot', a))),
- (('bcsel@32', a, -1.0, -0.0), ('fneg', ('b2f', a))),
- (('bcsel@32', a, -0.0, -1.0), ('fneg', ('b2f', ('inot', a)))),
- (('bcsel', True, b, c), b),
- (('bcsel', False, b, c), c),
- (('bcsel', a, ('b2f(is_used_once)', b), ('b2f', c)), ('b2f', ('bcsel', a, b, c))),
- # The result of this should be hit by constant propagation and, in the
- # next round of opt_algebraic, get picked up by one of the above two.
- (('bcsel', '#a', b, c), ('bcsel', ('ine', 'a', 0), b, c)),
-
- (('bcsel', a, b, b), b),
- (('fcsel', a, b, b), b),
-
- # Conversions
- (('i2b', ('b2i', a)), a),
- (('i2b', 'a@bool'), a),
- (('f2i32', ('ftrunc', a)), ('f2i32', a)),
- (('f2u32', ('ftrunc', a)), ('f2u32', a)),
- (('i2b', ('ineg', a)), ('i2b', a)),
- (('i2b', ('iabs', a)), ('i2b', a)),
- (('fabs', ('b2f', a)), ('b2f', a)),
- (('iabs', ('b2i', a)), ('b2i', a)),
- (('inot', ('f2b', a)), ('feq', a, 0.0)),
-
- # Ironically, mark these as imprecise because removing the conversions may
- # preserve more precision than doing the conversions (e.g.,
- # uint(float(0x81818181u)) == 0x81818200).
- (('~f2i32', ('i2f32', 'a@32')), a),
- (('~f2i32', ('u2f32', 'a@32')), a),
- (('~f2u32', ('i2f32', 'a@32')), a),
- (('~f2u32', ('u2f32', 'a@32')), a),
-
- # Packing and then unpacking does nothing
- (('unpack_64_2x32_split_x', ('pack_64_2x32_split', a, b)), a),
- (('unpack_64_2x32_split_y', ('pack_64_2x32_split', a, b)), b),
- (('pack_64_2x32_split', ('unpack_64_2x32_split_x', a),
- ('unpack_64_2x32_split_y', a)), a),
-
- # Byte extraction
- (('ushr', ('ishl', 'a@32', 24), 24), ('extract_u8', a, 0), '!options->lower_extract_byte'),
- (('ushr', ('ishl', 'a@32', 16), 24), ('extract_u8', a, 1), '!options->lower_extract_byte'),
- (('ushr', ('ishl', 'a@32', 8), 24), ('extract_u8', a, 2), '!options->lower_extract_byte'),
- (('ushr', 'a@32', 24), ('extract_u8', a, 3), '!options->lower_extract_byte'),
- (('ishr', ('ishl', 'a@32', 24), 24), ('extract_i8', a, 0), '!options->lower_extract_byte'),
- (('ishr', ('ishl', 'a@32', 16), 24), ('extract_i8', a, 1), '!options->lower_extract_byte'),
- (('ishr', ('ishl', 'a@32', 8), 24), ('extract_i8', a, 2), '!options->lower_extract_byte'),
- (('ishr', 'a@32', 24), ('extract_i8', a, 3), '!options->lower_extract_byte'),
- (('iand', 0xff, ('ushr', a, 16)), ('extract_u8', a, 2), '!options->lower_extract_byte'),
- (('iand', 0xff, ('ushr', a, 8)), ('extract_u8', a, 1), '!options->lower_extract_byte'),
- (('iand', 0xff, a), ('extract_u8', a, 0), '!options->lower_extract_byte'),
-
- # Word extraction
- (('ushr', ('ishl', 'a@32', 16), 16), ('extract_u16', a, 0), '!options->lower_extract_word'),
- (('ushr', 'a@32', 16), ('extract_u16', a, 1), '!options->lower_extract_word'),
- (('ishr', ('ishl', 'a@32', 16), 16), ('extract_i16', a, 0), '!options->lower_extract_word'),
- (('ishr', 'a@32', 16), ('extract_i16', a, 1), '!options->lower_extract_word'),
- (('iand', 0xffff, a), ('extract_u16', a, 0), '!options->lower_extract_word'),
-
- # Subtracts
- (('~fsub', a, ('fsub', 0.0, b)), ('fadd', a, b)),
- (('isub', a, ('isub', 0, b)), ('iadd', a, b)),
- (('ussub_4x8', a, 0), a),
- (('ussub_4x8', a, ~0), 0),
- (('fsub', a, b), ('fadd', a, ('fneg', b)), 'options->lower_sub'),
- (('isub', a, b), ('iadd', a, ('ineg', b)), 'options->lower_sub'),
- (('fneg', a), ('fsub', 0.0, a), 'options->lower_negate'),
- (('ineg', a), ('isub', 0, a), 'options->lower_negate'),
- (('~fadd', a, ('fsub', 0.0, b)), ('fsub', a, b)),
- (('iadd', a, ('isub', 0, b)), ('isub', a, b)),
- (('fabs', ('fsub', 0.0, a)), ('fabs', a)),
- (('iabs', ('isub', 0, a)), ('iabs', a)),
-
- # Propagate negation up multiplication chains
- (('fmul', ('fneg', a), b), ('fneg', ('fmul', a, b))),
- (('imul', ('ineg', a), b), ('ineg', ('imul', a, b))),
-
- # Propagate constants up multiplication chains
- (('~fmul(is_used_once)', ('fmul(is_used_once)', 'a(is_not_const)', 'b(is_not_const)'), '#c'), ('fmul', ('fmul', a, c), b)),
- (('imul(is_used_once)', ('imul(is_used_once)', 'a(is_not_const)', 'b(is_not_const)'), '#c'), ('imul', ('imul', a, c), b)),
- (('~fadd(is_used_once)', ('fadd(is_used_once)', 'a(is_not_const)', 'b(is_not_const)'), '#c'), ('fadd', ('fadd', a, c), b)),
- (('iadd(is_used_once)', ('iadd(is_used_once)', 'a(is_not_const)', 'b(is_not_const)'), '#c'), ('iadd', ('iadd', a, c), b)),
-
- # Reassociate constants in add/mul chains so they can be folded together.
- # For now, we mostly only handle cases where the constants are separated by
- # a single non-constant. We could do better eventually.
- (('~fmul', '#a', ('fmul', b, '#c')), ('fmul', ('fmul', a, c), b)),
- (('imul', '#a', ('imul', b, '#c')), ('imul', ('imul', a, c), b)),
- (('~fadd', '#a', ('fadd', b, '#c')), ('fadd', ('fadd', a, c), b)),
- (('~fadd', '#a', ('fneg', ('fadd', b, '#c'))), ('fadd', ('fadd', a, ('fneg', c)), ('fneg', b))),
- (('iadd', '#a', ('iadd', b, '#c')), ('iadd', ('iadd', a, c), b)),
-
- # By definition...
- (('bcsel', ('ige', ('find_lsb', a), 0), ('find_lsb', a), -1), ('find_lsb', a)),
- (('bcsel', ('ige', ('ifind_msb', a), 0), ('ifind_msb', a), -1), ('ifind_msb', a)),
- (('bcsel', ('ige', ('ufind_msb', a), 0), ('ufind_msb', a), -1), ('ufind_msb', a)),
-
- (('bcsel', ('ine', a, 0), ('find_lsb', a), -1), ('find_lsb', a)),
- (('bcsel', ('ine', a, 0), ('ifind_msb', a), -1), ('ifind_msb', a)),
- (('bcsel', ('ine', a, 0), ('ufind_msb', a), -1), ('ufind_msb', a)),
-
- (('bcsel', ('ine', a, -1), ('ifind_msb', a), -1), ('ifind_msb', a)),
-
- # Misc. lowering
- (('fmod@32', a, b), ('fsub', a, ('fmul', b, ('ffloor', ('fdiv', a, b)))), 'options->lower_fmod32'),
- (('fmod@64', a, b), ('fsub', a, ('fmul', b, ('ffloor', ('fdiv', a, b)))), 'options->lower_fmod64'),
- (('frem', a, b), ('fsub', a, ('fmul', b, ('ftrunc', ('fdiv', a, b)))), 'options->lower_fmod32'),
- (('uadd_carry@32', a, b), ('b2i', ('ult', ('iadd', a, b), a)), 'options->lower_uadd_carry'),
- (('usub_borrow@32', a, b), ('b2i', ('ult', a, b)), 'options->lower_usub_borrow'),
-
- (('bitfield_insert', 'base', 'insert', 'offset', 'bits'),
- ('bcsel', ('ilt', 31, 'bits'), 'insert',
- ('bfi', ('bfm', 'bits', 'offset'), 'insert', 'base')),
- 'options->lower_bitfield_insert'),
-
- # Alternative lowering that doesn't rely on bfi.
- (('bitfield_insert', 'base', 'insert', 'offset', 'bits'),
- ('bcsel', ('ilt', 31, 'bits'),
- 'insert',
- ('ior',
- ('iand', 'base', ('inot', ('bfm', 'bits', 'offset'))),
- ('iand', ('ishl', 'insert', 'offset'), ('bfm', 'bits', 'offset')))),
- 'options->lower_bitfield_insert_to_shifts'),
-
- # bfm lowering -- note that the NIR opcode is undefined if either arg is 32.
- (('bfm', 'bits', 'offset'),
- ('ishl', ('isub', ('ishl', 1, 'bits'), 1), 'offset'),
- 'options->lower_bfm'),
-
- (('ibitfield_extract', 'value', 'offset', 'bits'),
- ('bcsel', ('ilt', 31, 'bits'), 'value',
- ('ibfe', 'value', 'offset', 'bits')),
- 'options->lower_bitfield_extract'),
-
- (('ubitfield_extract', 'value', 'offset', 'bits'),
- ('bcsel', ('ult', 31, 'bits'), 'value',
- ('ubfe', 'value', 'offset', 'bits')),
- 'options->lower_bitfield_extract'),
-
- (('ibitfield_extract', 'value', 'offset', 'bits'),
- ('bcsel', ('ieq', 0, 'bits'),
- 0,
- ('ishr',
- ('ishl', 'value', ('isub', ('isub', 32, 'bits'), 'offset')),
- ('isub', 32, 'bits'))),
- 'options->lower_bitfield_extract_to_shifts'),
-
- (('ubitfield_extract', 'value', 'offset', 'bits'),
- ('iand',
- ('ushr', 'value', 'offset'),
- ('bcsel', ('ieq', 'bits', 32),
- 0xffffffff,
- ('bfm', 'bits', 0))),
- 'options->lower_bitfield_extract_to_shifts'),
-
- (('ifind_msb', 'value'),
- ('ufind_msb', ('bcsel', ('ilt', 'value', 0), ('inot', 'value'), 'value')),
- 'options->lower_ifind_msb'),
-
- (('find_lsb', 'value'),
- ('ufind_msb', ('iand', 'value', ('ineg', 'value'))),
- 'options->lower_find_lsb'),
-
- (('extract_i8', a, 'b@32'),
- ('ishr', ('ishl', a, ('imul', ('isub', 3, b), 8)), 24),
- 'options->lower_extract_byte'),
-
- (('extract_u8', a, 'b@32'),
- ('iand', ('ushr', a, ('imul', b, 8)), 0xff),
- 'options->lower_extract_byte'),
-
- (('extract_i16', a, 'b@32'),
- ('ishr', ('ishl', a, ('imul', ('isub', 1, b), 16)), 16),
- 'options->lower_extract_word'),
-
- (('extract_u16', a, 'b@32'),
- ('iand', ('ushr', a, ('imul', b, 16)), 0xffff),
- 'options->lower_extract_word'),
-
- (('pack_unorm_2x16', 'v'),
- ('pack_uvec2_to_uint',
- ('f2u32', ('fround_even', ('fmul', ('fsat', 'v'), 65535.0)))),
- 'options->lower_pack_unorm_2x16'),
-
- (('pack_unorm_4x8', 'v'),
- ('pack_uvec4_to_uint',
- ('f2u32', ('fround_even', ('fmul', ('fsat', 'v'), 255.0)))),
- 'options->lower_pack_unorm_4x8'),
-
- (('pack_snorm_2x16', 'v'),
- ('pack_uvec2_to_uint',
- ('f2i32', ('fround_even', ('fmul', ('fmin', 1.0, ('fmax', -1.0, 'v')), 32767.0)))),
- 'options->lower_pack_snorm_2x16'),
-
- (('pack_snorm_4x8', 'v'),
- ('pack_uvec4_to_uint',
- ('f2i32', ('fround_even', ('fmul', ('fmin', 1.0, ('fmax', -1.0, 'v')), 127.0)))),
- 'options->lower_pack_snorm_4x8'),
-
- (('unpack_unorm_2x16', 'v'),
- ('fdiv', ('u2f32', ('vec2', ('extract_u16', 'v', 0),
- ('extract_u16', 'v', 1))),
- 65535.0),
- 'options->lower_unpack_unorm_2x16'),
-
- (('unpack_unorm_4x8', 'v'),
- ('fdiv', ('u2f32', ('vec4', ('extract_u8', 'v', 0),
- ('extract_u8', 'v', 1),
- ('extract_u8', 'v', 2),
- ('extract_u8', 'v', 3))),
- 255.0),
- 'options->lower_unpack_unorm_4x8'),
-
- (('unpack_snorm_2x16', 'v'),
- ('fmin', 1.0, ('fmax', -1.0, ('fdiv', ('i2f32', ('vec2', ('extract_i16', 'v', 0),
- ('extract_i16', 'v', 1))),
- 32767.0))),
- 'options->lower_unpack_snorm_2x16'),
-
- (('unpack_snorm_4x8', 'v'),
- ('fmin', 1.0, ('fmax', -1.0, ('fdiv', ('i2f32', ('vec4', ('extract_i8', 'v', 0),
- ('extract_i8', 'v', 1),
- ('extract_i8', 'v', 2),
- ('extract_i8', 'v', 3))),
- 127.0))),
- 'options->lower_unpack_snorm_4x8'),
- ]
-
- invert = OrderedDict([('feq', 'fne'), ('fne', 'feq'), ('fge', 'flt'), ('flt', 'fge')])
-
- for left, right in itertools.combinations_with_replacement(invert.keys(), 2):
- optimizations.append((('inot', ('ior(is_used_once)', (left, a, b), (right, c, d))),
- ('iand', (invert[left], a, b), (invert[right], c, d))))
- optimizations.append((('inot', ('iand(is_used_once)', (left, a, b), (right, c, d))),
- ('ior', (invert[left], a, b), (invert[right], c, d))))
-
- # Optimize x2yN(b2x(x)) -> b2y
- optimizations.append((('f2b', ('b2f', a)), a))
- optimizations.append((('i2b', ('b2i', a)), a))
- for x, y in itertools.product(['f', 'u', 'i'], ['f', 'u', 'i']):
- if x != 'f' and y != 'f' and x != y:
- continue
-
- b2x = 'b2f' if x == 'f' else 'b2i'
- b2y = 'b2f' if y == 'f' else 'b2i'
-
- for N in [8, 16, 32, 64]:
- if y == 'f' and N == 8:
- continue
-
- x2yN = '{}2{}{}'.format(x, y, N)
- optimizations.append(((x2yN, (b2x, a)), (b2y, a)))
-
- def fexp2i(exp, bits):
- # We assume that exp is already in the right range.
- if bits == 32:
- return ('ishl', ('iadd', exp, 127), 23)
- elif bits == 64:
- return ('pack_64_2x32_split', 0, ('ishl', ('iadd', exp, 1023), 20))
- else:
- assert False
-
- def ldexp(f, exp, bits):
- # First, we clamp exp to a reasonable range. The maximum possible range
- # for a normal exponent is [-126, 127] and, throwing in denormals, you get
- # a maximum range of [-149, 127]. This means that we can potentially have
- # a swing of +-276. If you start with FLT_MAX, you actually have to do
- # ldexp(FLT_MAX, -278) to get it to flush all the way to zero. The GLSL
- # spec, on the other hand, only requires that we handle an exponent value
- # in the range [-126, 128]. This implementation is *mostly* correct; it
- # handles a range on exp of [-252, 254] which allows you to create any
- # value (including denorms if the hardware supports it) and to adjust the
- # exponent of any normal value to anything you want.
- if bits == 32:
- exp = ('imin', ('imax', exp, -252), 254)
- elif bits == 64:
- exp = ('imin', ('imax', exp, -2044), 2046)
- else:
- assert False
-
- # Now we compute two powers of 2, one for exp/2 and one for exp-exp/2.
- # (We use ishr which isn't the same for -1, but the -1 case still works
- # since we use exp-exp/2 as the second exponent.) While the spec
- # technically defines ldexp as f * 2.0^exp, simply multiplying once doesn't
- # work with denormals and doesn't allow for the full swing in exponents
- # that you can get with normalized values. Instead, we create two powers
- # of two and multiply by them each in turn. That way the effective range
- # of our exponent is doubled.
- pow2_1 = fexp2i(('ishr', exp, 1), bits)
- pow2_2 = fexp2i(('isub', exp, ('ishr', exp, 1)), bits)
- return ('fmul', ('fmul', f, pow2_1), pow2_2)
-
- optimizations += [
- (('ldexp@32', 'x', 'exp'), ldexp('x', 'exp', 32), 'options->lower_ldexp'),
- (('ldexp@64', 'x', 'exp'), ldexp('x', 'exp', 64), 'options->lower_ldexp'),
- ]
-
- # Unreal Engine 4 demo applications open-codes bitfieldReverse()
- def bitfield_reverse(u):
- step1 = ('ior', ('ishl', u, 16), ('ushr', u, 16))
- step2 = ('ior', ('ishl', ('iand', step1, 0x00ff00ff), 8), ('ushr', ('iand', step1, 0xff00ff00), 8))
- step3 = ('ior', ('ishl', ('iand', step2, 0x0f0f0f0f), 4), ('ushr', ('iand', step2, 0xf0f0f0f0), 4))
- step4 = ('ior', ('ishl', ('iand', step3, 0x33333333), 2), ('ushr', ('iand', step3, 0xcccccccc), 2))
- step5 = ('ior', ('ishl', ('iand', step4, 0x55555555), 1), ('ushr', ('iand', step4, 0xaaaaaaaa), 1))
-
- return step5
-
- optimizations += [(bitfield_reverse('x@32'), ('bitfield_reverse', 'x'))]
-
- # For any float comparison operation, "cmp", if you have "a == a && a cmp b"
- # then the "a == a" is redundant because it's equivalent to "a is not NaN"
- # and, if a is a NaN then the second comparison will fail anyway.
- for op in ['flt', 'fge', 'feq']:
- optimizations += [
- (('iand', ('feq', a, a), (op, a, b)), (op, a, b)),
- (('iand', ('feq', a, a), (op, b, a)), (op, b, a)),
- ]
-
- # Add optimizations to handle the case where the result of a ternary is
- # compared to a constant. This way we can take things like
- #
- # (a ? 0 : 1) > 0
- #
- # and turn it into
- #
- # a ? (0 > 0) : (1 > 0)
- #
- # which constant folding will eat for lunch. The resulting ternary will
- # further get cleaned up by the boolean reductions above and we will be
- # left with just the original variable "a".
- for op in ['flt', 'fge', 'feq', 'fne',
- 'ilt', 'ige', 'ieq', 'ine', 'ult', 'uge']:
- optimizations += [
- ((op, ('bcsel', 'a', '#b', '#c'), '#d'),
- ('bcsel', 'a', (op, 'b', 'd'), (op, 'c', 'd'))),
- ((op, '#d', ('bcsel', a, '#b', '#c')),
- ('bcsel', 'a', (op, 'd', 'b'), (op, 'd', 'c'))),
- ]
-
-
- # For example, this converts things like
- #
- # 1 + mix(0, a - 1, condition)
- #
- # into
- #
- # mix(1, (a-1)+1, condition)
- #
- # Other optimizations will rearrange the constants.
- for op in ['fadd', 'fmul', 'iadd', 'imul']:
- optimizations += [
- ((op, ('bcsel(is_used_once)', a, '#b', c), '#d'), ('bcsel', a, (op, b, d), (op, c, d)))
- ]
-
- # This section contains "late" optimizations that should be run before
- # creating ffmas and calling regular optimizations for the final time.
- # Optimizations should go here if they help code generation and conflict
- # with the regular optimizations.
- before_ffma_optimizations = [
- # Propagate constants down multiplication chains
- (('~fmul(is_used_once)', ('fmul(is_used_once)', 'a(is_not_const)', '#b'), 'c(is_not_const)'), ('fmul', ('fmul', a, c), b)),
- (('imul(is_used_once)', ('imul(is_used_once)', 'a(is_not_const)', '#b'), 'c(is_not_const)'), ('imul', ('imul', a, c), b)),
- (('~fadd(is_used_once)', ('fadd(is_used_once)', 'a(is_not_const)', '#b'), 'c(is_not_const)'), ('fadd', ('fadd', a, c), b)),
- (('iadd(is_used_once)', ('iadd(is_used_once)', 'a(is_not_const)', '#b'), 'c(is_not_const)'), ('iadd', ('iadd', a, c), b)),
-
- (('~fadd', ('fmul', a, b), ('fmul', a, c)), ('fmul', a, ('fadd', b, c))),
- (('iadd', ('imul', a, b), ('imul', a, c)), ('imul', a, ('iadd', b, c))),
- (('~fadd', ('fneg', a), a), 0.0),
- (('iadd', ('ineg', a), a), 0),
- (('iadd', ('ineg', a), ('iadd', a, b)), b),
- (('iadd', a, ('iadd', ('ineg', a), b)), b),
- (('~fadd', ('fneg', a), ('fadd', a, b)), b),
- (('~fadd', a, ('fadd', ('fneg', a), b)), b),
- ]
-
- # This section contains "late" optimizations that should be run after the
- # regular optimizations have finished. Optimizations should go here if
- # they help code generation but do not necessarily produce code that is
- # more easily optimizable.
- late_optimizations = [
- # Most of these optimizations aren't quite safe when you get infinity or
- # Nan involved but the first one should be fine.
- (('flt', ('fadd', a, b), 0.0), ('flt', a, ('fneg', b))),
- (('flt', ('fneg', ('fadd', a, b)), 0.0), ('flt', ('fneg', a), b)),
- (('~fge', ('fadd', a, b), 0.0), ('fge', a, ('fneg', b))),
- (('~fge', ('fneg', ('fadd', a, b)), 0.0), ('fge', ('fneg', a), b)),
- (('~feq', ('fadd', a, b), 0.0), ('feq', a, ('fneg', b))),
- (('~fne', ('fadd', a, b), 0.0), ('fne', a, ('fneg', b))),
-
- (('~fge', ('fmin(is_used_once)', ('fadd(is_used_once)', a, b), ('fadd', c, d)), 0.0), ('iand', ('fge', a, ('fneg', b)), ('fge', c, ('fneg', d)))),
-
- (('fdot2', a, b), ('fdot_replicated2', a, b), 'options->fdot_replicates'),
- (('fdot3', a, b), ('fdot_replicated3', a, b), 'options->fdot_replicates'),
- (('fdot4', a, b), ('fdot_replicated4', a, b), 'options->fdot_replicates'),
- (('fdph', a, b), ('fdph_replicated', a, b), 'options->fdot_replicates'),
-
- (('b2f(is_used_more_than_once)', ('inot', a)), ('bcsel', a, 0.0, 1.0)),
- (('fneg(is_used_more_than_once)', ('b2f', ('inot', a))), ('bcsel', a, -0.0, -1.0)),
-
- # we do these late so that we don't get in the way of creating ffmas
- (('fmin', ('fadd(is_used_once)', '#c', a), ('fadd(is_used_once)', '#c', b)), ('fadd', c, ('fmin', a, b))),
- (('fmax', ('fadd(is_used_once)', '#c', a), ('fadd(is_used_once)', '#c', b)), ('fadd', c, ('fmax', a, b))),
-
- # Lowered for backends without a dedicated b2f instruction
- (('b2f@32', a), ('iand', a, 1.0), 'options->lower_b2f'),
- ]
-
- print(nir_algebraic.AlgebraicPass("nir_opt_algebraic", optimizations).render())
- print(nir_algebraic.AlgebraicPass("nir_opt_algebraic_before_ffma",
- before_ffma_optimizations).render())
- print(nir_algebraic.AlgebraicPass("nir_opt_algebraic_late",
- late_optimizations).render())
|