Partial fix for PR 15929 - Change physical address of segment when its
[binutils-gdb.git] / bfd / ecoffswap.h
index fd7ecbfcd7c39d14dd38219baeaa3330fe3bb484..00155917cf8bd12a5fb128ee5f2b0c4f7772e016 100644 (file)
@@ -16,7 +16,7 @@ GNU General Public License for more details.
 
 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.  */
 
 /* NOTE: This is a header file, but it contains executable routines.
    This is done this way because these routines are substantially
@@ -51,6 +51,37 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define ecoff_put_off bfd_h_put_64
 #endif
 
+/* ECOFF auxiliary information swapping routines.  These are the same
+   for all ECOFF targets, so they are defined in ecofflink.c.  */
+
+extern void _bfd_ecoff_swap_tir_in
+  PARAMS ((int, const struct tir_ext *, TIR *));
+extern void _bfd_ecoff_swap_tir_out
+  PARAMS ((int, const TIR *, struct tir_ext *));
+extern void _bfd_ecoff_swap_rndx_in
+  PARAMS ((int, const struct rndx_ext *, RNDXR *));
+extern void _bfd_ecoff_swap_rndx_out
+  PARAMS ((int, const RNDXR *, struct rndx_ext *));
+
+/* Prototypes for functions defined in this file.  */
+
+static void ecoff_swap_hdr_in PARAMS ((bfd *, PTR, HDRR *));
+static void ecoff_swap_hdr_out PARAMS ((bfd *, const HDRR *, PTR));
+static void ecoff_swap_fdr_in PARAMS ((bfd *, PTR, FDR *));
+static void ecoff_swap_fdr_out PARAMS ((bfd *, const FDR *, PTR));
+static void ecoff_swap_pdr_in PARAMS ((bfd *, PTR, PDR *));
+static void ecoff_swap_pdr_out PARAMS ((bfd *, const PDR *, PTR));
+static void ecoff_swap_sym_in PARAMS ((bfd *, PTR, SYMR *));
+static void ecoff_swap_sym_out PARAMS ((bfd *, const SYMR *, PTR));
+static void ecoff_swap_ext_in PARAMS ((bfd *, PTR, EXTR *));
+static void ecoff_swap_ext_out PARAMS ((bfd *, const EXTR *, PTR));
+static void ecoff_swap_rfd_in PARAMS ((bfd *, PTR, RFDT *));
+static void ecoff_swap_rfd_out PARAMS ((bfd *, const RFDT *, PTR));
+static void ecoff_swap_opt_in PARAMS ((bfd *, PTR, OPTR *));
+static void ecoff_swap_opt_out PARAMS ((bfd *, const OPTR *, PTR));
+static void ecoff_swap_dnr_in PARAMS ((bfd *, PTR, DNR *));
+static void ecoff_swap_dnr_out PARAMS ((bfd *, const DNR *, PTR));
+
 /* Swap in the symbolic header.  */
 
 static void
@@ -176,7 +207,7 @@ ecoff_swap_fdr_in (abfd, ext_copy, intern)
   intern->crfd          = bfd_h_get_32 (abfd, (bfd_byte *)ext->f_crfd);
 
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     intern->lang        = (ext->f_bits1[0] & FDR_BITS1_LANG_BIG)
                                        >> FDR_BITS1_LANG_SH_BIG;
     intern->fMerge      = 0 != (ext->f_bits1[0] & FDR_BITS1_FMERGE_BIG);
