summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/sb
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2018-02-26 11:05:26 +1000
committerDave Airlie <[email protected]>2018-02-26 11:05:26 +1000
commit4d72a1efeaa2266cd8ea512d5d2279325d6e3807 (patch)
treef477a934f55b11de1f81a635d02efc5a8fb002c0 /src/gallium/drivers/r600/sb
parent22430224fec31591432d4a3e65c6f457ba1c1653 (diff)
r600: add time lo/hi debugging output.
This just adds the these to the debug prints.
Diffstat (limited to 'src/gallium/drivers/r600/sb')
-rw-r--r--src/gallium/drivers/r600/sb/sb_bc_dump.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
index a3acb21e2fd..9b2674daf27 100644
--- a/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
+++ b/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
@@ -333,6 +333,12 @@ static void print_src(sb_ostream &s, bc_alu &alu, unsigned idx)
case ALU_SRC_0:
s << "0";
break;
+ case ALU_SRC_TIME_LO:
+ s << "TIME_LO";
+ break;
+ case ALU_SRC_TIME_HI:
+ s << "TIME_HI";
+ break;
case ALU_SRC_MASK_LO:
s << "MASK_LO";
break;