From: Chris Forbes Date: Sun, 26 Jul 2020 17:43:33 +0000 (-0700) Subject: bifrost: Add lowering for b2i32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef781880eb3969620e19ba118410456e3ca300f6;p=mesa.git bifrost: Add lowering for b2i32 Since the bool representation is 0/~0, we can convert to int just by &1. Signed-off-by: Chris Forbes Reviewed-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/bifrost_nir_algebraic.py b/src/panfrost/bifrost/bifrost_nir_algebraic.py index d28c82d401a..6f3f6eee1a9 100644 --- a/src/panfrost/bifrost/bifrost_nir_algebraic.py +++ b/src/panfrost/bifrost/bifrost_nir_algebraic.py @@ -87,7 +87,8 @@ for op in SPECIAL: converts += [((op + '@16', a), ('f2f16', (op, ('f2f32', a))))] converts += [(('f2b32', a), ('fne32', a, 0.0)), - (('i2b32', a), ('ine32', a, 0))] + (('i2b32', a), ('ine32', a, 0)), + (('b2i32', a), ('iand', 'a@32', 1))] def main(): parser = argparse.ArgumentParser()