daily update
[deliverable/binutils-gdb.git] / gas / config / tc-s390.h
CommitLineData
a85d7ed0 1/* tc-s390.h -- Header file for tc-s390.c.
98d3f06f 2 Copyright 2000, 2001, 2002 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
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
98d3f06f 20 02111-1307, USA. */
a85d7ed0
NC
21
22#define TC_S390
23
24#ifdef ANSI_PROTOTYPES
25struct fix;
26#endif
27
28#ifndef BFD_ASSEMBLER
29 #error S390 support requires BFD_ASSEMBLER
30#endif
31
a161fe53 32#define TC_FORCE_RELOCATION(FIX) tc_s390_force_relocation(FIX)
b8edc45c 33extern int tc_s390_force_relocation PARAMS ((struct fix *));
d6767af8 34
a85d7ed0
NC
35#define tc_fix_adjustable(X) tc_s390_fix_adjustable(X)
36extern int tc_s390_fix_adjustable PARAMS ((struct fix *));
37
a161fe53
AM
38/* Values passed to md_apply_fix3 don't include symbol values. */
39#define MD_APPLY_SYM_VALUE(FIX) 0
b8edc45c 40
a85d7ed0
NC
41/* The target BFD architecture. */
42#define TARGET_ARCH bfd_arch_s390
43extern enum bfd_architecture s390_arch PARAMS ((void));
44
45/* The target BFD format. */
46#define TARGET_FORMAT s390_target_format()
98d3f06f 47extern const char *s390_target_format PARAMS ((void));
a85d7ed0 48
98d3f06f 49/* Set the endianness we are using. */
a85d7ed0
NC
50#define TARGET_BYTES_BIG_ENDIAN 1
51
52/* Whether or not the target is big endian */
53extern int target_big_endian;
54
55/* Permit temporary numeric labels. */
56#define LOCAL_LABELS_FB 1
57
58/* $ is used to refer to the current location. */
59/* #define DOLLAR_DOT */
60
61/* We need to be able to make relocations involving the difference of
62 two symbols. This includes the difference of two symbols when
c745b67a 63 one of them is undefined (this comes up in PIC code generation).
a85d7ed0
NC
64 */
65#define UNDEFINED_DIFFERENCE_OK
66
67/* foo-. gets turned into PC relative relocs */
68#define DIFF_EXPR_OK
69
70/* We don't need to handle .word strangely. */
71#define WORKING_DOT_WORD
72
a85d7ed0
NC
73#define md_number_to_chars number_to_chars_bigendian
74
75#define md_do_align(n, fill, len, max, around) \
76if ((n) && !need_pass_2 && (fill == 0) && \
77 (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) != 0) { \
78 char *p; \
79 p = frag_var (rs_align_code, 15, 1, (relax_substateT) max, \
80 (symbolS *) 0, (offsetT) (n), (char *) 0); \
81 *p = 0x07; \
82 goto around; \
83}
84
85extern void s390_align_code PARAMS ((fragS *, int));
86
87#define HANDLE_ALIGN(fragP) \
c745b67a 88if (fragP->fr_type == rs_align_code) \
a85d7ed0
NC
89 s390_align_code (fragP, (fragP->fr_next->fr_address \
90 - fragP->fr_address \
91 - fragP->fr_fix));
92
a85d7ed0 93/* call md_pcrel_from_section, not md_pcrel_from */
a161fe53 94#define MD_PCREL_FROM_SECTION(FIX, SEC) md_pcrel_from_section(FIX, SEC)
a85d7ed0
NC
95extern long md_pcrel_from_section PARAMS ((struct fix *, segT));
96
97#define md_operand(x)
98
99extern void s390_md_end PARAMS ((void));
100#define md_end() s390_md_end ()
This page took 0.178384 seconds and 4 git commands to generate.