Lines Matching refs:progress
72 * returns whether progress was made. */
79 bool progress = false;
89 /* To figure out progress, diff live_in */
91 for (unsigned i = 0; (i < temp_count) && !progress; ++i)
92 progress |= (blk->live_in[i] != live[i]);
97 return progress;
104 * adding the predecessors of the block to the work list if we made progress.
145 bool progress = liveness_block_update(blk, temp_count, callback);
147 /* If we made progress, we need to process the predecessors */
149 if (progress || !_mesa_set_search(visited, blk)) {