Lines Matching refs:BITSET_WORD
101 regs->regs[i].conflicts = rzalloc_array(regs->regs, BITSET_WORD,
231 class->regs = rzalloc_array(class, BITSET_WORD, BITSET_WORDS(regs->count));
409 sizeof(BITSET_WORD));
417 sizeof(BITSET_WORD));
445 sizeof(BITSET_WORD));
459 class->regs = ralloc_array(class, BITSET_WORD, BITSET_WORDS(reg_count));
461 sizeof(BITSET_WORD));
549 g->adjacency = rerzalloc(g, g->adjacency, BITSET_WORD,
567 g->tmp.in_stack = reralloc(g, g->tmp.in_stack, BITSET_WORD, bitset_count);
569 g->tmp.reg_assigned = reralloc(g, g->tmp.reg_assigned, BITSET_WORD,
571 g->tmp.pq_test = reralloc(g, g->tmp.pq_test, BITSET_WORD, bitset_count);
754 BITSET_WORD mask = ~(BITSET_WORD)0 >> (31 - high_bit);
756 BITSET_WORD skip = g->tmp.in_stack[i] | g->tmp.reg_assigned[i];
760 BITSET_WORD pq = g->tmp.pq_test[i] & ~skip;
856 ra_compute_available_regs(struct ra_graph *g, unsigned int n, BITSET_WORD *regs)
861 memcpy(regs, c->regs, BITSET_WORDS(g->regs->count) * sizeof(BITSET_WORD));
902 BITSET_WORD *select_regs = NULL;
905 select_regs = malloc(BITSET_WORDS(g->regs->count) * sizeof(BITSET_WORD));