public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* binutils coff type list
@ 2023-03-03  3:46 Alan Modra
  0 siblings, 0 replies; only message in thread
From: Alan Modra @ 2023-03-03  3:46 UTC (permalink / raw)
  To: binutils

As for commit 72d225ef9cc7, handle type numbers starting anywhere.

	PR 17512
	* rdcoff.c (struct coff_slots): Add base_index.
	(coff_get_slot): Delete pr17512 excessively large slot check.
	Don't allocate entire array from 0 to type number, allocate a
	sparse array.

diff --git a/binutils/rdcoff.c b/binutils/rdcoff.c
index 50e19a757af..1a4f00da913 100644
--- a/binutils/rdcoff.c
+++ b/binutils/rdcoff.c
@@ -68,6 +68,8 @@ struct coff_slots
 {
   /* Next set of slots.  */
   struct coff_slots *next;
+  /* Where the SLOTS array starts.  */
+  unsigned int base_index;
   /* Slots.  */
 #define COFF_SLOTS (16)
   debug_type slots[COFF_SLOTS];
@@ -107,29 +109,21 @@ static debug_type *
 coff_get_slot (struct coff_types *types, long indx)
 {
   struct coff_slots **pps;
+  unsigned int base_index;
 
   pps = &types->slots;
+  base_index = indx / COFF_SLOTS * COFF_SLOTS;
+  indx -= base_index;
 
-  /* PR 17512: file: 078-18333-0.001:0.1.
-     FIXME: The value of 1000 is a guess.  Maybe a better heuristic is needed.  */
-  if (indx / COFF_SLOTS > 1000)
-    fatal (_("Excessively large slot index: %lx"), indx);
+  while (*pps && (*pps)->base_index < base_index)
+    pps = &(*pps)->next;
 
-  while (indx >= COFF_SLOTS)
+  if (*pps == NULL || (*pps)->base_index != base_index)
     {
-      if (*pps == NULL)
-	{
-	  *pps = (struct coff_slots *) xmalloc (sizeof **pps);
-	  memset (*pps, 0, sizeof **pps);
-	}
-      pps = &(*pps)->next;
-      indx -= COFF_SLOTS;
-    }
-
-  if (*pps == NULL)
-    {
-      *pps = (struct coff_slots *) xmalloc (sizeof **pps);
-      memset (*pps, 0, sizeof **pps);
+      struct coff_slots *n = xcalloc (1, sizeof (*n));
+      n->next = *pps;
+      n->base_index = base_index;
+      *pps = n;
     }
 
   return (*pps)->slots + indx;

-- 
Alan Modra
Australia Development Lab, IBM

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

only message in thread, other threads:[~2023-03-03  3:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-03  3:46 binutils coff type list Alan Modra

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