HomeSort by relevance Sort by last modified time
    Searched refs:bitset_words (Results 1 - 8 of 8) sorted by null

  /external/mesa3d/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...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_live_variables.c 238 qir_live_variables_dataflow(struct vc4_compile *c, int bitset_words)
248 for (int i = 0; i < bitset_words; i++) {
259 for (int i = 0; i < bitset_words; i++) {
302 int bitset_words = BITSET_WORDS(c->num_temps); local
318 block->def = rzalloc_array(c, BITSET_WORD, bitset_words);
319 block->use = rzalloc_array(c, BITSET_WORD, bitset_words);
320 block->live_in = rzalloc_array(c, BITSET_WORD, bitset_words);
321 block->live_out = rzalloc_array(c, BITSET_WORD, bitset_words);
326 while (qir_live_variables_dataflow(c, bitset_words))
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 87 int bitset_words; member in class:brw::fs_live_variables
brw_fs_live_variables.cpp 167 for (int i = 0; i < bitset_words; i++) {
184 for (int i = 0; i < bitset_words; i++) {
257 bitset_words = BITSET_WORDS(num_vars);
259 block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
260 block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
261 block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
262 block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
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_copy_propagation.cpp 98 int bitset_words; member in class:__anon30446::fs_copy_prop_dataflow
119 bitset_words = BITSET_WORDS(num_acp);
123 bd[block->num].livein = rzalloc_array(bd, BITSET_WORD, bitset_words);
124 bd[block->num].liveout = rzalloc_array(bd, BITSET_WORD, bitset_words);
125 bd[block->num].copy = rzalloc_array(bd, BITSET_WORD, bitset_words);
126 bd[block->num].kill = rzalloc_array(bd, BITSET_WORD, bitset_words);
181 for (int i = 0; i < bitset_words; i++) {
186 for (int i = 0; i < bitset_words; i++) {
211 for (int i = 0; i < bitset_words; i++)
    [all...]
brw_vec4_live_variables.h 67 int bitset_words; member in class:brw::vec4_live_variables
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_ra.c 609 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); local
629 bd->def = rzalloc_array(bd, BITSET_WORD, bitset_words);
630 bd->use = rzalloc_array(bd, BITSET_WORD, bitset_words);
631 bd->livein = rzalloc_array(bd, BITSET_WORD, bitset_words);
632 bd->liveout = rzalloc_array(bd, BITSET_WORD, bitset_words);
773 unsigned bitset_words = BITSET_WORDS(ctx->alloc_count); local
780 for (unsigned i = 0; i < bitset_words; i++) {
800 for (unsigned i = 0; i < bitset_words; i++)
    [all...]

Completed in 142 milliseconds