diff options
author | Jose Fonseca <[email protected]> | 2015-02-27 15:32:24 +0000 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2015-03-04 10:52:02 +0000 |
commit | 40a4797384d89c4ae225e1999ebe502cd50b2500 (patch) | |
tree | 6656fe1e797db6214d4120543f46f3b11158c473 /src/glsl/nir/nir_from_ssa.c | |
parent | 073a5d2e84ac9d95f0d037aeb04889822e76aa4e (diff) |
nir: Use helper macros for dealing with VLAs.
v2:
- Single statement, by using memset return value as suggested by Ian
Romanick.
- No internal declaration, as suggested by Jason Ekstrand.
- Move macros to a header.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir_from_ssa.c')
-rw-r--r-- | src/glsl/nir/nir_from_ssa.c | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/src/glsl/nir/nir_from_ssa.c b/src/glsl/nir/nir_from_ssa.c index 66339f3b483..c3090fb06f4 100644 --- a/src/glsl/nir/nir_from_ssa.c +++ b/src/glsl/nir/nir_from_ssa.c @@ -26,7 +26,7 @@ */ #include "nir.h" -#include "c99_alloca.h" +#include "nir_vla.h" /* * This file implements an out-of-SSA pass as described in "Revisiting @@ -182,7 +182,7 @@ merge_merge_sets(merge_set *a, merge_set *b) static bool merge_sets_interfere(merge_set *a, merge_set *b) { - merge_node **dom = alloca((a->size + b->size) * sizeof *dom); + NIR_VLA(merge_node *, dom, a->size + b->size); int dom_idx = -1; struct exec_node *an = exec_list_get_head(&a->nodes); @@ -674,21 +674,16 @@ resolve_parallel_copy(nir_parallel_copy_instr *pcopy, } /* The register/source corresponding to the given index */ - nir_src *values = alloca(num_copies * 2 * sizeof *values); - memset(values, 0, num_copies * 2 * sizeof *values); + NIR_VLA_ZERO(nir_src, values, num_copies * 2); - /* The current location of a given piece of data */ - int *loc = alloca(num_copies * 2 * sizeof *loc); + /* The current location of a given piece of data. We will use -1 for "null" */ + NIR_VLA_FILL(int, loc, num_copies * 2, -1); - /* The piece of data that the given piece of data is to be copied from */ - int *pred = alloca(num_copies * 2 * sizeof *pred); - - /* Initialize loc and pred. We will use -1 for "null" */ - memset(loc, -1, num_copies * 2 * sizeof *loc); - memset(pred, -1, num_copies * 2 * sizeof *pred); + /* The piece of data that the given piece of data is to be copied from. We will use -1 for "null" */ + NIR_VLA_FILL(int, pred, num_copies * 2, -1); /* The destinations we have yet to properly fill */ - int *to_do = alloca(num_copies * 2 * sizeof *to_do); + NIR_VLA(int, to_do, num_copies * 2); int to_do_idx = -1; /* Now we set everything up: @@ -738,7 +733,7 @@ resolve_parallel_copy(nir_parallel_copy_instr *pcopy, } /* Currently empty destinations we can go ahead and fill */ - int *ready = alloca(num_copies * 2 * sizeof *ready); + NIR_VLA(int, ready, num_copies * 2); int ready_idx = -1; /* Mark the ones that are ready for copying. We know an index is a |