aboutsummaryrefslogtreecommitdiff
path: root/gcc/flags.h
diff options
context:
space:
mode:
authorZack Weinberg <zack@wolery.cumb.org>2000-08-29 20:57:11 +0000
committerZack Weinberg <zack@gcc.gnu.org>2000-08-29 20:57:11 +0000
commitfba0bfd4546bb2b864a841cf1d43957dbaa38a89 (patch)
tree467a74cb03ab3a07329d87c25f28745ba9ed5e7f /gcc/flags.h
parent612105a61a150594ef233db883b1bf1ad6501720 (diff)
downloadgcc-fba0bfd4546bb2b864a841cf1d43957dbaa38a89.zip
gcc-fba0bfd4546bb2b864a841cf1d43957dbaa38a89.tar.gz
gcc-fba0bfd4546bb2b864a841cf1d43957dbaa38a89.tar.bz2
flags.h (time_report, mem_report): New global flags.
* flags.h (time_report, mem_report): New global flags. * toplev.c: Define time_report and mem_report. (f_options): Add -ftime-report and -fmem-report. (compile_file): Turn on time_report if quiet_flag is off. Call ggc_print_statistics at very end if mem_report is on. * timevar.c (TIMEVAR_ENABLE): Examine time_report, not quiet_flag. * ggc-common.c (ggc_print_statistics): Rename to ggc_print_common_statistics; all callers changed. Scale quantities above 10K to kilobytes and above 10M to megabytes. * ggc-page.c (ggc_page_print_statistics): Rename to ggc_print_statistics. Report memory consumed by internal data structures for each allocation bucket. Scale quantities above 10K to kilobytes and above 10M to megabytes. * ggc-simple.c: Prototype debug_ggc_tree to avoid warning. Cast PTR_KEY(p) to unsigned long in fprintf call to avoid warning. Define tally_leaves always. (ggc_print_statistics): New function. * ggc.h: Adjust for renamed functions. From-SVN: r36049
Diffstat (limited to 'gcc/flags.h')
-rw-r--r--gcc/flags.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h
index a294c37..21f9237 100644
--- a/gcc/flags.h
+++ b/gcc/flags.h
@@ -63,6 +63,15 @@ extern int optimize_size;
extern int quiet_flag;
+/* Print times taken by the various passes. -ftime-report. */
+
+extern int time_report;
+
+/* Print memory still in use at end of compilation (which may have little
+ to do with peak memory consumption). -fmem-report. */
+
+extern int mem_report;
+
/* Don't print warning messages. -w. */
extern int inhibit_warnings;