]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/tc.h
*** empty log message ***
[thirdparty/binutils-gdb.git] / gas / tc.h
CommitLineData
252b5132
RH
1/* tc.h - target cpu dependent
2
147f6d69 3 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 2000, 2001, 2003
f7e42eb4 4 Free Software Foundation, Inc.
252b5132
RH
5
6 This file is part of GAS, the GNU Assembler.
7
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)
11 any later version.
12
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.
17
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. */
21
22/* In theory (mine, at least!) the machine dependent part of the assembler
23 should only have to include one file. This one. -- JF */
24
25extern const pseudo_typeS md_pseudo_table[];
26
27/* JF moved this here from as.h under the theory that nobody except MACHINE.c
a01b9fa4 28 and write.c care about it anyway. */
252b5132
RH
29
30struct relax_type
31{
a01b9fa4 32 /* Forward reach. Signed number. > 0. */
252b5132 33 long rlx_forward;
a01b9fa4 34 /* Backward reach. Signed number. < 0. */
252b5132
RH
35 long rlx_backward;
36
a01b9fa4 37 /* Bytes length of this address. */
252b5132
RH
38 unsigned char rlx_length;
39
a01b9fa4 40 /* Next longer relax-state. 0 means there is no 'next' relax-state. */
252b5132
RH
41 relax_substateT rlx_more;
42};
43
44typedef struct relax_type relax_typeS;
45
329e276d
NC
46extern const int md_reloc_size; /* Size of a relocation record. */
47
48char * md_atof (int, char *, int *);
49int md_parse_option (int, char *);
50void md_show_usage (FILE *);
51short tc_coff_fix2rtype (fixS *);
52void md_assemble (char *);
53void md_begin (void);
54void md_number_to_chars (char *, valueT, int);
55void md_apply_fix3 (fixS *, valueT *, segT);
56
2b4f075a
HPN
57#ifndef WORKING_DOT_WORD
58extern int md_short_jump_size;
59extern int md_long_jump_size;
60#endif
252b5132 61
252b5132 62#ifndef md_create_long_jump
329e276d 63void md_create_long_jump (char *, addressT, addressT, fragS *, symbolS *);
252b5132
RH
64#endif
65#ifndef md_create_short_jump
329e276d
NC
66void md_create_short_jump (char *, addressT, addressT, fragS *, symbolS *);
67#endif
68#ifndef md_pcrel_from
69long md_pcrel_from (fixS *);
252b5132 70#endif
252b5132 71#ifndef md_operand
329e276d
NC
72void md_operand (expressionS *);
73#endif
74#ifndef md_estimate_size_before_relax
75int md_estimate_size_before_relax (fragS * fragP, segT);
76#endif
77#ifndef md_section_align
78valueT md_section_align (segT, valueT);
79#endif
80#ifndef md_undefined_symbol
81symbolS *md_undefined_symbol (char *);
252b5132 82#endif
94f592af 83
252b5132 84#ifdef BFD_ASSEMBLER
329e276d 85
252b5132 86#ifndef md_convert_frag
329e276d 87void md_convert_frag (bfd *, segT, fragS *);
252b5132
RH
88#endif
89#ifndef tc_headers_hook
329e276d 90void tc_headers_hook (segT *, fixS *);
252b5132
RH
91#endif
92#ifndef RELOC_EXPANSION_POSSIBLE
24361518 93extern arelent *tc_gen_reloc (asection *, fixS *);
252b5132 94#else
24361518 95extern arelent **tc_gen_reloc (asection *, fixS *);
252b5132 96#endif
329e276d 97
252b5132 98#else /* not BFD_ASSEMBLER */
329e276d 99
252b5132 100#ifndef md_convert_frag
329e276d 101void md_convert_frag (object_headers *, segT, fragS *);
252b5132 102#endif
252b5132 103#ifndef tc_crawl_symbol_chain
329e276d 104void tc_crawl_symbol_chain (object_headers *);
252b5132 105#endif
329e276d
NC
106#ifndef tc_headers_hook
107void tc_headers_hook (object_headers *);
252b5132
RH
108#endif
109
329e276d 110#endif /* BFD_ASSEMBLER */