Lines Matching refs:reg_count
2139 int reg_count = 0;
2142 vgrf_to_reg[i] = reg_count;
2143 reg_count += alloc.sizes[i];
2152 bool *split_points = new bool[reg_count];
2153 memset(split_points, 0, reg_count * sizeof(*split_points));
2202 int *new_virtual_grf = new int[reg_count];
2203 int *new_reg_offset = new int[reg_count];
2241 assert(reg == reg_count);
4565 unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
4568 reg_count = MAX2(reg_count, DIV_ROUND_UP(inst->size_read(i), REG_SIZE));
4573 if (reg_count > 2)
4574 max_width = MIN2(max_width, inst->exec_size / DIV_ROUND_UP(reg_count, 2));
4608 const unsigned reg_count = DIV_ROUND_UP(inst->size_written, REG_SIZE);
4609 max_width = MIN2(max_width, inst->exec_size / reg_count);
4660 max_width = MIN2(max_width, inst->exec_size / reg_count);
5096 const unsigned reg_count =
5099 if (reg_count > 2) {
5109 return inst->exec_size / DIV_ROUND_UP(reg_count, 2);
7390 brw_register_blocks(int reg_count)
7392 return ALIGN(reg_count, 16) / 16 - 1;