* som.c (som_begin_writing): Account for alignment needs of
[deliverable/binutils-gdb.git] / bfd / som.c
index c71b60767858dd0647b65b3180eeb092bc710f96..f17e064899c2c88c55d5db90281260f339cf7627 100644 (file)
--- a/bfd/som.c
+++ b/bfd/som.c
 /* Max number of SOMs to be found in an archive.  */
 #define SOM_LST_MODULE_LIMIT 1024
 
+/* Generic alignment macro.  */
+#define SOM_ALIGN(val, alignment) \
+  (((val) + (alignment) - 1) & ~((alignment) - 1))
+
 /* SOM allows any one of the four previous relocations to be reused
    with a "R_PREV_FIXUP" relocation entry.  Since R_PREV_FIXUP
    relocations are always a single byte, using a R_PREV_FIXUP instead
@@ -129,7 +133,6 @@ static boolean som_mkobject PARAMS ((bfd *));
 static bfd_target * som_object_setup PARAMS ((bfd *,
                                              struct header *,
                                              struct som_exec_auxhdr *));
-static asection * make_unique_section PARAMS ((bfd *, CONST char *, int));
 static boolean setup_sections PARAMS ((bfd *, struct header *));
 static bfd_target * som_object_p PARAMS ((bfd *));
 static boolean som_write_object_contents PARAMS ((bfd *));
@@ -151,6 +154,7 @@ static void som_print_symbol PARAMS ((bfd *, PTR,
 static boolean som_new_section_hook PARAMS ((bfd *, asection *));
 static boolean som_bfd_copy_private_section_data PARAMS ((bfd *, asection *,
                                                          bfd *, asection *));
+static boolean som_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *));
 static boolean som_bfd_is_local_label PARAMS ((bfd *, asymbol *));
 static boolean som_set_section_contents PARAMS ((bfd *, sec_ptr, PTR,
                                                 file_ptr, bfd_size_type));
@@ -216,7 +220,6 @@ static boolean som_bfd_fill_in_ar_symbols PARAMS ((bfd *, struct lst_header *,
                                                   carsym **syms));
 static boolean som_slurp_armap PARAMS ((bfd *));
 static boolean som_write_armap PARAMS ((bfd *));
-static boolean som_slurp_extended_name_table PARAMS ((bfd *));
 static void som_bfd_derive_misc_symbol_info PARAMS ((bfd *, asymbol *,
                                             struct som_misc_symbol_info *));
 static boolean som_bfd_prep_for_ar_write PARAMS ((bfd *, unsigned int *,
@@ -225,6 +228,10 @@ static unsigned int som_bfd_ar_symbol_hash PARAMS ((asymbol *));
 static boolean som_bfd_ar_write_symbol_stuff PARAMS ((bfd *, unsigned int,
                                                      unsigned int,
                                                      struct lst_header));
+static CONST char *normalize PARAMS ((CONST char *file));
+static boolean som_is_space PARAMS ((asection *));
+static boolean som_is_subspace PARAMS ((asection *));
+static boolean som_is_container PARAMS ((asection *, asection *));
        
 /* Map SOM section names to POSIX/BSD single-character symbol types.
 
@@ -958,7 +965,6 @@ static reloc_howto_type som_hppa_howto_table[] =
   {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"},
   {R_RESERVED, 0, 0, 32, false, 0, 0, hppa_som_reloc, "R_RESERVED"}};
   
-
 /* Initialize the SOM relocation queue.  By definition the queue holds
    the last four multibyte fixups.  */
   
@@ -1588,6 +1594,16 @@ som_object_setup (abfd, file_hdrp, aux_hdrp)
   obj_som_str_filepos (abfd) = file_hdrp->symbol_strings_location;
   obj_som_reloc_filepos (abfd) = file_hdrp->fixup_request_location;
 
+  obj_som_exec_data (abfd) = (struct som_exec_data *)
+    bfd_zalloc (abfd, sizeof (struct som_exec_data ));
+  if (obj_som_exec_data (abfd) == NULL)
+    {
+      bfd_set_error (bfd_error_no_memory);
+      return NULL;
+    }
+
+  obj_som_exec_data (abfd)->system_id = file_hdrp->system_id;
+  obj_som_exec_data (abfd)->exec_flags = aux_hdrp->exec_flags;
   return abfd->xvec;
 }
 
@@ -1609,7 +1625,7 @@ setup_sections (abfd, file_hdr)
   /* First, read in space names */
 
   space_strings = malloc (file_hdr->space_strings_size);
