For DefaultSize instructions, don't guess a 'q' suffix if the instruction
[binutils-gdb.git] / gas / write.h
index 186d2ada1b67498ef116d063213baf673adf901d..0e0f59f8f70b318635b9e61ed8ac63450f06af6a 100644 (file)
@@ -1,5 +1,6 @@
 /* write.h
-   Copyright (C) 1987, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
+   Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001
+   Free Software Foundation, Inc.
 
    This file is part of GAS, the GNU Assembler.
 
@@ -39,7 +40,9 @@
 
 /* This is the name of a fake symbol which will never appear in the
    assembler output.  S_IS_LOCAL detects it because of the \001.  */
+#ifndef FAKE_LABEL_NAME
 #define FAKE_LABEL_NAME "L0\001"
+#endif
 
 #include "bit_fix.h"
 
@@ -95,15 +98,18 @@ struct fix
   /* Where is the first byte to fix up?  */
   long fx_where;
 
-  /* NULL or Symbol whose value we add in. */
+  /* NULL or Symbol whose value we add in.  */
   symbolS *fx_addsy;
 
-  /* NULL or Symbol whose value we subtract. */
+  /* NULL or Symbol whose value we subtract.  */
   symbolS *fx_subsy;
 
-  /* Absolute number we add in. */
+  /* Absolute number we add in.  */
   valueT fx_offset;
 
+  /* The value of dot when the fixup expression was parsed.  */
+  addressT fx_dot_value;
+
   /* Next fixS in linked list, or NULL.  */
   struct fix *fx_next;
 
@@ -156,53 +162,56 @@ struct fix
 
 typedef struct fix fixS;
 
+extern int finalize_syms;
+extern symbolS *abs_section_sym;
+extern addressT dot_value;
+
 #ifndef BFD_ASSEMBLER
 extern char *next_object_file_charP;
 
 #ifndef MANY_SEGMENTS
-COMMON fixS *text_fix_root, *text_fix_tail;    /* Chains fixSs. */
-COMMON fixS *data_fix_root, *data_fix_tail;    /* Chains fixSs. */
-COMMON fixS *bss_fix_root, *bss_fix_tail;      /* Chains fixSs. */
-extern struct frag *text_last_frag;            /* Last frag in segment. */
-extern struct frag *data_last_frag;            /* Last frag in segment. */
+COMMON fixS *text_fix_root, *text_fix_tail;    /* Chains fixSs.  */
+COMMON fixS *data_fix_root, *data_fix_tail;    /* Chains fixSs.  */
+COMMON fixS *bss_fix_root, *bss_fix_tail;      /* Chains fixSs.  */
+extern struct frag *text_last_frag;            /* Last frag in segment.  */
+extern struct frag *data_last_frag;            /* Last frag in segment.  */
 #endif
-COMMON fixS **seg_fix_rootP, **seg_fix_tailP;  /* -> one of above. */
+COMMON fixS **seg_fix_rootP, **seg_fix_tailP;  /* -> one of above.  */
 #endif
 
 extern long string_byte_count;
 extern int section_alignment[];
 
 extern bit_fixS *bit_fix_new
-  PARAMS ((int size, int offset, long base_type, long base_adj, long min,
-          long max, long add));
-extern void append PARAMS ((char **charPP, char *fromP, unsigned long length));
-extern void record_alignment PARAMS ((segT seg, int align));
-extern void subsegs_finish PARAMS ((void));
-extern void write_object_file PARAMS ((void));
-extern long relax_frag PARAMS ((fragS *, long));
-extern void relax_segment
-  PARAMS ((struct frag * seg_frag_root, segT seg_type));
-
-extern void number_to_chars_littleendian PARAMS ((char *, valueT, int));
-extern void number_to_chars_bigendian    PARAMS ((char *, valueT, int));
+  (int size, int offset, long base_type, long base_adj, long min,
+   long max, long add);
+extern void append (char **charPP, char *fromP, unsigned long length);
+extern void record_alignment (segT seg, int align);
+extern int get_recorded_alignment (segT seg);
+extern void subsegs_finish (void);
+extern void write_object_file (void);
+extern long relax_frag (segT, fragS *, long);
+extern int relax_segment (struct frag * seg_frag_root, segT seg_type);
+
+extern void number_to_chars_littleendian (char *, valueT, int);
+extern void number_to_chars_bigendian (char *, valueT, int);
 
 #ifdef BFD_ASSEMBLER
 extern fixS *fix_new
-  PARAMS ((fragS * frag, int where, int size, symbolS * add_symbol,
-          offsetT offset, int pcrel, bfd_reloc_code_real_type r_type));
+  (fragS * frag, int where, int size, symbolS * add_symbol,
+   offsetT offset, int pcrel, bfd_reloc_code_real_type r_type);
 extern fixS *fix_new_exp
-  PARAMS ((fragS * frag, int where, int size, expressionS *exp, int pcrel,
-          bfd_reloc_code_real_type r_type));
+  (fragS * frag, int where, int size, expressionS *exp, int pcrel,
+   bfd_reloc_code_real_type r_type);
 #else
 extern fixS *fix_new
-  PARAMS ((fragS * frag, int where, int size, symbolS * add_symbol,
-          offsetT offset, int pcrel, int r_type));
+  (fragS * frag, int where, int size, symbolS * add_symbol,
+   offsetT offset, int pcrel, int r_type);
 extern fixS *fix_new_exp
-  PARAMS ((fragS * frag, int where, int size, expressionS *exp, int pcrel,
-          int r_type));
+  (fragS * frag, int where, int size, expressionS *exp, int pcrel,
+   int r_type);
 #endif
 
-extern void write_print_statistics PARAMS ((FILE *));
+extern void write_print_statistics (FILE *);
 
 #endif /* __write_h__ */
-/* end of write.h */