* bcache.c (deprecated_bcache_added): Initialize obstack.
authorTom Tromey <tromey@redhat.com>
Tue, 5 Aug 2008 20:43:17 +0000 (20:43 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 5 Aug 2008 20:43:17 +0000 (20:43 +0000)
(bcache_xmalloc): Don't initialize obstack.
(bcache_xfree): Conditionally free obstack.
(bcache_memory_used): Update.

gdb/ChangeLog
gdb/bcache.c

index 79b45e2b119a3bc4e08651c168cf17dcf507f1cb..aa5be9d918ae46b006b559aeba31ea08b29a5e7f 100644 (file)
@@ -1,3 +1,10 @@
+2008-08-05  Tom Tromey  <tromey@redhat.com>
+
+       * bcache.c (deprecated_bcache_added): Initialize obstack.
+       (bcache_xmalloc): Don't initialize obstack.
+       (bcache_xfree): Conditionally free obstack.
+       (bcache_memory_used): Update.
+
 2008-08-05  Tom Tromey  <tromey@redhat.com>
 
        * symfile.c (add_psymbol_to_bcache): Return a const pointer.  Use
index 589de6a252ca8fd4a24075d14a924adde469d59d..f96993ba52992eadaee98d1198f92eb7172d6f63 100644 (file)
@@ -217,6 +217,16 @@ bcache_full (const void *addr, int length, struct bcache *bcache, int *added)
   if (added)
     *added = 0;
 
+  /* Lazily initialize the obstack.  This can save quite a bit of
+     memory in some cases.  */
+  if (bcache->total_count == 0)
+    {
+      /* We could use obstack_specify_allocation here instead, but
+        gdb_obstack.h specifies the allocation/deallocation
+        functions.  */
+      obstack_init (&bcache->cache);
+    }
+
   /* If our average chain length is too high, expand the hash table.  */
   if (bcache->unique_count >= bcache->num_buckets * CHAIN_LENGTH_THRESHOLD)
     expand_hash_table (bcache);
@@ -271,10 +281,6 @@ bcache_xmalloc (void)
 {
   /* Allocate the bcache pre-zeroed.  */
   struct bcache *b = XCALLOC (1, struct bcache);
-  /* We could use obstack_specify_allocation here instead, but
-     gdb_obstack.h specifies the allocation/deallocation
-     functions.  */
-  obstack_init (&b->cache);
   return b;
 }
 
@@ -284,7 +290,9 @@ bcache_xfree (struct bcache *bcache)
 {
   if (bcache == NULL)
     return;
-  obstack_free (&bcache->cache, 0);
+  /* Only free the obstack if we actually initialized it.  */
+  if (bcache->total_count > 0)
+    obstack_free (&bcache->cache, 0);
   xfree (bcache->bucket);
   xfree (bcache);
 }
@@ -443,5 +451,7 @@ print_bcache_statistics (struct bcache *c, char *type)
 int
 bcache_memory_used (struct bcache *bcache)
 {
+  if (bcache->total_count == 0)
+    return 0;
   return obstack_memory_used (&bcache->cache);
 }