* xcoffsolib.h, xcoffexec.c: Undo the part of Fred's bfd->abfd
authorJim Kingdon <jkingdon@engr.sgi.com>
Tue, 12 Oct 1993 20:36:37 +0000 (20:36 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Tue, 12 Oct 1993 20:36:37 +0000 (20:36 +0000)
change which involved structure elements.  It was unnecessary and
was not consistently done.

gdb/ChangeLog
gdb/xcoffexec.c
gdb/xcoffsolib.h

index 82a446ebcc1efaf158e273adb21554844f8a7daa..ad5a756989c96f62aeb0b70784d5090cdde7b9e1 100644 (file)
@@ -1,5 +1,9 @@
 Tue Oct 12 08:59:15 1993  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * xcoffsolib.h, xcoffexec.c: Undo the part of Fred's bfd->abfd
+       change which involved structure elements.  It was unnecessary and
+       was not consistently done.
+
        * stabsread.h, stabsread.c, dbxread.c (common_block*, copy_pending):
        Move common block handling from dbxread.c to stabsread.c.
        Use the name from the BCOMM instead of the ECOMM.
index 5c47ba13bc8845d0ec08d4e859e374e6900f3dae..e9981f3bb282699d3cfe6d087b1382b0fbd6e519 100644 (file)
@@ -469,7 +469,7 @@ add_vmap(ldi)
                       objname, bfd_errmsg(bfd_error));
                /*NOTREACHED*/
        }
-       obj = allocate_objfile (vp->abfd, 0);
+       obj = allocate_objfile (vp->bfd, 0);
        vp->objfile = obj;
 
 #ifndef SOLIB_SYMBOLS_MANUAL
@@ -591,7 +591,7 @@ retry:
                || (memb[0] && !STREQ(memb, vp->member)))
            continue;
 
-         io = bfd_cache_lookup(vp->abfd);              /* totally opaque! */
+         io = bfd_cache_lookup(vp->bfd);               /* totally opaque! */
          if (!io)
            fatal("cannot find BFD's iostream for %s", vp->name);
 
@@ -695,7 +695,7 @@ xfer_memory (memaddr, myaddr, len, write, target)
        if (p->endaddr >= memend)
          {
            /* Entire transfer is within this section.  */
-           res = xfer_fn (p->abfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
+           res = xfer_fn (p->bfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
            return (res != false)? len: 0;
          }
        else if (p->endaddr <= memaddr)
@@ -707,7 +707,7 @@ xfer_memory (memaddr, myaddr, len, write, target)
          {
            /* This section overlaps the transfer.  Just do half.  */
            len = p->endaddr - memaddr;
-           res = xfer_fn (p->abfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
+           res = xfer_fn (p->bfd, p->sec_ptr, myaddr, memaddr - p->addr, len);
            return (res != false)? len: 0;
          }
       else if (p->addr < nextsectaddr)
@@ -739,9 +739,9 @@ print_section_info (t, abfd)
     if (info_verbose)
       printf_filtered (" @ %s",
                       local_hex_string_custom ((unsigned long) p->sec_ptr->filepos, "08l"));
-    printf_filtered (" is %s", bfd_section_name (p->abfd, p->sec_ptr));
-    if (p->abfd != abfd) {
-      printf_filtered (" in %s", bfd_get_filename (p->abfd));
+    printf_filtered (" is %s", bfd_section_name (p->bfd, p->sec_ptr));
+    if (p->bfd != abfd) {
+      printf_filtered (" in %s", bfd_get_filename (p->bfd));
     }
     printf_filtered ("\n");
   }
@@ -808,8 +808,8 @@ char *args;
 
        for (vp = vmap; vp; vp = vp->nxt) {
                if (!strncmp(secname
-                            , bfd_section_name(vp->abfd, vp->sex), seclen)
-                   && bfd_section_name(vp->abfd, vp->sex)[seclen] == '\0') {
+                            , bfd_section_name(vp->bfd, vp->sex), seclen)
+                   && bfd_section_name(vp->bfd, vp->sex)[seclen] == '\0') {
                        offset = secaddr - vp->tstart;
                        vp->tstart += offset;
                        vp->tend   += offset;
@@ -1001,16 +1001,16 @@ bfd_err:
             So for text sections, bfd_section_vma tends to be 0x200,
             and if vp->tstart is 0xd0002000, then the first byte of
             the text section on disk corresponds to address 0xd0002200.  */
-         stp->abfd = vp->abfd;
-         stp->sec_ptr = bfd_get_section_by_name (stp->abfd, ".text");
-         stp->addr = bfd_section_vma (stp->abfd, stp->sec_ptr) + vp->tstart;
-         stp->endaddr = bfd_section_vma (stp->abfd, stp->sec_ptr) + vp->tend;
+         stp->bfd = vp->bfd;
+         stp->sec_ptr = bfd_get_section_by_name (stp->bfd, ".text");
+         stp->addr = bfd_section_vma (stp->bfd, stp->sec_ptr) + vp->tstart;
+         stp->endaddr = bfd_section_vma (stp->bfd, stp->sec_ptr) + vp->tend;
          stp++;
          
-         stp->abfd = vp->abfd;
-         stp->sec_ptr = bfd_get_section_by_name (stp->abfd, ".data");
-         stp->addr = bfd_section_vma (stp->abfd, stp->sec_ptr) + vp->dstart;
-         stp->endaddr = bfd_section_vma (stp->abfd, stp->sec_ptr) + vp->dend;
+         stp->bfd = vp->bfd;
+         stp->sec_ptr = bfd_get_section_by_name (stp->bfd, ".data");
+         stp->addr = bfd_section_vma (stp->bfd, stp->sec_ptr) + vp->dstart;
+         stp->endaddr = bfd_section_vma (stp->bfd, stp->sec_ptr) + vp->dend;
        }
 
       vmap_symtab (vp);
index 2539ac0e106bed04645f65516658a68cda3e2d32..5be35331bad54179501974bb715ceea7a1421227 100644 (file)
@@ -28,7 +28,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 struct vmap {
        struct vmap *nxt;       /* ^ to next in chain                   */
-       bfd *abfd;              /* BFD for mappable object library      */
+       bfd *bfd;               /* BFD for mappable object library      */
        char *name;             /* ^ to object file name                */
        char *member;           /* ^ to member name                     */
        CORE_ADDR tstart;       /* virtual addr where member is mapped  */
This page took 0.028799 seconds and 4 git commands to generate.