| /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/ |
| ir3_liveness.c | 40 BITSET_WORD *tmp_live, unsigned bitset_words) 43 bitset_words * sizeof(BITSET_WORD)); 75 bitset_words * sizeof(BITSET_WORD)); 80 for (unsigned j = 0; j < bitset_words; j++) { 141 unsigned bitset_words = BITSET_WORDS(live->definitions_count); local 142 BITSET_WORD *tmp_live = ralloc_array(live, BITSET_WORD, bitset_words); 149 rzalloc_array(live, BITSET_WORD, bitset_words); 151 rzalloc_array(live, BITSET_WORD, bitset_words); 159 compute_block_liveness(live, block, tmp_live, bitset_words); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/ |
| vir_live_variables.c | 205 vir_live_variables_dataflow(struct v3d_compile *c, int bitset_words) 215 for (int i = 0; i < bitset_words; i++) { 226 for (int i = 0; i < bitset_words; i++) { 241 vir_live_variables_defin_defout_dataflow(struct v3d_compile *c, int bitset_words) 254 for (int i = 0; i < bitset_words; i++) { 298 int bitset_words = BITSET_WORDS(c->num_temps); local 324 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 325 block->defin = rzalloc_array(c, BITSET_WORD, bitset_words); 326 block->defout = rzalloc_array(c, BITSET_WORD, bitset_words); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/ |
| vir_live_variables.c | 240 vir_live_variables_dataflow(struct v3d_compile *c, int bitset_words) 250 for (int i = 0; i < bitset_words; i++) { 261 for (int i = 0; i < bitset_words; i++) { 276 vir_live_variables_defin_defout_dataflow(struct v3d_compile *c, int bitset_words) 289 for (int i = 0; i < bitset_words; i++) { 333 int bitset_words = BITSET_WORDS(c->num_temps); local 359 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 360 block->defin = rzalloc_array(c, BITSET_WORD, bitset_words); 361 block->defout = rzalloc_array(c, BITSET_WORD, bitset_words); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_liveness.c | 47 unsigned bitset_words; member in struct:live_ssa_defs_state 73 state->bitset_words); 74 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD)); 77 state->bitset_words); 78 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD)); 124 NIR_VLA(BITSET_WORD, live, state->bitset_words); 125 memcpy(live, succ->live_in, state->bitset_words * sizeof *live); 150 for (unsigned i = 0; i < state->bitset_words; ++i) { 178 state.bitset_words = BITSET_WORDS(state.num_ssa_defs) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_liveness.c | 46 unsigned bitset_words; member in struct:live_ssa_defs_state 62 state->bitset_words); 63 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD)); 66 state->bitset_words); 67 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD)); 112 memcpy(live, succ->live_in, state->bitset_words * sizeof *live); 137 for (unsigned i = 0; i < state->bitset_words; ++i) { 148 .bitset_words = BITSET_WORDS(impl->ssa_alloc), 150 state.tmp_live = rzalloc_array(impl, BITSET_WORD, state.bitset_words), 247 const unsigned bitset_words = BITSET_WORDS(impl->ssa_alloc); local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/ |
| vc4_qir_live_variables.c | 224 qir_live_variables_dataflow(struct vc4_compile *c, int bitset_words) 234 for (int i = 0; i < bitset_words; i++) { 245 for (int i = 0; i < bitset_words; i++) { 288 int bitset_words = BITSET_WORDS(c->num_temps); local 304 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 305 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 306 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 307 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words); 312 while (qir_live_variables_dataflow(c, bitset_words)) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/ |
| vc4_qir_live_variables.c | 236 qir_live_variables_dataflow(struct vc4_compile *c, int bitset_words) 246 for (int i = 0; i < bitset_words; i++) { 257 for (int i = 0; i < bitset_words; i++) { 300 int bitset_words = BITSET_WORDS(c->num_temps); local 316 block->def = rzalloc_array(c, BITSET_WORD, bitset_words); 317 block->use = rzalloc_array(c, BITSET_WORD, bitset_words); 318 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words); 319 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words); 324 while (qir_live_variables_dataflow(c, bitset_words)) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/ |
| etnaviv_compiler_nir_liveness.c | 41 unsigned bitset_words; member in struct:live_defs_state 58 state->bitset_words); 59 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD)); 62 state->bitset_words); 63 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD)); 113 for (unsigned i = 0; i < state->bitset_words; ++i) { 165 state.bitset_words = BITSET_WORDS(state.num_defs); 185 state.bitset_words * sizeof(BITSET_WORD));
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| brw_fs_live_variables.cpp | 169 for (int i = 0; i < bitset_words; i++) { 186 for (int i = 0; i < bitset_words; i++) { 217 for (int i = 0; i < bitset_words; i++) { 281 bitset_words = BITSET_WORDS(num_vars); 283 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 284 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 285 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 286 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 287 block_data[i].defin = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); [all...] |
| brw_vec4_live_variables.cpp | 146 for (int i = 0; i < bitset_words; i++) { 163 for (int i = 0; i < bitset_words; i++) { 192 bitset_words = BITSET_WORDS(num_vars); 194 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 195 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 196 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 197 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
|
| brw_fs_live_variables.h | 102 int bitset_words; member in class:brw::fs_live_variables
|
| brw_fs_copy_propagation.cpp | 109 int bitset_words; member in class:__anon4728::fs_copy_prop_dataflow 131 bitset_words = BITSET_WORDS(num_acp); 135 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words); 136 bd[block->num].liveout = rzalloc_array(bd, BITSET_WORD, bitset_words); 137 bd[block->num].copy = rzalloc_array(bd, BITSET_WORD, bitset_words); 138 bd[block->num].kill = rzalloc_array(bd, BITSET_WORD, bitset_words); 139 bd[block->num].undef = rzalloc_array(bd, BITSET_WORD, bitset_words); 193 for (int i = 0; i < bitset_words; i++) { 198 for (int i = 0; i < bitset_words; i++) [all...] |
| brw_vec4_live_variables.h | 70 int bitset_words; member in class:brw::vec4_live_variables
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| brw_fs_live_variables.cpp | 169 for (int i = 0; i < bitset_words; i++) { 186 for (int i = 0; i < bitset_words; i++) { 217 for (int i = 0; i < bitset_words; i++) { 238 for (int w = 0; w < bitset_words; w++) { 294 bitset_words = BITSET_WORDS(num_vars); 296 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 297 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 298 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 299 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); [all...] |
| brw_vec4_live_variables.cpp | 157 for (int i = 0; i < bitset_words; i++) { 174 for (int i = 0; i < bitset_words; i++) { 236 bitset_words = BITSET_WORDS(num_vars); 238 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 239 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 240 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words); 241 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
|
| brw_fs_live_variables.h | 113 int bitset_words; member in class:brw::fs_live_variables
|
| brw_fs_copy_propagation.cpp | 112 int bitset_words; member in class:__anon2385::fs_copy_prop_dataflow 134 bitset_words = BITSET_WORDS(num_acp); 138 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words); 139 bd[block->num].liveout = rzalloc_array(bd, BITSET_WORD, bitset_words); 140 bd[block->num].copy = rzalloc_array(bd, BITSET_WORD, bitset_words); 141 bd[block->num].kill = rzalloc_array(bd, BITSET_WORD, bitset_words); 142 bd[block->num].undef = rzalloc_array(bd, BITSET_WORD, bitset_words); 252 for (int i = 0; i < bitset_words; i++) { 257 for (int i = 0; i < bitset_words; i++) [all...] |
| brw_vec4_live_variables.h | 82 int bitset_words; member in class:brw::vec4_live_variables
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/ir/gp/ |
| regalloc.c | 42 unsigned bitset_words; member in struct:regalloc_ctx 84 for (unsigned j = 0; j < ctx->bitset_words; j++) 89 memcpy(ctx->live, block->live_out, ctx->bitset_words * sizeof(BITSET_WORD)); 96 for (unsigned i = 0; i < ctx->bitset_words; i++) { 136 for (unsigned j = 0; j < ctx->bitset_words; j++) { 214 for (unsigned i = 0; i < ctx->bitset_words; i++) { 598 ctx.bitset_words = BITSET_WORDS(comp->cur_reg); 599 ctx.live = ralloc_array(ctx.mem_ctx, BITSET_WORD, ctx.bitset_words); 607 ctx.bitset_words); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/ |
| ir3_ra.c | 679 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); local 699 bd->def = rzalloc_array(bd, BITSET_WORD, bitset_words); 700 bd->use = rzalloc_array(bd, BITSET_WORD, bitset_words); 701 bd->livein = rzalloc_array(bd, BITSET_WORD, bitset_words); 702 bd->liveout = rzalloc_array(bd, BITSET_WORD, bitset_words); 825 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); local 832 for (unsigned i = 0; i < bitset_words; i++) { 852 for (unsigned i = 0; i < bitset_words; i++) [all...] |