]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/coffread.c
import gdb-1999-12-06 snapshot
[thirdparty/binutils-gdb.git] / gdb / coffread.c
index 74e1ce81e9f75d3c3be29e264cafd92dbfe95124..037fb87a0e918c72a7d03b5c4d196aed4ae9b029 100644 (file)
@@ -1,37 +1,37 @@
 /* Read coff symbol tables and convert to internal format, for GDB.
-   Contributed by David D. Johnson, Brown University (ddj@cs.brown.edu).
-   Copyright 1987, 1988, 1989, 1990, 1991, 1992, 1993
+   Copyright 1987, 88, 89, 90, 91, 92, 93, 94, 96, 97, 1998
    Free Software Foundation, Inc.
+   Contributed by David D. Johnson, Brown University (ddj@cs.brown.edu).
 
-This file is part of GDB.
+   This file is part of GDB.
 
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   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.  */
+   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., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
 
 #include "defs.h"
 #include "symtab.h"
 #include "gdbtypes.h"
+#include "demangle.h"
 #include "breakpoint.h"
 
 #include "bfd.h"
-#include <obstack.h>
+#include "obstack.h"
 
-#include <string.h>
+#include "gdb_string.h"
+#include <ctype.h>
 
-#include <time.h> /* For time_t in libbfd.h.  */
-#include <sys/types.h> /* For time_t, if not in time.h.  */
-#include "libbfd.h"            /* FIXME secret internal data from BFD */
 #include "coff/internal.h"     /* Internal format of COFF symbols in BFD */
 #include "libcoff.h"           /* FIXME secret internal data from BFD */
 
@@ -41,16 +41,21 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "gdb-stabs.h"
 #include "stabsread.h"
 #include "complaints.h"
+#include "target.h"
 
-struct coff_symfile_info {
-  file_ptr min_lineno_offset;          /* Where in file lowest line#s are */
-  file_ptr max_lineno_offset;          /* 1+last byte of line#s in file */
+extern void _initialize_coffread PARAMS ((void));
 
-  asection *stabsect;          /* Section pointer for .stab section */
-  asection *stabstrsect;               /* Section pointer for .stab section */
-  asection *stabindexsect;     /* Section pointer for .stab.index section */
-  char *stabstrdata;
-};
+struct coff_symfile_info
+  {
+    file_ptr min_lineno_offset;        /* Where in file lowest line#s are */
+    file_ptr max_lineno_offset;        /* 1+last byte of line#s in file */
+
+    CORE_ADDR textaddr;                /* Addr of .text section. */
+    unsigned int textsize;     /* Size of .text section. */
+    struct stab_section_list *stabsects;       /* .stab sections.  */
+    asection *stabstrsect;     /* Section pointer for .stab section */
+    char *stabstrdata;
+  };
 
 /* Translate an external name string into a user-visible name.  */
 #define        EXTERNAL_NAME(string, abfd) \
@@ -63,42 +68,26 @@ struct coff_symfile_info {
 
 #define SDB_TYPE(type) (BTYPE(type) | (type & N_TMASK))
 
-/*
- * Convert from an sdb register number to an internal gdb register number.
- * This should be defined in tm.h, if REGISTER_NAMES is not set up
- * to map one to one onto the sdb register numbers.
- */
+/* Convert from an sdb register number to an internal gdb register number.
+   This should be defined in tm.h, if REGISTER_NAMES is not set up
+   to map one to one onto the sdb register numbers.  */
+
 #ifndef SDB_REG_TO_REGNUM
-# define SDB_REG_TO_REGNUM(value)     (value)
+#define SDB_REG_TO_REGNUM(value)     (value)
 #endif
 
 /* Core address of start and end of text of current source file.
    This comes from a ".text" symbol where x_nlinno > 0.  */
 
-static CORE_ADDR cur_src_start_addr;
-static CORE_ADDR cur_src_end_addr;
+static CORE_ADDR current_source_start_addr;
+static CORE_ADDR current_source_end_addr;
 
 /* The addresses of the symbol table stream and number of symbols
    of the object file we are reading (as copied into core).  */
 
-static GDB_FILE *nlist_stream_global;
+static bfd *nlist_bfd_global;
 static int nlist_nsyms_global;
 
-/* Vector of line number information.  */
-
-static struct linetable *line_vector;
-
-/* Index of next entry to go in line_vector_index.  */
-
-static int line_vector_index;
-
-/* Last line number recorded in the line vector.  */
-
-static int prev_line_number;
-
-/* Number of elements allocated for line_vector currently.  */
-
-static int line_vector_length;
 
 /* Pointers to scratch storage, used for reading raw symbols and auxents.  */
 
@@ -109,176 +98,155 @@ static char *temp_aux;
    COFF file that we are currently reading.  These come back to us
    from BFD, and are referenced by their macro names, as well as
    internally to the BTYPE, ISPTR, ISFCN, ISARY, ISTAG, and DECREF
-   macros from ../internalcoff.h .  */
+   macros from include/coff/internal.h .  */
 
-static unsigned        local_n_btmask;
-static unsigned        local_n_btshft;
-static unsigned        local_n_tmask;
-static unsigned        local_n_tshift;
+static unsigned local_n_btmask;
+static unsigned local_n_btshft;
+static unsigned local_n_tmask;
+static unsigned local_n_tshift;
 
 #define        N_BTMASK        local_n_btmask
 #define        N_BTSHFT        local_n_btshft
 #define        N_TMASK         local_n_tmask
 #define        N_TSHIFT        local_n_tshift
+
 /* Local variables that hold the sizes in the file of various COFF structures.
    (We only need to know this to read them from the file -- BFD will then
    translate the data in them, into `internal_xxx' structs in the right
    byte order, alignment, etc.)  */
 
-static unsigned        local_linesz;
-static unsigned        local_symesz;
-static unsigned        local_auxesz;
+static unsigned local_linesz;
+static unsigned local_symesz;
+static unsigned local_auxesz;
 
+/* This is set if this is a PE format file.  */
+
+static int pe_file;
 
 /* Chain of typedefs of pointers to empty struct/union types.
    They are chained thru the SYMBOL_VALUE_CHAIN.  */
 
 static struct symbol *opaque_type_chain[HASHSIZE];
 
-#if 0
-/* The type of the function we are currently reading in.  This is
-   used by define_symbol to record the type of arguments to a function. */
-
-struct type *in_function_type;
-#endif
+/* Complaints about various problems in the file being read  */
 
-struct pending_block *pending_blocks;
+struct complaint ef_complaint =
+{"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
 
-/* Complaints about various problems in the file being read  */
+struct complaint ef_stack_complaint =
+{"`.ef' symbol without matching `.bf' symbol ignored starting at symnum %d", 0, 0};
 
-struct complaint ef_complaint = 
-  {"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
+struct complaint eb_stack_complaint =
+{"`.eb' symbol without matching `.bb' symbol ignored starting at symnum %d", 0, 0};
 
 struct complaint bf_no_aux_complaint =
-  {"`.bf' symbol %d has no aux entry", 0, 0};
+{"`.bf' symbol %d has no aux entry", 0, 0};
 
 struct complaint ef_no_aux_complaint =
-  {"`.ef' symbol %d has no aux entry", 0, 0};
+{"`.ef' symbol %d has no aux entry", 0, 0};
 
 struct complaint lineno_complaint =
-  {"Line number pointer %d lower than start of line numbers", 0, 0};
+{"Line number pointer %d lower than start of line numbers", 0, 0};
 
 struct complaint unexpected_type_complaint =
-  {"Unexpected type for symbol %s", 0, 0};
+{"Unexpected type for symbol %s", 0, 0};
 
 struct complaint bad_sclass_complaint =
-  {"Bad n_sclass for symbol %s", 0, 0};
+{"Bad n_sclass for symbol %s", 0, 0};
 
 struct complaint misordered_blocks_complaint =
-  {"Blocks out of order at address %x", 0, 0};
+{"Blocks out of order at address %x", 0, 0};
 
 struct complaint tagndx_bad_complaint =
-  {"Symbol table entry for %s has bad tagndx value", 0, 0};
+{"Symbol table entry for %s has bad tagndx value", 0, 0};
 
-struct complaint eb_complaint = 
-  {"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
+struct complaint eb_complaint =
+{"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
 
 /* Simplified internal version of coff symbol table information */
 
-struct coff_symbol {
-  char *c_name;
-  int c_symnum;                /* symbol number of this entry */
-  int c_naux;          /* 0 if syment only, 1 if syment + auxent, etc */
-  long c_value;
-  int c_sclass;
-  int c_secnum;
-  unsigned int c_type;
-};
+struct coff_symbol
+  {
+    char *c_name;
+    int c_symnum;              /* symbol number of this entry */
+    int c_naux;                        /* 0 if syment only, 1 if syment + auxent, etc */
+    long c_value;
+    int c_sclass;
+    int c_secnum;
+    unsigned int c_type;
+  };
 
-static struct type *
-coff_read_struct_type PARAMS ((int, int, int));
+extern void stabsread_clear_cache PARAMS ((void));
 
-static struct type *
-decode_base_type PARAMS ((struct coff_symbol *, unsigned int,
-                         union internal_auxent *));
+static struct type *coff_read_struct_type PARAMS ((int, int, int));
 
-static struct type *
-decode_type PARAMS ((struct coff_symbol *, unsigned int,
-                    union internal_auxent *));
+static struct type *decode_base_type PARAMS ((struct coff_symbol *,
+                                             unsigned int,
+                                             union internal_auxent *));
 
-static struct type *
-decode_function_type PARAMS ((struct coff_symbol *, unsigned int,
-                             union internal_auxent *));
+static struct type *decode_type PARAMS ((struct coff_symbol *, unsigned int,
+                                        union internal_auxent *));
 
-static struct type *
-coff_read_enum_type PARAMS ((int, int, int));
+static struct type *decode_function_type PARAMS ((struct coff_symbol *,
+                                                 unsigned int,
+                                                 union internal_auxent *));
 
-static struct symbol *
-process_coff_symbol PARAMS ((struct coff_symbol *, union internal_auxent *,
-                            struct objfile *));
+static struct type *coff_read_enum_type PARAMS ((int, int, int));
 
-static void
-patch_opaque_types PARAMS ((struct symtab *));
+static struct symbol *process_coff_symbol PARAMS ((struct coff_symbol *,
+                                                  union internal_auxent *,
+                                                  struct objfile *));
 
-static void
-patch_type PARAMS ((struct type *, struct type *));
+static void patch_opaque_types PARAMS ((struct symtab *));
 
-static void
-enter_linenos PARAMS ((long, int, int));
+static void patch_type PARAMS ((struct type *, struct type *));
 
-static void
-free_linetab PARAMS ((void));
+static void enter_linenos PARAMS ((long, int, int, struct objfile *));
 
-static int
-init_lineno PARAMS ((int, long, int));
+static void free_linetab PARAMS ((void));
 
-static char *
-getsymname PARAMS ((struct internal_syment *));
+static int init_lineno PARAMS ((bfd *, long, int));
 
-static void
-free_stringtab PARAMS ((void));
+static char *getsymname PARAMS ((struct internal_syment *));
 
-static int
-init_stringtab PARAMS ((int, long));
+static char *coff_getfilename PARAMS ((union internal_auxent *));
 
-static void
-read_one_sym PARAMS ((struct coff_symbol *, struct internal_syment *,
-                     union internal_auxent *));
+static void free_stringtab PARAMS ((void));
 
-static void
-read_coff_symtab PARAMS ((long, int, struct objfile *));
+static int init_stringtab PARAMS ((bfd *, long));
 
-static void
-find_linenos PARAMS ((bfd *, sec_ptr, PTR));
+static void read_one_sym PARAMS ((struct coff_symbol *,
+                                 struct internal_syment *,
+                                 union internal_auxent *));
 
-static void
-coff_symfile_init PARAMS ((struct objfile *));
+static void coff_symtab_read PARAMS ((long, int, struct objfile *));
 
-static void
-coff_new_init PARAMS ((struct objfile *));
+static void find_linenos PARAMS ((bfd *, sec_ptr, PTR));
 
-static void
-coff_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
+static void coff_symfile_init PARAMS ((struct objfile *));
 
-static void
-coff_symfile_finish PARAMS ((struct objfile *));
+static void coff_new_init PARAMS ((struct objfile *));
 
-static void record_minimal_symbol
-  PARAMS ((char *, CORE_ADDR, enum minimal_symbol_type, struct objfile *));
+static void coff_symfile_read PARAMS ((struct objfile *, int));
 
-static void
-coff_end_symtab PARAMS ((struct objfile *));
+static void coff_symfile_finish PARAMS ((struct objfile *));
 
-static void
-complete_symtab PARAMS ((char *, CORE_ADDR, unsigned int));
+static void record_minimal_symbol PARAMS ((char *, CORE_ADDR,
+                                          enum minimal_symbol_type,
+                                          struct objfile *));
 
-static void
-coff_start_symtab PARAMS ((void));
+static void coff_end_symtab PARAMS ((struct objfile *));
 
-static void
-coff_record_line PARAMS ((int, CORE_ADDR));
+static void complete_symtab PARAMS ((char *, CORE_ADDR, unsigned int));
 
-static struct type *
-coff_alloc_type PARAMS ((int));
+static void coff_start_symtab PARAMS ((char *));
 
-static struct type **
-coff_lookup_type PARAMS ((int));
+static struct type *coff_alloc_type PARAMS ((int));
 
-\f
-static void
-coff_locate_sections PARAMS ((bfd *, asection *, PTR));
+static struct type **coff_lookup_type PARAMS ((int));
 
+static void coff_locate_sections PARAMS ((bfd *, asection *, PTR));
+\f
 /* We are called once per section from coff_symfile_read.  We
    need to examine each section we are passed, check to see
    if it is something we are interested in processing, and
@@ -290,28 +258,127 @@ coff_locate_sections PARAMS ((bfd *, asection *, PTR));
    -kingdon).  */
 
 static void
-coff_locate_sections (ignore_abfd, sectp, csip)
-     bfd *ignore_abfd;
+coff_locate_sections (abfd, sectp, csip)
+     bfd *abfd;
      asection *sectp;
      PTR csip;
 {
   register struct coff_symfile_info *csi;
+  const char *name;
 
   csi = (struct coff_symfile_info *) csip;
-  if (STREQ (sectp->name, ".stab"))
+  name = bfd_get_section_name (abfd, sectp);
+  if (STREQ (name, ".text"))
+    {
+      csi->textaddr = bfd_section_vma (abfd, sectp);
+      csi->textsize += bfd_section_size (abfd, sectp);
+    }
+  else if (strncmp (name, ".text", sizeof ".text" - 1) == 0)
     {
-      csi->stabsect = sectp;
+      csi->textsize += bfd_section_size (abfd, sectp);
     }
-  else if (STREQ (sectp->name, ".stabstr"))
+  else if (STREQ (name, ".stabstr"))
     {
       csi->stabstrsect = sectp;
     }
-  else if (STREQ (sectp->name, ".stab.index"))
+  else if (strncmp (name, ".stab", sizeof ".stab" - 1) == 0)
     {
-      csi->stabindexsect = sectp;
+      const char *s;
+
+      /* We can have multiple .stab sections if linked with
+         --split-by-reloc.  */
+      for (s = name + sizeof ".stab" - 1; *s != '\0'; s++)
+       if (!isdigit (*s))
+         break;
+      if (*s == '\0')
+       {
+         struct stab_section_list *n, **pn;
+
+         n = ((struct stab_section_list *)
+              xmalloc (sizeof (struct stab_section_list)));
+         n->section = sectp;
+         n->next = NULL;
+         for (pn = &csi->stabsects; *pn != NULL; pn = &(*pn)->next)
+           ;
+         *pn = n;
+
+         /* This will be run after coffstab_build_psymtabs is called
+            in coff_symfile_read, at which point we no longer need
+            the information.  */
+         make_cleanup (free, n);
+       }
     }
 }
 
+/* Return the section_offsets* that CS points to.  */
+static int cs_to_section PARAMS ((struct coff_symbol *, struct objfile *));
+
+struct find_targ_sec_arg
+  {
+    int targ_index;
+    asection **resultp;
+  };
+
+static void find_targ_sec PARAMS ((bfd *, asection *, void *));
+
+static void
+find_targ_sec (abfd, sect, obj)
+     bfd *abfd;
+     asection *sect;
+     PTR obj;
+{
+  struct find_targ_sec_arg *args = (struct find_targ_sec_arg *) obj;
+  if (sect->target_index == args->targ_index)
+    *args->resultp = sect;
+}
+
+/* Return the section number (SECT_OFF_*) that CS points to.  */
+static int
+cs_to_section (cs, objfile)
+     struct coff_symbol *cs;
+     struct objfile *objfile;
+{
+  asection *sect = NULL;
+  struct find_targ_sec_arg args;
+  int off = SECT_OFF_TEXT;
+
+  args.targ_index = cs->c_secnum;
+  args.resultp = &sect;
+  bfd_map_over_sections (objfile->obfd, find_targ_sec, &args);
+  if (sect != NULL)
+    {
+      /* This is the section.  Figure out what SECT_OFF_* code it is.  */
+      if (bfd_get_section_flags (abfd, sect) & SEC_CODE)
+       off = SECT_OFF_TEXT;
+      else if (bfd_get_section_flags (abfd, sect) & SEC_LOAD)
+       off = SECT_OFF_DATA;
+      else
+       off = SECT_OFF_BSS;
+    }
+  return off;
+}
+
+/* Return the address of the section of a COFF symbol.  */
+
+static CORE_ADDR cs_section_address PARAMS ((struct coff_symbol *, bfd *));
+
+static CORE_ADDR
+cs_section_address (cs, abfd)
+     struct coff_symbol *cs;
+     bfd *abfd;
+{
+  asection *sect = NULL;
+  struct find_targ_sec_arg args;
+  CORE_ADDR addr = 0;
+
+  args.targ_index = cs->c_secnum;
+  args.resultp = &sect;
+  bfd_map_over_sections (abfd, find_targ_sec, &args);
+  if (sect != NULL)
+    addr = bfd_get_section_vma (objfile->obfd, sect);
+  return addr;
+}
+
 /* Look up a coff type-number index.  Return the address of the slot
    where the type for that index is stored.
    The type-number is in INDEX. 
@@ -328,14 +395,14 @@ coff_lookup_type (index)
       int old_vector_length = type_vector_length;
 
       type_vector_length *= 2;
-      if (index /* is still */ >= type_vector_length) {
+      if (index /* is still */  >= type_vector_length)
        type_vector_length = index * 2;
-      }
+
       type_vector = (struct type **)
        xrealloc ((char *) type_vector,
                  type_vector_length * sizeof (struct type *));
       memset (&type_vector[old_vector_length], 0,
-            (type_vector_length - old_vector_length) * sizeof(struct type *));
+        (type_vector_length - old_vector_length) * sizeof (struct type *));
     }
   return &type_vector[index];
 }
@@ -362,59 +429,26 @@ coff_alloc_type (index)
   return type;
 }
 \f
