* gas/all/gas.exp: Remove a29k and m88k support.
[deliverable/binutils-gdb.git] / gas / config / tc-s390.h
CommitLineData
a85d7ed0 1/* tc-s390.h -- Header file for tc-s390.c.
aef6203b 2 Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
a85d7ed0
NC
3 Written by Martin Schwidefsky (schwidefsky@de.ibm.com).
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to the Free
4b4da160
NC
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
a85d7ed0
NC
21
22#define TC_S390
23
a85d7ed0 24struct fix;
a85d7ed0
NC
25
26#ifndef BFD_ASSEMBLER
27 #error S390 support requires BFD_ASSEMBLER
28#endif
29
a161fe53 30#define TC_FORCE_RELOCATION(FIX) tc_s390_force_relocation(FIX)
b8edc45c 31extern int tc_s390_force_relocation PARAMS ((struct fix *));
d6767af8 32
426318c5
AM
33/* Don't resolve foo@PLT-bar to offset@PLT. */
34#define TC_FORCE_RELOCATION_SUB_SAME(FIX, SEG) \
35 (! SEG_NORMAL (SEG) || TC_FORCE_RELOCATION (FIX))
36
a85d7ed0
NC
37#define tc_fix_adjustable(X) tc_s390_fix_adjustable(X)
38extern int tc_s390_fix_adjustable PARAMS ((struct fix *));
39
55cf6793 40/* Values passed to md_apply_fix don't include symbol values. */
a161fe53 41#define MD_APPLY_SYM_VALUE(FIX) 0
b8edc45c 42
a85d7ed0
NC
43/* The target BFD architecture. */
44#define TARGET_ARCH bfd_arch_s390
45extern enum bfd_architecture s390_arch PARAMS ((void));
46
47/* The target BFD format. */
48#define TARGET_FORMAT s390_target_format()
98d3f06f 49extern const char *s390_target_format PARAMS ((void));
a85d7ed0 50
98d3f06f 51/* Set the endianness we are using. */
a85d7ed0
NC
52#define TARGET_BYTES_BIG_ENDIAN 1
53
54/* Whether or not the target is big endian */
55extern int target_big_endian;
56
57/* Permit temporary numeric labels. */
58#define LOCAL_LABELS_FB 1
59
60/* $ is used to refer to the current location. */
61/* #define DOLLAR_DOT */
62
63/* We need to be able to make relocations involving the difference of
64 two symbols. This includes the difference of two symbols when
c745b67a 65 one of them is undefined (this comes up in PIC code generation).
a85d7ed0
NC
66 */
67#define UNDEFINED_DIFFERENCE_OK
68
69/* foo-. gets turned into PC relative relocs */
70#define DIFF_EXPR_OK
71
72/* We don't need to handle .word strangely. */
73#define WORKING_DOT_WORD
74
a85d7ed0
NC
75#define md_number_to_chars number_to_chars_bigendian
76
6f079ae3 77#define NOP_OPCODE 0x07
a85d7ed0 78
a85d7ed0 79/* call md_pcrel_from_section, not md_pcrel_from */
a161fe53 80#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section(FIX, SEC)
a85d7ed0
NC
81extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
82
83#define md_operand(x)
84
85extern void s390_md_end PARAMS ((void));
86#define md_end() s390_md_end ()
75e21f08
JJ
87
88#define TARGET_USE_CFIPOP 1
89
90#define tc_cfi_frame_initial_instructions s390_cfi_frame_initial_instructions
91extern void s390_cfi_frame_initial_instructions PARAMS ((void));
92
93#define tc_regname_to_dw2regnum tc_s390_regname_to_dw2regnum
94extern int tc_s390_regname_to_dw2regnum PARAMS ((const char *regname));
95
96extern int s390_cie_data_alignment;
97
98#define DWARF2_LINE_MIN_INSN_LENGTH 1
99#define DWARF2_DEFAULT_RETURN_COLUMN 14
100#define DWARF2_CIE_DATA_ALIGNMENT s390_cie_data_alignment
This page took 0.22413 seconds and 4 git commands to generate.