-  if (!space_strings)
+  if (!space_strings && file_hdr->space_strings_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -1654,9 +1670,10 @@ setup_sections (abfd, file_hdr)
        space_asect->flags |= SEC_DEBUGGING;
 
       /* Set up all the attributes for the space.  */
-      bfd_som_set_section_attributes (space_asect, space.is_defined,
-                                     space.is_private, space.sort_key,
-                                     space.space_number);
+      if (bfd_som_set_section_attributes (space_asect, space.is_defined,
+                                         space.is_private, space.sort_key,
+                                         space.space_number) == false)
+       goto error_return;
 
       /* Now, read in the first subspace for this space */
       if (bfd_seek (abfd, file_hdr->subspace_location
@@ -1707,14 +1724,14 @@ setup_sections (abfd, file_hdr)
            goto error_return;
 
          /* Store private information about the section.  */
-         bfd_som_set_subsection_attributes (subspace_asect, space_asect,
-                                            subspace.access_control_bits,
-                                            subspace.sort_key,
-                                            subspace.quadrant);
+         if (bfd_som_set_subsection_attributes (subspace_asect, space_asect,
+                                                subspace.access_control_bits,
+                                                subspace.sort_key,
+                                                subspace.quadrant) == false)
+           goto error_return;
 
          /* Keep an easy mapping between subspaces and sections.  */
-         som_section_data (subspace_asect)->subspace_index 
-           = total_subspaces++;
+         subspace_asect->target_index = total_subspaces++;
 
          /* Set SEC_READONLY and SEC_CODE/SEC_DATA as specified
             by the access_control_bits in the subspace header.  */
@@ -1903,14 +1920,6 @@ som_mkobject (abfd)
   abfd->tdata.som_data = (struct som_data_struct *)
     bfd_zalloc (abfd, sizeof (struct som_data_struct));
   if (abfd->tdata.som_data == NULL)
-    {
-      bfd_set_error (bfd_error_no_memory);
-      return false;
-    }
-  obj_som_file_hdr (abfd)
-    = (struct header *) bfd_zalloc (abfd, sizeof (struct header));
-  if (obj_som_file_hdr (abfd) == NULL)
-
     {
       bfd_set_error (bfd_error_no_memory);
       return false;
@@ -1926,12 +1935,25 @@ static boolean
 som_prep_headers (abfd)
      bfd *abfd;
 {
-  struct header *file_hdr = obj_som_file_hdr (abfd);
+  struct header *file_hdr;
   asection *section;
 
+  /* Make and attach a file header to the BFD.  */
+  file_hdr = (struct header *) bfd_zalloc (abfd, sizeof (struct header));
+  if (file_hdr == NULL)
+
+    {
+      bfd_set_error (bfd_error_no_memory);
+      return false;
+    }
+  obj_som_file_hdr (abfd) = file_hdr;
+
   /* FIXME.  This should really be conditional based on whether or not
      PA1.1 instructions/registers have been used.  */
-  file_hdr->system_id = CPU_PA_RISC1_0;
+  if (abfd->flags & EXEC_P)
+    file_hdr->system_id = obj_som_exec_data (abfd)->system_id;
+  else
+    file_hdr->system_id = CPU_PA_RISC1_0;
 
   if (abfd->flags & EXEC_P)
     {
@@ -1954,15 +1976,9 @@ som_prep_headers (abfd)
   file_hdr->file_time.secs = 0;
   file_hdr->file_time.nanosecs = 0; 
 
-  if (abfd->flags & EXEC_P)
-    abort ();
-  else
-    {
-      file_hdr->entry_space = 0;
-      file_hdr->entry_subspace = 0;
-      file_hdr->entry_offset = 0;
-    }
-  
+  file_hdr->entry_space = 0;
+  file_hdr->entry_subspace = 0;
+  file_hdr->entry_offset = 0;
   file_hdr->presumed_dp = 0;
 
   /* Now iterate over the sections translating information from
@@ -1972,48 +1988,134 @@ som_prep_headers (abfd)
     {
       /* Ignore anything which has not been marked as a space or
         subspace.  */
-      if (som_section_data (section)->is_space == 0
-
-         && som_section_data (section)->is_subspace == 0)
+      if (!som_is_space (section) && !som_is_subspace (section))
        continue;
-
-      if (som_section_data (section)->is_space)
+      
+      if (som_is_space (section))
        {
+         /* Allocate space for the space dictionary.  */
+         som_section_data (section)->space_dict
+           = (struct space_dictionary_record *)
+             bfd_zalloc (abfd, sizeof (struct space_dictionary_record));
+         if (som_section_data (section)->space_dict == NULL)
+           {
+             bfd_set_error (bfd_error_no_memory);
+             return false;
+           }
          /* Set space attributes.  Note most attributes of SOM spaces
             are set based on the subspaces it contains.  */
-         som_section_data (section)->space_dict.loader_fix_index = -1;
-         som_section_data (section)->space_dict.init_pointer_index = -1;
+         som_section_data (section)->space_dict->loader_fix_index = -1;
+         som_section_data (section)->space_dict->init_pointer_index = -1;
+
+         /* Set more attributes that were stuffed away in private data.  */
+         som_section_data (section)->space_dict->sort_key = 
+           som_section_data (section)->copy_data->sort_key;
+         som_section_data (section)->space_dict->is_defined = 
+           som_section_data (section)->copy_data->is_defined;
+         som_section_data (section)->space_dict->is_private = 
+           som_section_data (section)->copy_data->is_private;
+         som_section_data (section)->space_dict->space_number =
+           section->target_index;
        }
       else
        {
+         /* Allocate space for the subspace dictionary.  */
+         som_section_data (section)->subspace_dict
+           = (struct subspace_dictionary_record *)
+             bfd_zalloc (abfd, sizeof (struct subspace_dictionary_record));
+         if (som_section_data (section)->subspace_dict == NULL)
+           {
+             bfd_set_error (bfd_error_no_memory);
+             return false;
+           }
+
          /* Set subspace attributes.  Basic stuff is done here, additional
             attributes are filled in later as more information becomes
             available.  */
          if (section->flags & SEC_IS_COMMON)
            {
-             som_section_data (section)->subspace_dict.dup_common = 1;
-             som_section_data (section)->subspace_dict.is_common = 1;
+             som_section_data (section)->subspace_dict->dup_common = 1;
+             som_section_data (section)->subspace_dict->is_common = 1;
            }
 
          if (section->flags & SEC_ALLOC)
-           som_section_data (section)->subspace_dict.is_loadable = 1;
+           som_section_data (section)->subspace_dict->is_loadable = 1;
 
          if (section->flags & SEC_CODE)
-           som_section_data (section)->subspace_dict.code_only = 1;
+           som_section_data (section)->subspace_dict->code_only = 1;
 
-         som_section_data (section)->subspace_dict.subspace_start = 
+         som_section_data (section)->subspace_dict->subspace_start = 
            section->vma;
-         som_section_data (section)->subspace_dict.subspace_length =
+         som_section_data (section)->subspace_dict->subspace_length =
            bfd_section_size (abfd, section);
-         som_section_data (section)->subspace_dict.initialization_length =
+         som_section_data (section)->subspace_dict->initialization_length =
            bfd_section_size (abfd, section);
-         som_section_data (section)->subspace_dict.alignment = 
+         som_section_data (section)->subspace_dict->alignment = 
            1 << section->alignment_power;
+
+         /* Set more attributes that were stuffed away in private data.  */
+         som_section_data (section)->subspace_dict->sort_key =
+           som_section_data (section)->copy_data->sort_key;
+         som_section_data (section)->subspace_dict->access_control_bits =
+           som_section_data (section)->copy_data->access_control_bits;
+         som_section_data (section)->subspace_dict->quadrant =
+           som_section_data (section)->copy_data->quadrant;
        }
     }
   return true;
 }
 
+/* Return true if the given section is a SOM space, false otherwise.  */
+
+static boolean
+som_is_space (section)
+     asection *section;
+{
+  /* If no copy data is available, then it's neither a space nor a
+     subspace.  */
+  if (som_section_data (section)->copy_data == NULL)
+    return false;
+
+  /* If the containing space isn't the same as the given section,
+     then this isn't a space.  */
+  if (som_section_data (section)->copy_data->container != section)
+    return false;
+
+  /* OK.  Must be a space.  */
+  return true;
+}
+
+/* Return true if the given section is a SOM subspace, false otherwise.  */
+
+static boolean
+som_is_subspace (section)
+     asection *section;
+{
+  /* If no copy data is available, then it's neither a space nor a
+     subspace.  */
+  if (som_section_data (section)->copy_data == NULL)
+    return false;
+
+  /* If the containing space is the same as the given section,
+     then this isn't a subspace.  */
+  if (som_section_data (section)->copy_data->container == section)
+    return false;
+
+  /* OK.  Must be a subspace.  */
+  return true;
+}
+
+/* Return true if the given space containins the given subspace.  It
+   is safe to assume space really is a space, and subspace really
+   is a subspace.  */
+
+static boolean
+som_is_container (space, subspace)
+     asection *space, *subspace;
+{
+  return som_section_data (subspace)->copy_data->container == space;
+}
+
 /* Count and return the number of spaces attached to the given BFD.  */
 
 static unsigned long
@@ -2024,7 +2126,7 @@ som_count_spaces (abfd)
   asection *section;
 
   for (section = abfd->sections; section != NULL; section = section->next)
-    count += som_section_data (section)->is_space;
+      count += som_is_space (section);
 
   return count;
 }
@@ -2039,7 +2141,7 @@ som_count_subspaces (abfd)
   asection *section;
 
   for (section = abfd->sections; section != NULL; section = section->next)
-    count += som_section_data (section)->is_subspace;
+    count += som_is_subspace (section);
 
   return count;
 }
@@ -2098,15 +2200,11 @@ som_prep_for_fixups (abfd, syms, num_syms)
     {
       /* Handle a section symbol; these have no pointers back to the 
         SOM symbol info.  So we just use the pointer field (udata)
-        to hold the relocation count.
-
-        FIXME.  While we're here set the name of any section symbol
-        to something which will not screw GDB.  How do other formats
-        deal with this?!?  */
-      if (som_symbol_data (syms[i]) == NULL)
+        to hold the relocation count.  */
+      if (som_symbol_data (syms[i]) == NULL
+         || syms[i]->flags & BSF_SECTION_SYM)
        {
          syms[i]->flags |= BSF_SECTION_SYM;
-         syms[i]->name = "L$0\002";
          syms[i]->udata = (PTR) 0;
        }
       else
@@ -2208,7 +2306,7 @@ som_write_fixups (abfd, current_offset, total_reloc_sizep)
       asection *subsection;
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
       /* Now iterate through each of its subspaces.  */
@@ -2219,22 +2317,22 @@ som_write_fixups (abfd, current_offset, total_reloc_sizep)
          int reloc_offset, current_rounding_mode;
 
          /* Find a subspace of this space.  */
-         if (som_section_data (subsection)->is_subspace == 0
-             || som_section_data (subsection)->containing_space != section)
+         if (!som_is_subspace (subsection)
+             || !som_is_container (section, subsection))
            continue;
 
          /* If this subspace had no relocations, then we're finished 
             with it.  */
          if (subsection->reloc_count <= 0)
            {
-             som_section_data (subsection)->subspace_dict.fixup_request_index
+             som_section_data (subsection)->subspace_dict->fixup_request_index
                = -1;
              continue;
            }
 
          /* This subspace has some relocations.  Put the relocation stream
             index into the subspace record.  */
-         som_section_data (subsection)->subspace_dict.fixup_request_index
+         som_section_data (subsection)->subspace_dict->fixup_request_index
            = total_reloc_size;
 
          /* To make life easier start over with a clean slate for 
@@ -2458,7 +2556,7 @@ som_write_fixups (abfd, current_offset, total_reloc_sizep)
          p = tmp_space;
 
          total_reloc_size += subspace_reloc_size;
-         som_section_data (subsection)->subspace_dict.fixup_request_quantity
+         som_section_data (subsection)->subspace_dict->fixup_request_quantity
            = subspace_reloc_size;
        }
       section = section->next;
@@ -2501,8 +2599,7 @@ som_write_space_strings (abfd, current_offset, string_sizep)
 
       /* Only work with space/subspaces; avoid any other sections
         which might have been made (.text for example).  */
-      if (som_section_data (section)->is_space == 0
-         && som_section_data (section)->is_subspace == 0)
+      if (!som_is_space (section) && !som_is_subspace (section))
        continue;
 
       /* Get the length of the space/subspace name.  */
@@ -2530,10 +2627,10 @@ som_write_space_strings (abfd, current_offset, string_sizep)
       strings_size += 4;
 
       /* Record the index in the space/subspace records.  */
-      if (som_section_data (section)->is_space)
-       som_section_data (section)->space_dict.name.n_strx = strings_size;
+      if (som_is_space (section))
+       som_section_data (section)->space_dict->name.n_strx = strings_size;
       else
-       som_section_data (section)->subspace_dict.name.n_strx = strings_size;
+       som_section_data (section)->subspace_dict->name.n_strx = strings_size;
 
       /* Next comes the string itself + a null terminator.  */
       strcpy (p, section->name);
@@ -2658,6 +2755,7 @@ som_begin_writing (abfd)
   asection *section;
   asymbol **syms = bfd_get_outsymbols (abfd);
   unsigned int total_subspaces = 0;
+  struct som_exec_auxhdr exec_header;
 
   /* The file header will always be first in an object file, 
      everything else can be in random locations.  To keep things
@@ -2677,6 +2775,17 @@ som_begin_writing (abfd)
      we support only the copyright and version headers.  */
   obj_som_file_hdr (abfd)->aux_header_location = current_offset;
   obj_som_file_hdr (abfd)->aux_header_size = 0;
+  if (abfd->flags & EXEC_P)
+    {
+      /* Parts of the exec header will be filled in later, so
+        delay writing the header itself.  Fill in the defaults,
+        and write it later.  */
+      current_offset += sizeof (exec_header);
+      obj_som_file_hdr (abfd)->aux_header_size += sizeof (exec_header);
+      memset (&exec_header, 0, sizeof (exec_header));
+      exec_header.som_auxhdr.type = HPUX_AUX_ID;
+      exec_header.som_auxhdr.length = 40;
+    }
   if (obj_som_version_hdr (abfd) != NULL)
     {
       unsigned int len;
@@ -2837,33 +2946,95 @@ som_begin_writing (abfd)
   obj_som_file_hdr (abfd)->compiler_location = current_offset;
   obj_som_file_hdr (abfd)->compiler_total = 0;
 
-  /* Now compute the file positions for the loadable subspaces.  */
+  /* Now compute the file positions for the loadable subspaces, taking
+     care to make sure everything stays properly aligned.  */
 
   section = abfd->sections;
   for (i = 0; i < num_spaces; i++)
     {
       asection *subsection;
+      int first_subspace;
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
+      first_subspace = 1;
       /* Now look for all its subspaces.  */
       for (subsection = abfd->sections;
           subsection != NULL;
           subsection = subsection->next)
        {
-         
-         if (som_section_data (subsection)->is_subspace == 0
-             || som_section_data (subsection)->containing_space != section
+
+         if (!som_is_subspace (subsection)
+             || !som_is_container (section, subsection)
              || (subsection->flags & SEC_ALLOC) == 0)
            continue;
 
-         som_section_data (subsection)->subspace_index = total_subspaces++;
+         /* If this is the first subspace in the space, and we are
+            building an executable, then take care to make sure all
+            the alignments are correct and update the exec header.  */
+         if (first_subspace
+             && (abfd->flags & EXEC_P))
+           {
+             /* Demand paged executables have each space aligned to a
+                page boundary.  Sharable executables (write-protected
+                text) have just the private (aka data & bss) space aligned
+                to a page boundary.  */
+             if (abfd->flags & D_PAGED
+                 || ((abfd->flags & WP_TEXT)
+                     && (subsection->flags & SEC_DATA)))
+               current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
+
+             /* Update the exec header.  */
+             if (subsection->flags & SEC_CODE && exec_header.exec_tfile == 0)
+               {
+                 exec_header.exec_tmem = section->vma;
+                 exec_header.exec_tfile = current_offset;
+               }
+             if (subsection->flags & SEC_DATA && exec_header.exec_dfile == 0)
+               {
+                 exec_header.exec_dmem = section->vma;
+                 exec_header.exec_dfile = current_offset;
+               }
+
+             /* Only do this for the first subspace within each space.  */
+             first_subspace = 0;
+           }
+         else if (abfd->flags & EXEC_P)
+           {
+             /* Have to keep proper alignments for the subspaces
+                in executables too!  */
+             if (subsection->flags & SEC_CODE)
+               {
+                 unsigned tmp = exec_header.exec_tsize;
+
+                 tmp = SOM_ALIGN (tmp, 1 << subsection->alignment_power);
+                 current_offset += (tmp - exec_header.exec_tsize);
+                 exec_header.exec_tsize = tmp;
+               }
+             else
+               {
+                 unsigned tmp = exec_header.exec_dsize;
+
+                 tmp = SOM_ALIGN (tmp, 1 << subsection->alignment_power);
+                 current_offset += (tmp - exec_header.exec_dsize);
+                 exec_header.exec_dsize = tmp;
+               }
+           }
+
+         subsection->target_index = total_subspaces++;
          /* This is real data to be loaded from the file.  */
          if (subsection->flags & SEC_LOAD)
            {
-             som_section_data (subsection)->subspace_dict.file_loc_init_value
+             /* Update the size of the code & data.  */
+             if (abfd->flags & EXEC_P
+                 && subsection->flags & SEC_CODE)
+               exec_header.exec_tsize += subsection->_cooked_size;
+             else if (abfd->flags & EXEC_P
+                      && subsection->flags & SEC_DATA)
+               exec_header.exec_dsize += subsection->_cooked_size;
+             som_section_data (subsection)->subspace_dict->file_loc_init_value
                = current_offset;
              section->filepos = current_offset;
              current_offset += bfd_section_size (abfd, subsection); 
@@ -2871,9 +3042,13 @@ som_begin_writing (abfd)
          /* Looks like uninitialized data.  */
          else
            {
-             som_section_data (subsection)->subspace_dict.file_loc_init_value
+             /* Update the size of the bss section.  */
+             if (abfd->flags & EXEC_P)
+               exec_header.exec_bsize += subsection->_cooked_size;
+
+             som_section_data (subsection)->subspace_dict->file_loc_init_value
                = 0;
-             som_section_data (subsection)->subspace_dict.
+             som_section_data (subsection)->subspace_dict->
                initialization_length = 0;
            }
        }
@@ -2881,7 +3056,12 @@ som_begin_writing (abfd)
       section = section->next; 
     }
 
-  /* Finally compute the file positions for unloadable subspaces.  */
+  /* Finally compute the file positions for unloadable subspaces.
+     If building an executable, start the unloadable stuff on its
+     own page.  */
+
+  if (abfd->flags & EXEC_P)
+    current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
 
   obj_som_file_hdr (abfd)->unloadable_sp_location = current_offset;
   section = abfd->sections;
@@ -2890,25 +3070,27 @@ som_begin_writing (abfd)
       asection *subsection;
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
+      current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
+
       /* Now look for all its subspaces.  */
       for (subsection = abfd->sections;
           subsection != NULL;
           subsection = subsection->next)
        {
          
-         if (som_section_data (subsection)->is_subspace == 0
-             || som_section_data (subsection)->containing_space != section
+         if (!som_is_subspace (subsection)
+             || !som_is_container (section, subsection)
              || (subsection->flags & SEC_ALLOC) != 0)
            continue;
 
-         som_section_data (subsection)->subspace_index = total_subspaces++;
+         subsection->target_index = total_subspaces;
          /* This is real data to be loaded from the file.  */
          if ((subsection->flags & SEC_LOAD) == 0)
            {
-             som_section_data (subsection)->subspace_dict.file_loc_init_value
+             som_section_data (subsection)->subspace_dict->file_loc_init_value
                = current_offset;
              section->filepos = current_offset;
              current_offset += bfd_section_size (abfd, subsection); 
@@ -2916,9 +3098,9 @@ som_begin_writing (abfd)
          /* Looks like uninitialized data.  */
          else
            {
-             som_section_data (subsection)->subspace_dict.file_loc_init_value
+             som_section_data (subsection)->subspace_dict->file_loc_init_value
                = 0;
-             som_section_data (subsection)->subspace_dict.
+             som_section_data (subsection)->subspace_dict->
                initialization_length = bfd_section_size (abfd, subsection);
            }
        }
@@ -2926,6 +3108,22 @@ som_begin_writing (abfd)
       section = section->next; 
     }
 
+  /* If building an executable, then make sure to seek to and write
+     one byte at the end of the file to make sure any necessary
+     zeros are filled in.  Ugh.  */
+  if (abfd->flags & EXEC_P)
+    current_offset = SOM_ALIGN (current_offset, PA_PAGESIZE);
+  if (bfd_seek (abfd, current_offset, SEEK_SET) < 0)
+    {
+      bfd_set_error (bfd_error_system_call);
+      return false;
+    }
+  if (bfd_write ((PTR) "", 1, 1, abfd) != 1)
+    {
+      bfd_set_error (bfd_error_system_call);
+      return false;
+    }
+
   obj_som_file_hdr (abfd)->unloadable_sp_size
     = current_offset - obj_som_file_hdr (abfd)->unloadable_sp_location;
 
@@ -2935,6 +3133,34 @@ som_begin_writing (abfd)
 
   /* Done.  Store the total size of the SOM.  */
   obj_som_file_hdr (abfd)->som_length = current_offset;
+
+  /* Now write the exec header.  */
+  if (abfd->flags & EXEC_P)
+    {
+      long tmp;
+
+      exec_header.exec_entry = bfd_get_start_address (abfd);
+      exec_header.exec_flags = obj_som_exec_data (abfd)->exec_flags;
+
+      /* Oh joys.  Ram some of the BSS data into the DATA section
+        to be compatable with how the hp linker makes objects
+        (saves memory space).  */
+      tmp = exec_header.exec_dsize;
+      tmp = SOM_ALIGN (tmp, PA_PAGESIZE);
+      exec_header.exec_bsize -= (tmp - exec_header.exec_dsize);
+      if (exec_header.exec_bsize < 0)
+       exec_header.exec_bsize = 0;
+      exec_header.exec_dsize = tmp;
+
+      bfd_seek (abfd, obj_som_file_hdr (abfd)->aux_header_location, SEEK_SET);
+
+      if (bfd_write ((PTR) &exec_header, AUX_HDR_SIZE, 1, abfd)
+         != AUX_HDR_SIZE)
+       {
+         bfd_set_error (bfd_error_system_call);
+         return false;
+       }
+    }
   return true;
 }
 
@@ -2963,7 +3189,7 @@ som_write_headers (abfd)
       asection *subsection;
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
       /* Now look for all its subspaces.  */
@@ -2975,8 +3201,8 @@ som_write_headers (abfd)
          /* Skip any section which does not correspond to a space
             or subspace.  Or does not have SEC_ALLOC set (and therefore
             has no real bits on the disk).  */
-         if (som_section_data (subsection)->is_subspace == 0
-             || som_section_data (subsection)->containing_space != section
+         if (!som_is_subspace (subsection)
+             || !som_is_container (section, subsection)
              || (subsection->flags & SEC_ALLOC) == 0)
            continue;
 
@@ -2984,24 +3210,24 @@ som_write_headers (abfd)
             the index of the subspace in its containing space.  Also
             set "is_loadable" in the containing space.  */
 
-         if (som_section_data (section)->space_dict.subspace_quantity == 0)
+         if (som_section_data (section)->space_dict->subspace_quantity == 0)
            {
-             som_section_data (section)->space_dict.is_loadable = 1;
-             som_section_data (section)->space_dict.subspace_index
+             som_section_data (section)->space_dict->is_loadable = 1;
+             som_section_data (section)->space_dict->subspace_index
                = subspace_index;
            }
 
          /* Increment the number of subspaces seen and the number of
             subspaces contained within the current space.  */
          subspace_index++;
-         som_section_data (section)->space_dict.subspace_quantity++;
+         som_section_data (section)->space_dict->subspace_quantity++;
 
          /* Mark the index of the current space within the subspace's
             dictionary record.  */
-         som_section_data (subsection)->subspace_dict.space_index = i;
+         som_section_data (subsection)->subspace_dict->space_index = i;
          
          /* Dump the current subspace header.  */
-         if (bfd_write ((PTR) &som_section_data (subsection)->subspace_dict,
+         if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
                         sizeof (struct subspace_dictionary_record), 1, abfd)
              != sizeof (struct subspace_dictionary_record))
            {
@@ -3021,7 +3247,7 @@ som_write_headers (abfd)
       asection *subsection;
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
       /* Now look for all its subspaces.  */
@@ -3034,8 +3260,8 @@ som_write_headers (abfd)
             subspace, or which SEC_ALLOC set (and therefore handled
             in the loadable spaces/subspaces code above.  */
 
-         if (som_section_data (subsection)->is_subspace == 0
-             || som_section_data (subsection)->containing_space != section
+         if (!som_is_subspace (subsection)
+             || !som_is_container (section, subsection)
              || (subsection->flags & SEC_ALLOC) != 0)
            continue;
 
@@ -3043,24 +3269,24 @@ som_write_headers (abfd)
             the index of the subspace in its containing space.  Clear
             "is_loadable".  */
 
-         if (som_section_data (section)->space_dict.subspace_quantity == 0)
+         if (som_section_data (section)->space_dict->subspace_quantity == 0)
            {
-             som_section_data (section)->space_dict.is_loadable = 0;
-             som_section_data (section)->space_dict.subspace_index
+             som_section_data (section)->space_dict->is_loadable = 0;
+             som_section_data (section)->space_dict->subspace_index
                = subspace_index;
            }
 
          /* Increment the number of subspaces seen and the number of
             subspaces contained within the current space.  */
-         som_section_data (section)->space_dict.subspace_quantity++;
+         som_section_data (section)->space_dict->subspace_quantity++;
          subspace_index++; 
 
          /* Mark the index of the current space within the subspace's
             dictionary record.  */
-         som_section_data (subsection)->subspace_dict.space_index = i;
+         som_section_data (subsection)->subspace_dict->space_index = i;
          
          /* Dump this subspace header.  */
-         if (bfd_write ((PTR) &som_section_data (subsection)->subspace_dict,
+         if (bfd_write ((PTR) som_section_data (subsection)->subspace_dict,
                         sizeof (struct subspace_dictionary_record), 1, abfd)
              != sizeof (struct subspace_dictionary_record))
            {
@@ -3085,11 +3311,11 @@ som_write_headers (abfd)
     {
 
       /* Find a space.  */
-      while (som_section_data (section)->is_space == 0)
+      while (!som_is_space (section))
        section = section->next;
 
       /* Dump its header  */
-      if (bfd_write ((PTR) &som_section_data (section)->space_dict,
+      if (bfd_write ((PTR) som_section_data (section)->space_dict,
                     sizeof (struct space_dictionary_record), 1, abfd)
          != sizeof (struct space_dictionary_record))
        {
@@ -3228,7 +3454,7 @@ som_bfd_derive_misc_symbol_info (abfd, sym, info)
   /* For all other symbols, the symbol_info field contains the 
      subspace index of the space this symbol is contained in.  */
   else
-    info->symbol_info = som_section_data (sym->section)->subspace_index;
+    info->symbol_info = sym->section->target_index;
 
   /* Set the symbol's value.  */
   info->symbol_value = sym->value + sym->section->vma;
@@ -3251,7 +3477,7 @@ som_build_and_write_symbol_table (abfd)
      to hold the symbol table as we build it.  */
   symtab_size = num_syms * sizeof (struct symbol_dictionary_record);
   som_symtab = (struct symbol_dictionary_record *) malloc (symtab_size);
-  if (som_symtab == NULL)
+  if (som_symtab == NULL && symtab_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -3392,7 +3618,7 @@ som_section_from_subspace_index (abfd, index)
   asection *section;
 
   for (section = abfd->sections; section != NULL; section = section->next)
-    if (som_section_data (section)->subspace_index == index)
+    if (section->target_index == index)
       return section;
 
   /* Should never happen.  */
@@ -3434,7 +3660,7 @@ som_slurp_symbol_table (abfd)
 
   /* Read in the external SOM representation.  */
   buf = malloc (symbol_count * symsize);
-  if (buf == NULL)
+  if (buf == NULL && symbol_count * symsize != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -3550,9 +3776,15 @@ som_slurp_symbol_table (abfd)
        }
 
       /* Mark section symbols and symbols used by the debugger.  */
-      if (!strcmp (sym->symbol.name, "L$0\002"))
+      if (sym->symbol.name[0] == '$'
+         && sym->symbol.name[strlen (sym->symbol.name) - 1] == '$')
        sym->symbol.flags |= BSF_SECTION_SYM;
-      else if (!strncmp (sym->symbol.name, "L$0", 3))
+      else if (!strncmp (sym->symbol.name, "L$0\002", 4))
+       {
+         sym->symbol.flags |= BSF_SECTION_SYM;
+         sym->symbol.name = sym->symbol.section->name;
+       }
+      else if (!strncmp (sym->symbol.name, "L$0\001", 4))
        sym->symbol.flags |= BSF_DEBUGGING;
 
       /* Note increment at bottom of loop, since we skip some symbols
@@ -4039,10 +4271,6 @@ som_new_section_hook (abfd, newsect)
     }
   newsect->alignment_power = 3;
 
-  /* Initialize the subspace_index field to -1 so that it does
-     not match a subspace with an index of 0.  */
-  som_section_data (newsect)->subspace_index = -1;
-
   /* We allow more than three sections internally */
   return true;
 }
@@ -4058,22 +4286,63 @@ som_bfd_copy_private_section_data (ibfd, isection, obfd, osection)
 {
   /* One day we may try to grok other private data.  */
   if (ibfd->xvec->flavour != bfd_target_som_flavour
-      || obfd->xvec->flavour != bfd_target_som_flavour)
+      || obfd->xvec->flavour != bfd_target_som_flavour
+      || (!som_is_space (isection) && !som_is_subspace (isection)))
     return false;
 
-  memcpy (som_section_data (osection), som_section_data (isection),
-         sizeof (struct som_section_data_struct));
+  som_section_data (osection)->copy_data
+    = (struct som_copyable_section_data_struct *)
+      bfd_zalloc (obfd, sizeof (struct som_copyable_section_data_struct));
+  if (som_section_data (osection)->copy_data == NULL)
+    {
+      bfd_set_error (bfd_error_no_memory);
+      return false;
+    }
+
+  memcpy (som_section_data (osection)->copy_data,
+         som_section_data (isection)->copy_data,
+         sizeof (struct som_copyable_section_data_struct));
 
   /* Reparent if necessary.  */
-  if (som_section_data (osection)->containing_space)
-    som_section_data (osection)->containing_space =
-      som_section_data (osection)->containing_space->output_section;
+  if (som_section_data (osection)->copy_data->container)
+    som_section_data (osection)->copy_data->container =
+      som_section_data (osection)->copy_data->container->output_section;
+
+  return true;
+}
+
+/* Copy any private info we understand from the input bfd
+   to the output bfd.  */
+
+static boolean
+som_bfd_copy_private_bfd_data (ibfd, obfd)
+     bfd *ibfd, *obfd;
+{
+  /* One day we may try to grok other private data.  */
+  if (ibfd->xvec->flavour != bfd_target_som_flavour
+      || obfd->xvec->flavour != bfd_target_som_flavour)
+    return false;
+
+  /* Allocate some memory to hold the data we need.  */
+  obj_som_exec_data (obfd) = (struct som_exec_data *)
+    bfd_zalloc (obfd, sizeof (struct som_exec_data));
+  if (obj_som_exec_data (obfd) == NULL)
+    {
+      bfd_set_error (bfd_error_no_memory);
+      return false;
+    }
+
+  /* Now copy the data.  */
+  memcpy (obj_som_exec_data (obfd), obj_som_exec_data (ibfd),
+         sizeof (struct som_exec_data));
+
+  return true;
 }
-       
+
 /* Set backend info for sections which can not be described
    in the BFD data structures.  */
 
-void
+boolean
 bfd_som_set_section_attributes (section, defined, private, sort_key, spnum)
      asection *section;
      int defined;
@@ -4081,20 +4350,31 @@ bfd_som_set_section_attributes (section, defined, private, sort_key, spnum)
      unsigned int sort_key;
      int spnum;
 {
-  struct space_dictionary_record *space_dict;
-
-  som_section_data (section)->is_space = 1;
-  space_dict = &som_section_data (section)->space_dict;
-  space_dict->is_defined = defined;
-  space_dict->is_private = private;
-  space_dict->sort_key = sort_key;
-  space_dict->space_number = spnum;
+  /* Allocate memory to hold the magic information.  */
+  if (som_section_data (section)->copy_data == NULL)
+    {
+      som_section_data (section)->copy_data
+       = (struct som_copyable_section_data_struct *)
+         bfd_zalloc (section->owner,
+                     sizeof (struct som_copyable_section_data_struct));
+      if (som_section_data (section)->copy_data == NULL)
+       {
+         bfd_set_error (bfd_error_no_memory);
+         return false;
+       }
+    }
+  som_section_data (section)->copy_data->sort_key = sort_key;
+  som_section_data (section)->copy_data->is_defined = defined;
+  som_section_data (section)->copy_data->is_private = private;
+  som_section_data (section)->copy_data->container = section;
+  section->target_index = spnum;
+  return true;
 }
 
 /* Set backend info for subsections which can not be described 
    in the BFD data structures.  */
 
-void
+boolean
 bfd_som_set_subsection_attributes (section, container, access,
                                   sort_key, quadrant)
      asection *section;
@@ -4103,13 +4383,24 @@ bfd_som_set_subsection_attributes (section, container, access,
      unsigned int sort_key;
      int quadrant;
 {
-  struct subspace_dictionary_record *subspace_dict;
-  som_section_data (section)->is_subspace = 1;
-  subspace_dict = &som_section_data (section)->subspace_dict;
-  subspace_dict->access_control_bits = access;
-  subspace_dict->sort_key = sort_key;
-  subspace_dict->quadrant = quadrant;
-  som_section_data (section)->containing_space = container;
+  /* Allocate memory to hold the magic information.  */
+  if (som_section_data (section)->copy_data == NULL)
+    {
+      som_section_data (section)->copy_data
+       = (struct som_copyable_section_data_struct *)
+         bfd_zalloc (section->owner,
+                     sizeof (struct som_copyable_section_data_struct));
+      if (som_section_data (section)->copy_data == NULL)
+       {
+         bfd_set_error (bfd_error_no_memory);
+         return false;
+       }
+    }
+  som_section_data (section)->copy_data->sort_key = sort_key;
+  som_section_data (section)->copy_data->access_control_bits = access;
+  som_section_data (section)->copy_data->quadrant = quadrant;
+  som_section_data (section)->copy_data->container = container;
+  return true;
 }
 
 /* Set the full SOM symbol type.  SOM needs far more symbol information
@@ -4212,13 +4503,13 @@ som_set_section_contents (abfd, section, location, offset, count)
 
   /* Only write subspaces which have "real" contents (eg. the contents
      are not generated at run time by the OS).  */
-  if (som_section_data (section)->is_subspace != 1
+  if (!som_is_subspace (section)
       || ((section->flags & (SEC_LOAD | SEC_DEBUGGING)) == 0))
     return true;
 
   /* Seek to the proper offset within the object file and write the
      data.  */
-  offset += som_section_data (section)->subspace_dict.file_loc_init_value; 
+  offset += som_section_data (section)->subspace_dict->file_loc_init_value; 
   if (bfd_seek (abfd, offset, SEEK_SET) == -1)
     {
       bfd_set_error (bfd_error_system_call);
@@ -4343,7 +4634,7 @@ som_bfd_count_ar_symbols (abfd, lst_header, count)
 
   hash_table = 
     (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
-  if (hash_table == NULL)
+  if (hash_table == NULL && lst_header->hash_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4436,7 +4727,7 @@ som_bfd_fill_in_ar_symbols (abfd, lst_header, syms)
 
   hash_table = 
     (unsigned int *) malloc (lst_header->hash_size * sizeof (unsigned int));
-  if (hash_table == NULL)
+  if (hash_table == NULL && lst_header->hash_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4445,7 +4736,7 @@ som_bfd_fill_in_ar_symbols (abfd, lst_header, syms)
   som_dict =
     (struct som_entry *) malloc (lst_header->module_count
                                 * sizeof (struct som_entry));
-  if (som_dict == NULL)
+  if (som_dict == NULL && lst_header->module_count != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4714,6 +5005,14 @@ som_slurp_armap (abfd)
       == false)
     return false;
 
+  /* Seek back to the "first" file in the archive.  Note the "first"
+     file may be the extended name table.  */
+  if (bfd_seek (abfd, ardata->first_file_filepos, SEEK_SET) < 0)
+    {
+      bfd_set_error (bfd_error_system_call);
+      return false;
+    }
+
   /* Notify the generic archive code that we have a symbol map.  */
   bfd_has_map (abfd) = true;
   return true;
@@ -4803,6 +5102,19 @@ som_bfd_ar_symbol_hash (symbol)
          | (symbol->name[len-2] << 8) | symbol->name[len-1];
 }
 
+static CONST char *
+normalize (file)
+     CONST char *file;
+{
+  CONST char *filename = strrchr (file, '/');
+
+  if (filename != NULL)
+    filename++;
+  else
+    filename = file;
+  return filename;
+}
+
 /* Do the bulk of the work required to write the SOM library
    symbol table.  */
    
@@ -4815,15 +5127,16 @@ som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
   file_ptr lst_filepos;
   char *strings = NULL, *p;
   struct lst_symbol_record *lst_syms = NULL, *curr_lst_sym;
-  bfd *curr_bfd = abfd->archive_head;
+  bfd *curr_bfd;
   unsigned int *hash_table = NULL;
   struct som_entry *som_dict = NULL;
   struct lst_symbol_record **last_hash_entry = NULL;
-  unsigned int curr_som_offset, som_index;
+  unsigned int curr_som_offset, som_index, extended_name_length = 0;
+  unsigned int maxname = abfd->xvec->ar_max_namelen;
 
   hash_table =
     (unsigned int *) malloc (lst.hash_size * sizeof (unsigned int));
-  if (hash_table == NULL)
+  if (hash_table == NULL && lst.hash_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4831,7 +5144,7 @@ som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
   som_dict =
     (struct som_entry *) malloc (lst.module_count
                                 * sizeof (struct som_entry));
-  if (som_dict == NULL)
+  if (som_dict == NULL && lst.module_count != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4840,7 +5153,7 @@ som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
   last_hash_entry =
     ((struct lst_symbol_record **)
      malloc (lst.hash_size * sizeof (struct lst_symbol_record *)));
-  if (last_hash_entry == NULL)
+  if (last_hash_entry == NULL && lst.hash_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4866,15 +5179,42 @@ som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
   som_index = 0;
   curr_som_offset = 8 + 2 * sizeof (struct ar_hdr) + lst.file_end;
 
+  /* Yow!  We have to know the size of the extended name table
+     too.  */
+  for (curr_bfd = abfd->archive_head;
+       curr_bfd != NULL;
+       curr_bfd = curr_bfd->next)
+    {
+      CONST char *normal = normalize (curr_bfd->filename);
+      unsigned int thislen;
+
+      if (!normal)
+       {
+         bfd_set_error (bfd_error_no_memory);
+         return false;
+       }
+      thislen = strlen (normal);
+      if (thislen > maxname)
+       extended_name_length += thislen + 1;
+    }
+
+  /* Make room for the archive header and the contents of the
+     extended string table.  */
+  if (extended_name_length)
+    curr_som_offset += extended_name_length + sizeof (struct ar_hdr);
+
+  /* Make sure we're properly aligned.  */
+  curr_som_offset = (curr_som_offset + 0x1) & ~0x1;
+
   /* FIXME should be done with buffers just like everything else... */
   lst_syms = malloc (nsyms * sizeof (struct lst_symbol_record));
-  if (lst_syms == NULL)
+  if (lst_syms == NULL && nsyms != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
     }
   strings = malloc (string_size);
-  if (strings == NULL)
+  if (strings == NULL && string_size != 0)
     {
       bfd_set_error (bfd_error_no_memory);
       goto error_return;
@@ -4883,7 +5223,7 @@ som_bfd_ar_write_symbol_stuff (abfd, nsyms, string_size, lst)
   p = strings;
   curr_lst_sym = lst_syms;
 
-
+  curr_bfd = abfd->archive_head;
   while (curr_bfd != NULL)
     {
       unsigned int curr_count, i;
@@ -5139,12 +5479,12 @@ som_write_armap (abfd)
 
   /* SOM ABI says this must be zero.  */
   lst.free_list = 0;
-
   lst.file_end = lst_size;
 
   /* Compute the checksum.  Must happen after the entire lst header
      has filled in.  */
   p = (int *)&lst;
+  lst.checksum = 0;
   for (i = 0; i < sizeof (struct lst_header)/sizeof (int) - 1; i++)
     lst.checksum ^= *p++;
 
@@ -5186,16 +5526,6 @@ som_write_armap (abfd)
   return true;
 }
 
-/* Apparently the extened names are never used, even though they appear
-   in the SOM ABI.  Hmmm.  */
-static boolean
-som_slurp_extended_name_table (abfd)
-     bfd *abfd;
-{
-  bfd_ardata (abfd)->extended_names = NULL;
-  return true;
-}
-
 /* End of miscellaneous support functions. */
 
 #define som_bfd_debug_info_start        bfd_void
@@ -5205,6 +5535,7 @@ som_slurp_extended_name_table (abfd)
 #define som_openr_next_archived_file   bfd_generic_openr_next_archived_file
 #define som_generic_stat_arch_elt      bfd_generic_stat_arch_elt
 #define som_truncate_arname            bfd_bsd_truncate_arname
+#define som_slurp_extended_name_table  _bfd_slurp_extended_name_table
 
 #define som_get_lineno                   (struct lineno_cache_entry *(*)())bfd_nullvoidptr
 #define        som_close_and_cleanup              bfd_generic_close_and_cleanup
@@ -5224,9 +5555,6 @@ som_slurp_extended_name_table (abfd)
 #define som_core_file_failing_signal   _bfd_dummy_core_file_failing_signal
 #define som_core_file_matches_executable_p     _bfd_dummy_core_file_matches_executable_p
 
-#define som_bfd_copy_private_bfd_data \
-  ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)
-
 bfd_target som_vec =
 {
   "som",                       /* name */
@@ -5243,7 +5571,7 @@ bfd_target som_vec =
    predictable, and if so what is it */
   0,
   '/',                         /* ar_pad_char */
-  16,                          /* ar_max_namelen */
+  14,                          /* ar_max_namelen */
   3,                           /* minimum alignment */
   bfd_getb64, bfd_getb_signed_64, bfd_putb64,
   bfd_getb32, bfd_getb_signed_32, bfd_putb32,
This page took 0.170571 seconds and 4 git commands to generate.