-/* Record a line number entry for line LINE at address PC.
-   FIXME:  Use record_line instead.  */
-
-static void
-coff_record_line (line, pc)
-     int line;
-     CORE_ADDR pc;
-{
-  struct linetable_entry *e;
-  /* Make sure line vector is big enough.  */
-
-  if (line_vector_index + 2 >= line_vector_length)
-    {
-      line_vector_length *= 2;
-      line_vector = (struct linetable *)
-       xrealloc ((char *) line_vector, sizeof (struct linetable)
-                 + (line_vector_length
-                    * sizeof (struct linetable_entry)));
-    }
-
-  e = line_vector->item + line_vector_index++;
-  e->line = line; e->pc = pc;
-}
-\f
 /* Start a new symtab for a new source file.
    This is called when a COFF ".file" symbol is seen;
    it indicates the start of data for one original source file.  */
 
 static void
-coff_start_symtab ()
+coff_start_symtab (name)
+     char *name;
 {
   start_symtab (
-               /* We fill in the filename later.  start_symtab
-                  puts this pointer into last_source file and in
-                  coff_end_symtab we assume we can free() it.
-                  FIXME: leaks memory.  */
-               savestring ("", 0),
-               /* We never know the directory name for COFF.  */
-               NULL,
-               /* The start address is irrelevant, since we set
-                  last_source_start_addr in coff_end_symtab.  */
-               0);
-
-  /* Initialize the source file line number information for this file.  */
-
-  if (line_vector)             /* Unlikely, but maybe possible? */
-    free ((PTR)line_vector);
-  line_vector_index = 0;
-  line_vector_length = 1000;
-  prev_line_number = -2;       /* Force first line number to be explicit */
-  line_vector = (struct linetable *)
-    xmalloc (sizeof (struct linetable)
-            + line_vector_length * sizeof (struct linetable_entry));
+  /* We fill in the filename later.  start_symtab puts
+     this pointer into last_source_file and we put it in
+     subfiles->name, which end_symtab frees; that's why
+     it must be malloc'd.  */
+                savestring (name, strlen (name)),
+  /* We never know the directory name for COFF.  */
+                NULL,
+  /* The start address is irrelevant, since we set
+     last_source_start_addr in coff_end_symtab.  */
+                0);
+  record_debugformat ("COFF");
 }
 
 /* Save the vital information from when starting to read a file,
@@ -424,19 +458,21 @@ coff_start_symtab ()
 
 static void
 complete_symtab (name, start_addr, size)
-    char *name;
-    CORE_ADDR start_addr;
-    unsigned int size;
+     char *name;
+     CORE_ADDR start_addr;
+     unsigned int size;
 {
+  if (last_source_file != NULL)
+    free (last_source_file);
   last_source_file = savestring (name, strlen (name));
-  cur_src_start_addr = start_addr;
-  cur_src_end_addr = start_addr + size;
+  current_source_start_addr = start_addr;
+  current_source_end_addr = start_addr + size;
 
-  if (current_objfile -> ei.entry_point >= cur_src_start_addr &&
-      current_objfile -> ei.entry_point <  cur_src_end_addr)
+  if (current_objfile->ei.entry_point >= current_source_start_addr &&
+      current_objfile->ei.entry_point < current_source_end_addr)
     {
-      current_objfile -> ei.entry_file_lowpc = cur_src_start_addr;
-      current_objfile -> ei.entry_file_highpc = cur_src_end_addr;
+      current_objfile->ei.entry_file_lowpc = current_source_start_addr;
+      current_objfile->ei.entry_file_highpc = current_source_end_addr;
     }
 }
 
@@ -451,31 +487,14 @@ coff_end_symtab (objfile)
 {
   struct symtab *symtab;
 
-  last_source_start_addr = cur_src_start_addr;
-
-  /* For no good reason, this file stores the number of entries in a
-     separate variable instead of in line_vector->nitems.  Fix it.  */
-  if (line_vector)
-    line_vector->nitems = line_vector_index;
-
-  /* For COFF, we only have one subfile, so we can just look at
-     subfiles and not worry about there being other elements in the
-     chain.  We fill in various fields now because we didn't know them
-     before (or because doing it now is simply an artifact of how this
-     file used to be written).  */
-  subfiles->line_vector = line_vector;
-  subfiles->name = last_source_file;
+  last_source_start_addr = current_source_start_addr;
 
-  /* sort_pending is needed for amdcoff, at least.
-     sort_linevec is needed for the SCO compiler.  */
-  symtab = end_symtab (cur_src_end_addr, 1, 1, objfile, 0);
+  symtab = end_symtab (current_source_end_addr, objfile, 0);
 
   if (symtab != NULL)
     free_named_symtabs (symtab->filename);
 
   /* Reinitialize for beginning of new file. */
-  line_vector = 0;
-  line_vector_length = -1;
   last_source_file = NULL;
 }
 \f
@@ -487,10 +506,10 @@ record_minimal_symbol (name, address, type, objfile)
      struct objfile *objfile;
 {
   /* We don't want TDESC entry points in the minimal symbol table */
-  if (name[0] == '@') return;
+  if (name[0] == '@')
+    return;
 
-  prim_record_minimal_symbol (savestring (name, strlen (name)), address, type,
-                             objfile);
+  prim_record_minimal_symbol (name, address, type, objfile);
 }
 \f
 /* coff_symfile_init ()
@@ -506,35 +525,28 @@ record_minimal_symbol (name, address, type, objfile)
 
    The ultimate result is a new symtab (or, FIXME, eventually a psymtab).  */
 
