BITSET_WORD *live = ralloc_array(NULL, BITSET_WORD, BITSET_WORDS(num_vars));
foreach_block (block, cfg) {
- memcpy(live, live_intervals->bd[block->num].liveout,
+ memcpy(live, live_intervals->block_data[block->num].liveout,
sizeof(BITSET_WORD) * BITSET_WORDS(num_vars));
foreach_inst_in_block_reverse(fs_inst, inst, block) {
*/
void
-fs_live_variables::setup_one_read(bblock_t *block, fs_inst *inst,
+fs_live_variables::setup_one_read(struct block_data *bd, fs_inst *inst,
int ip, fs_reg reg)
{
int var = var_from_reg(®);
* channel) without having completely defined that variable within the
* block.
*/
- if (!BITSET_TEST(bd[block->num].def, var))
- BITSET_SET(bd[block->num].use, var);
+ if (!BITSET_TEST(bd->def, var))
+ BITSET_SET(bd->use, var);
}
void
-fs_live_variables::setup_one_write(bblock_t *block, fs_inst *inst,
+fs_live_variables::setup_one_write(struct block_data *bd, fs_inst *inst,
int ip, fs_reg reg)
{
int var = var_from_reg(®);
* screens off previous updates of that variable (VGRF channel).
*/
if (inst->dst.file == GRF && !inst->is_partial_write()) {
- if (!BITSET_TEST(bd[block->num].use, var))
- BITSET_SET(bd[block->num].def, var);
+ if (!BITSET_TEST(bd->use, var))
+ BITSET_SET(bd->def, var);
}
}
if (block->num > 0)
assert(cfg->blocks[block->num - 1]->end_ip == ip - 1);
+ struct block_data *bd = &block_data[block->num];
+
foreach_inst_in_block(fs_inst, inst, block) {
/* Set use[] for this instruction */
for (unsigned int i = 0; i < inst->sources; i++) {
continue;
for (int j = 0; j < inst->regs_read(v, i); j++) {
- setup_one_read(block, inst, ip, reg);
+ setup_one_read(bd, inst, ip, reg);
reg.reg_offset++;
}
}
if (inst->dst.file == GRF) {
fs_reg reg = inst->dst;
for (int j = 0; j < inst->regs_written; j++) {
- setup_one_write(block, inst, ip, reg);
+ setup_one_write(bd, inst, ip, reg);
reg.reg_offset++;
}
}
cont = false;
foreach_block (block, cfg) {
+ struct block_data *bd = &block_data[block->num];
+
/* Update livein */
for (int i = 0; i < bitset_words; i++) {
- BITSET_WORD new_livein = (bd[block->num].use[i] |
- (bd[block->num].liveout[i] &
- ~bd[block->num].def[i]));
- if (new_livein & ~bd[block->num].livein[i]) {
- bd[block->num].livein[i] |= new_livein;
+ BITSET_WORD new_livein = (bd->use[i] |
+ (bd->liveout[i] &
+ ~bd->def[i]));
+ if (new_livein & ~bd->livein[i]) {
+ bd->livein[i] |= new_livein;
cont = true;
}
}
/* Update liveout */
foreach_list_typed(bblock_link, child_link, link, &block->children) {
- bblock_t *child = child_link->block;
+ struct block_data *child_bd = &block_data[child_link->block->num];
for (int i = 0; i < bitset_words; i++) {
- BITSET_WORD new_liveout = (bd[child->num].livein[i] &
- ~bd[block->num].liveout[i]);
+ BITSET_WORD new_liveout = (child_bd->livein[i] &
+ ~bd->liveout[i]);
if (new_liveout) {
- bd[block->num].liveout[i] |= new_liveout;
+ bd->liveout[i] |= new_liveout;
cont = true;
}
}
fs_live_variables::compute_start_end()
{
foreach_block (block, cfg) {
+ struct block_data *bd = &block_data[block->num];
+
for (int i = 0; i < num_vars; i++) {
- if (BITSET_TEST(bd[block->num].livein, i)) {
+ if (BITSET_TEST(bd->livein, i)) {
start[i] = MIN2(start[i], block->start_ip);
end[i] = MAX2(end[i], block->start_ip);
}
- if (BITSET_TEST(bd[block->num].liveout, i)) {
+ if (BITSET_TEST(bd->liveout, i)) {
start[i] = MIN2(start[i], block->end_ip);
end[i] = MAX2(end[i], block->end_ip);
}
end[i] = -1;
}
- bd = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
+ block_data= rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
bitset_words = BITSET_WORDS(num_vars);
for (int i = 0; i < cfg->num_blocks; i++) {
- bd[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
}
setup_def_use();
/** @} */
/** Per-basic-block information on live variables */
- struct block_data *bd;
+ struct block_data *block_data;
protected:
void setup_def_use();
- void setup_one_read(bblock_t *block, fs_inst *inst, int ip, fs_reg reg);
- void setup_one_write(bblock_t *block, fs_inst *inst, int ip, fs_reg reg);
+ void setup_one_read(struct block_data *bd, fs_inst *inst, int ip, fs_reg reg);
+ void setup_one_write(struct block_data *bd, fs_inst *inst, int ip, fs_reg reg);
void compute_live_variables();
void compute_start_end();
assert(cfg->blocks[block->num - 1]->end_ip == ip - 1);
foreach_inst_in_block(vec4_instruction, inst, block) {
+ struct block_data *bd = &block_data[block->num];
+
/* Set use[] for this instruction */
for (unsigned int i = 0; i < 3; i++) {
if (inst->src[i].file == GRF) {
for (int j = 0; j < 4; j++) {
int c = BRW_GET_SWZ(inst->src[i].swizzle, j);
- if (!BITSET_TEST(bd[block->num].def, reg * 4 + c))
- BITSET_SET(bd[block->num].use, reg * 4 + c);
+ if (!BITSET_TEST(bd->def, reg * 4 + c))
+ BITSET_SET(bd->use, reg * 4 + c);
}
}
}
for (int c = 0; c < 4; c++) {
if (inst->dst.writemask & (1 << c)) {
int reg = inst->dst.reg;
- if (!BITSET_TEST(bd[block->num].use, reg * 4 + c))
- BITSET_SET(bd[block->num].def, reg * 4 + c);
+ if (!BITSET_TEST(bd->use, reg * 4 + c))
+ BITSET_SET(bd->def, reg * 4 + c);
}
}
}
cont = false;
foreach_block (block, cfg) {
+ struct block_data *bd = &block_data[block->num];
+
/* Update livein */
for (int i = 0; i < bitset_words; i++) {
- BITSET_WORD new_livein = (bd[block->num].use[i] |
- (bd[block->num].liveout[i] &
- ~bd[block->num].def[i]));
- if (new_livein & ~bd[block->num].livein[i]) {
- bd[block->num].livein[i] |= new_livein;
+ BITSET_WORD new_livein = (bd->use[i] |
+ (bd->liveout[i] &
+ ~bd->def[i]));
+ if (new_livein & ~bd->livein[i]) {
+ bd->livein[i] |= new_livein;
cont = true;
}
}
/* Update liveout */
foreach_list_typed(bblock_link, child_link, link, &block->children) {
- bblock_t *child = child_link->block;
+ struct block_data *child_bd = &block_data[child_link->block->num];
for (int i = 0; i < bitset_words; i++) {
- BITSET_WORD new_liveout = (bd[child->num].livein[i] &
- ~bd[block->num].liveout[i]);
+ BITSET_WORD new_liveout = (child_bd->livein[i] &
+ ~bd->liveout[i]);
if (new_liveout) {
- bd[block->num].liveout[i] |= new_liveout;
+ bd->liveout[i] |= new_liveout;
cont = true;
}
}
mem_ctx = ralloc_context(NULL);
num_vars = v->virtual_grf_count * 4;
- bd = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
+ block_data = rzalloc_array(mem_ctx, struct block_data, cfg->num_blocks);
bitset_words = BITSET_WORDS(num_vars);
for (int i = 0; i < cfg->num_blocks; i++) {
- bd[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
- bd[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].def = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].use = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].livein = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
+ block_data[i].liveout = rzalloc_array(mem_ctx, BITSET_WORD, bitset_words);
}
setup_def_use();
this->live_intervals = new(mem_ctx) vec4_live_variables(this, cfg);
foreach_block (block, cfg) {
+ struct block_data *bd = &live_intervals->block_data[block->num];
+
for (int i = 0; i < live_intervals->num_vars; i++) {
- if (BITSET_TEST(live_intervals->bd[block->num].livein, i)) {
+ if (BITSET_TEST(bd->livein, i)) {
start[i] = MIN2(start[i], block->start_ip);
end[i] = MAX2(end[i], block->start_ip);
}
- if (BITSET_TEST(live_intervals->bd[block->num].liveout, i)) {
+ if (BITSET_TEST(bd->liveout, i)) {
start[i] = MIN2(start[i], block->end_ip);
end[i] = MAX2(end[i], block->end_ip);
}
int bitset_words;
/** Per-basic-block information on live variables */
- struct block_data *bd;
+ struct block_data *block_data;
protected:
void setup_def_use();