i965: Add an INTEL_DEBUG=reemit option.
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 16 Sep 2017 00:47:07 +0000 (17:47 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 16 Sep 2017 04:51:45 +0000 (21:51 -0700)
Jason and I use this for debugging all the time.  Recompiling the driver
to enable it is kind of annoying.  It's a great thing to try along with
always_flush_batch=true and always_flush_cache=true to detect a class of
problems - namely, atoms listening to an insufficient set of dirty bits.

Reviewed-by: Matt Turner <mattst88@gmail.com>
docs/envvars.html
src/intel/common/gen_debug.c
src/intel/common/gen_debug.h
src/mesa/drivers/dri/i965/brw_state_upload.c

index 6c2bdab1554845012a3ad59d8bf50bf1f302f739..ea42a50779bc74176545e3fd1d917464fcda823d 100644 (file)
@@ -192,6 +192,7 @@ See the <a href="xlibdriver.html">Xlib software driver page</a> for details.
    <li>perfmon - emit messages about AMD_performance_monitor</li>
    <li>pix - emit messages about pixel operations</li>
    <li>prim - emit messages about drawing primitives</li>
+   <li>reemit - mark all state dirty on each draw call</li>
    <li>sf - emit messages about the strips &amp; fans unit (for old gens, includes the SF program)</li>
    <li>shader_time - record how much GPU time is spent in each shader</li>
    <li>spill_fs - force spilling of all registers in the scalar backend (useful to debug spilling code)</li>
index 4677bfd582b6a52f08ea0a3a312cf89e067c7a7a..f58c593c44cd75538d24f5414f636b1d1b35c5e3 100644 (file)
@@ -83,6 +83,7 @@ static const struct debug_control debug_control[] = {
    { "norbc",       DEBUG_NO_RBC },
    { "nohiz",       DEBUG_NO_HIZ },
    { "color",       DEBUG_COLOR },
+   { "reemit",      DEBUG_REEMIT },
    { NULL,    0 }
 };
 
index da98f852a4b8a3bf22bd9e606e09c3579170bd7c..e418e3fb166b33858fb2093aced39872840f3a0e 100644 (file)
@@ -82,6 +82,7 @@ extern uint64_t INTEL_DEBUG;
 #define DEBUG_NO_RBC              (1ull << 38)
 #define DEBUG_NO_HIZ              (1ull << 39)
 #define DEBUG_COLOR               (1ull << 40)
+#define DEBUG_REEMIT              (1ull << 41)
 
 #ifdef HAVE_ANDROID_PLATFORM
 #define LOG_TAG "INTEL-MESA"
index 7b31aad170a55ce97ad22f23a39f6164589112d8..2834cca6392d05b2ca80c70344c4aa74be83805e 100644 (file)
@@ -480,7 +480,7 @@ brw_upload_pipeline_state(struct brw_context *brw,
 
    brw_select_pipeline(brw, pipeline);
 
-   if (0) {
+   if (unlikely(INTEL_DEBUG & DEBUG_REEMIT)) {
       /* Always re-emit all state. */
       brw->NewGLState = ~0;
       ctx->NewDriverState = ~0ull;