@@ -209,7 +240,7 @@ ecoff_swap_fdr_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_fdr_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     FDR *intern_copy;
+     const FDR *intern_copy;
      PTR ext_ptr;
 {
   struct fdr_ext *ext = (struct fdr_ext *) ext_ptr;
@@ -241,7 +272,7 @@ ecoff_swap_fdr_out (abfd, intern_copy, ext_ptr)
   bfd_h_put_32 (abfd, intern->crfd, (bfd_byte *)ext->f_crfd);
 
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     ext->f_bits1[0] = (((intern->lang << FDR_BITS1_LANG_SH_BIG)
                        & FDR_BITS1_LANG_BIG)
                       | (intern->fMerge ? FDR_BITS1_FMERGE_BIG : 0)
@@ -272,6 +303,135 @@ ecoff_swap_fdr_out (abfd, intern_copy, ext_ptr)
 #endif
 }
 
+#ifndef MPW_C
+
+/* Swap in the procedure descriptor record.  */
+
+static void
+ecoff_swap_pdr_in (abfd, ext_copy, intern)
+     bfd *abfd;
+     PTR ext_copy;
+     PDR *intern;
+{
+  struct pdr_ext ext[1];
+
+  *ext = *(struct pdr_ext *) ext_copy;
+
+  memset ((PTR) intern, 0, sizeof (*intern));
+
+  intern->adr           = ecoff_get_off (abfd, (bfd_byte *)ext->p_adr);
+  intern->isym          = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_isym);
+  intern->iline         = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_iline);
+  intern->regmask       = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_regmask);
+  intern->regoffset     = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_regoffset);
+  intern->iopt          = bfd_h_get_signed_32 (abfd, (bfd_byte *)ext->p_iopt);
+  intern->fregmask      = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_fregmask);
+  intern->fregoffset    = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_fregoffset);
+  intern->frameoffset   = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_frameoffset);
+  intern->framereg      = bfd_h_get_16 (abfd, (bfd_byte *)ext->p_framereg);
+  intern->pcreg         = bfd_h_get_16 (abfd, (bfd_byte *)ext->p_pcreg);
+  intern->lnLow         = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_lnLow);
+  intern->lnHigh        = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_lnHigh);
+  intern->cbLineOffset  = ecoff_get_off (abfd, (bfd_byte *)ext->p_cbLineOffset);
+
+#ifdef ECOFF_64
+  intern->gp_prologue = bfd_h_get_8 (abfd, (bfd_byte *) ext->p_gp_prologue);
+  if (bfd_header_big_endian (abfd))
+    {
+      intern->gp_used = 0 != (ext->p_bits1[0] & PDR_BITS1_GP_USED_BIG);
+      intern->reg_frame = 0 != (ext->p_bits1[0] & PDR_BITS1_REG_FRAME_BIG);
+      intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_BIG);
+      intern->reserved = (((ext->p_bits1[0] & PDR_BITS1_RESERVED_BIG)
+                          << PDR_BITS1_RESERVED_SH_LEFT_BIG)
+                         | ((ext->p_bits2[0] & PDR_BITS2_RESERVED_BIG)
+                            >> PDR_BITS2_RESERVED_SH_BIG));
+    }
+  else
+    {
+      intern->gp_used = 0 != (ext->p_bits1[0] & PDR_BITS1_GP_USED_LITTLE);
+      intern->reg_frame = 0 != (ext->p_bits1[0] & PDR_BITS1_REG_FRAME_LITTLE);
+      intern->prof = 0 != (ext->p_bits1[0] & PDR_BITS1_PROF_LITTLE);
+      intern->reserved = (((ext->p_bits1[0] & PDR_BITS1_RESERVED_LITTLE)
+                          >> PDR_BITS1_RESERVED_SH_LITTLE)
+                         | ((ext->p_bits2[0] & PDR_BITS2_RESERVED_LITTLE)
+                            << PDR_BITS2_RESERVED_SH_LEFT_LITTLE));
+    }
+  intern->localoff = bfd_h_get_8 (abfd, (bfd_byte *) ext->p_localoff);
+#endif  
+
+#ifdef TEST
+  if (memcmp ((char *)ext, (char *)intern, sizeof (*intern)) != 0)
+    abort();
+#endif
+}
+
+/* Swap out the procedure descriptor record.  */
+
+static void
+ecoff_swap_pdr_out (abfd, intern_copy, ext_ptr)
+     bfd *abfd;
+     const PDR *intern_copy;
+     PTR ext_ptr;
+{
+  struct pdr_ext *ext = (struct pdr_ext *) ext_ptr;
+  PDR intern[1];
+
+  *intern = *intern_copy;      /* Make it reasonable to do in-place.  */
+  
+  ecoff_put_off (abfd, intern->adr, (bfd_byte *)ext->p_adr);
+  bfd_h_put_32 (abfd, intern->isym, (bfd_byte *)ext->p_isym);
+  bfd_h_put_32 (abfd, intern->iline, (bfd_byte *)ext->p_iline);
+  bfd_h_put_32 (abfd, intern->regmask, (bfd_byte *)ext->p_regmask);
+  bfd_h_put_32 (abfd, intern->regoffset, (bfd_byte *)ext->p_regoffset);
+  bfd_h_put_32 (abfd, intern->iopt, (bfd_byte *)ext->p_iopt);
+  bfd_h_put_32 (abfd, intern->fregmask, (bfd_byte *)ext->p_fregmask);
+  bfd_h_put_32 (abfd, intern->fregoffset, (bfd_byte *)ext->p_fregoffset);
+  bfd_h_put_32 (abfd, intern->frameoffset, (bfd_byte *)ext->p_frameoffset);
+  bfd_h_put_16 (abfd, intern->framereg, (bfd_byte *)ext->p_framereg);
+  bfd_h_put_16 (abfd, intern->pcreg, (bfd_byte *)ext->p_pcreg);
+  bfd_h_put_32 (abfd, intern->lnLow, (bfd_byte *)ext->p_lnLow);
+  bfd_h_put_32 (abfd, intern->lnHigh, (bfd_byte *)ext->p_lnHigh);
+  ecoff_put_off (abfd, intern->cbLineOffset, (bfd_byte *)ext->p_cbLineOffset);
+
+#ifdef ECOFF_64
+  bfd_h_put_8 (abfd, intern->gp_prologue, (bfd_byte *) ext->p_gp_prologue);
+  if (bfd_header_big_endian (abfd))
+    {
+      ext->p_bits1[0] = ((intern->gp_used ? PDR_BITS1_GP_USED_BIG : 0)
+                        | (intern->reg_frame ? PDR_BITS1_REG_FRAME_BIG : 0)
+                        | (intern->prof ? PDR_BITS1_PROF_BIG : 0)
+                        | ((intern->reserved
+                            >> PDR_BITS1_RESERVED_SH_LEFT_BIG)
+                           & PDR_BITS1_RESERVED_BIG));
+      ext->p_bits2[0] = ((intern->reserved << PDR_BITS2_RESERVED_SH_BIG)
+                        & PDR_BITS2_RESERVED_BIG);
+    }
+  else
+    {
+      ext->p_bits1[0] = ((intern->gp_used ? PDR_BITS1_GP_USED_LITTLE : 0)
+                        | (intern->reg_frame ? PDR_BITS1_REG_FRAME_LITTLE : 0)
+                        | (intern->prof ? PDR_BITS1_PROF_LITTLE : 0)
+                        | ((intern->reserved << PDR_BITS1_RESERVED_SH_LITTLE)
+                           & PDR_BITS1_RESERVED_LITTLE));
+      ext->p_bits2[0] = ((intern->reserved >>
+                         PDR_BITS2_RESERVED_SH_LEFT_LITTLE)
+                        & PDR_BITS2_RESERVED_LITTLE);
+    }
+  bfd_h_put_8 (abfd, intern->localoff, (bfd_byte *) ext->p_localoff);
+#endif  
+
+#ifdef TEST
+  if (memcmp ((char *)ext, (char *)intern, sizeof (*intern)) != 0)
+    abort();
+#endif
+}
+
+#else /* MPW_C */
+/* Same routines, but with ECOFF_64 code removed, so ^&%$#&! MPW C doesn't
+   corrupt itself and then freak out. */
 /* Swap in the procedure descriptor record.  */
 
 static void
