1 /* tc.h - target cpu dependent
3 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 2000, 2001, 2003
4 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
22 /* In theory (mine, at least!) the machine dependent part of the assembler
23 should only have to include one file. This one. -- JF */
25 extern const pseudo_typeS md_pseudo_table
[];
27 /* JF moved this here from as.h under the theory that nobody except MACHINE.c
28 and write.c care about it anyway. */
32 /* Forward reach. Signed number. > 0. */
34 /* Backward reach. Signed number. < 0. */
37 /* Bytes length of this address. */
38 unsigned char rlx_length
;
40 /* Next longer relax-state. 0 means there is no 'next' relax-state. */
41 relax_substateT rlx_more
;
44 typedef struct relax_type relax_typeS
;
46 extern const int md_reloc_size
; /* Size of a relocation record. */
48 char * md_atof (int, char *, int *);
49 int md_parse_option (int, char *);
50 void md_show_usage (FILE *);
51 short tc_coff_fix2rtype (fixS
*);
52 void md_assemble (char *);
54 void md_number_to_chars (char *, valueT
, int);
55 void md_apply_fix3 (fixS
*, valueT
*, segT
);
58 #ifndef md_create_long_jump
59 void md_create_long_jump (char *, addressT
, addressT
, fragS
*, symbolS
*);
61 #ifndef md_create_short_jump
62 void md_create_short_jump (char *, addressT
, addressT
, fragS
*, symbolS
*);
65 long md_pcrel_from (fixS
*);
68 void md_operand (expressionS
*);
70 #ifndef md_estimate_size_before_relax
71 int md_estimate_size_before_relax (fragS
* fragP
, segT
);
73 #ifndef md_section_align
74 valueT
md_section_align (segT
, valueT
);
76 #ifndef md_undefined_symbol
77 symbolS
*md_undefined_symbol (char *);
82 #ifndef md_convert_frag
83 void md_convert_frag (bfd
*, segT
, fragS
*);
85 #ifndef tc_headers_hook
86 void tc_headers_hook (segT
*, fixS
*);
88 #ifndef RELOC_EXPANSION_POSSIBLE
89 extern arelent
*tc_gen_reloc (asection
*, fixS
*);
91 extern arelent
**tc_gen_reloc (asection
*, fixS
*);
94 #else /* not BFD_ASSEMBLER */
96 #ifndef md_convert_frag
97 void md_convert_frag (object_headers
*, segT
, fragS
*);
99 #ifndef tc_crawl_symbol_chain
100 void tc_crawl_symbol_chain (object_headers
*);
102 #ifndef tc_headers_hook
103 void tc_headers_hook (object_headers
*);
106 #endif /* BFD_ASSEMBLER */