-static int text_bfd_scnum;
-
 static void
 coff_symfile_init (objfile)
      struct objfile *objfile;
 {
-  asection     *section;
-  bfd *abfd = objfile->obfd;
-
   /* Allocate struct to keep track of stab reading. */
-  objfile->sym_stab_info = (PTR)
-    xmmalloc (objfile -> md, sizeof (struct dbx_symfile_info));
+  objfile->sym_stab_info = (struct dbx_symfile_info *)
+    xmmalloc (objfile->md, sizeof (struct dbx_symfile_info));
 
   memset ((PTR) objfile->sym_stab_info, 0, sizeof (struct dbx_symfile_info));
 
   /* Allocate struct to keep track of the symfile */
-  objfile -> sym_private = xmmalloc (objfile -> md,
-                                    sizeof (struct coff_symfile_info));
+  objfile->sym_private = xmmalloc (objfile->md,
+                                  sizeof (struct coff_symfile_info));
 
   memset (objfile->sym_private, 0, sizeof (struct coff_symfile_info));
 
-  init_entry_point_info (objfile);
+  /* COFF objects may be reordered, so set OBJF_REORDERED.  If we
+     find this causes a significant slowdown in gdb then we could
+     set it in the debug symbol readers only when necessary.  */
+  objfile->flags |= OBJF_REORDERED;
 
-  /* Save the section number for the text section */
-  section = bfd_get_section_by_name (abfd, ".text");
-  if (section)
-    text_bfd_scnum = section->index;
-  else
-    text_bfd_scnum = -1;
+  init_entry_point_info (objfile);
 }
 
 /* This function is called for every section; it finds the outer limits
@@ -560,7 +572,7 @@ find_linenos (abfd, asect, vpinfo)
     return;
   size = count * local_linesz;
 
-  info = (struct coff_symfile_info *)vpinfo;
+  info = (struct coff_symfile_info *) vpinfo;
 /* WARNING WILL ROBINSON!  ACCESSING BFD-PRIVATE DATA HERE!  FIXME!  */
   offset = asect->line_filepos;
 /* End of warning */
@@ -580,14 +592,11 @@ find_linenos (abfd, asect, vpinfo)
 static bfd *symfile_bfd;
 
 /* Read a symbol file, after initialization by coff_symfile_init.  */
-/* FIXME!  Addr and Mainline are not used yet -- this will not work for
-   shared libraries or add_file!  */
 
 /* ARGSUSED */
 static void
-coff_symfile_read (objfile, section_offsets, mainline)
+coff_symfile_read (objfile, mainline)
      struct objfile *objfile;
