Fix typos
[deliverable/binutils-gdb.git] / gas / config / obj-aout.c
index ee8b398750129cfdc6df940e244602e4151b7ae6..67bb18e2d5ea329231cdc97cd900b7993992f495 100644 (file)
@@ -1,5 +1,6 @@
 /* a.out object file format
-   Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
+   Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
+   Free Software Foundation, Inc.
 
 This file is part of GAS, the GNU Assembler.
 
@@ -13,9 +14,12 @@ 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 GAS; see the file COPYING.  If not, write
-to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+You should have received a copy of the GNU General Public License
+along with GAS; see the file COPYING.  If not, write to the Free
+Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+02111-1307, USA.  */
+
+#define OBJ_HEADER "obj-aout.h"
 
 #include "as.h"
 #ifdef BFD_ASSEMBLER
@@ -63,14 +67,17 @@ const segT N_TYPE_seg[N_TYPE + 2] =
 
 static void obj_aout_line PARAMS ((int));
 static void obj_aout_weak PARAMS ((int));
+static void obj_aout_type PARAMS ((int));
 
-const pseudo_typeS obj_pseudo_table[] =
+const pseudo_typeS aout_pseudo_table[] =
 {
   {"line", obj_aout_line, 0},  /* source code line number */
   {"ln", obj_aout_line, 0},    /* coff line number that we use anyway */
 
   {"weak", obj_aout_weak, 0},  /* mark symbol as weak.  */
 
+  {"type", obj_aout_type, 0},
+
   /* coff debug pseudos (ignored) */
   {"def", s_ignore, 0},
   {"dim", s_ignore, 0},
@@ -81,7 +88,6 @@ const pseudo_typeS obj_pseudo_table[] =
   {"scl", s_ignore, 0},
   {"size", s_ignore, 0},
   {"tag", s_ignore, 0},
-  {"type", s_ignore, 0},
   {"val", s_ignore, 0},
   {"version", s_ignore, 0},
 
@@ -90,33 +96,35 @@ const pseudo_typeS obj_pseudo_table[] =
   /* other stuff */
   {"ABORT", s_abort, 0},
 
-  {NULL}                       /* end sentinel */
-};                             /* obj_pseudo_table */
-
+  {NULL, NULL, 0}              /* end sentinel */
+};                             /* aout_pseudo_table */
 
 #ifdef BFD_ASSEMBLER
 
 void
 obj_aout_frob_symbol (sym, punt)
      symbolS *sym;
