aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2016-02-23 14:01:51 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2016-02-23 14:01:51 +0000
commit43331dfbb8266227a13bb5919dd9f1c4b74a8d16 (patch)
tree09fcc969fcebe3a9bbdca051a20be5196aedb6d0 /gcc/bitmap.h
parentc60ec7c23830edc6e4f33b2f7858df8e84ce2c37 (diff)
downloadgcc-43331dfbb8266227a13bb5919dd9f1c4b74a8d16.zip
gcc-43331dfbb8266227a13bb5919dd9f1c4b74a8d16.tar.gz
gcc-43331dfbb8266227a13bb5919dd9f1c4b74a8d16.tar.bz2
mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t.
2016-02-23 Richard Biener <rguenther@suse.de> * mem-stats.h (struct mem_usage): Use PRIu64 for printing size_t. * bitmap.h (struct bitmap_usage): Likewise. (bitmap_move): Declare. * bitmap.c (register_overhead): Take size_t argument. (bitmap_move): New function. * df-problems.c (df_rd_transfer_function): Use bitmap_move to properly account overhead. * tree.c (free_node): Use tree_size. From-SVN: r233633
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index 013c9fb..805e37e 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -157,12 +157,14 @@ struct bitmap_usage: public mem_usage
{
char *location_string = loc->to_string ();
- fprintf (stderr, "%-48s %10li:%5.1f%%%10li%10li:%5.1f%%%12li%12li%10s\n",
- location_string,
- (long)m_allocated, get_percent (m_allocated, total.m_allocated),
- (long)m_peak, (long)m_times,
+ fprintf (stderr, "%-48s %10" PRIu64 ":%5.1f%%"
+ "%10" PRIu64 "%10" PRIu64 ":%5.1f%%"
+ "%12" PRIu64 "%12" PRIu64 "%10s\n",
+ location_string, (uint64_t)m_allocated,
+ get_percent (m_allocated, total.m_allocated),
+ (uint64_t)m_peak, (uint64_t)m_times,
get_percent (m_times, total.m_times),
- (long)m_nsearches, (long)m_search_iter,
+ m_nsearches, m_search_iter,
loc->m_ggc ? "ggc" : "heap");
free (location_string);
@@ -253,6 +255,9 @@ extern void bitmap_clear (bitmap);
/* Copy a bitmap to another bitmap. */
extern void bitmap_copy (bitmap, const_bitmap);
+/* Move a bitmap to another bitmap. */
+extern void bitmap_move (bitmap, bitmap);
+
/* True if two bitmaps are identical. */
extern bool bitmap_equal_p (const_bitmap, const_bitmap);