diff options
author | Jason Ekstrand <[email protected]> | 2016-11-29 22:19:28 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-12-02 10:53:32 -0800 |
commit | 19a541f496aace95d6660ed7e216fecc8be2e49d (patch) | |
tree | 5ce74da718bdf4c831135ba290ec781b8c0b67db /src/compiler/nir/nir.h | |
parent | c45d84ad8349d0c69893458d6c58eb5f6f1609c4 (diff) |
nir: Get rid of nir_constant_data
This has bothered me for about as long as NIR has been around. Why do we
have two different unions for constants? No good reason other than one of
them is a direct port from GLSL IR.
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 30 |
1 files changed, 10 insertions, 20 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 3e6d168e974..9e8ed2cd47d 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -97,16 +97,15 @@ typedef enum { nir_var_all = ~0, } nir_variable_mode; -/** - * Data stored in an nir_constant - */ -union nir_constant_data { - unsigned u[16]; - int i[16]; - float f[16]; - bool b[16]; - double d[16]; -}; + +typedef union { + float f32[4]; + double f64[4]; + int32_t i32[4]; + uint32_t u32[4]; + int64_t i64[4]; + uint64_t u64[4]; +} nir_const_value; typedef struct nir_constant { /** @@ -116,7 +115,7 @@ typedef struct nir_constant { * by the type associated with the \c nir_variable. Constants may be * scalars, vectors, or matrices. */ - union nir_constant_data value; + nir_const_value values[4]; /* we could get this from the var->type but makes clone *much* easier to * not have to care about the type. @@ -1345,15 +1344,6 @@ nir_tex_instr_src_index(nir_tex_instr *instr, nir_tex_src_type type) void nir_tex_instr_remove_src(nir_tex_instr *tex, unsigned src_idx); -typedef union { - float f32[4]; - double f64[4]; - int32_t i32[4]; - uint32_t u32[4]; - int64_t i64[4]; - uint64_t u64[4]; -} nir_const_value; - typedef struct { nir_instr instr; |