-     struct section_offsets *section_offsets;
      int mainline;
 {
   struct coff_symfile_info *info;
@@ -595,42 +604,51 @@ coff_symfile_read (objfile, section_offsets, mainline)
   bfd *abfd = objfile->obfd;
   coff_data_type *cdata = coff_data (abfd);
   char *name = bfd_get_filename (abfd);
-  int desc;
   register int val;
   int num_symbols;
   int symtab_offset;
   int stringtab_offset;
   struct cleanup *back_to;
-  int stabsize, stabstrsize;
-
-  info = (struct coff_symfile_info *) objfile -> sym_private;
-  dbxinfo = (struct dbx_symfile_info *) objfile->sym_stab_info;
-  symfile_bfd = abfd;                  /* Kludge for swap routines */
+  int stabstrsize;
+  int len;
+  char * target;
+  
+  info = (struct coff_symfile_info *) objfile->sym_private;
+  dbxinfo = objfile->sym_stab_info;
+  symfile_bfd = abfd;          /* Kludge for swap routines */
 
 /* WARNING WILL ROBINSON!  ACCESSING BFD-PRIVATE DATA HERE!  FIXME!  */
-   desc = fileno ((GDB_FILE *)(abfd->iostream));       /* File descriptor */
-   num_symbols = bfd_get_symcount (abfd);      /* How many syms */
-   symtab_offset = cdata->sym_filepos;         /* Symbol table file offset */
-   stringtab_offset = symtab_offset +          /* String table file offset */
-                     num_symbols * cdata->local_symesz;
+  num_symbols = bfd_get_symcount (abfd);       /* How many syms */
+  symtab_offset = cdata->sym_filepos;  /* Symbol table file offset */
+  stringtab_offset = symtab_offset +   /* String table file offset */
+    num_symbols * cdata->local_symesz;
 
   /* Set a few file-statics that give us specific information about
      the particular COFF file format we're reading.  */
-  local_linesz   = cdata->local_linesz;
   local_n_btmask = cdata->local_n_btmask;
   local_n_btshft = cdata->local_n_btshft;
-  local_n_tmask  = cdata->local_n_tmask;
+  local_n_tmask = cdata->local_n_tmask;
   local_n_tshift = cdata->local_n_tshift;
-  local_linesz   = cdata->local_linesz;
-  local_symesz   = cdata->local_symesz;
-  local_auxesz   = cdata->local_auxesz;
+  local_linesz = cdata->local_linesz;
+  local_symesz = cdata->local_symesz;
+  local_auxesz = cdata->local_auxesz;
 
   /* Allocate space for raw symbol and aux entries, based on their
      space requirements as reported by BFD.  */
   temp_sym = (char *) xmalloc
-        (cdata->local_symesz + cdata->local_auxesz);
+    (cdata->local_symesz + cdata->local_auxesz);
   temp_aux = temp_sym + cdata->local_symesz;
-  back_to = make_cleanup (free_current_contents, &temp_sym);
+  back_to = make_cleanup ((make_cleanup_func) free_current_contents, &temp_sym);
+
+  /* We need to know whether this is a PE file, because in PE files,
+     unlike standard COFF files, symbol values are stored as offsets
+     from the section address, rather than as absolute addresses.
+     FIXME: We should use BFD to read the symbol table, and thus avoid
+     this problem.  */
+  pe_file = !
+    (   strncmp (bfd_get_target (objfile->obfd), "pe", 2)
+      | strncmp (bfd_get_target (objfile->obfd), "epoc-pe", 7));
+
 /* End of warning */
 
   /* Read the line number table, all at once.  */
@@ -638,57 +656,66 @@ coff_symfile_read (objfile, section_offsets, mainline)
   info->max_lineno_offset = 0;
   bfd_map_over_sections (abfd, find_linenos, (PTR) info);
 
-  make_cleanup (free_linetab, 0);
-  val = init_lineno (desc, info->min_lineno_offset, 
+  make_cleanup ((make_cleanup_func) free_linetab, 0);
+  val = init_lineno (abfd, info->min_lineno_offset,
                     info->max_lineno_offset - info->min_lineno_offset);
   if (val < 0)
     error ("\"%s\": error reading line numbers\n", name);
 
   /* Now read the string table, all at once.  */
 
-  make_cleanup (free_stringtab, 0);
-  val = init_stringtab (desc, stringtab_offset);
+  make_cleanup ((make_cleanup_func) free_stringtab, 0);
+  val = init_stringtab (abfd, stringtab_offset);
   if (val < 0)
     error ("\"%s\": can't get string table", name);
 
   init_minimal_symbol_collection ();
-  make_cleanup (discard_minimal_symbols, 0);
+  make_cleanup ((make_cleanup_func) discard_minimal_symbols, 0);
 
   /* Now that the executable file is positioned at symbol table,
      process it and define symbols accordingly.  */
 
-  read_coff_symtab ((long)symtab_offset, num_symbols, objfile);
+  coff_symtab_read ((long) symtab_offset, num_symbols, objfile);
 
   /* Sort symbols alphabetically within each block.  */
 
   {
     struct symtab *s;
-    for (s = objfile -> symtabs; s != NULL; s = s -> next)
-      {
-       sort_symtab_syms (s);
-      }
+
+    for (s = objfile->symtabs; s != NULL; s = s->next)
+      sort_symtab_syms (s);
   }
 
   /* Install any minimal symbols that have been collected as the current
-     minimal symbols for this objfile. */
+     minimal symbols for this objfile.  */
 
   install_minimal_symbols (objfile);
 
   bfd_map_over_sections (abfd, coff_locate_sections, (PTR) info);
 
-  if (info->stabsect)
+  if (info->stabsects)
     {
+      if (!info->stabstrsect)
+       {
+         error_begin ();
+         fprintf_filtered
+           (gdb_stderr,
+            ("The debugging information in `%s' is corrupted.\n"
+          "The file has a `.stabs' section, but no `.stabstr' section.\n"),
+            name);
+         return_to_top_level (RETURN_ERROR);
+       }
+
       /* FIXME: dubious.  Why can't we use something normal like
-        bfd_get_section_contents?  */
-      fseek ((GDB_FILE *) abfd->iostream, abfd->where, 0);
+         bfd_get_section_contents?  */
+      bfd_seek (abfd, abfd->where, 0);
 
-      stabsize = bfd_section_size (abfd, info->stabsect);
       stabstrsize = bfd_section_size (abfd, info->stabstrsect);
 
       coffstab_build_psymtabs (objfile,
-                              section_offsets,
                               mainline,
-                              info->stabsect->filepos, stabsize,
+                              info->textaddr, info->textsize,
+                              info->stabsects,
                               info->stabstrsect->filepos, stabstrsize);
     }
 
@@ -710,25 +737,27 @@ static void
 coff_symfile_finish (objfile)
      struct objfile *objfile;
 {
-  if (objfile -> sym_private != NULL)
+  if (objfile->sym_private != NULL)
     {
-      mfree (objfile -> md, objfile -> sym_private);
+      mfree (objfile->md, objfile->sym_private);
     }
-}
 
+  /* Let stabs reader clean up */
+  stabsread_clear_cache ();
+}
 \f
+
 /* Given pointers to a symbol table in coff style exec file,
    analyze them and create struct symtab's describing the symbols.
    NSYMS is the number of symbols in the symbol table.
    We read them one at a time using read_one_sym ().  */
 
 static void
-read_coff_symtab (symtab_offset, nsyms, objfile)
+coff_symtab_read (symtab_offset, nsyms, objfile)
      long symtab_offset;
      int nsyms;
      struct objfile *objfile;
 {
-  GDB_FILE *stream; 
   register struct context_stack *new;
   struct coff_symbol coff_symbol;
   register struct coff_symbol *cs = &coff_symbol;
@@ -738,23 +767,19 @@ read_coff_symtab (symtab_offset, nsyms, objfile)
   static struct internal_syment fcn_sym_saved;
   static union internal_auxent fcn_aux_saved;
   struct symtab *s;
-  
   /* A .file is open.  */
   int in_source_file = 0;
   int next_file_symnum = -1;
-
   /* Name of the current file.  */
   char *filestring = "";
   int depth = 0;
   int fcn_first_line = 0;
+  CORE_ADDR fcn_first_line_addr;
   int fcn_last_line = 0;
   int fcn_start_addr = 0;
   long fcn_line_ptr = 0;
   int val;
-
-  stream = bfd_cache_lookup(objfile->obfd);
-  if (!stream)
-   perror_with_name(objfile->name);
+  CORE_ADDR tmpaddr;
 
   /* Work around a stdio bug in SunOS4.1.1 (this makes me nervous....
      it's hard to know I've really worked around it.  The fix should be
@@ -765,52 +790,46 @@ read_coff_symtab (symtab_offset, nsyms, objfile)
      reproduce this on a short test program which operated on the same
      file, performing (I think) the same sequence of operations.
 
-     It stopped happening when I put in this rewind().
+     It stopped happening when I put in this (former) rewind().
 
      FIXME: Find out if this has been reported to Sun, whether it has
      been fixed in a later release, etc.  */
 
-  rewind (stream);
+  bfd_seek (objfile->obfd, 0, 0);
 
   /* Position to read the symbol table. */
-  val = fseek (stream, (long)symtab_offset, 0);
+  val = bfd_seek (objfile->obfd, (long) symtab_offset, 0);
   if (val < 0)
     perror_with_name (objfile->name);
 
   current_objfile = objfile;
-  nlist_stream_global = stream;
+  nlist_bfd_global = objfile->obfd;
   nlist_nsyms_global = nsyms;
   last_source_file = NULL;
   memset (opaque_type_chain, 0, sizeof opaque_type_chain);
 
-  if (type_vector)                     /* Get rid of previous one */
-    free ((PTR)type_vector);
+  if (type_vector)             /* Get rid of previous one */
+    free ((PTR) type_vector);
   type_vector_length = 160;
   type_vector = (struct type **)
-               xmalloc (type_vector_length * sizeof (struct type *));
+    xmalloc (type_vector_length * sizeof (struct type *));
   memset (type_vector, 0, type_vector_length * sizeof (struct type *));
 
-  coff_start_symtab ();
+  coff_start_symtab ("");
 
   symnum = 0;
   while (symnum < nsyms)
     {
       QUIT;                    /* Make this command interruptable.  */
-      read_one_sym (cs, &main_sym, &main_aux);
 
-#ifdef SEM
-      temp_sem_val = cs->c_name[0] << 24 | cs->c_name[1] << 16 |
-                     cs->c_name[2] << 8 | cs->c_name[3];
-      if (int_sem_val == temp_sem_val)
-        last_coffsem = (int) strtol (cs->c_name+4, (char **) NULL, 10);
-#endif
+      read_one_sym (cs, &main_sym, &main_aux);
 
       if (cs->c_symnum == next_file_symnum && cs->c_sclass != C_FILE)
        {
          if (last_source_file)
            coff_end_symtab (objfile);
 
-         coff_start_symtab ();
+         coff_start_symtab ("_globals_");
          complete_symtab ("_globals_", 0, 0);
          /* done with all files, everything from here on out is globals */
        }
@@ -824,10 +843,11 @@ read_coff_symtab (symtab_offset, nsyms, objfile)
       if (ISFCN (cs->c_type) && cs->c_sclass != C_TPDEF)
        {
          /* Record all functions -- external and static -- in minsyms. */
-         record_minimal_symbol (cs->c_name, cs->c_value, mst_text, objfile);
+         tmpaddr = cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+         record_minimal_symbol (cs->c_name, tmpaddr, mst_text, objfile);
 
          fcn_line_ptr = main_aux.x_sym.x_fcnary.x_fcn.x_lnnoptr;
-         fcn_start_addr = cs->c_value;
+         fcn_start_addr = tmpaddr;
          fcn_cs_saved = *cs;
          fcn_sym_saved = main_sym;
          fcn_aux_saved = main_aux;
@@ -836,189 +856,298 @@ read_coff_symtab (symtab_offset, nsyms, objfile)
 
       switch (cs->c_sclass)
        {
-         case C_EFCN:
-         case C_EXTDEF:
-         case C_ULABEL:
-         case C_USTATIC:
-         case C_LINE:
-         case C_ALIAS:
-         case C_HIDDEN:
-           complain (&bad_sclass_complaint, cs->c_name);
-           break;
-
-         case C_FILE:
-           /*
-            * c_value field contains symnum of next .file entry in table
-            * or symnum of first global after last .file.
-            */
-           next_file_symnum = cs->c_value;
-           if (cs->c_naux > 0)
-             filestring = coff_getfilename (&main_aux);
-           else
-             filestring = "";
-
-           /*
-            * Complete symbol table for last object file
-            * containing debugging information.
-            */
-           if (last_source_file)
-             {
-               coff_end_symtab (objfile);
-               coff_start_symtab ();
-             }
-           in_source_file = 1;
-           break;
-
-          case C_STAT:
-           if (cs->c_name[0] == '.') {
-                   if (STREQ (cs->c_name, ".text")) {
-                           /* FIXME:  don't wire in ".text" as section name
-                                      or symbol name! */
-                           /* Check for in_source_file deals with case of
-                              a file with debugging symbols
-                              followed by a later file with no symbols.  */
-                           if (in_source_file)
-                             complete_symtab (filestring, cs->c_value,
-                                              main_aux.x_scn.x_scnlen);
-                           in_source_file = 0;
-                   }
-                   /* flush rest of '.' symbols */
-                   break;
+       case C_EFCN:
+       case C_EXTDEF:
+       case C_ULABEL:
+       case C_USTATIC:
+       case C_LINE:
+       case C_ALIAS:
+       case C_HIDDEN:
+         complain (&bad_sclass_complaint, cs->c_name);
+         break;
+
+       case C_FILE:
+         /* c_value field contains symnum of next .file entry in table
+            or symnum of first global after last .file.  */
+         next_file_symnum = cs->c_value;
+         if (cs->c_naux > 0)
+           filestring = coff_getfilename (&main_aux);
+         else
+           filestring = "";
+
+         /* Complete symbol table for last object file
+            containing debugging information.  */
+         if (last_source_file)
+           {
+             coff_end_symtab (objfile);
+             coff_start_symtab (filestring);
            }
-           else if (!SDB_TYPE (cs->c_type)
-                    && cs->c_name[0] == 'L'
-                    && (strncmp (cs->c_name, "LI%", 3) == 0
-                        || strncmp (cs->c_name, "LF%", 3) == 0
-                        || strncmp (cs->c_name,"LC%",3) == 0
-                        || strncmp (cs->c_name,"LP%",3) == 0
-                        || strncmp (cs->c_name,"LPB%",4) == 0
-                        || strncmp (cs->c_name,"LBB%",4) == 0
-                        || strncmp (cs->c_name,"LBE%",4) == 0
-                        || strncmp (cs->c_name,"LPBX%",5) == 0))
-             /* At least on a 3b1, gcc generates swbeg and string labels
-                that look like this.  Ignore them.  */
+         in_source_file = 1;
+         break;
+
+         /* C_LABEL is used for labels and static functions.  Including
+            it here allows gdb to see static functions when no debug
+            info is available.  */
+       case C_LABEL:
+         /* However, labels within a function can make weird backtraces,
+            so filter them out (from phdm@macqel.be). */
+         if (within_function)
+           break;
+       case C_STAT:
+       case C_THUMBLABEL:
+       case C_THUMBSTAT:
+       case C_THUMBSTATFUNC:
+         if (cs->c_name[0] == '.')
+           {
+             if (STREQ (cs->c_name, ".text"))
+               {
+                 /* FIXME:  don't wire in ".text" as section name
+                    or symbol name! */
+                 /* Check for in_source_file deals with case of
+                    a file with debugging symbols
+                    followed by a later file with no symbols.  */
+                 if (in_source_file)
+                   complete_symtab (filestring,
+                   cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT),
+                                    main_aux.x_scn.x_scnlen);
+                 in_source_file = 0;
+               }
+             /* flush rest of '.' symbols */
              break;
-           /* fall in for static symbols that don't start with '.' */
-         case C_EXT:
-           /* Record external symbols in minsyms if we don't have debug
-              info for them.  FIXME, this is probably the wrong thing
-              to do.  Why don't we record them even if we do have
-              debug symbol info?  What really belongs in the minsyms
-              anyway?  Fred!??  */
-           if (!SDB_TYPE (cs->c_type)) {
-               /* FIXME: This is BOGUS Will Robinson! 
-               Coff should provide the SEC_CODE flag for executable sections,
-               then if we could look up sections by section number we
-               could see if the flags indicate SEC_CODE.  If so, then
-               record this symbol as a function in the minimal symbol table.
-               But why are absolute syms recorded as functions, anyway?  */
-                   if (cs->c_secnum <= text_bfd_scnum+1) {/* text or abs */
-                           record_minimal_symbol (cs->c_name, cs->c_value,
-                                                  mst_text, objfile);
-                           break;
-                   } else {
-                           record_minimal_symbol (cs->c_name, cs->c_value,
-                                                  mst_data, objfile);
-                           break;
-                   }
            }
-           process_coff_symbol (cs, &main_aux, objfile);
+         else if (!SDB_TYPE (cs->c_type)
+                  && cs->c_name[0] == 'L'
+                  && (strncmp (cs->c_name, "LI%", 3) == 0
+                      || strncmp (cs->c_name, "LF%", 3) == 0
+                      || strncmp (cs->c_name, "LC%", 3) == 0
+                      || strncmp (cs->c_name, "LP%", 3) == 0
+                      || strncmp (cs->c_name, "LPB%", 4) == 0
+                      || strncmp (cs->c_name, "LBB%", 4) == 0
+                      || strncmp (cs->c_name, "LBE%", 4) == 0
+                      || strncmp (cs->c_name, "LPBX%", 5) == 0))
+           /* At least on a 3b1, gcc generates swbeg and string labels
+              that look like this.  Ignore them.  */
            break;
+         /* fall in for static symbols that don't start with '.' */
+       case C_THUMBEXT:
+       case C_THUMBEXTFUNC:
+       case C_EXT:
+         {
+           /* Record it in the minimal symbols regardless of
+              SDB_TYPE.  This parallels what we do for other debug
+              formats, and probably is needed to make
+              print_address_symbolic work right without the (now
+              gone) "set fast-symbolic-addr off" kludge.  */
 
-         case C_FCN:
-           if (STREQ (cs->c_name, ".bf"))
-             {
-               within_function = 1;
-
-               /* value contains address of first non-init type code */
-               /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
-                           contains line number of '{' } */
-               if (cs->c_naux != 1)
-                 complain (&bf_no_aux_complaint, cs->c_symnum);
-               fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
-
-               /* Might want to check that locals are 0 and
-                  context_stack_depth is zero, and complain if not.  */
-
-               depth = 0;
-               new = push_context (depth, fcn_start_addr);
-               fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
-               new->name = process_coff_symbol (&fcn_cs_saved,
-                                                &fcn_aux_saved, objfile);
-             }
-           else if (STREQ (cs->c_name, ".ef"))
+           /* FIXME: should use mst_abs, and not relocate, if absolute.  */
+           enum minimal_symbol_type ms_type;
+           int sec;
+
+           if (cs->c_secnum == N_UNDEF)
              {
-               /* the value of .ef is the address of epilogue code;
-                  not useful for gdb.  */
-               /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
-                           contains number of lines to '}' */
-               new = pop_context ();
-               /* Stack must be empty now.  */
-               if (context_stack_depth > 0 || new == NULL)
+               /* This is a common symbol.  See if the target
+                  environment knows where it has been relocated to.  */
+               CORE_ADDR reladdr;
+               if (target_lookup_symbol (cs->c_name, &reladdr))
                  {
-                   complain (&ef_complaint, cs->c_symnum);
-                   within_function = 0;
+                   /* Error in lookup; ignore symbol.  */
                    break;
                  }
-               if (cs->c_naux != 1)
-                 {
-                   complain (&ef_no_aux_complaint, cs->c_symnum);
-                   fcn_last_line = 0x7FFFFFFF;
-                 }
-               else
-                 {
-                   fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
-                 }
-               enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line);
+               tmpaddr = reladdr;
+               /* The address has already been relocated; make sure that
+                  objfile_relocate doesn't relocate it again.  */
+               sec = -2;
+               ms_type = cs->c_sclass == C_EXT
+                 || cs->c_sclass == C_THUMBEXT ?
+                 mst_bss : mst_file_bss;
+             }
+           else
+             {
+               sec = cs_to_section (cs, objfile);
+               tmpaddr = cs->c_value;
+               if (cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
+                   || cs->c_sclass == C_THUMBEXT)
+                 tmpaddr += ANOFFSET (objfile->section_offsets, sec);
 
-               finish_block (new->name, &local_symbols, new->old_blocks,
-                             new->start_addr,
-#if defined (FUNCTION_EPILOGUE_SIZE)
-                             /* This macro should be defined only on
-                                machines where the
-                                fcn_aux_saved.x_sym.x_misc.x_fsize
-                                field is always zero.
-                                So use the .bf record information that
-                                points to the epilogue and add the size
-                                of the epilogue.  */
-                             cs->c_value + FUNCTION_EPILOGUE_SIZE,
-#else
-                             fcn_cs_saved.c_value +
-                                 fcn_aux_saved.x_sym.x_misc.x_fsize,
+               switch (sec)
+                 {
+                 case SECT_OFF_TEXT:
+                 case SECT_OFF_RODATA:
+                   ms_type =
+                     cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXTFUNC
+                     || cs->c_sclass == C_THUMBEXT ?
+                     mst_text : mst_file_text;
+#ifdef SMASH_TEXT_ADDRESS
+                   if (tmpaddr & 1)    /* FIXME: delete this line */
+                     SMASH_TEXT_ADDRESS (tmpaddr);
 #endif
-                             objfile
-                             );
-               within_function = 0;
+                   break;
+                 case SECT_OFF_DATA:
+                   ms_type =
+                     cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
+                     mst_data : mst_file_data;
+                   break;
+                 case SECT_OFF_BSS:
+                   ms_type =
+                     cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT ?
+                     mst_data : mst_file_data;
+                   break;
+                 default:
+                   ms_type = mst_unknown;
+                   break;
+                 }
              }
-           break;
 
-         case C_BLOCK:
-           if (STREQ (cs->c_name, ".bb"))
+           if (cs->c_name[0] != '@' /* Skip tdesc symbols */ )
              {
-               push_context (++depth, cs->c_value);
+               struct minimal_symbol *msym;
+
+               msym = prim_record_minimal_symbol_and_info
+                 (cs->c_name, tmpaddr, ms_type, (char *) cs->c_sclass, sec,
+                  NULL, objfile);
+#ifdef COFF_MAKE_MSYMBOL_SPECIAL
+               if (msym)
+                 COFF_MAKE_MSYMBOL_SPECIAL (cs->c_sclass, msym);
+#endif
              }
-           else if (STREQ (cs->c_name, ".eb"))
+           if (SDB_TYPE (cs->c_type))
              {
-               new = pop_context ();
-               if (depth-- != new->depth)
-                 {
-                   complain (&eb_complaint, symnum);
-                   break;
-                 }
-               if (local_symbols && context_stack_depth > 0)
-                 {
-                   /* Make a block for the local symbols within.  */
-                   finish_block (0, &local_symbols, new->old_blocks,
-                                 new->start_addr, cs->c_value, objfile);
-                 }
-               /* Now pop locals of block just finished.  */
-               local_symbols = new->locals;
+               struct symbol *sym;
+               sym = process_coff_symbol
+                 (cs, &main_aux, objfile);
+               SYMBOL_VALUE (sym) = tmpaddr;
+               SYMBOL_SECTION (sym) = sec;
              }
-           break;
+         }
+         break;
 
-         default:
-           process_coff_symbol (cs, &main_aux, objfile);
-           break;
+       case C_FCN:
+         if (STREQ (cs->c_name, ".bf"))
+           {
+             within_function = 1;
+
+             /* value contains address of first non-init type code */
+             /* main_aux.x_sym.x_misc.x_lnsz.x_lnno
+                contains line number of '{' } */
+             if (cs->c_naux != 1)
+               complain (&bf_no_aux_complaint, cs->c_symnum);
+             fcn_first_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
+             fcn_first_line_addr = cs->c_value;
+
+             /* Might want to check that locals are 0 and
+                context_stack_depth is zero, and complain if not.  */
+
+             depth = 0;
+             new = push_context (depth, fcn_start_addr);
+             fcn_cs_saved.c_name = getsymname (&fcn_sym_saved);
+             new->name =
+               process_coff_symbol (&fcn_cs_saved, &fcn_aux_saved, objfile);
+           }
+         else if (STREQ (cs->c_name, ".ef"))
+           {
+             /* the value of .ef is the address of epilogue code;
+                not useful for gdb.  */
+             /* { main_aux.x_sym.x_misc.x_lnsz.x_lnno
+                contains number of lines to '}' */
+
+             if (context_stack_depth <= 0)
+               {               /* We attempted to pop an empty context stack */
+                 complain (&ef_stack_complaint, cs->c_symnum);
+                 within_function = 0;
+                 break;
+               }
+
+             new = pop_context ();
+             /* Stack must be empty now.  */
+             if (context_stack_depth > 0 || new == NULL)
+               {
+                 complain (&ef_complaint, cs->c_symnum);
+                 within_function = 0;
+                 break;
+               }
+             if (cs->c_naux != 1)
+               {
+                 complain (&ef_no_aux_complaint, cs->c_symnum);
+                 fcn_last_line = 0x7FFFFFFF;
+               }
+             else
+               {
+                 fcn_last_line = main_aux.x_sym.x_misc.x_lnsz.x_lnno;
+               }
+             /* fcn_first_line is the line number of the opening '{'.
+                Do not record it - because it would affect gdb's idea
+                of the line number of the first statement of the function -
+                except for one-line functions, for which it is also the line
+                number of all the statements and of the closing '}', and
+                for which we do not have any other statement-line-number. */
+             if (fcn_last_line == 1)
+               record_line (current_subfile, fcn_first_line,
+                            fcn_first_line_addr);
+             else
+               enter_linenos (fcn_line_ptr, fcn_first_line, fcn_last_line,
+                              objfile);
+
+             finish_block (new->name, &local_symbols, new->old_blocks,
+                           new->start_addr,
+#if defined (FUNCTION_EPILOGUE_SIZE)
+             /* This macro should be defined only on
+                machines where the
+                fcn_aux_saved.x_sym.x_misc.x_fsize
+                field is always zero.
+                So use the .bf record information that
+                points to the epilogue and add the size
+                of the epilogue.  */
+                           cs->c_value
+                           + FUNCTION_EPILOGUE_SIZE
+                           + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT),
+#else
+                           fcn_cs_saved.c_value
+                           + fcn_aux_saved.x_sym.x_misc.x_fsize
+                           + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT),
+#endif
+                           objfile
+               );
+             within_function = 0;
+           }
+         break;
+
+       case C_BLOCK:
+         if (STREQ (cs->c_name, ".bb"))
+           {
+             tmpaddr = cs->c_value;
+             tmpaddr += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+             push_context (++depth, tmpaddr);
+           }
+         else if (STREQ (cs->c_name, ".eb"))
+           {
+             if (context_stack_depth <= 0)
+               {               /* We attempted to pop an empty context stack */
+                 complain (&eb_stack_complaint, cs->c_symnum);
+                 break;
+               }
+
+             new = pop_context ();
+             if (depth-- != new->depth)
+               {
+                 complain (&eb_complaint, symnum);
+                 break;
+               }
+             if (local_symbols && context_stack_depth > 0)
+               {
+                 tmpaddr =
+                   cs->c_value + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+                 /* Make a block for the local symbols within.  */
+                 finish_block (0, &local_symbols, new->old_blocks,
+                               new->start_addr, tmpaddr, objfile);
+               }
+             /* Now pop locals of block just finished.  */
+             local_symbols = new->locals;
+           }
+         break;
+
+       default:
+         process_coff_symbol (cs, &main_aux, objfile);
+         break;
        }
     }
 
