Home | History | Annotate | Download | only in util

Lines Matching refs:base_reg

152  * Adds a conflict between base_reg and reg, and also between reg and
153 * anything that base_reg conflicts with.
161 unsigned int base_reg, unsigned int reg)
163 ra_add_reg_conflict(regs, reg, base_reg);
165 util_dynarray_foreach(&regs->regs[base_reg].conflict_list, unsigned int,
172 * Set up conflicts between base_reg and it's two half registers reg0 and
180 unsigned int base_reg, unsigned int reg0, unsigned int reg1)
182 ra_add_reg_conflict(regs, reg0, base_reg);
183 ra_add_reg_conflict(regs, reg1, base_reg);
185 util_dynarray_foreach(&regs->regs[base_reg].conflict_list, unsigned int, i) {