@@ -288,11 +448,14 @@ ecoff_swap_pdr_in (abfd, ext_copy, intern)
   intern->isym          = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_isym);
   intern->iline         = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_iline);
   intern->regmask       = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_regmask);
-  intern->regoffset     = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_regoffset);
-  intern->iopt          = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_iopt);
+  intern->regoffset     = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_regoffset);
+  intern->iopt          = bfd_h_get_signed_32 (abfd, (bfd_byte *)ext->p_iopt);
   intern->fregmask      = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_fregmask);
-  intern->fregoffset    = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_fregoffset);
-  intern->frameoffset   = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_frameoffset);
+  intern->fregoffset    = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_fregoffset);
+  intern->frameoffset   = bfd_h_get_signed_32 (abfd,
+                                              (bfd_byte *)ext->p_frameoffset);
   intern->framereg      = bfd_h_get_16 (abfd, (bfd_byte *)ext->p_framereg);
   intern->pcreg         = bfd_h_get_16 (abfd, (bfd_byte *)ext->p_pcreg);
   intern->lnLow         = bfd_h_get_32 (abfd, (bfd_byte *)ext->p_lnLow);
@@ -310,7 +473,7 @@ ecoff_swap_pdr_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_pdr_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     PDR *intern_copy;
+     const PDR *intern_copy;
      PTR ext_ptr;
 {
   struct pdr_ext *ext = (struct pdr_ext *) ext_ptr;
@@ -338,6 +501,7 @@ ecoff_swap_pdr_out (abfd, intern_copy, ext_ptr)
     abort();
 #endif
 }
