Mesa (master): r300/compiler: Don' t count BEGIN_TEX instructions in the compiler stats

Tom Stellard tstellar at kemper.freedesktop.org
Sun Feb 6 07:12:49 UTC 2011


Module: Mesa
Branch: master
Commit: 19202284c069b1295d590aa6c04809e5e33bda57
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=19202284c069b1295d590aa6c04809e5e33bda57

Author: Tom Stellard <tstellar at gmail.com>
Date:   Sat Feb  5 00:27:24 2011 -0800

r300/compiler: Don't count BEGIN_TEX instructions in the compiler stats

---

 .../drivers/dri/r300/compiler/radeon_compiler.c    |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c b/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c
index 33b6a10..79cd799 100644
--- a/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c
+++ b/src/mesa/drivers/dri/r300/compiler/radeon_compiler.c
@@ -373,9 +373,11 @@ void rc_get_stats(struct radeon_compiler *c, struct rc_program_stats *s)
 		const struct rc_opcode_info * info;
 		rc_for_all_reads_mask(tmp, reg_count_callback, &max_reg);
 		if (tmp->Type == RC_INSTRUCTION_NORMAL) {
+			info = rc_get_opcode_info(tmp->U.I.Opcode);
+			if (info->Opcode == RC_OPCODE_BEGIN_TEX)
+				continue;
 			if (tmp->U.I.PreSub.Opcode != RC_PRESUB_NONE)
 				s->num_presub_ops++;
-			info = rc_get_opcode_info(tmp->U.I.Opcode);
 		} else {
 			if (tmp->U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Used)
 				s->num_presub_ops++;




More information about the mesa-commit mailing list