diff options
author | Jason Ekstrand <[email protected]> | 2016-04-27 10:57:00 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-04-28 21:36:52 -0700 |
commit | bee40dd7309a1ed3acaa7c92fde199548047318d (patch) | |
tree | 9fa71312accdb668f8bfc811a7817fea669fd85c /src/compiler/nir/nir_opcodes.py | |
parent | 2655265fcba9017e793026c76e490e04db088c8f (diff) |
nir/opcodes: Simplify the expressions for [un]pack_double
The new expressions are more explicit in terms of where the bits go so it's
a little easier to tell what's going on. This is the way GLSL specifies
things so it's a bit easier to verify too. It also has the benifit that
the new expressions easily vectorize so we can constant-fold vector forms
of the _split versions correctly.
Reviewed-by: Samuel Iglesias Gonsálvez <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_opcodes.py')
-rw-r--r-- | src/compiler/nir/nir_opcodes.py | 69 |
1 files changed, 8 insertions, 61 deletions
diff --git a/src/compiler/nir/nir_opcodes.py b/src/compiler/nir/nir_opcodes.py index e75ca28cf0e..6f024bf4940 100644 --- a/src/compiler/nir/nir_opcodes.py +++ b/src/compiler/nir/nir_opcodes.py @@ -262,33 +262,11 @@ dst.x = (src0.x << 0) | (src0.w << 24); """) -unop_horiz("pack_double_2x32", 1, tuint64, 2, tuint32, """ -union { - uint64_t u64; - struct { - uint32_t i1; - uint32_t i2; - }; -} di; - -di.i1 = src0.x; -di.i2 = src0.y; -dst.x = di.u64; -""") +unop_horiz("pack_double_2x32", 1, tuint64, 2, tuint32, + "dst.x = src0.x | ((uint64_t)src0.y << 32);") -unop_horiz("unpack_double_2x32", 2, tuint32, 1, tuint64, """ -union { - uint64_t u64; - struct { - uint32_t i1; - uint32_t i2; - }; -} di; - -di.u64 = src0.x; -dst.x = di.i1; -dst.y = di.i2; -""") +unop_horiz("unpack_double_2x32", 2, tuint32, 1, tuint64, + "dst.x = src0.x; dst.y = src0.x >> 32;") # Lowered floating point unpacking operations. @@ -298,29 +276,8 @@ unop_horiz("unpack_half_2x16_split_x", 1, tfloat32, 1, tuint32, unop_horiz("unpack_half_2x16_split_y", 1, tfloat32, 1, tuint32, "unpack_half_1x16((uint16_t)(src0.x >> 16))") -unop_convert("unpack_double_2x32_split_x", tuint32, tuint64, """ -union { - uint64_t u64; - struct { - uint32_t x; - uint32_t y; - }; -} di; -di.u64 = src0; -dst = di.x; -""") - -unop_convert("unpack_double_2x32_split_y", tuint32, tuint64, """ -union { - uint64_t u64; - struct { - uint32_t x; - uint32_t y; - }; -} di; -di.u64 = src0; -dst = di.y; -""") +unop_convert("unpack_double_2x32_split_x", tuint32, tuint64, "src0") +unop_convert("unpack_double_2x32_split_y", tuint32, tuint64, "src0 >> 32") # Bit operations, part of ARB_gpu_shader5. @@ -600,18 +557,8 @@ binop("fpow", tfloat, "", "bit_size == 64 ? powf(src0, src1) : pow(src0, src1)") binop_horiz("pack_half_2x16_split", 1, tuint32, 1, tfloat32, 1, tfloat32, "pack_half_1x16(src0.x) | (pack_half_1x16(src1.x) << 16)") -binop_convert("pack_double_2x32_split", tuint64, tuint32, "", """ -union { - uint64_t u64; - struct { - uint32_t x; - uint32_t y; - }; -} di; -di.x = src0; -di.y = src1; -dst = di.u64; -""") +binop_convert("pack_double_2x32_split", tuint64, tuint32, "", + "src0 | ((uint64_t)src1 << 32)") # bfm implements the behavior of the first operation of the SM5 "bfi" assembly # and that of the "bfi1" i965 instruction. That is, it has undefined behavior |