Add missing parts of ChangeLog entry for my change of 2000/02/19 00:59:26 to coff...
[deliverable/binutils-gdb.git] / bfd / som.h
index 196cb9cd3bf265cf92266a48bcee55d34cfadda9..af378042189cc20951ca5dd4d38f843bd51a3d93 100644 (file)
--- a/bfd/som.h
+++ b/bfd/som.h
@@ -1,5 +1,6 @@
 /* HP PA-RISC SOM object file format:  definitions internal to BFD.
-   Copyright (C) 1990, 91, 92, 93, 94 Free Software Foundation, Inc.
+   Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1998
+   Free Software Foundation, Inc.
 
    Contributed by the Center for Software Science at the
    University of Utah (pa-gdb-bugs@cs.utah.edu).
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+   02111-1307, USA.  */
 
 #ifndef _SOM_H
 #define _SOM_H
 
-#include "../bfd/sysdep.h"
 #include "libhppa.h"
 
 #include <a.out.h>
 #include <lst.h>
 #include <ar.h>
 
+/* The SOM BFD backend doesn't currently use anything from these
+   two include files, but it's likely to need them in the future.  */
+#ifdef R_DLT_REL
+#include <shl.h>
+#include <dl.h>
+#endif
 
 #if defined(HOST_HPPABSD) || defined (HOST_HPPAOSF)
 /* BSD uses a completely different scheme for object file identification.
@@ -51,7 +58,11 @@ typedef struct som_symbol
        in GAS this way.  */
     union
       {
-       unsigned int hppa_arg_reloc;
+       struct
+       {
+         unsigned int hppa_arg_reloc;
+         unsigned int hppa_priv_level;
+       } ap;
        PTR any;
       }
     tc_data;
@@ -64,6 +75,10 @@ typedef struct som_symbol
        the symbols from most used to least used we can significantly
        reduce the size of the relocation stream for incomplete objects.  */
     int reloc_count;
+
+    /* During object file writing, the offset of the name of this symbol
+       in the SOM string table. */
+    int stringtab_offset;
   }
 som_symbol_type;
 
@@ -98,11 +113,13 @@ struct somdata
     struct copyright_aux_hdr *copyright_aux_hdr;
     struct user_string_aux_hdr *version_aux_hdr;
     struct som_exec_auxhdr *exec_hdr;
+    COMPUNIT *comp_unit;
 
     /* Pointers to a saved copy of the symbol and string tables.  These
        need not be copied for objcopy or strip to work.  */
     som_symbol_type *symtab;
     char *stringtab;
+    asymbol **sorted_syms;
 
     /* We remember these offsets so that after check_file_format, we have
        no dependencies on the particular format of the exec_hdr.
@@ -169,12 +186,14 @@ struct som_section_data_struct
 #define obj_som_exec_hdr(bfd)          (somdata(bfd).exec_hdr)
 #define obj_som_copyright_hdr(bfd)     (somdata(bfd).copyright_aux_hdr)
 #define obj_som_version_hdr(bfd)       (somdata(bfd).version_aux_hdr)
+#define obj_som_compilation_unit(bfd)  (somdata(bfd).comp_unit)
 #define obj_som_symtab(bfd)            (somdata(bfd).symtab)
 #define obj_som_stringtab(bfd)         (somdata(bfd).stringtab)
 #define obj_som_sym_filepos(bfd)       (somdata(bfd).sym_filepos)
 #define obj_som_str_filepos(bfd)       (somdata(bfd).str_filepos)
 #define obj_som_stringtab_size(bfd)    (somdata(bfd).stringtab_size)
 #define obj_som_reloc_filepos(bfd)     (somdata(bfd).reloc_filepos)
+#define obj_som_sorted_syms(bfd)       (somdata(bfd).sorted_syms)
 #define som_section_data(sec) \
   ((struct som_section_data_struct *)sec->used_by_bfd)
 #define som_symbol_data(symbol)                ((som_symbol_type *) symbol)
@@ -197,6 +216,10 @@ struct som_section_data_struct
 #define R_HPPA_ENTRY                   R_ENTRY
 #define R_HPPA_EXIT                    R_EXIT
 #define R_HPPA_COMPLEX                 R_COMP1
+#define R_HPPA_BEGIN_BRTAB             R_BEGIN_BRTAB
+#define R_HPPA_END_BRTAB               R_END_BRTAB
+#define R_HPPA_BEGIN_TRY               R_BEGIN_TRY
+#define R_HPPA_END_TRY                 R_END_TRY
 
 /* Exported functions, mostly for use by GAS.  */
 boolean bfd_som_set_section_attributes PARAMS ((asection *, int, int,
@@ -206,5 +229,9 @@ boolean bfd_som_set_subsection_attributes PARAMS ((asection *, asection *,
 void bfd_som_set_symbol_type PARAMS ((asymbol *, unsigned int));
 boolean bfd_som_attach_aux_hdr PARAMS ((bfd *, int, char *));
 int ** hppa_som_gen_reloc_type
-  PARAMS ((bfd *, int, int, enum hppa_reloc_field_selector_type_alt));
+  PARAMS ((bfd *, int, int, enum hppa_reloc_field_selector_type_alt,
+          int, asymbol *));
+boolean bfd_som_attach_compilation_unit
+  PARAMS ((bfd *, const char *, const char *, const char *, const char *));
+
 #endif /* _SOM_H */
This page took 0.025844 seconds and 4 git commands to generate.