@@ -1035,94 +1164,31 @@ read_coff_symtab (symtab_offset, nsyms, objfile)
 \f
 /* Routines for reading headers and symbols from executable.  */
 
-#ifdef FIXME
-/* Move these XXXMAGIC symbol defns into BFD!  */
-
-/* Read COFF file header, check magic number,
-   and return number of symbols. */
-read_file_hdr (chan, file_hdr)
-    int chan;
-    FILHDR *file_hdr;
-{
-  lseek (chan, 0L, 0);
-  if (myread (chan, (char *)file_hdr, FILHSZ) < 0)
-    return -1;
-
-  switch (file_hdr->f_magic)
-    {
-#ifdef MC68MAGIC
-    case MC68MAGIC:
-#endif
-#ifdef NS32GMAGIC
-      case NS32GMAGIC:
-      case NS32SMAGIC:
-#endif
-#ifdef I386MAGIC
-    case I386MAGIC:
-#endif
-#ifdef CLIPPERMAGIC
-    case CLIPPERMAGIC:
-#endif
-#if defined (MC68KWRMAGIC) \
-  && (!defined (MC68MAGIC) || MC68KWRMAGIC != MC68MAGIC)
-    case MC68KWRMAGIC:
-#endif
-#ifdef MC68KROMAGIC
-    case MC68KROMAGIC:
-    case MC68KPGMAGIC:
-#endif
-#ifdef MC88DGMAGIC
-    case MC88DGMAGIC:
-#endif      
-#ifdef MC88MAGIC
-    case MC88MAGIC:
-#endif      
-#ifdef I960ROMAGIC
-    case I960ROMAGIC:          /* Intel 960 */
-#endif
-#ifdef I960RWMAGIC
-    case I960RWMAGIC:          /* Intel 960 */
-#endif
-       return file_hdr->f_nsyms;
-
-      default:
-#ifdef BADMAG
-       if (BADMAG(file_hdr))
-         return -1;
-       else
-         return file_hdr->f_nsyms;
-#else
-       return -1;
-#endif
-    }
-}
-#endif
-
 /* Read the next symbol, swap it, and return it in both internal_syment
    form, and coff_symbol form.  Also return its first auxent, if any,
    in internal_auxent form, and skip any other auxents.  */
 
 static void
 read_one_sym (cs, sym, aux)
-    register struct coff_symbol *cs;
-    register struct internal_syment *sym;
-    register union internal_auxent *aux;
+     register struct coff_symbol *cs;
+     register struct internal_syment *sym;
+     register union internal_auxent *aux;
 {
   int i;
 
   cs->c_symnum = symnum;
-  fread (temp_sym, local_symesz, 1, nlist_stream_global);
-  bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *)sym);
+  bfd_read (temp_sym, local_symesz, 1, nlist_bfd_global);
+  bfd_coff_swap_sym_in (symfile_bfd, temp_sym, (char *) sym);
   cs->c_naux = sym->n_numaux & 0xff;
   if (cs->c_naux >= 1)
     {
-    fread (temp_aux, local_auxesz, 1, nlist_stream_global);
-    bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
-                         (char *)aux);
-    /* If more than one aux entry, read past it (only the first aux
-       is important). */
-    for (i = 1; i < cs->c_naux; i++)
-      fread (temp_aux, local_auxesz, 1, nlist_stream_global);
+      bfd_read (temp_aux, local_auxesz, 1, nlist_bfd_global);
+      bfd_coff_swap_aux_in (symfile_bfd, temp_aux, sym->n_type, sym->n_sclass,
+                           0, cs->c_naux, (char *) aux);
+      /* If more than one aux entry, read past it (only the first aux
+         is important). */
+      for (i = 1; i < cs->c_naux; i++)
+       bfd_read (temp_aux, local_auxesz, 1, nlist_bfd_global);
     }
   cs->c_name = getsymname (sym);
   cs->c_value = sym->n_value;
@@ -1132,7 +1198,40 @@ read_one_sym (cs, sym, aux)
   if (!SDB_TYPE (cs->c_type))
     cs->c_type = 0;
 
+#if 0
+  if (cs->c_sclass & 128)
+    printf ("thumb symbol %s, class 0x%x\n", cs->c_name, cs->c_sclass);
+#endif
+
   symnum += 1 + cs->c_naux;
+
+  /* The PE file format stores symbol values as offsets within the
+     section, rather than as absolute addresses.  We correct that
+     here, if the symbol has an appropriate storage class.  FIXME: We
+     should use BFD to read the symbols, rather than duplicating the
+     work here.  */
+  if (pe_file)
+    {
+      switch (cs->c_sclass)
+       {
+       case C_EXT:
+       case C_THUMBEXT:
+       case C_THUMBEXTFUNC:
+       case C_SECTION:
+       case C_NT_WEAK:
+       case C_STAT:
+       case C_THUMBSTAT:
+       case C_THUMBSTATFUNC:
+       case C_LABEL:
+       case C_THUMBLABEL:
+       case C_BLOCK:
+       case C_FCN:
+       case C_EFCN:
+         if (cs->c_secnum != 0)
+           cs->c_value += cs_section_address (cs, symfile_bfd);
+         break;
+       }
+    }
 }
 \f
 /* Support for string table handling */
@@ -1140,9 +1239,9 @@ read_one_sym (cs, sym, aux)
 static char *stringtab = NULL;
 
 static int
