[Mesa-dev] [PATCH 33/41] i965/fs: Use exec_size instead of force_uncompressed in dump_instruction
Jason Ekstrand
jason at jlekstrand.net
Sat Sep 20 10:23:22 PDT 2014
---
src/mesa/drivers/dri/i965/brw_fs.cpp | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index e06e083..11f5323 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -3177,11 +3177,14 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file)
fprintf(file, " ");
- if (inst->force_uncompressed)
- fprintf(file, "1sthalf ");
-
- if (inst->force_sechalf)
- fprintf(file, "2ndhalf ");
+ if (inst->exec_size < 8) {
+ fprintf(file, "%d-wide ", inst->exec_size);
+ } else if (dispatch_width == 16 && inst->exec_size == 8) {
+ if (inst->force_sechalf)
+ fprintf(file, "2ndhalf ");
+ else
+ fprintf(file, "1sthalf ");
+ }
fprintf(file, "\n");
}
--
2.1.0
More information about the mesa-dev
mailing list