daily update
[deliverable/binutils-gdb.git] / gas / config / tc-frv.h
CommitLineData
0ebb9a87
DB
1/* tc-frv.h -- Header file for tc-frv.c.
2 Copyright (C) 2002 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21#define TC_FRV
22
23#ifndef BFD_ASSEMBLER
24/* leading space so will compile with cc */
25 #error FRV support requires BFD_ASSEMBLER
26#endif
27
28#define LISTING_HEADER "FRV GAS "
29
30/* The target BFD architecture. */
31#define TARGET_ARCH bfd_arch_frv
32
33#define TARGET_FORMAT "elf32-frv"
34
35#define TARGET_BYTES_BIG_ENDIAN 1
36
37/* call md_pcrel_from_section, not md_pcrel_from */
38long md_pcrel_from_section PARAMS ((struct fix *, segT));
39#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC)
40
41/* Permit temporary numeric labels. */
42#define LOCAL_LABELS_FB 1
43
44#define DIFF_EXPR_OK /* .-foo gets turned into PC relative relocs */
45
46/* We don't need to handle .word strangely. */
47#define WORKING_DOT_WORD
48
49#define md_apply_fix3 gas_cgen_md_apply_fix3
50
51extern void frv_tomcat_workaround PARAMS ((void));
52#define md_cleanup frv_tomcat_workaround
53
54#define md_number_to_chars frv_md_number_to_chars
55
56extern long frv_relax_frag PARAMS ((fragS *, long));
57#define md_relax_frag(segment, fragP, stretch) frv_relax_frag(fragP, stretch)
58
59#define obj_fix_adjustable(fixP) frv_fix_adjustable (fixP)
60extern boolean frv_fix_adjustable PARAMS ((struct fix *));
61
62#ifdef OBJ_ELF
63/* This arranges for gas/write.c to not apply a relocation if
64 obj_fix_adjustable() says it is not adjustable. */
65#define TC_FIX_ADJUSTABLE(fixP) obj_fix_adjustable (fixP)
66#endif
67
68/* When relaxing, we need to emit various relocs we otherwise wouldn't. */
69#define TC_FORCE_RELOCATION(fix) frv_force_relocation (fix)
70extern int frv_force_relocation PARAMS ((struct fix *));
71
72#undef GAS_CGEN_MAX_FIXUPS
73#define GAS_CGEN_MAX_FIXUPS 1
74
75void frv_frob_label PARAMS ((symbolS *));
76#define tc_frob_label(sym) frv_frob_label(sym)
77
78#define tc_gen_reloc gas_cgen_tc_gen_reloc
79
80#define md_cgen_record_fixup_exp frv_cgen_record_fixup_exp
81
82/* Call md_pcrel_from_section(), not md_pcrel_from(). */
83#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC)
84extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
85
86/* After all of the symbols have been adjusted, go over the file looking
87 for any relocations that pic won't support. */
88#define tc_frob_file() frv_frob_file ()
89extern void frv_frob_file PARAMS ((void));
This page took 0.039191 seconds and 4 git commands to generate.