+#endif /* MPW_C */
 
 /* Swap in a symbol record.  */
 
@@ -355,7 +519,7 @@ ecoff_swap_sym_in (abfd, ext_copy, intern)
   intern->value         = ecoff_get_off (abfd, (bfd_byte *)ext->s_value);
 
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     intern->st          =  (ext->s_bits1[0] & SYM_BITS1_ST_BIG)
                                           >> SYM_BITS1_ST_SH_BIG;
     intern->sc          = ((ext->s_bits1[0] & SYM_BITS1_SC_BIG)
@@ -378,7 +542,8 @@ ecoff_swap_sym_in (abfd, ext_copy, intern)
     intern->index       = ((ext->s_bits2[0] & SYM_BITS2_INDEX_LITTLE)
                                           >> SYM_BITS2_INDEX_SH_LITTLE)
                        | (ext->s_bits3[0] << SYM_BITS3_INDEX_SH_LEFT_LITTLE)
-                       | (ext->s_bits4[0] << SYM_BITS4_INDEX_SH_LEFT_LITTLE);
+                       | ((unsigned int) ext->s_bits4[0]
+                          << SYM_BITS4_INDEX_SH_LEFT_LITTLE);
   }
 
 #ifdef TEST
@@ -392,7 +557,7 @@ ecoff_swap_sym_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_sym_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     SYMR *intern_copy;
+     const SYMR *intern_copy;
      PTR ext_ptr;
 {
   struct sym_ext *ext = (struct sym_ext *) ext_ptr;
@@ -404,7 +569,7 @@ ecoff_swap_sym_out (abfd, intern_copy, ext_ptr)
   ecoff_put_off (abfd, intern->value, (bfd_byte *)ext->s_value);
 
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     ext->s_bits1[0] = (((intern->st << SYM_BITS1_ST_SH_BIG)
                        & SYM_BITS1_ST_BIG)
                       | ((intern->sc >> SYM_BITS1_SC_SH_LEFT_BIG)
@@ -449,7 +614,7 @@ ecoff_swap_ext_in (abfd, ext_copy, intern)
   *ext = *(struct ext_ext *) ext_copy;
   
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     intern->jmptbl      = 0 != (ext->es_bits1[0] & EXT_BITS1_JMPTBL_BIG);
     intern->cobol_main  = 0 != (ext->es_bits1[0] & EXT_BITS1_COBOL_MAIN_BIG);
     intern->weakext     = 0 != (ext->es_bits1[0] & EXT_BITS1_WEAKEXT_BIG);
@@ -480,7 +645,7 @@ ecoff_swap_ext_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_ext_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     EXTR *intern_copy;
+     const EXTR *intern_copy;
      PTR ext_ptr;
 {
   struct ext_ext *ext = (struct ext_ext *) ext_ptr;
@@ -489,16 +654,24 @@ ecoff_swap_ext_out (abfd, intern_copy, ext_ptr)
   *intern = *intern_copy;      /* Make it reasonable to do in-place.  */
   
   /* now the fun stuff... */
-  if (abfd->xvec->header_byteorder_big_p != false) {
+  if (bfd_header_big_endian (abfd)) {
     ext->es_bits1[0] = ((intern->jmptbl ? EXT_BITS1_JMPTBL_BIG : 0)
                        | (intern->cobol_main ? EXT_BITS1_COBOL_MAIN_BIG : 0)
                        | (intern->weakext ? EXT_BITS1_WEAKEXT_BIG : 0));
     ext->es_bits2[0] = 0;
+#ifdef ECOFF_64
+    ext->es_bits2[1] = 0;
+    ext->es_bits2[2] = 0;
+#endif
   } else {
     ext->es_bits1[0] = ((intern->jmptbl ? EXT_BITS1_JMPTBL_LITTLE : 0)
                        | (intern->cobol_main ? EXT_BITS1_COBOL_MAIN_LITTLE : 0)
                        | (intern->weakext ? EXT_BITS1_WEAKEXT_LITTLE : 0));
     ext->es_bits2[0] = 0;
+#ifdef ECOFF_64
+    ext->es_bits2[1] = 0;
+    ext->es_bits2[2] = 0;
+#endif
   }
 
 #ifdef ECOFF_32
@@ -539,7 +712,7 @@ ecoff_swap_rfd_in (abfd, ext_ptr, intern)
 static void
 ecoff_swap_rfd_out (abfd, intern, ext_ptr)
      bfd *abfd;
-     RFDT *intern;
+     const RFDT *intern;
      PTR ext_ptr;
 {
   struct rfd_ext *ext = (struct rfd_ext *) ext_ptr;
@@ -564,12 +737,15 @@ ecoff_swap_opt_in (abfd, ext_copy, intern)
 
   *ext = *(struct opt_ext *) ext_copy;
 
-  if (abfd->xvec->header_byteorder_big_p != false)
+  if (bfd_header_big_endian (abfd))
     {
       intern->ot = ext->o_bits1[0];
-      intern->value = ((ext->o_bits2[0] << OPT_BITS2_VALUE_SH_LEFT_BIG)
-                      | (ext->o_bits3[0] << OPT_BITS2_VALUE_SH_LEFT_BIG)
-                      | (ext->o_bits4[0] << OPT_BITS2_VALUE_SH_LEFT_BIG));
+      intern->value = (((unsigned int) ext->o_bits2[0]
+                       << OPT_BITS2_VALUE_SH_LEFT_BIG)
+                      | ((unsigned int) ext->o_bits3[0]
+                         << OPT_BITS2_VALUE_SH_LEFT_BIG)
+                      | ((unsigned int) ext->o_bits4[0]
+                         << OPT_BITS2_VALUE_SH_LEFT_BIG));
     }
   else
     {
@@ -579,8 +755,8 @@ ecoff_swap_opt_in (abfd, ext_copy, intern)
                       | (ext->o_bits4[0] << OPT_BITS2_VALUE_SH_LEFT_LITTLE));
     }
 
-  ecoff_swap_rndx_in (abfd->xvec->header_byteorder_big_p != false,
-                     &ext->o_rndx, &intern->rndx);
+  _bfd_ecoff_swap_rndx_in (bfd_header_big_endian (abfd),
+                          &ext->o_rndx, &intern->rndx);
 
   intern->offset = bfd_h_get_32 (abfd, (bfd_byte *) ext->o_offset);
 
@@ -595,7 +771,7 @@ ecoff_swap_opt_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_opt_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     OPTR *intern_copy;
+     const OPTR *intern_copy;
      PTR ext_ptr;
 {
   struct opt_ext *ext = (struct opt_ext *) ext_ptr;
@@ -603,7 +779,7 @@ ecoff_swap_opt_out (abfd, intern_copy, ext_ptr)
 
   *intern = *intern_copy;      /* Make it reasonable to do in-place.  */
 
-  if (abfd->xvec->header_byteorder_big_p != false)
+  if (bfd_header_big_endian (abfd))
     {
       ext->o_bits1[0] = intern->ot;
       ext->o_bits2[0] = intern->value >> OPT_BITS2_VALUE_SH_LEFT_BIG;
@@ -618,8 +794,8 @@ ecoff_swap_opt_out (abfd, intern_copy, ext_ptr)
       ext->o_bits4[0] = intern->value >> OPT_BITS4_VALUE_SH_LEFT_LITTLE;
     }
 
-  ecoff_swap_rndx_out (abfd->xvec->header_byteorder_big_p != false,
-                      &intern->rndx, &ext->o_rndx);
+  _bfd_ecoff_swap_rndx_out (bfd_header_big_endian (abfd),
+                           &intern->rndx, &ext->o_rndx);
 
   bfd_h_put_32 (abfd, intern->value, (bfd_byte *) ext->o_offset);
 
@@ -655,7 +831,7 @@ ecoff_swap_dnr_in (abfd, ext_copy, intern)
 static void
 ecoff_swap_dnr_out (abfd, intern_copy, ext_ptr)
      bfd *abfd;
-     DNR *intern_copy;
+     const DNR *intern_copy;
      PTR ext_ptr;
 {
   struct dnr_ext *ext = (struct dnr_ext *) ext_ptr;