HomeSort by relevance Sort by last modified time
    Searched refs:BITSET_WORD (Results 1 - 25 of 31) sorted by null

1 2

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_live_variables.h 42 BITSET_WORD *def;
47 BITSET_WORD *use;
50 BITSET_WORD *livein;
53 BITSET_WORD *liveout;
55 BITSET_WORD flag_def[1];
56 BITSET_WORD flag_use[1];
57 BITSET_WORD flag_livein[1];
58 BITSET_WORD flag_liveout[1];
brw_vec4_live_variables.h 40 BITSET_WORD *def;
45 BITSET_WORD *use;
48 BITSET_WORD *livein;
51 BITSET_WORD *liveout;
53 BITSET_WORD flag_def[1];
54 BITSET_WORD flag_use[1];
55 BITSET_WORD flag_livein[1];
56 BITSET_WORD flag_liveout[1];
brw_fs_dead_code_eliminate.cpp 41 can_eliminate(const fs_inst *inst, BITSET_WORD *flag_live)
81 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
82 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
86 sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
88 sizeof(BITSET_WORD));
brw_vec4_dead_code_eliminate.cpp 47 BITSET_WORD *live = rzalloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
48 BITSET_WORD *flag_live = rzalloc_array(NULL, BITSET_WORD, 1);
52 sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
54 sizeof(BITSET_WORD));
brw_fs_live_variables.cpp 168 BITSET_WORD new_liveout = (child_bd->livein[i] &
175 BITSET_WORD new_liveout = (child_bd->flag_livein[0] &
185 BITSET_WORD new_livein = (bd->use[i] |
193 BITSET_WORD new_livein = (bd->flag_use[0] |
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 147 BITSET_WORD new_liveout = (child_bd->livein[i] &
154 BITSET_WORD new_liveout = (child_bd->flag_livein[0] &
164 BITSET_WORD new_livein = (bd->use[i] |
172 BITSET_WORD new_livein = (bd->flag_use[0] |
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 59 BITSET_WORD *livein;
66 BITSET_WORD *liveout;
73 BITSET_WORD *copy;
79 BITSET_WORD *kill;
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);
212 const BITSET_WORD old_liveout = bd[block->num].liveout[i];
231 const BITSET_WORD old_livein = bd[block->num].livein[i]
    [all...]
brw_schedule_instructions.cpp 448 this->livein = ralloc_array(mem_ctx, BITSET_WORD *, block_count);
450 this->livein[i] = rzalloc_array(mem_ctx, BITSET_WORD,
453 this->liveout = ralloc_array(mem_ctx, BITSET_WORD *, block_count);
455 this->liveout[i] = rzalloc_array(mem_ctx, BITSET_WORD,
458 this->hw_liveout = ralloc_array(mem_ctx, BITSET_WORD *, block_count);
460 this->hw_liveout[i] = rzalloc_array(mem_ctx, BITSET_WORD,
533 BITSET_WORD **livein;
539 BITSET_WORD **liveout;
545 BITSET_WORD **hw_liveout;
    [all...]
  /external/mesa3d/src/util/
bitset.h 40 #define BITSET_WORD unsigned int
41 #define BITSET_WORDBITS (sizeof (BITSET_WORD) * 8)
46 #define BITSET_DECLARE(name, bits) BITSET_WORD name[BITSET_WORDS(bits)]
85 __bitset_ffs(const BITSET_WORD *x, int n)
100 __bitset_next_set(unsigned i, BITSET_WORD *tmp,
101 const BITSET_WORD *set, unsigned size)
register_allocate.c 85 BITSET_WORD *conflicts;
107 BITSET_WORD *regs;
130 BITSET_WORD *adjacency;
196 regs->regs[i].conflicts = rzalloc_array(regs->regs, BITSET_WORD,
290 BITSET_WORD tmp;
312 class->regs = rzalloc_array(class, BITSET_WORD, BITSET_WORDS(regs->count));
428 g->nodes[i].adjacency = rzalloc_array(g, BITSET_WORD, bitset_count);
  /external/mesa3d/src/compiler/nir/
nir_phi_builder.h 78 unsigned bit_size, const BITSET_WORD *defs);
nir_liveness.c 72 block->live_in = reralloc(block, block->live_in, BITSET_WORD,
74 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD));
76 block->live_out = reralloc(block, block->live_out, BITSET_WORD,
78 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD));
88 BITSET_WORD *live = void_live;
104 BITSET_WORD *live = void_live;
124 NIR_VLA(BITSET_WORD, live, state->bitset_words);
149 BITSET_WORD progress = 0;
198 state.bitset_words * sizeof(BITSET_WORD));
nir_worklist.h 57 BITSET_WORD *blocks_present;
nir_repair_ssa.c 30 BITSET_WORD *def_set;
45 state->def_set = ralloc_array(NULL, BITSET_WORD, num_words);
nir_worklist.c 38 w->blocks_present = rzalloc_array(mem_ctx, BITSET_WORD,
nir_phi_builder.c 109 unsigned bit_size, const BITSET_WORD *defs)
123 BITSET_WORD tmp;
nir_validate.c 94 BITSET_WORD *ssa_defs_found;
97 BITSET_WORD *regs_found;
    [all...]
nir_lower_regs_to_ssa.c 230 NIR_VLA(BITSET_WORD, defs, block_set_words);
  /external/mesa3d/src/compiler/glsl/
ir_array_refcount.h 102 BITSET_WORD *bits;
ir_array_refcount.cpp 61 bits = new BITSET_WORD[BITSET_WORDS(num_bits)];
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir_live_variables.c 249 BITSET_WORD new_live_out = (succ->live_in[i] &
260 BITSET_WORD new_live_in = (block->use[i] |
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);
vc4_qir.h 405 BITSET_WORD *def;
406 BITSET_WORD *use;
407 BITSET_WORD *live_in;
408 BITSET_WORD *live_out;
vc4_qir_schedule.c 74 BITSET_WORD *temp_live;
699 state.temp_live = rzalloc_array(mem_ctx, BITSET_WORD,
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3_ra.c 247 BITSET_WORD *def; /* variables defined before used in block */
248 BITSET_WORD *use; /* variables used before defined in block */
249 BITSET_WORD *livein; /* which defs reach entry point of block */
250 BITSET_WORD *liveout; /* which defs reach exit point of block */
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);
781 BITSET_WORD new_livein =
801 BITSET_WORD new_liveout
    [all...]
  /external/mesa3d/src/intel/vulkan/
anv_nir_apply_pipeline_layout.c 36 BITSET_WORD *used;
282 state.set[s].used = rzalloc_array(mem_ctx, BITSET_WORD, words);
299 BITSET_WORD b, _tmp;
317 BITSET_WORD b, _tmp;

Completed in 3607 milliseconds

1 2