aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-02-11 22:30:18 +0000
committerIan Lance Taylor <ian@airs.com>1994-02-11 22:30:18 +0000
commit5ee3886b48fb81900d3720c52c759fcfe632d9dd (patch)
treebb398f182325ae3f91525e27a32ec877b60ce711 /bfd
parent9a793780e5007e6037b14c88d9ba96a2c2d98dfe (diff)
downloadgdb-5ee3886b48fb81900d3720c52c759fcfe632d9dd.zip
gdb-5ee3886b48fb81900d3720c52c759fcfe632d9dd.tar.gz
gdb-5ee3886b48fb81900d3720c52c759fcfe632d9dd.tar.bz2
* archive.c (compute_and_write_armap): Rewrite somewhat to improve
memory usage.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/archive.c79
2 files changed, 68 insertions, 16 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index ae6af9b..20a341f 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb 11 17:25:58 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
+
+ * archive.c (compute_and_write_armap): Rewrite somewhat to improve
+ memory usage.
+
Fri Feb 11 13:10:42 1994 Stan Shebs (shebs@andros.cygnus.com)
* archive.c: Change all references to '\n' in archive magic
diff --git a/bfd/archive.c b/bfd/archive.c
index 4f4ba10..a155aaf 100644
--- a/bfd/archive.c
+++ b/bfd/archive.c
@@ -1574,25 +1574,39 @@ compute_and_write_armap (arch, elength)
bfd *arch;
unsigned int elength;
{
+ char *first_name;
bfd *current;
file_ptr elt_no = 0;
struct orl *map;
- int orl_max = 15000; /* fine initial default */
+ int orl_max = 1024; /* fine initial default */
int orl_count = 0;
int stridx = 0; /* string index */
+ asymbol **syms = NULL;
+ unsigned int syms_max = 0;
+ boolean ret;
/* Dunno if this is the best place for this info... */
if (elength != 0)
elength += sizeof (struct ar_hdr);
elength += elength % 2;
- map = (struct orl *) bfd_zalloc (arch, orl_max * sizeof (struct orl));
+ map = (struct orl *) malloc (orl_max * sizeof (struct orl));
if (map == NULL)
{
bfd_error = no_memory;
return false;
}
+ /* We put the symbol names on the arch obstack, and then discard
+ them when done. */
+ first_name = bfd_alloc (arch, 1);
+ if (first_name == NULL)
+ {
+ free (map);
+ bfd_error = no_memory;
+ return false;
+ }
+
/* Drop all the files called __.SYMDEF, we're going to make our
own */
while (arch->archive_head &&
@@ -1607,7 +1621,6 @@ compute_and_write_armap (arch, elength)
if ((bfd_check_format (current, bfd_object) == true)
&& ((bfd_get_file_flags (current) & HAS_SYMS)))
{
- asymbol **syms;
unsigned int storage;
unsigned int symcount;
unsigned int src_count;
@@ -1615,11 +1628,19 @@ compute_and_write_armap (arch, elength)
storage = get_symtab_upper_bound (current);
if (storage != 0)
{
- syms = (asymbol **) bfd_zalloc (arch, storage);
- if (syms == NULL)
+ if (storage > syms_max)
{
- bfd_error = no_memory; /* FIXME -- memory leak */
- return false;
+ if (syms_max > 0)
+ free (syms);
+ syms_max = storage;
+ syms = (asymbol **) malloc (syms_max);
+ if (syms == NULL)
+ {
+ free (map);
+ bfd_release (arch, first_name);
+ bfd_error = no_memory;
+ return false;
+ }
}
symcount = bfd_canonicalize_symtab (current, syms);
@@ -1635,21 +1656,43 @@ compute_and_write_armap (arch, elength)
bfd_is_com_section (sec))
&& (sec != &bfd_und_section))
{
+ size_t namelen;
+ struct orl *new_map;
+
/* This symbol will go into the archive header */
if (orl_count == orl_max)
{
orl_max *= 2;
- map = ((struct orl *)
- bfd_realloc (arch, (char *) map,
+ new_map = ((struct orl *)
+ realloc ((PTR) map,
orl_max * sizeof (struct orl)));
+ if (new_map == (struct orl *) NULL)
+ {
+ free_and_quit:
+ free (syms);
+ free (map);
+ bfd_release (arch, first_name);
+ bfd_error = no_memory;
+ return false;
+ }
+
+ map = new_map;
}
- (map[orl_count]).name =
- (char **) &((syms[src_count])->name);
+ namelen = strlen (syms[src_count]->name);
+ map[orl_count].name = ((char **)
+ bfd_alloc (arch,
+ sizeof (char *)));
+ if (map[orl_count].name == NULL)
+ goto free_and_quit;
+ *(map[orl_count].name) = bfd_alloc (arch, namelen + 1);
+ if (*(map[orl_count].name) == NULL)
+ goto free_and_quit;
+ strcpy (*(map[orl_count].name), syms[src_count]->name);
(map[orl_count]).pos = (file_ptr) current;
(map[orl_count]).namidx = stridx;
- stridx += strlen ((syms[src_count])->name) + 1;
+ stridx += namelen + 1;
++orl_count;
}
}
@@ -1658,11 +1701,15 @@ compute_and_write_armap (arch, elength)
}
/* OK, now we have collected all the data, let's write them out */
- if (!BFD_SEND (arch, write_armap,
- (arch, elength, map, orl_count, stridx)))
- return false;
+ ret = BFD_SEND (arch, write_armap,
+ (arch, elength, map, orl_count, stridx));
- return true;
+ if (syms_max > 0)
+ free (syms);
+ free (map);
+ bfd_release (arch, first_name);
+
+ return ret;
}
boolean