public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Come up with debug counter for store-merging.
@ 2019-09-18  7:22 Martin Liška
  2019-09-18  9:02 ` Richard Biener
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Liška @ 2019-09-18  7:22 UTC (permalink / raw)
  To: gcc-patches; +Cc: Eric Botcazou, Jakub Jelinek

[-- Attachment #1: Type: text/plain, Size: 501 bytes --]

Hi.

After I spent quite some time with PR91758, I would like
to see a debug counter in store merging for the next time.

Ready to be installed?
Thanks,
Martin

gcc/ChangeLog:

2019-09-18  Martin Liska  <mliska@suse.cz>

	* dbgcnt.def (store_merging): New counter.
	* gimple-ssa-store-merging.c (imm_store_chain_info::output_merged_stores):
	Use it in store merging.
---
 gcc/dbgcnt.def                 | 1 +
 gcc/gimple-ssa-store-merging.c | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)



[-- Attachment #2: 0001-Come-up-with-debug-counter-for-store-merging.patch --]
[-- Type: text/x-patch, Size: 1050 bytes --]

diff --git a/gcc/dbgcnt.def b/gcc/dbgcnt.def
index 230072f7bb5..ef981aa6967 100644
--- a/gcc/dbgcnt.def
+++ b/gcc/dbgcnt.def
@@ -196,3 +196,4 @@ DEBUG_COUNTER (vect_loop)
 DEBUG_COUNTER (vect_slp)
 DEBUG_COUNTER (dom_unreachable_edges)
 DEBUG_COUNTER (match)
+DEBUG_COUNTER (store_merging)
diff --git a/gcc/gimple-ssa-store-merging.c b/gcc/gimple-ssa-store-merging.c
index 0bf64b314d6..5abaa7d18d8 100644
--- a/gcc/gimple-ssa-store-merging.c
+++ b/gcc/gimple-ssa-store-merging.c
@@ -166,6 +166,7 @@
 #include "rtl.h"
 #include "expr.h"	/* For get_bit_range.  */
 #include "optabs-tree.h"
+#include "dbgcnt.h"
 #include "selftest.h"
 
 /* The maximum size (in bits) of the stores this pass should generate.  */
@@ -4195,7 +4196,8 @@ imm_store_chain_info::output_merged_stores ()
   bool ret = false;
   FOR_EACH_VEC_ELT (m_merged_store_groups, i, merged_store)
     {
-      if (output_merged_store (merged_store))
+      if (dbg_cnt (store_merging)
+	  && output_merged_store (merged_store))
 	{
 	  unsigned int j;
 	  store_immediate_info *store;


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-20  7:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-18  7:22 [PATCH] Come up with debug counter for store-merging Martin Liška
2019-09-18  9:02 ` Richard Biener
2019-09-19 14:57   ` Bernhard Reutner-Fischer
2019-09-20  7:50     ` Martin Liška

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).