]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/config/tc-iq2000.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gas / config / tc-iq2000.h
CommitLineData
1c53c80d 1/* tc-iq2000.h -- Header file for tc-iq2000.c.
a2c58332 2 Copyright (C) 2003-2022 Free Software Foundation, Inc.
1c53c80d
SC
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
ec2655a6 8 the Free Software Foundation; either version 3, or (at your option)
1c53c80d
SC
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
4b4da160
NC
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
1c53c80d
SC
20
21#define TC_IQ2000
22
1c53c80d
SC
23#define LISTING_HEADER "IQ2000 GAS "
24
25/* The target BFD architecture. */
26#define TARGET_ARCH bfd_arch_iq2000
27
28#define TARGET_FORMAT "elf32-iq2000"
29
30#define TARGET_BYTES_BIG_ENDIAN 1
31
5515a510 32/* Permit temporary numeric labels. */
1c53c80d
SC
33#define LOCAL_LABELS_FB 1
34
5515a510 35/* .-foo gets turned into PC relative relocs. */
1c53c80d
SC
36#define DIFF_EXPR_OK
37
5515a510 38/* We don't need to handle .word strangely. */
1c53c80d
SC
39#define WORKING_DOT_WORD
40
55cf6793 41#define md_apply_fix gas_cgen_md_apply_fix
1c53c80d
SC
42
43/* Call md_pcrel_from_section(), not md_pcrel_from(). */
44#define MD_PCREL_FROM_SECTION(FIXP, SEC) md_pcrel_from_section (FIXP, SEC)
1c53c80d
SC
45
46#define tc_frob_file() iq2000_frob_file ()
1c53c80d 47
0234cb7c 48/* After creating a fixup for an instruction operand, we need to check
5515a510 49 for HI16 relocs and queue them up for later sorting. */
1c53c80d
SC
50#define md_cgen_record_fixup_exp iq2000_cgen_record_fixup_exp
51
52/* When relaxing, we need to emit various relocs we otherwise wouldn't. */
53#define TC_FORCE_RELOCATION(fix) iq2000_force_relocation (fix)
1c53c80d 54
55cf6793 55/* Values passed to md_apply_fix don't include the symbol value. */
1c53c80d
SC
56#define MD_APPLY_SYM_VALUE(FIX) 0
57
58#define tc_gen_reloc gas_cgen_tc_gen_reloc
59
5b7c81bd
AM
60extern void iq2000_frob_file (void);
61extern bool iq2000_fix_adjustable (struct fix *);
62extern int iq2000_force_relocation (struct fix *);