From 922801b77d14bb7ebf762aa1f208997a072c9a1c Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Wed, 23 Oct 2019 11:43:59 +1100 Subject: [PATCH] nir: improve nir_variable packing MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Before: /* size: 136, cachelines: 3, members: 10 */ After: /* size: 128, cachelines: 2, members: 10 */ Reviewed-by: Marek Olšák Reviewed-by: Rob Clark --- src/compiler/nir/nir.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 33735d4320b..6496ad92b11 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -498,6 +498,9 @@ typedef struct nir_variable { } image; } data; + /* Number of nir_variable_data members */ + unsigned num_members; + /** * Built-in state that backs this uniform * @@ -539,7 +542,6 @@ typedef struct nir_variable { * inputs each with their own layout specifier. This is only allowed on * variables with a struct or array of array of struct type. */ - unsigned num_members; struct nir_variable_data *members; } nir_variable; -- 2.30.2