Module: Mesa Branch: master Commit: 35c5a9a64df013a385b7bb5291c24a2f300ef57b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=35c5a9a64df013a385b7bb5291c24a2f300ef57b
Author: Kenneth Graunke <kenn...@whitecape.org> Date: Sat Dec 10 22:13:05 2016 -0800 i965: Print out cycle estimates at the start of block annotations. We now print START B15 <-B14 (42774 cycles) indicating that we estimate B15 will take 42,774 cycles. Printing this should make it easier where time is spent in the program. Signed-off-by: Kenneth Graunke <kenn...@whitecape.org> Reviewed-by: Matt Turner <matts...@gmail.com> --- src/mesa/drivers/dri/i965/intel_asm_annotation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/intel_asm_annotation.c b/src/mesa/drivers/dri/i965/intel_asm_annotation.c index b01490a..bb24e5e 100644 --- a/src/mesa/drivers/dri/i965/intel_asm_annotation.c +++ b/src/mesa/drivers/dri/i965/intel_asm_annotation.c @@ -45,7 +45,7 @@ dump_assembly(void *assembly, int num_annotations, struct annotation *annotation struct bblock_t *predecessor_block = predecessor_link->block; fprintf(stderr, " <-B%d", predecessor_block->num); } - fprintf(stderr, "\n"); + fprintf(stderr, " (%u cycles)\n", annotation[i].block_start->cycle_count); } if (last_annotation_ir != annotation[i].ir) { _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-commit