/external/mesa3d/src/compiler/nir/ |
D | nir_liveness.c | 47 unsigned bitset_words; member 73 state->bitset_words); in init_liveness_block() 74 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD)); in init_liveness_block() 77 state->bitset_words); in init_liveness_block() 78 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD)); in init_liveness_block() 124 NIR_VLA(BITSET_WORD, live, state->bitset_words); in propagate_across_edge() 125 memcpy(live, succ->live_in, state->bitset_words * sizeof *live); in propagate_across_edge() 150 for (unsigned i = 0; i < state->bitset_words; ++i) { in propagate_across_edge() 178 state.bitset_words = BITSET_WORDS(state.num_ssa_defs); in nir_live_ssa_defs_impl() 198 state.bitset_words * sizeof(BITSET_WORD)); in nir_live_ssa_defs_impl()
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir_live_variables.c | 238 qir_live_variables_dataflow(struct vc4_compile *c, int bitset_words) in qir_live_variables_dataflow() argument 248 for (int i = 0; i < bitset_words; i++) { in qir_live_variables_dataflow() 259 for (int i = 0; i < bitset_words; i++) { in qir_live_variables_dataflow() 302 int bitset_words = BITSET_WORDS(c->num_temps); in qir_calculate_live_intervals() local 318 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); in qir_calculate_live_intervals() 319 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); in qir_calculate_live_intervals() 320 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); in qir_calculate_live_intervals() 321 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words); in qir_calculate_live_intervals() 326 while (qir_live_variables_dataflow(c, bitset_words)) in qir_calculate_live_intervals()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | brw_fs_live_variables.cpp | 167 for (int i = 0; i < bitset_words; i++) { in compute_live_variables() 184 for (int i = 0; i < bitset_words; i++) { in compute_live_variables() 257 bitset_words = BITSET_WORDS(num_vars); in fs_live_variables() 259 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 260 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 261 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in fs_live_variables() 262 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in fs_live_variables()
|
D | brw_vec4_live_variables.cpp | 146 for (int i = 0; i < bitset_words; i++) { in compute_live_variables() 163 for (int i = 0; i < bitset_words; i++) { in compute_live_variables() 192 bitset_words = BITSET_WORDS(num_vars); in vec4_live_variables() 194 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables() 195 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables() 196 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables() 197 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); in vec4_live_variables()
|
D | brw_fs_copy_propagation.cpp | 98 int bitset_words; member in __anonda6cecb10111::fs_copy_prop_dataflow 119 bitset_words = BITSET_WORDS(num_acp); in fs_copy_prop_dataflow() 123 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 124 bd[block->num].liveout = rzalloc_array(bd, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 125 bd[block->num].copy = rzalloc_array(bd, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 126 bd[block->num].kill = rzalloc_array(bd, BITSET_WORD, bitset_words); in fs_copy_prop_dataflow() 181 for (int i = 0; i < bitset_words; i++) { in setup_initial_values() 186 for (int i = 0; i < bitset_words; i++) { in setup_initial_values() 211 for (int i = 0; i < bitset_words; i++) { in run() 230 for (int i = 0; i < bitset_words; i++) { in run() [all …]
|
D | brw_fs_live_variables.h | 87 int bitset_words; variable
|
D | brw_vec4_live_variables.h | 67 int bitset_words; variable
|
/external/mesa3d/src/gallium/drivers/freedreno/ir3/ |
D | ir3_ra.c | 609 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); in ra_block_compute_live_ranges() local 629 bd->def = rzalloc_array(bd, BITSET_WORD, bitset_words); in ra_block_compute_live_ranges() 630 bd->use = rzalloc_array(bd, BITSET_WORD, bitset_words); in ra_block_compute_live_ranges() 631 bd->livein = rzalloc_array(bd, BITSET_WORD, bitset_words); in ra_block_compute_live_ranges() 632 bd->liveout = rzalloc_array(bd, BITSET_WORD, bitset_words); in ra_block_compute_live_ranges() 773 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); in ra_compute_livein_liveout() local 780 for (unsigned i = 0; i < bitset_words; i++) { in ra_compute_livein_liveout() 800 for (unsigned i = 0; i < bitset_words; i++) { in ra_compute_livein_liveout()
|