Lines Matching refs:bitset_words
46 unsigned bitset_words; member
62 state->bitset_words); in init_liveness_block()
63 memset(block->live_in, 0, state->bitset_words * sizeof(BITSET_WORD)); in init_liveness_block()
66 state->bitset_words); in init_liveness_block()
67 memset(block->live_out, 0, state->bitset_words * sizeof(BITSET_WORD)); in init_liveness_block()
112 memcpy(live, succ->live_in, state->bitset_words * sizeof *live); in propagate_across_edge()
137 for (unsigned i = 0; i < state->bitset_words; ++i) { in propagate_across_edge()
148 .bitset_words = BITSET_WORDS(impl->ssa_alloc), in nir_live_ssa_defs_impl()
150 state.tmp_live = rzalloc_array(impl, BITSET_WORD, state.bitset_words), in nir_live_ssa_defs_impl()
181 state.bitset_words * sizeof(BITSET_WORD)); in nir_live_ssa_defs_impl()
247 const unsigned bitset_words = BITSET_WORDS(impl->ssa_alloc); in nir_get_live_ssa_defs() local
248 BITSET_WORD *live = ralloc_array(mem_ctx, BITSET_WORD, bitset_words); in nir_get_live_ssa_defs()
249 memcpy(live, block->live_out, bitset_words * sizeof(BITSET_WORD)); in nir_get_live_ssa_defs()