-     int *punt;
+     int *punt ATTRIBUTE_UNUSED;
 {
   flagword flags;
   asection *sec;
   int desc, type, other;
 
-  flags = sym->bsym->flags;
-  desc = S_GET_DESC (sym);
-  type = S_GET_TYPE (sym);
-  other = S_GET_OTHER (sym);
-  sec = sym->bsym->section;
+  flags = symbol_get_bfdsym (sym)->flags;
+  desc = aout_symbol (symbol_get_bfdsym (sym))->desc;
+  type = aout_symbol (symbol_get_bfdsym (sym))->type;
+  other = aout_symbol (symbol_get_bfdsym (sym))->other;
+  sec = S_GET_SEGMENT (sym);
 
   /* Only frob simple symbols this way right now.  */
   if (! (type & ~ (N_TYPE | N_EXT)))
     {
       if (type == (N_UNDF | N_EXT)
          && sec == &bfd_abs_section)
-       sym->bsym->section = sec = bfd_und_section_ptr;
+       {
+         sec = bfd_und_section_ptr;
+         S_SET_SEGMENT (sym, sec);
+       }
 
       if ((type & N_TYPE) != N_INDR
          && (type & N_TYPE) != N_SETA
@@ -138,7 +146,7 @@ obj_aout_frob_symbol (sym, punt)
        case N_SETB:
          /* Set the debugging flag for constructor symbols so that
             BFD leaves them alone.  */
-         sym->bsym->flags |= BSF_DEBUGGING;
+         symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
 
          /* You can't put a common symbol in a set.  The way a set
             element works is that the symbol has a definition and a
@@ -151,42 +159,42 @@ obj_aout_frob_symbol (sym, punt)
             on the other hand, we certainly don't want anybody to be
             mislead into thinking that their code will work.  */
          if (S_IS_COMMON (sym))
-           as_bad ("Attempt to put a common symbol into set %s",
+           as_bad (_("Attempt to put a common symbol into set %s"),
                    S_GET_NAME (sym));
          /* Similarly, you can't put an undefined symbol in a set.  */
          else if (! S_IS_DEFINED (sym))
-           as_bad ("Attempt to put an undefined symbol into set %s",
+           as_bad (_("Attempt to put an undefined symbol into set %s"),
                    S_GET_NAME (sym));
 
          break;
        case N_INDR:
          /* Put indirect symbols in the indirect section.  */
-         sym->bsym->section = bfd_ind_section_ptr;
-         sym->bsym->flags |= BSF_INDIRECT;
+         S_SET_SEGMENT (sym, bfd_ind_section_ptr);
+         symbol_get_bfdsym (sym)->flags |= BSF_INDIRECT;
          if (type & N_EXT)
            {
-             sym->bsym->flags |= BSF_EXPORT;
-             sym->bsym->flags &=~ BSF_LOCAL;
+             symbol_get_bfdsym (sym)->flags |= BSF_EXPORT;
+             symbol_get_bfdsym (sym)->flags &=~ BSF_LOCAL;
            }
          break;
        case N_WARNING:
          /* Mark warning symbols.  */
-         sym->bsym->flags |= BSF_WARNING;
+         symbol_get_bfdsym (sym)->flags |= BSF_WARNING;
          break;
        }
     }
   else
     {
-      sym->bsym->flags |= BSF_DEBUGGING;
+      symbol_get_bfdsym (sym)->flags |= BSF_DEBUGGING;
     }
 
-  S_SET_TYPE (sym, type);
+  aout_symbol (symbol_get_bfdsym (sym))->type = type;
 
   /* Double check weak symbols.  */
-  if (sym->bsym->flags & BSF_WEAK)
+  if (S_IS_WEAK (sym))
     {
       if (S_IS_COMMON (sym))
-       as_bad ("Symbol `%s' can not be both weak and common",
+       as_bad (_("Symbol `%s' can not be both weak and common"),
                S_GET_NAME (sym));
     }
 }
@@ -212,9 +220,9 @@ obj_aout_frob_file ()
   assert (x == true);
 }
 
-#else
+#else /* ! BFD_ASSEMBLER */
 
-/* Relocation. */
+/* Relocation.  */
 
 /*
  *             emit_relocations()
@@ -224,12 +232,32 @@ obj_aout_frob_file ()
 void
 obj_emit_relocations (where, fixP, segment_address_in_file)
      char **where;
-     fixS *fixP;               /* Fixup chain for this segment. */
+     fixS *fixP;               /* Fixup chain for this segment.  */
      relax_addressT segment_address_in_file;
 {
   for (; fixP; fixP = fixP->fx_next)
     if (fixP->fx_done == 0)
       {
+       symbolS *sym;
+
+       sym = fixP->fx_addsy;
+       while (sym->sy_value.X_op == O_symbol
+              && (! S_IS_DEFINED (sym) || S_IS_COMMON (sym)))
+         sym = sym->sy_value.X_add_symbol;
+       fixP->fx_addsy = sym;
+
+       if (! sym->sy_resolved && ! S_IS_DEFINED (sym))
+         {
+           char *file;
+           unsigned int line;
+
+           if (expr_symbol_where (sym, &file, &line))
+             as_bad_where (file, line, _("unresolved relocation"));
+           else
+             as_bad (_("bad relocation: symbol `%s' not in symbol table"),
+                     S_GET_NAME (sym));
+         }
+
        tc_aout_fix_to_chars (*where, fixP, segment_address_in_file);
        *where += md_reloc_size;
       }
@@ -268,7 +296,7 @@ obj_header_append (where, headers)
 #endif /* CROSS_COMPILE */
 
 }
-#endif
+#endif /* ! defined (obj_header_append) */
 
 void
 obj_symbol_to_chars (where, symbolP)
@@ -293,13 +321,13 @@ obj_emit_symbols (where, symbol_rootP)
   for (symbolP = symbol_rootP; symbolP; symbolP = symbol_next (symbolP))
     {
       /* Used to save the offset of the name. It is used to point
-        to the string in memory but must be a file offset. */
+        to the string in memory but must be a file offset.  */
       register char *temp;
 
       temp = S_GET_NAME (symbolP);
       S_SET_OFFSET (symbolP, symbolP->sy_name_offset);
 
-      /* Any symbol still undefined and is not a dbg symbol is made N_EXT. */
+      /* Any symbol still undefined and is not a dbg symbol is made N_EXT.  */
       if (!S_IS_DEBUG (symbolP) && !S_IS_DEFINED (symbolP))
        S_SET_EXTERNAL (symbolP);
 
@@ -313,7 +341,7 @@ obj_emit_symbols (where, symbol_rootP)
            case N_TEXT: S_SET_TYPE (symbolP, N_WEAKT); break;
            case N_DATA: S_SET_TYPE (symbolP, N_WEAKD); break;
            case N_BSS:  S_SET_TYPE (symbolP, N_WEAKB); break;
-           default: as_bad ("%s: bad type for weak symbol", temp); break;
+           default: as_bad (_("%s: bad type for weak symbol"), temp); break;
            }
        }
 
@@ -326,11 +354,11 @@ obj_emit_symbols (where, symbol_rootP)
 
 static void
 obj_aout_line (ignore)
-     int ignore;
+     int ignore ATTRIBUTE_UNUSED;
 {
   /* Assume delimiter is part of expression.
      BSD4.2 as fails with delightful bug, so we
-     are not being incompatible here. */
+     are not being incompatible here.  */
   new_logical_line ((char *) NULL, (int) (get_absolute_expression ()));
   demand_empty_rest_of_line ();
 }                              /* obj_aout_line() */
@@ -339,7 +367,7 @@ obj_aout_line (ignore)
 
 static void
 obj_aout_weak (ignore)
-     int ignore;
+     int ignore ATTRIBUTE_UNUSED;
 {
   char *name;
   int c;
@@ -365,9 +393,48 @@ obj_aout_weak (ignore)
   demand_empty_rest_of_line ();
 }
 
-void
-obj_read_begin_hook ()
+/* Handle .type.  On {Net,Open}BSD, this is used to set the n_other field,
+   which is then apparently used when doing dynamic linking.  Older
+   versions of gas ignored the .type pseudo-op, so we also ignore it if
+   we can't parse it.  */
+
+static void
+obj_aout_type (ignore)
+     int ignore ATTRIBUTE_UNUSED;
 {
+  char *name;
+  int c;
+  symbolS *sym;
+
+  name = input_line_pointer;
+  c = get_symbol_end ();
+  sym = symbol_find_or_make (name);
+  *input_line_pointer = c;
+  SKIP_WHITESPACE ();
+  if (*input_line_pointer == ',')
+    {
+      ++input_line_pointer;
+      SKIP_WHITESPACE ();
+      if (*input_line_pointer == '@')
+       {
+         ++input_line_pointer;
+         if (strncmp (input_line_pointer, "object", 6) == 0)
+#ifdef BFD_ASSEMBLER
+           aout_symbol (symbol_get_bfdsym (sym))->other = 1;
+#else
+         S_SET_OTHER (sym, 1);
+#endif
+         else if (strncmp (input_line_pointer, "function", 8) == 0)
+#ifdef BFD_ASSEMBLER
+           aout_symbol (symbol_get_bfdsym (sym))->other = 2;
+#else
+         S_SET_OTHER (sym, 2);
+#endif
+       }
+    }
+
+  /* Ignore everything else on the line.  */
+  s_ignore (0);
 }
 
 #ifndef BFD_ASSEMBLER
@@ -382,15 +449,33 @@ obj_crawl_symbol_chain (headers)
 
   tc_crawl_symbol_chain (headers);
 
-  symbolPP = &symbol_rootP;    /*->last symbol chain link. */
+  symbolPP = &symbol_rootP;    /*->last symbol chain link.  */
   while ((symbolP = *symbolPP) != NULL)
     {
+      if (symbolP->sy_mri_common)
+       {
+         if (S_IS_EXTERNAL (symbolP))
+           as_bad (_("%s: global symbols not supported in common sections"),
+                   S_GET_NAME (symbolP));
+         *symbolPP = symbol_next (symbolP);
+         continue;
+       }
+
       if (flag_readonly_data_in_text && (S_GET_SEGMENT (symbolP) == SEG_DATA))
        {
          S_SET_SEGMENT (symbolP, SEG_TEXT);
        }                       /* if pusing data into text */
 
-      resolve_symbol_value (symbolP);
+      resolve_symbol_value (symbolP, 1);
+
+      /* Skip symbols which were equated to undefined or common
+        symbols.  */
+      if (symbolP->sy_value.X_op == O_symbol
+         && (! S_IS_DEFINED (symbolP) || S_IS_COMMON (symbolP)))
+       {
+         *symbolPP = symbol_next (symbolP);
+         continue;
+       }
 
       /* OK, here is how we decide which symbols go out into the brave
         new symtab.  Symbols that do are:
@@ -405,8 +490,7 @@ obj_crawl_symbol_chain (headers)
         switch was passed to gas.
 
         All other symbols are output.  We complain if a deleted
-        symbol was marked external. */
-
+        symbol was marked external.  */
 
       if (!S_IS_REGISTER (symbolP)
          && (!S_GET_NAME (symbolP)
@@ -422,13 +506,13 @@ obj_crawl_symbol_chain (headers)
                           end of each string */
          if (!S_IS_STABD (symbolP))
            {
-             /* Ordinary case. */
+             /* Ordinary case.  */
              symbolP->sy_name_offset = string_byte_count;
              string_byte_count += strlen (S_GET_NAME (symbolP)) + 1;
            }
-         else                  /* .Stabd case. */
+         else                  /* .Stabd case.  */
            symbolP->sy_name_offset = 0;
-         symbolPP = &(symbol_next (symbolP));
+         symbolPP = &symbolP->sy_next;
        }
       else
        {
@@ -437,8 +521,8 @@ obj_crawl_symbol_chain (headers)
               Well, maybe if you're doing twisted things with
               register names...  */
            {
-             as_bad ("Local symbol %s never defined.", decode_local_label_name (S_GET_NAME (symbolP)));
-           }                   /* oops. */
+             as_bad (_("Local symbol %s never defined."), decode_local_label_name (S_GET_NAME (symbolP)));
+           }                   /* oops.  */
 
          /* Unhook it from the chain */
          *symbolPP = symbol_next (symbolP);
@@ -489,7 +573,7 @@ obj_pre_write_hook (headers)
 }
 
 void
-DEFUN_VOID (s_sect)
+s_sect ()
 {
   /* Strip out the section name */
   char *section_name;
@@ -525,7 +609,7 @@ DEFUN_VOID (s_sect)
     }
   if (exp >= 1000)
     {
-      as_bad ("subsegment index too high");
+      as_bad (_("subsegment index too high"));
     }
 
   if (strcmp (section_name, ".text") == 0)
@@ -546,4 +630,129 @@ DEFUN_VOID (s_sect)
 
 #endif /* ! BFD_ASSEMBLER */
 
-/* end of obj-aout.c */
+#ifdef BFD_ASSEMBLER
+
+/* Support for an AOUT emulation.  */
+
+static void aout_pop_insert PARAMS ((void));
+static int obj_aout_s_get_other PARAMS ((symbolS *));
+static void obj_aout_s_set_other PARAMS ((symbolS *, int));
+static int obj_aout_s_get_desc PARAMS ((symbolS *));
+static void obj_aout_s_set_desc PARAMS ((symbolS *, int));
+static int obj_aout_s_get_type PARAMS ((symbolS *));
+static void obj_aout_s_set_type PARAMS ((symbolS *, int));
+static int obj_aout_separate_stab_sections PARAMS ((void));
+static int obj_aout_sec_sym_ok_for_reloc PARAMS ((asection *));
+static void obj_aout_process_stab PARAMS ((segT, int, const char *, int, int, int));
+
+static void
+aout_pop_insert ()
+{
+  pop_insert (aout_pseudo_table);
+}
+
+static int
+obj_aout_s_get_other (sym)
+     symbolS *sym;
+{
+  return aout_symbol (symbol_get_bfdsym (sym))->other;
+}
+
+static void
+obj_aout_s_set_other (sym, o)
+     symbolS *sym;
+     int o;
+{
+  aout_symbol (symbol_get_bfdsym (sym))->other = o;
+}
+
+static int
+obj_aout_sec_sym_ok_for_reloc (sec)
+     asection *sec ATTRIBUTE_UNUSED;
+{
+  return obj_sec_sym_ok_for_reloc (sec);
+}
+
+static void
+obj_aout_process_stab (seg, w, s, t, o, d)
+     segT seg ATTRIBUTE_UNUSED;
+     int w;
+     const char *s;
+     int t;
+     int o;
+     int d;
+{
+  aout_process_stab (w, s, t, o, d);
+}
+
+static int
+obj_aout_s_get_desc (sym)
+     symbolS *sym;
+{
+  return aout_symbol (symbol_get_bfdsym (sym))->desc;
+}
+
+static void
+obj_aout_s_set_desc (sym, d)
+     symbolS *sym;
+     int d;
+{
+  aout_symbol (symbol_get_bfdsym (sym))->desc = d;
+}
+
+static int
+obj_aout_s_get_type (sym)
+     symbolS *sym;
+{
+  return aout_symbol (symbol_get_bfdsym (sym))->type;
+}
+
+static void
+obj_aout_s_set_type (sym, t)
+     symbolS *sym;
+     int t;
+{
+  aout_symbol (symbol_get_bfdsym (sym))->type = t;
+}
+
+static int
+obj_aout_separate_stab_sections ()
+{
+  return 0;
+}
+
+/* When changed, make sure these table entries match the single-format
+   definitions in obj-aout.h.  */
+const struct format_ops aout_format_ops =
+{
+  bfd_target_aout_flavour,
+  1,   /* dfl_leading_underscore */
+  0,   /* emit_section_symbols */
+  0,   /* begin */
+  0,   /* app_file */
+  obj_aout_frob_symbol,
+  obj_aout_frob_file,
+  0,   /* frob_file_before_adjust */
+  0,   /* frob_file_after_relocs */
+  0,   /* s_get_size */
+  0,   /* s_set_size */
+  0,   /* s_get_align */
+  0,   /* s_set_align */
+  obj_aout_s_get_other,
+  obj_aout_s_set_other,
+  obj_aout_s_get_desc,
+  obj_aout_s_set_desc,
+  obj_aout_s_get_type,
+  obj_aout_s_set_type,
+  0,   /* copy_symbol_attributes */
+  0,   /* generate_asm_lineno */
+  obj_aout_process_stab,
+  obj_aout_separate_stab_sections,
+  0,   /* init_stab_section */
+  obj_aout_sec_sym_ok_for_reloc,
+  aout_pop_insert,
+  0,   /* ecoff_set_ext */
+  0,   /* read_begin_hook */
+  0    /* symbol_new_hook */
+};
+#endif BFD_ASSEMBLER
This page took 0.0292210000000001 seconds and 4 git commands to generate.