Lines Matching defs:bitset_words
46 unsigned bitset_words;
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),
181 state.bitset_words * sizeof(BITSET_WORD));
247 const unsigned bitset_words = BITSET_WORDS(impl->ssa_alloc);
248 BITSET_WORD *live = ralloc_array(mem_ctx, BITSET_WORD, bitset_words);
249 memcpy(live, block->live_out, bitset_words * sizeof(BITSET_WORD));