public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/marxin/heads/ipa-profile-dump-reduce)] IPA: reduce what we dump in normal mode
@ 2022-08-02  7:59 Martin Liska
  0 siblings, 0 replies; only message in thread
From: Martin Liska @ 2022-08-02  7:59 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:b9c3afcfbba31bade88ade1b276482a809248191

commit b9c3afcfbba31bade88ade1b276482a809248191
Author: Martin Liska <mliska@suse.cz>
Date:   Tue Aug 2 09:58:43 2022 +0200

    IPA: reduce what we dump in normal mode
    
    gcc/ChangeLog:
    
            * profile.cc (compute_branch_probabilities): Dump details only
            if TDF_DETAILS.
            * symtab.cc (symtab_node::dump_base): Do not dump pointer unless
            TDF_ADDRESS is used, it makes comparison harder.

Diff:
---
 gcc/profile.cc | 2 +-
 gcc/symtab.cc  | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/profile.cc b/gcc/profile.cc
index 08af512cbca..92de821b8bb 100644
--- a/gcc/profile.cc
+++ b/gcc/profile.cc
@@ -766,7 +766,7 @@ compute_branch_probabilities (unsigned cfg_checksum, unsigned lineno_checksum)
 	      sum2 += freq2;
 	    }
 	}
-      if (dump_file)
+      if (dump_file && (dump_flags & TDF_DETAILS))
 	{
 	  double nsum1 = 0, nsum2 = 0;
 	  stats.qsort (cmp_stats);
diff --git a/gcc/symtab.cc b/gcc/symtab.cc
index 8670337416e..f2d96c0268b 100644
--- a/gcc/symtab.cc
+++ b/gcc/symtab.cc
@@ -894,7 +894,8 @@ symtab_node::dump_base (FILE *f)
   };
 
   fprintf (f, "%s (%s)", dump_asm_name (), name ());
-  dump_addr (f, " @", (void *)this);
+  if (dump_flags & TDF_ADDRESS)
+    dump_addr (f, " @", (void *)this);
   fprintf (f, "\n  Type: %s", symtab_type_names[type]);
 
   if (definition)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-08-02  7:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02  7:59 [gcc(refs/users/marxin/heads/ipa-profile-dump-reduce)] IPA: reduce what we dump in normal mode Martin Liska

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).