* NEWS: Announce Renesas RX support.
[deliverable/binutils-gdb.git] / gas / tc.h
CommitLineData
252b5132
RH
1/* tc.h - target cpu dependent
2
f17c130b 3 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 2000, 2001, 2003,
aa820537 4 2004, 2005, 2006, 2007, 2008, 2009
f7e42eb4 5 Free Software Foundation, Inc.
252b5132
RH
6
7 This file is part of GAS, the GNU Assembler.
8
9 GAS is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
ec2655a6 11 the Free Software Foundation; either version 3, or (at your option)
252b5132
RH
12 any later version.
13
14 GAS is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GAS; see the file COPYING. If not, write to
ec2655a6
NC
21 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
22 Boston, MA 02110-1301, USA. */
252b5132
RH
23
24/* In theory (mine, at least!) the machine dependent part of the assembler
25 should only have to include one file. This one. -- JF */
26
27extern const pseudo_typeS md_pseudo_table[];
28
329e276d
NC
29char * md_atof (int, char *, int *);
30int md_parse_option (int, char *);
31void md_show_usage (FILE *);
329e276d
NC
32void md_assemble (char *);
33void md_begin (void);
01e1a5bc 34#ifndef md_number_to_chars
329e276d 35void md_number_to_chars (char *, valueT, int);
01e1a5bc 36#endif
55cf6793 37void md_apply_fix (fixS *, valueT *, segT);
329e276d 38
2b4f075a
HPN
39#ifndef WORKING_DOT_WORD
40extern int md_short_jump_size;
41extern int md_long_jump_size;
42#endif
252b5132 43
22ba0981 44#ifdef TE_PE
977cdf5a
NC
45/* The name of an external symbol which is
46 used to make weak PE symbol names unique. */
47extern const char * an_external_name;
48#endif
49
252b5132 50#ifndef md_create_long_jump
329e276d 51void md_create_long_jump (char *, addressT, addressT, fragS *, symbolS *);
252b5132
RH
52#endif
53#ifndef md_create_short_jump
329e276d
NC
54void md_create_short_jump (char *, addressT, addressT, fragS *, symbolS *);
55#endif
56#ifndef md_pcrel_from
57long md_pcrel_from (fixS *);
252b5132 58#endif
252b5132 59#ifndef md_operand
329e276d
NC
60void md_operand (expressionS *);
61#endif
62#ifndef md_estimate_size_before_relax
63int md_estimate_size_before_relax (fragS * fragP, segT);
64#endif
65#ifndef md_section_align
66valueT md_section_align (segT, valueT);
67#endif
68#ifndef md_undefined_symbol
69symbolS *md_undefined_symbol (char *);
252b5132 70#endif
94f592af 71
252b5132 72#ifndef md_convert_frag
329e276d 73void md_convert_frag (bfd *, segT, fragS *);
252b5132 74#endif
252b5132 75#ifndef RELOC_EXPANSION_POSSIBLE
24361518 76extern arelent *tc_gen_reloc (asection *, fixS *);
252b5132 77#else
24361518 78extern arelent **tc_gen_reloc (asection *, fixS *);
252b5132 79#endif
This page took 0.453784 seconds and 4 git commands to generate.