-init_stringtab (chan, offset)
-    int chan;
-    long offset;
+init_stringtab (abfd, offset)
+     bfd *abfd;
+     long offset;
 {
   long length;
   int val;
@@ -1150,10 +1249,15 @@ init_stringtab (chan, offset)
 
   free_stringtab ();
 
-  if (lseek (chan, offset, 0) < 0)
+  /* If the file is stripped, the offset might be zero, indicating no
+     string table.  Just return with `stringtab' set to null. */
+  if (offset == 0)
+    return 0;
+
+  if (bfd_seek (abfd, offset, 0) < 0)
     return -1;
 
-  val = myread (chan, (char *)lengthbuf, sizeof lengthbuf);
+  val = bfd_read ((char *) lengthbuf, sizeof lengthbuf, 1, abfd);
   length = bfd_h_get_32 (symfile_bfd, lengthbuf);
 
   /* If no string table is needed, then the file may end immediately
@@ -1162,11 +1266,13 @@ init_stringtab (chan, offset)
     return 0;
 
   stringtab = (char *) xmalloc (length);
-  memcpy (stringtab, &length, sizeof length);
-  if (length == sizeof length)         /* Empty table -- just the count */
+  /* This is in target format (probably not very useful, and not currently
+     used), not host format.  */
+  memcpy (stringtab, lengthbuf, sizeof lengthbuf);
+  if (length == sizeof length) /* Empty table -- just the count */
     return 0;
 
-  val = myread (chan, stringtab + sizeof lengthbuf, length - sizeof lengthbuf);
+  val = bfd_read (stringtab + sizeof lengthbuf, length - sizeof lengthbuf, 1, abfd);
   if (val != length - sizeof lengthbuf || stringtab[length - 1] != '\0')
     return -1;
 
@@ -1183,13 +1289,15 @@ free_stringtab ()
 
 static char *
 getsymname (symbol_entry)
-    struct internal_syment *symbol_entry;
+     struct internal_syment *symbol_entry;
 {
-  static char buffer[SYMNMLEN+1];
+  static char buffer[SYMNMLEN + 1];
   char *result;
 
   if (symbol_entry->_n._n_n._n_zeroes == 0)
     {
+      /* FIXME: Probably should be detecting corrupt symbol files by
+         seeing whether offset points to within the stringtab.  */
       result = stringtab + symbol_entry->_n._n_n._n_offset;
     }
   else
@@ -1205,9 +1313,9 @@ getsymname (symbol_entry)
    only the last component of the name.  Result is in static storage and
    is only good for temporary use.  */
 
-char *
+static char *
 coff_getfilename (aux_entry)
-    union internal_auxent *aux_entry;
+     union internal_auxent *aux_entry;
 {
   static char buffer[BUFSIZ];
   register char *temp;
@@ -1221,12 +1329,17 @@ coff_getfilename (aux_entry)
       buffer[FILNMLEN] = '\0';
     }
   result = buffer;
+
+  /* FIXME: We should not be throwing away the information about what
+     directory.  It should go into dirname of the symtab, or some such
+     place.  */
   if ((temp = strrchr (result, '/')) != NULL)
     result = temp + 1;
   return (result);
 }
 \f
-/* Support for line number handling */
+/* Support for line number handling.  */
+
 static char *linetab = NULL;
 static long linetab_offset;
 static unsigned long linetab_size;
@@ -1234,30 +1347,30 @@ static unsigned long linetab_size;
 /* Read in all the line numbers for fast lookups later.  Leave them in
    external (unswapped) format in memory; we'll swap them as we enter
    them into GDB's data structures.  */
+
 static int
-init_lineno (chan, offset, size)
-    int chan;
-    long offset;
-    int size;
+init_lineno (abfd, offset, size)
+     bfd *abfd;
+     long offset;
+     int size;
 {
   int val;
 
   linetab_offset = offset;
   linetab_size = size;
 
-  free_linetab();
+  free_linetab ();
 
   if (size == 0)
     return 0;
 
-  if (lseek (chan, offset, 0) < 0)
+  if (bfd_seek (abfd, offset, 0) < 0)
     return -1;
-  
+
   /* Allocate the desired table, plus a sentinel */
   linetab = (char *) xmalloc (size + local_linesz);
 
-  val = myread (chan, linetab, size);
+  val = bfd_read (linetab, size, 1, abfd);
   if (val != size)
     return -1;
 
@@ -1280,22 +1393,25 @@ free_linetab ()
 #endif
 
 static void
-enter_linenos (file_offset, first_line, last_line)
-    long file_offset;
-    register int first_line;
-    register int last_line;
+enter_linenos (file_offset, first_line, last_line, objfile)
+     long file_offset;
+     register int first_line;
+     register int last_line;
+     struct objfile *objfile;
 {
   register char *rawptr;
   struct internal_lineno lptr;
 
+  if (!linetab)
+    return;
   if (file_offset < linetab_offset)
     {
       complain (&lineno_complaint, file_offset);
       if (file_offset > linetab_size)  /* Too big to be an offset? */
        return;
-      file_offset += linetab_offset;  /* Try reading at that linetab offset */
+      file_offset += linetab_offset;   /* Try reading at that linetab offset */
     }
-  
+
   rawptr = &linetab[file_offset - linetab_offset];
 
   /* skip first line entry for each function */
@@ -1303,21 +1419,24 @@ enter_linenos (file_offset, first_line, last_line)
   /* line numbers start at one for the first line of the function */
   first_line--;
 
-  for (;;) {
-    bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
-    rawptr += local_linesz;
-    /* The next function, or the sentinel, will have L_LNNO32 zero; we exit. */
-    if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
-      coff_record_line (first_line + L_LNNO32 (&lptr), lptr.l_addr.l_paddr);
-    else
-      break;
-  } 
+  for (;;)
+    {
+      bfd_coff_swap_lineno_in (symfile_bfd, rawptr, &lptr);
+      rawptr += local_linesz;
+      /* The next function, or the sentinel, will have L_LNNO32 zero; we exit. */
+      if (L_LNNO32 (&lptr) && L_LNNO32 (&lptr) <= last_line)
+       record_line (current_subfile, first_line + L_LNNO32 (&lptr),
+                    lptr.l_addr.l_paddr
+                    + ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT));
+      else
+       break;
+    }
 }
 \f
 static void
 patch_type (type, real_type)
-    struct type *type;
-    struct type *real_type;
+     struct type *type;
+     struct type *real_type;
 {
   register struct type *target = TYPE_TARGET_TYPE (type);
   register struct type *real_target = TYPE_TARGET_TYPE (real_type);
@@ -1347,15 +1466,15 @@ patch_opaque_types (s)
   register struct block *b;
   register int i;
   register struct symbol *real_sym;
-  
+
   /* Go through the per-file symbols only */
   b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
   for (i = BLOCK_NSYMS (b) - 1; i >= 0; i--)
     {
       /* Find completed typedefs to use to fix opaque ones.
-        Remove syms from the chain when their types are stored,
-        but search the whole chain, as there may be several syms
-        from different files with the same name.  */
+         Remove syms from the chain when their types are stored,
+         but search the whole chain, as there may be several syms
+         from different files with the same name.  */
       real_sym = BLOCK_SYM (b, i);
       if (SYMBOL_CLASS (real_sym) == LOC_TYPEDEF &&
          SYMBOL_NAMESPACE (real_sym) == VAR_NAMESPACE &&
@@ -1365,7 +1484,7 @@ patch_opaque_types (s)
          register char *name = SYMBOL_NAME (real_sym);
          register int hash = hashname (name);
          register struct symbol *sym, *prev;
-         
+
          prev = 0;
          for (sym = opaque_type_chain[hash]; sym;)
            {
@@ -1380,9 +1499,9 @@ patch_opaque_types (s)
                    {
                      opaque_type_chain[hash] = SYMBOL_VALUE_CHAIN (sym);
                    }
-                 
+
                  patch_type (SYMBOL_TYPE (sym), SYMBOL_TYPE (real_sym));
-                 
+
                  if (prev)
                    {
                      sym = SYMBOL_VALUE_CHAIN (prev);
@@ -1409,44 +1528,35 @@ process_coff_symbol (cs, aux, objfile)
      struct objfile *objfile;
 {
   register struct symbol *sym
-    = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
-                                      sizeof (struct symbol));
+  = (struct symbol *) obstack_alloc (&objfile->symbol_obstack,
+                                    sizeof (struct symbol));
   char *name;
-  struct type *temptype;
 
   memset (sym, 0, sizeof (struct symbol));
   name = cs->c_name;
   name = EXTERNAL_NAME (name, objfile->obfd);
-  SYMBOL_NAME (sym) = obstack_copy0 (&objfile->symbol_obstack, name,
-                                    strlen (name));
+  SYMBOL_NAME (sym) = obsavestring (name, strlen (name),
+                                   &objfile->symbol_obstack);
+  SYMBOL_LANGUAGE (sym) = language_auto;
+  SYMBOL_INIT_DEMANGLED_NAME (sym, &objfile->symbol_obstack);
 
   /* default assumptions */
   SYMBOL_VALUE (sym) = cs->c_value;
   SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
+  SYMBOL_SECTION (sym) = cs_to_section (cs, objfile);
 
   if (ISFCN (cs->c_type))
     {
-#if 0
-       /* FIXME:  This has NOT been tested.  The DBX version has.. */
-       /* Generate a template for the type of this function.  The 
-         types of the arguments will be added as we read the symbol 
-         table. */
-       struct type *new = (struct type *)
-                   obstack_alloc (&objfile->symbol_obstack, sizeof (struct type));
-       
-       memcpy (new, lookup_function_type (decode_function_type (cs, cs->c_type, aux)),
-                     sizeof(struct type));
-       SYMBOL_TYPE (sym) = new;
-       in_function_type = SYMBOL_TYPE(sym);
-#else
-       SYMBOL_TYPE(sym) = 
-        lookup_function_type (decode_function_type (cs, cs->c_type, aux));
-#endif
+      SYMBOL_VALUE (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+      SYMBOL_TYPE (sym) =
+       lookup_function_type (decode_function_type (cs, cs->c_type, aux));
 
       SYMBOL_CLASS (sym) = LOC_BLOCK;
-      if (cs->c_sclass == C_STAT)
+      if (cs->c_sclass == C_STAT || cs->c_sclass == C_THUMBSTAT
+         || cs->c_sclass == C_THUMBSTATFUNC)
        add_symbol_to_list (sym, &file_symbols);
-      else if (cs->c_sclass == C_EXT)
+      else if (cs->c_sclass == C_EXT || cs->c_sclass == C_THUMBEXT
+              || cs->c_sclass == C_THUMBEXTFUNC)
        add_symbol_to_list (sym, &global_symbols);
     }
   else
@@ -1454,146 +1564,191 @@ process_coff_symbol (cs, aux, objfile)
       SYMBOL_TYPE (sym) = decode_type (cs, cs->c_type, aux);
       switch (cs->c_sclass)
        {
-         case C_NULL:
-           break;
-
-         case C_AUTO:
-           SYMBOL_CLASS (sym) = LOC_LOCAL;
-           add_symbol_to_list (sym, &local_symbols);
-           break;
-
-         case C_EXT:
-           SYMBOL_CLASS (sym) = LOC_STATIC;
-           SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
-           add_symbol_to_list (sym, &global_symbols);
-           break;
-
-         case C_STAT:
-           SYMBOL_CLASS (sym) = LOC_STATIC;
-           SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
-           if (within_function) {
+       case C_NULL:
+         break;
+
+       case C_AUTO:
+         SYMBOL_CLASS (sym) = LOC_LOCAL;
+         add_symbol_to_list (sym, &local_symbols);
+         break;
+
+       case C_THUMBEXT:
+       case C_THUMBEXTFUNC:
+       case C_EXT:
+         SYMBOL_CLASS (sym) = LOC_STATIC;
+         SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
+         SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+         add_symbol_to_list (sym, &global_symbols);
+         break;
+
+       case C_THUMBSTAT:
+       case C_THUMBSTATFUNC:
+       case C_STAT:
+         SYMBOL_CLASS (sym) = LOC_STATIC;
+         SYMBOL_VALUE_ADDRESS (sym) = (CORE_ADDR) cs->c_value;
+         SYMBOL_VALUE_ADDRESS (sym) += ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT);
+         if (within_function)
+           {
              /* Static symbol of local scope */
              add_symbol_to_list (sym, &local_symbols);
            }
-           else {
+         else
+           {
              /* Static symbol at top level of file */
              add_symbol_to_list (sym, &file_symbols);
            }
-           break;
+         break;
 
 #ifdef C_GLBLREG               /* AMD coff */
-         case C_GLBLREG:
+       case C_GLBLREG:
 #endif
-         case C_REG:
-           SYMBOL_CLASS (sym) = LOC_REGISTER;
-           SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
-           add_symbol_to_list (sym, &local_symbols);
-           break;
-
-         case C_LABEL:
-           break;
-
-         case C_ARG:
-           SYMBOL_CLASS (sym) = LOC_ARG;
-#if 0
-           /* FIXME:  This has not been tested. */
-           /* Add parameter to function.  */
-           add_param_to_type(&in_function_type,sym);
-#endif
-           add_symbol_to_list (sym, &local_symbols);
-#if !defined (BELIEVE_PCC_PROMOTION) && (TARGET_BYTE_ORDER == BIG_ENDIAN)
-           /* If PCC says a parameter is a short or a char,
-              aligned on an int boundary, realign it to the "little end"
-              of the int.  */
-           temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
-           if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
-               && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
-               && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
+       case C_REG:
+         SYMBOL_CLASS (sym) = LOC_REGISTER;
+         SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM (cs->c_value);
+         add_symbol_to_list (sym, &local_symbols);
+         break;
+
+       case C_THUMBLABEL:
+       case C_LABEL:
+         break;
+
+       case C_ARG:
+         SYMBOL_CLASS (sym) = LOC_ARG;
+         add_symbol_to_list (sym, &local_symbols);
+#if !defined (BELIEVE_PCC_PROMOTION)
+         if (TARGET_BYTE_ORDER == BIG_ENDIAN)
+           {
+             /* If PCC says a parameter is a short or a char,
+                aligned on an int boundary, realign it to the
+                "little end" of the int.  */
+             struct type *temptype;
+             temptype = lookup_fundamental_type (current_objfile,
+                                                 FT_INTEGER);
+             if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
+                 && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT
+                 && 0 == SYMBOL_VALUE (sym) % TYPE_LENGTH (temptype))
                {
-                   SYMBOL_VALUE (sym) += TYPE_LENGTH (temptype)
-                                       - TYPE_LENGTH (SYMBOL_TYPE (sym));
+                 SYMBOL_VALUE (sym) +=
+                   TYPE_LENGTH (temptype)
+                   - TYPE_LENGTH (SYMBOL_TYPE (sym));
                }
+           }
 #endif
-           break;
+         break;
 
-         case C_REGPARM:
-           SYMBOL_CLASS (sym) = LOC_REGPARM;
-           SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM(cs->c_value);
-           add_symbol_to_list (sym, &local_symbols);
+       case C_REGPARM:
+         SYMBOL_CLASS (sym) = LOC_REGPARM;
+         SYMBOL_VALUE (sym) = SDB_REG_TO_REGNUM (cs->c_value);
+         add_symbol_to_list (sym, &local_symbols);
 #if !defined (BELIEVE_PCC_PROMOTION)
-       /* FIXME:  This should retain the current type, since it's just
-          a register value.  gnu@adobe, 26Feb93 */
+         /* FIXME:  This should retain the current type, since it's just
+            a register value.  gnu@adobe, 26Feb93 */
+         {
            /* If PCC says a parameter is a short or a char,
               it is really an int.  */
-           temptype = lookup_fundamental_type (current_objfile, FT_INTEGER);
+           struct type *temptype;
+           temptype =
+             lookup_fundamental_type (current_objfile, FT_INTEGER);
            if (TYPE_LENGTH (SYMBOL_TYPE (sym)) < TYPE_LENGTH (temptype)
                && TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_INT)
-               {
-                   SYMBOL_TYPE (sym) = TYPE_UNSIGNED (SYMBOL_TYPE (sym))
-                       ? lookup_fundamental_type (current_objfile,
-                                                  FT_UNSIGNED_INTEGER)
-                           : temptype;
-               }
-#endif
-           break;
-           
-         case C_TPDEF:
-           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
-           SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
-
-           /* If type has no name, give it one */
-           if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
-             TYPE_NAME (SYMBOL_TYPE (sym)) = concat (SYMBOL_NAME (sym), NULL);
-
-           /* Keep track of any type which points to empty structured type,
-               so it can be filled from a definition from another file.  A
-               simple forward reference (TYPE_CODE_UNDEF) is not an
-               empty structured type, though; the forward references
-               work themselves out via the magic of coff_lookup_type.  */
-           if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
-               TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
-               TYPE_CODE   (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
-                                               TYPE_CODE_UNDEF)
              {
-               register int i = hashname (SYMBOL_NAME (sym));
-
-               SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
-               opaque_type_chain[i] = sym;
+               SYMBOL_TYPE (sym) =
+                 (TYPE_UNSIGNED (SYMBOL_TYPE (sym))
+                  ? lookup_fundamental_type (current_objfile,
+                                             FT_UNSIGNED_INTEGER)
+                  : temptype);
              }
-           add_symbol_to_list (sym, &file_symbols);
-           break;
+         }
+#endif
+         break;
 
-         case C_STRTAG:
-         case C_UNTAG:
-         case C_ENTAG:
-           SYMBOL_CLASS (sym) = LOC_TYPEDEF;
-           SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
-
-            /* Some compilers try to be helpful by inventing "fake"
-               names for anonymous enums, structures, and unions, like
-               "~0fake" or ".0fake".  Thanks, but no thanks... */
-           if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
-             if (SYMBOL_NAME(sym) != NULL
-                 && *SYMBOL_NAME(sym) != '~'
-                 && *SYMBOL_NAME(sym) != '.')
-               TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
-                 concat (SYMBOL_NAME (sym), NULL);
+       case C_TPDEF:
+         SYMBOL_CLASS (sym) = LOC_TYPEDEF;
+         SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
 
-           add_symbol_to_list (sym, &file_symbols);
+         /* If type has no name, give it one */
+         if (TYPE_NAME (SYMBOL_TYPE (sym)) == 0)
+           {
+             if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR
+                 || TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_FUNC)
+               {
+                 /* If we are giving a name to a type such as "pointer to
+                    foo" or "function returning foo", we better not set
+                    the TYPE_NAME.  If the program contains "typedef char
+                    *caddr_t;", we don't want all variables of type char
+                    * to print as caddr_t.  This is not just a
+                    consequence of GDB's type management; CC and GCC (at
+                    least through version 2.4) both output variables of
+                    either type char * or caddr_t with the type
+                    refering to the C_TPDEF symbol for caddr_t.  If a future
+                    compiler cleans this up it GDB is not ready for it
+                    yet, but if it becomes ready we somehow need to
+                    disable this check (without breaking the PCC/GCC2.4
+                    case).
+
+                    Sigh.
+
+                    Fortunately, this check seems not to be necessary
+                    for anything except pointers or functions.  */
+                 ;
+               }
+             else
+               TYPE_NAME (SYMBOL_TYPE (sym)) =
+                 concat (SYMBOL_NAME (sym), NULL);
+           }
+#ifdef CXUX_TARGET
+         /* Ignore vendor section for Harris CX/UX targets. */
+         else if (cs->c_name[0] == '$')
            break;
+#endif /* CXUX_TARGET */
+
+         /* Keep track of any type which points to empty structured type,
+            so it can be filled from a definition from another file.  A
+            simple forward reference (TYPE_CODE_UNDEF) is not an
+            empty structured type, though; the forward references
+            work themselves out via the magic of coff_lookup_type.  */
+         if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_PTR &&
+             TYPE_LENGTH (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) == 0 &&
+             TYPE_CODE (TYPE_TARGET_TYPE (SYMBOL_TYPE (sym))) !=
+             TYPE_CODE_UNDEF)
+           {
+             register int i = hashname (SYMBOL_NAME (sym));
 
-         default:
-           break;
+             SYMBOL_VALUE_CHAIN (sym) = opaque_type_chain[i];
+             opaque_type_chain[i] = sym;
+           }
+         add_symbol_to_list (sym, &file_symbols);
+         break;
+
+       case C_STRTAG:
+       case C_UNTAG:
+       case C_ENTAG:
+         SYMBOL_CLASS (sym) = LOC_TYPEDEF;
+         SYMBOL_NAMESPACE (sym) = STRUCT_NAMESPACE;
+
+         /* Some compilers try to be helpful by inventing "fake"
+            names for anonymous enums, structures, and unions, like
+            "~0fake" or ".0fake".  Thanks, but no thanks... */
+         if (TYPE_TAG_NAME (SYMBOL_TYPE (sym)) == 0)
+           if (SYMBOL_NAME (sym) != NULL
+               && *SYMBOL_NAME (sym) != '~'
+               && *SYMBOL_NAME (sym) != '.')
+             TYPE_TAG_NAME (SYMBOL_TYPE (sym)) =
+               concat (SYMBOL_NAME (sym), NULL);
+
+         add_symbol_to_list (sym, &file_symbols);
+         break;
+
+       default:
+         break;
        }
     }
   return sym;
 }
 \f
-/* Decode a coff type specifier;
-   return the type that is meant.  */
+/* Decode a coff type specifier;  return the type that is meant.  */
 
-static
-struct type *
+static struct type *
 decode_type (cs, c_type, aux)
      register struct coff_symbol *cs;
      unsigned int c_type;
@@ -1660,7 +1815,9 @@ decode_type (cs, c_type, aux)
        {
          type = coff_alloc_type (aux->x_sym.x_tagndx.l);
          return type;
-       } else {
+       }
+      else
+       {
          complain (&tagndx_bad_complaint, cs->c_name);
          /* And fall through to decode_base_type... */
        }
@@ -1672,23 +1829,21 @@ decode_type (cs, c_type, aux)
 /* Decode a coff type specifier for function definition;
    return the type that the function returns.  */
 
-static
-struct type *
+static struct type *
 decode_function_type (cs, c_type, aux)
      register struct coff_symbol *cs;
      unsigned int c_type;
      register union internal_auxent *aux;
 {
   if (aux->x_sym.x_tagndx.l == 0)
-    cs->c_naux = 0;    /* auxent refers to function, not base type */
+    cs->c_naux = 0;            /* auxent refers to function, not base type */
 
   return decode_type (cs, DECREF (c_type), aux);
 }
 \f
 /* basic C types */
 
-static
-struct type *
+static struct type *
 decode_base_type (cs, c_type, aux)
      register struct coff_symbol *cs;
      unsigned int c_type;
@@ -1698,128 +1853,139 @@ decode_base_type (cs, c_type, aux)
 
   switch (c_type)
     {
-      case T_NULL:
-        /* shows up with "void (*foo)();" structure members */
-       return lookup_fundamental_type (current_objfile, FT_VOID);
+    case T_NULL:
+      /* shows up with "void (*foo)();" structure members */
+      return lookup_fundamental_type (current_objfile, FT_VOID);
 
 #if 0
 /* DGUX actually defines both T_ARG and T_VOID to the same value.  */
 #ifdef T_ARG
-      case T_ARG:
-       /* Shows up in DGUX, I think.  Not sure where.  */
-       return lookup_fundamental_type (current_objfile, FT_VOID);      /* shouldn't show up here */
+    case T_ARG:
+      /* Shows up in DGUX, I think.  Not sure where.  */
+      return lookup_fundamental_type (current_objfile, FT_VOID);       /* shouldn't show up here */
 #endif
 #endif /* 0 */
 
 #ifdef T_VOID
-      case T_VOID:
-       /* Intel 960 COFF has this symbol and meaning.  */
-       return lookup_fundamental_type (current_objfile, FT_VOID);
+    case T_VOID:
+      /* Intel 960 COFF has this symbol and meaning.  */
+      return lookup_fundamental_type (current_objfile, FT_VOID);
 #endif
 
-      case T_CHAR:
-       return lookup_fundamental_type (current_objfile, FT_CHAR);
+    case T_CHAR:
+      return lookup_fundamental_type (current_objfile, FT_CHAR);
 
-      case T_SHORT:
-       return lookup_fundamental_type (current_objfile, FT_SHORT);
+    case T_SHORT:
+      return lookup_fundamental_type (current_objfile, FT_SHORT);
 
-      case T_INT:
-       return lookup_fundamental_type (current_objfile, FT_INTEGER);
+    case T_INT:
+      return lookup_fundamental_type (current_objfile, FT_INTEGER);
 
-      case T_LONG:
+    case T_LONG:
+      if (cs->c_sclass == C_FIELD
+         && aux->x_sym.x_misc.x_lnsz.x_size > TARGET_LONG_BIT)
+       return lookup_fundamental_type (current_objfile, FT_LONG_LONG);
+      else
        return lookup_fundamental_type (current_objfile, FT_LONG);
 
-      case T_FLOAT:
-       return lookup_fundamental_type (current_objfile, FT_FLOAT);
+    case T_FLOAT:
+      return lookup_fundamental_type (current_objfile, FT_FLOAT);
 
-      case T_DOUBLE:
-       return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
+    case T_DOUBLE:
+      return lookup_fundamental_type (current_objfile, FT_DBL_PREC_FLOAT);
 
-      case T_STRUCT:
-       if (cs->c_naux != 1)
-         {
-           /* anonymous structure type */
-           type = coff_alloc_type (cs->c_symnum);
-           TYPE_CODE (type) = TYPE_CODE_STRUCT;
-           TYPE_NAME (type) = NULL;
-           /* This used to set the tag to "<opaque>".  But I think setting it
-              to NULL is right, and the printing code can print it as
-              "struct {...}".  */
-           TYPE_TAG_NAME (type) = NULL;
-           INIT_CPLUS_SPECIFIC(type);
-           TYPE_LENGTH (type) = 0;
-           TYPE_FIELDS (type) = 0;
-           TYPE_NFIELDS (type) = 0;
-         }
-       else
-         {
-           type = coff_read_struct_type (cs->c_symnum,
-                                   aux->x_sym.x_misc.x_lnsz.x_size,
-                                   aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
-         }
-       return type;
+    case T_LNGDBL:
+      return lookup_fundamental_type (current_objfile, FT_EXT_PREC_FLOAT);
 
-      case T_UNION:
-       if (cs->c_naux != 1)
-         {
-           /* anonymous union type */
-           type = coff_alloc_type (cs->c_symnum);
-           TYPE_NAME (type) = NULL;
-           /* This used to set the tag to "<opaque>".  But I think setting it
-              to NULL is right, and the printing code can print it as
-              "union {...}".  */
-           TYPE_TAG_NAME (type) = NULL;
-           INIT_CPLUS_SPECIFIC(type);
-           TYPE_LENGTH (type) = 0;
-           TYPE_FIELDS (type) = 0;
-           TYPE_NFIELDS (type) = 0;
-         }
-       else
-         {
-           type = coff_read_struct_type (cs->c_symnum,
-                                   aux->x_sym.x_misc.x_lnsz.x_size,
-                                   aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
-         }
-       TYPE_CODE (type) = TYPE_CODE_UNION;
-       return type;
+    case T_STRUCT:
+      if (cs->c_naux != 1)
+       {
+         /* anonymous structure type */
+         type = coff_alloc_type (cs->c_symnum);
+         TYPE_CODE (type) = TYPE_CODE_STRUCT;
+         TYPE_NAME (type) = NULL;
+         /* This used to set the tag to "<opaque>".  But I think setting it
+            to NULL is right, and the printing code can print it as
+            "struct {...}".  */
+         TYPE_TAG_NAME (type) = NULL;
+         INIT_CPLUS_SPECIFIC (type);
+         TYPE_LENGTH (type) = 0;
+         TYPE_FIELDS (type) = 0;
+         TYPE_NFIELDS (type) = 0;
+       }
+      else
+       {
+         type = coff_read_struct_type (cs->c_symnum,
+                                       aux->x_sym.x_misc.x_lnsz.x_size,
+                                     aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
+       }
+      return type;
 
-      case T_ENUM:
-       if (cs->c_naux != 1)
-         {
-           /* anonymous enum type */
-           type = coff_alloc_type (cs->c_symnum);
-           TYPE_CODE (type) = TYPE_CODE_ENUM;
-           TYPE_NAME (type) = NULL;
-           /* This used to set the tag to "<opaque>".  But I think setting it
-              to NULL is right, and the printing code can print it as
-              "enum {...}".  */
-           TYPE_TAG_NAME (type) = NULL;
-           TYPE_LENGTH (type) = 0;
-           TYPE_FIELDS (type) = 0;
-           TYPE_NFIELDS(type) = 0;
-         }
-       else
-         {
-           type = coff_read_enum_type (cs->c_symnum,
+    case T_UNION:
+      if (cs->c_naux != 1)
+       {
+         /* anonymous union type */
+         type = coff_alloc_type (cs->c_symnum);
+         TYPE_NAME (type) = NULL;
+         /* This used to set the tag to "<opaque>".  But I think setting it
+            to NULL is right, and the printing code can print it as
+            "union {...}".  */
+         TYPE_TAG_NAME (type) = NULL;
+         INIT_CPLUS_SPECIFIC (type);
+         TYPE_LENGTH (type) = 0;
+         TYPE_FIELDS (type) = 0;
+         TYPE_NFIELDS (type) = 0;
+       }
+      else
+       {
+         type = coff_read_struct_type (cs->c_symnum,
                                        aux->x_sym.x_misc.x_lnsz.x_size,
-                                       aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
-         }
-       return type;
+                                     aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
+       }
+      TYPE_CODE (type) = TYPE_CODE_UNION;
+      return type;
 
-      case T_MOE:
-       /* shouldn't show up here */
-       break;
+    case T_ENUM:
+      if (cs->c_naux != 1)
+       {
+         /* anonymous enum type */
+         type = coff_alloc_type (cs->c_symnum);
+         TYPE_CODE (type) = TYPE_CODE_ENUM;
+         TYPE_NAME (type) = NULL;
+         /* This used to set the tag to "<opaque>".  But I think setting it
+            to NULL is right, and the printing code can print it as
+            "enum {...}".  */
+         TYPE_TAG_NAME (type) = NULL;
+         TYPE_LENGTH (type) = 0;
+         TYPE_FIELDS (type) = 0;
+         TYPE_NFIELDS (type) = 0;
+       }
+      else
+       {
+         type = coff_read_enum_type (cs->c_symnum,
+                                     aux->x_sym.x_misc.x_lnsz.x_size,
+                                     aux->x_sym.x_fcnary.x_fcn.x_endndx.l);
+       }
+      return type;
 
-      case T_UCHAR:
-       return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
+    case T_MOE:
+      /* shouldn't show up here */
+      break;
 
-      case T_USHORT:
-       return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
+    case T_UCHAR:
+      return lookup_fundamental_type (current_objfile, FT_UNSIGNED_CHAR);
 
-      case T_UINT:
-       return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
+    case T_USHORT:
+      return lookup_fundamental_type (current_objfile, FT_UNSIGNED_SHORT);
 
-      case T_ULONG:
+    case T_UINT:
+      return lookup_fundamental_type (current_objfile, FT_UNSIGNED_INTEGER);
+
+    case T_ULONG:
+      if (cs->c_sclass == C_FIELD
+         && aux->x_sym.x_misc.x_lnsz.x_size > TARGET_LONG_BIT)
+       return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG_LONG);
+      else
        return lookup_fundamental_type (current_objfile, FT_UNSIGNED_LONG);
     }
   complain (&unexpected_type_complaint, cs->c_name);
@@ -1828,8 +1994,8 @@ decode_base_type (cs, c_type, aux)
 \f
 /* This page contains subroutines of read_type.  */
 
-/* Read the description of a structure (or union type)
-   and return an object describing the type.  */
+/* Read the description of a structure (or union type) and return an
+   object describing the type.  */
 
 static struct type *
 coff_read_struct_type (index, length, lastsym)
@@ -1857,7 +2023,7 @@ coff_read_struct_type (index, length, lastsym)
 
   type = coff_alloc_type (index);
   TYPE_CODE (type) = TYPE_CODE_STRUCT;
-  INIT_CPLUS_SPECIFIC(type);
+  INIT_CPLUS_SPECIFIC (type);
   TYPE_LENGTH (type) = length;
 
   while (!done && symnum < lastsym && symnum < nlist_nsyms_global)
@@ -1868,40 +2034,46 @@ coff_read_struct_type (index, length, lastsym)
 
       switch (ms->c_sclass)
        {
-         case C_MOS:
-         case C_MOU:
-
-           /* Get space to record the next field's data.  */
-           new = (struct nextfield *) alloca (sizeof (struct nextfield));
-           new->next = list;
-           list = new;
-
-           /* Save the data.  */
-           list->field.name = savestring (name, strlen (name));
-           list->field.type = decode_type (ms, ms->c_type, &sub_aux);
-           list->field.bitpos = 8 * ms->c_value;
-           list->field.bitsize = 0;
-           nfields++;
-           break;
-
-         case C_FIELD:
-
-           /* Get space to record the next field's data.  */
-           new = (struct nextfield *) alloca (sizeof (struct nextfield));
-           new->next = list;
-           list = new;
-
-           /* Save the data.  */
-           list->field.name = savestring (name, strlen (name));
-           list->field.type = decode_type (ms, ms->c_type, &sub_aux);
-           list->field.bitpos = ms->c_value;
-           list->field.bitsize = sub_aux.x_sym.x_misc.x_lnsz.x_size;
-           nfields++;
-           break;
-
-         case C_EOS:
-           done = 1;
-           break;
+       case C_MOS:
+       case C_MOU:
+
+         /* Get space to record the next field's data.  */
+         new = (struct nextfield *) alloca (sizeof (struct nextfield));
+         new->next = list;
+         list = new;
+
+         /* Save the data.  */
+         list->field.name =
+           obsavestring (name,
+                         strlen (name),
+                         &current_objfile->symbol_obstack);
+         FIELD_TYPE (list->field) = decode_type (ms, ms->c_type, &sub_aux);
+         FIELD_BITPOS (list->field) = 8 * ms->c_value;
+         FIELD_BITSIZE (list->field) = 0;
+         nfields++;
+         break;
+
+       case C_FIELD:
+
+         /* Get space to record the next field's data.  */
+         new = (struct nextfield *) alloca (sizeof (struct nextfield));
+         new->next = list;
+         list = new;
+
+         /* Save the data.  */
+         list->field.name =
+           obsavestring (name,
+                         strlen (name),
+                         &current_objfile->symbol_obstack);
+         FIELD_TYPE (list->field) = decode_type (ms, ms->c_type, &sub_aux);
+         FIELD_BITPOS (list->field) = ms->c_value;
+         FIELD_BITSIZE (list->field) = sub_aux.x_sym.x_misc.x_lnsz.x_size;
+         nfields++;
+         break;
+
+       case C_EOS:
+         done = 1;
+         break;
        }
     }
   /* Now create the vector of fields, and record how big it is.  */
@@ -1942,6 +2114,7 @@ coff_read_enum_type (index, length, lastsym)
   int o_nsyms;
   register int n;
   char *name;
+  int unsigned_enum = 1;
 
   type = coff_alloc_type (index);
   if (within_function)
@@ -1959,33 +2132,37 @@ coff_read_enum_type (index, length, lastsym)
 
       switch (ms->c_sclass)
        {
-         case C_MOE:
-           sym = (struct symbol *) xmalloc (sizeof (struct symbol));
-           memset (sym, 0, sizeof (struct symbol));
-
-           SYMBOL_NAME (sym) = savestring (name, strlen (name));
-           SYMBOL_CLASS (sym) = LOC_CONST;
-           SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
-           SYMBOL_VALUE (sym) = ms->c_value;
-           add_symbol_to_list (sym, symlist);
-           nsyms++;
-           break;
-
-         case C_EOS:
-           /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
-              up the count of how many symbols to read.  So stop
-              on .eos.  */
-           done = 1;
-           break;
+       case C_MOE:
+         sym = (struct symbol *) obstack_alloc
+           (&current_objfile->symbol_obstack,
+            sizeof (struct symbol));
+         memset (sym, 0, sizeof (struct symbol));
+
+         SYMBOL_NAME (sym) =
+           obsavestring (name, strlen (name),
+                         &current_objfile->symbol_obstack);
+         SYMBOL_CLASS (sym) = LOC_CONST;
+         SYMBOL_NAMESPACE (sym) = VAR_NAMESPACE;
+         SYMBOL_VALUE (sym) = ms->c_value;
+         add_symbol_to_list (sym, symlist);
+         nsyms++;
+         break;
+
+       case C_EOS:
+         /* Sometimes the linker (on 386/ix 2.0.2 at least) screws
+            up the count of how many symbols to read.  So stop
+            on .eos.  */
+         done = 1;
+         break;
        }
     }
 
   /* Now fill in the fields of the type-structure.  */
 
   if (length > 0)
-    TYPE_LENGTH (type) =  length;
+    TYPE_LENGTH (type) = length;
   else
-    TYPE_LENGTH (type) =  TARGET_INT_BIT / TARGET_CHAR_BIT;    /* Assume ints */
+    TYPE_LENGTH (type) = TARGET_INT_BIT / TARGET_CHAR_BIT;     /* Assume ints */
   TYPE_CODE (type) = TYPE_CODE_ENUM;
   TYPE_NFIELDS (type) = nsyms;
   TYPE_FIELDS (type) = (struct field *)
@@ -2002,69 +2179,44 @@ coff_read_enum_type (index, length, lastsym)
   for (syms = *symlist, n = 0; syms; syms = syms->next)
     {
       int j = 0;
+
       if (syms == osyms)
        j = o_nsyms;
-      for (; j < syms->nsyms; j++,n++)
+      for (; j < syms->nsyms; j++, n++)
        {
          struct symbol *xsym = syms->symbol[j];
          SYMBOL_TYPE (xsym) = type;
          TYPE_FIELD_NAME (type, n) = SYMBOL_NAME (xsym);
-         TYPE_FIELD_VALUE (type, n) = 0;
          TYPE_FIELD_BITPOS (type, n) = SYMBOL_VALUE (xsym);
+         if (SYMBOL_VALUE (xsym) < 0)
+           unsigned_enum = 0;
          TYPE_FIELD_BITSIZE (type, n) = 0;
        }
       if (syms == osyms)
        break;
     }
 
-#if 0
-  /* This screws up perfectly good C programs with enums.  FIXME.  */
-  /* Is this Modula-2's BOOLEAN type?  Flag it as such if so. */
-  if(TYPE_NFIELDS(type) == 2 &&
-     ((STREQ(TYPE_FIELD_NAME(type,0),"TRUE") &&
-       STREQ(TYPE_FIELD_NAME(type,1),"FALSE")) ||
-      (STREQ(TYPE_FIELD_NAME(type,1),"TRUE") &&
-       STREQ(TYPE_FIELD_NAME(type,0),"FALSE"))))
-     TYPE_CODE(type) = TYPE_CODE_BOOL;
-#endif
-  return type;
-}
-
-struct section_offsets *
-coff_symfile_offsets (objfile, addr)
-     struct objfile *objfile;
-     CORE_ADDR addr;
-{
-  struct section_offsets *section_offsets;
-  int i;
-
-  objfile->num_sections = SECT_OFF_MAX;
-  section_offsets = (struct section_offsets *)
-    obstack_alloc (&objfile -> psymbol_obstack,
-                  sizeof (struct section_offsets)
-                  + sizeof (section_offsets->offsets) * (SECT_OFF_MAX-1));
+  if (unsigned_enum)
+    TYPE_FLAGS (type) |= TYPE_FLAG_UNSIGNED;
 
-  for (i = 0; i < SECT_OFF_MAX; i++)
-    ANOFFSET (section_offsets, i) = addr;
-  
-  return section_offsets;
+  return type;
 }
 
-/* Register our ability to parse symbols for coff BFD files */
+/* Register our ability to parse symbols for coff BFD files. */
 
 static struct sym_fns coff_sym_fns =
 {
   bfd_target_coff_flavour,
-  coff_new_init,       /* sym_new_init: init anything gbl to entire symtab */
-  coff_symfile_init,   /* sym_init: read initial info, setup for sym_read() */
-  coff_symfile_read,   /* sym_read: read a symbol file into symtab */
-  coff_symfile_finish, /* sym_finish: finished with file, cleanup */
-  coff_symfile_offsets, /* sym_offsets:  xlate external to internal form */
-  NULL                 /* next: pointer to next struct sym_fns */
+  coff_new_init,               /* sym_new_init: init anything gbl to entire symtab */
+  coff_symfile_init,           /* sym_init: read initial info, setup for sym_read() */
+  coff_symfile_read,           /* sym_read: read a symbol file into symtab */
+  coff_symfile_finish,         /* sym_finish: finished with file, cleanup */
+  default_symfile_offsets,     /* sym_offsets:  xlate external to internal form */
+  NULL                         /* next: pointer to next struct sym_fns */
 };
 
 void
 _initialize_coffread ()
 {
-  add_symtab_fns(&coff_sym_fns);
+  add_symtab_fns (&coff_sym_fns);
 }