Copyright 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
2002, 2003, 2005, 2006 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
GAS 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, or (at your option)
any later version.
GAS 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 GAS; see the file COPYING. If not, write to the Free
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
#ifndef __write_h__
#define __write_h__
#ifndef TC_I960
#ifdef hpux
#define EXEC_MACHINE_TYPE HP9000S200_ID
#endif
#endif
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"
* FixSs may be built up in any order.
*/
struct fix
{
this structure, and efficiency of access on some architectures. */
char fx_pcrel_adjust;
unsigned char fx_size;
unsigned fx_pcrel : 1;
some of the reductions we try to apply are invalid. A better way
might be to represent PLT entries with different kinds of
symbols, and use normal relocations (with undefined symbols);
look into it for version 2.6. */
unsigned fx_plt : 1;
unsigned fx_im_disp : 2;
This probably can be folded into tc_fix_data, below. */
unsigned fx_tcbit : 1;
unsigned fx_done : 1;
in the PowerPC ELF config to allow large addends on the
BFD_RELOC_{LO16,HI16,HI16_S} relocations.
@@ Can this be determined from BFD? */
unsigned fx_no_overflow : 1;
unsigned fx_signed : 1;
fragS *fx_frag;
long fx_where;
symbolS *fx_addsy;
symbolS *fx_subsy;
valueT fx_offset;
addressT fx_dot_value;
struct fix *fx_next;
integer. This can probably be folded into tc_fix_data, below.
@@ Alpha also uses it, but only to disable certain relocation
processing. */
bit_fixS *fx_bit_fixP;
bfd_reloc_code_real_type fx_r_type;
scratch field, for use by the back ends. The main gas code doesn't
do anything but initialize it to zero. The use of it does need to
be coordinated between the cpu and format files, though. E.g., some
coff targets pass the `addend' field from the cpu file via this
field. I don't know why the `fx_offset' field above can't be used
for that; investigate later and document. KR */
valueT fx_addnumber;
in error messages. */
char *fx_file;
unsigned fx_line;
#ifdef USING_CGEN
struct {
const struct cgen_insn *insn;
int opinfo;
} fx_cgen;
#endif
#ifdef TC_FIX_TYPE
needed to perform fixups. */
TC_FIX_TYPE tc_fix_data;
#endif
};
typedef struct fix fixS;
extern int finalize_syms;
extern symbolS *abs_section_sym;
extern addressT dot_value;
extern long string_byte_count;
extern int section_alignment[];
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 *, segT, int);
extern void number_to_chars_littleendian (char *, valueT, int);
extern void number_to_chars_bigendian (char *, valueT, int);
extern fixS *fix_new
(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
(fragS * frag, int where, int size, expressionS *exp, int pcrel,
bfd_reloc_code_real_type r_type);
extern void write_print_statistics (FILE *);
#endif