summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-08-09 18:25:36 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-08-19 11:29:23 -0700
commit7d86042dee17dfd985dcab098fc97838c11a5662 (patch)
tree260988e189c3db5f6ac0f78fa14c0ae0bd02bfd3 /src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
parent0225dea6c49674a27d5be6e933447d8a4ba5a82e (diff)
downloadexternal_mesa3d-7d86042dee17dfd985dcab098fc97838c11a5662.zip
external_mesa3d-7d86042dee17dfd985dcab098fc97838c11a5662.tar.gz
external_mesa3d-7d86042dee17dfd985dcab098fc97838c11a5662.tar.bz2
i965/fs: Rename "cont" to "progress" in dataflow algorithm.
This variable indicates that the fixed-point algorithm made changes to the data at this step, so it needs to run for another iteration. "progress" seems a nicer name for that. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
index 663b61f..055444d 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
@@ -162,10 +162,10 @@ fs_copy_prop_dataflow::setup_kills()
void
fs_copy_prop_dataflow::run()
{
- bool cont;
+ bool progress;
do {
- cont = false;
+ progress = false;
for (int b = 0; b < cfg->num_blocks; b++) {
for (int i = 0; i < bitset_words; i++) {
@@ -174,7 +174,7 @@ fs_copy_prop_dataflow::run()
~bd[b].liveout[i]);
if (new_liveout) {
bd[b].liveout[i] |= new_liveout;
- cont = true;
+ progress = true;
}
/* Update livein: if it's live at the end of all parents, it's
@@ -190,11 +190,11 @@ fs_copy_prop_dataflow::run()
}
if (new_livein) {
bd[b].livein[i] |= new_livein;
- cont = true;
+ progress = true;
}
}
}
- } while (cont);
+ } while (progress);
}
bool