diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2016-11-17 02:08:12 -0800 |
---|---|---|
committer | Jordan Justen <jordan.l.justen@intel.com> | 2016-11-17 14:15:44 -0800 |
commit | 932a4aca67ed1e4b22e958832ca3f8d92490b7af (patch) | |
tree | 7187129bf8250d19969b0a731f9ce7334985f74c | |
parent | d09407e740d42e7b433ce298065ce2fe4061989f (diff) |
i965/hiz: Add debug dump for depth/hiz buffers around hiz opsdump-isl-surf
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Cc: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_blorp.c | 83 |
1 files changed, 66 insertions, 17 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_blorp.c b/src/mesa/drivers/dri/i965/brw_blorp.c index 8aab1a7c04d..d66bf142fdc 100644 --- a/src/mesa/drivers/dri/i965/brw_blorp.c +++ b/src/mesa/drivers/dri/i965/brw_blorp.c @@ -39,6 +39,8 @@ #define FILE_DEBUG_FLAG DEBUG_BLORP +static const bool isl_hiz_debug_dump = false; + static void brw_blorp_map(const struct blorp_context *blorp, const struct blorp_address *blorp_addr, @@ -1005,20 +1007,42 @@ brw_blorp_resolve_color(struct brw_context *brw, struct intel_mipmap_tree *mt) } static void -gen6_blorp_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt, - unsigned int level, unsigned int layer, enum blorp_hiz_op op) +hiz_dump_blorp_surf(const struct blorp_context *blorp, + const struct blorp_surf *surf, + const char *opname, const char *when) { - assert(intel_miptree_level_has_hiz(mt, level)); - - struct isl_surf isl_tmp[2]; - struct blorp_surf surf; - blorp_surf_for_miptree(brw, &surf, mt, true, (1 << ISL_AUX_USAGE_HIZ), - &level, layer, 1, isl_tmp); + void *map, *aux_map; + unsigned int size, aux_size; + bool was_mapped, aux_was_mapped; + char *basename; + + blorp->map(blorp, &surf->addr, &map, &size, &was_mapped); + if (map == NULL) + return; + + if (surf->aux_addr.buffer) { + blorp->map(blorp, &surf->aux_addr, &aux_map, &aux_size, &aux_was_mapped); + if (aux_map == NULL) { + if (!was_mapped) + blorp->unmap(blorp, &surf->addr); + return; + } + } else { + aux_map = NULL; + aux_size = 0; + } - struct blorp_batch batch; - blorp_batch_init(&brw->blorp, &batch, brw, 0); - blorp_gen6_hiz_op(&batch, &surf, level, layer, op); - blorp_batch_finish(&batch); + basename = ralloc_asprintf(NULL, "%s-%s", opname, when); + assert(basename); + isl_dump_surf(blorp->isl_dev, surf->surf, map, size, + aux_map ? surf->aux_surf : NULL, aux_map, aux_size, + basename); + ralloc_free(basename); + + if (!was_mapped) + blorp->unmap(blorp, &surf->addr); + if (surf->aux_addr.buffer && !aux_was_mapped) + blorp->unmap(blorp, &surf->aux_addr); } /** @@ -1038,25 +1062,50 @@ intel_hiz_exec(struct brw_context *brw, struct intel_mipmap_tree *mt, switch (op) { case BLORP_HIZ_OP_DEPTH_RESOLVE: - opname = "depth resolve"; + opname = "depth-resolve"; break; case BLORP_HIZ_OP_HIZ_RESOLVE: - opname = "hiz ambiguate"; + opname = "hiz-ambiguate"; break; case BLORP_HIZ_OP_DEPTH_CLEAR: - opname = "depth clear"; + opname = "depth-clear"; break; case BLORP_HIZ_OP_NONE: - opname = "noop?"; + opname = "hiz-noop"; break; } DBG("%s %s to mt %p level %d layer %d\n", __func__, opname, mt, level, layer); + intel_miptree_check_level_layer(mt, level, layer); + intel_miptree_used_for_rendering(mt); + + assert(intel_miptree_level_has_hiz(mt, level)); + + struct isl_surf isl_tmp[2]; + struct blorp_surf surf; + struct blorp_batch batch; + const bool need_blorp = brw->gen < 8 || isl_hiz_debug_dump; + + if (need_blorp) { + blorp_surf_for_miptree(brw, &surf, mt, true, (1 << ISL_AUX_USAGE_HIZ), + &level, layer, 1, isl_tmp); + blorp_batch_init(&brw->blorp, &batch, brw, 0); + } + + if (isl_hiz_debug_dump) + hiz_dump_blorp_surf(batch.blorp, &surf, opname, "before"); + if (brw->gen >= 8) { gen8_hiz_exec(brw, mt, level, layer, op); } else { - gen6_blorp_hiz_exec(brw, mt, level, layer, op); + blorp_gen6_hiz_op(&batch, &surf, level, layer, op); } + + if (isl_hiz_debug_dump) + hiz_dump_blorp_surf(batch.blorp, &surf, opname, "after"); + + if (need_blorp) + blorp_batch_finish(&batch); } |