gas:
[external/binutils.git] / gas / config / tc-i860.h
1 /* tc-i860.h -- Header file for the i860.
2    Copyright (C) 1991, 1992, 1995, 1998, 2000
3    Free Software Foundation, Inc.
4
5    Brought back from the dead and completely reworked
6    by Jason Eckhardt <jle@cygnus.com>.
7    
8    This file is part of GAS, the GNU Assembler.
9
10    GAS is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 2, or (at your option)
13    any later version.
14
15    GAS is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License along
21    with GAS; see the file COPYING.  If not, write to the Free Software
22    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
23
24 #ifndef TC_I860
25 #define TC_I860 1
26
27
28 #ifndef BFD_ASSEMBLER
29 #error i860 support requires BFD_ASSEMBLER
30 #endif
31
32
33 enum i860_fix_info 
34 {
35   OP_NONE        = 0x00000,
36   OP_IMM_U5      = 0x00001,
37   OP_IMM_S16     = 0x00002,
38   OP_IMM_U16     = 0x00004,
39   OP_IMM_SPLIT16 = 0x00008,
40   OP_IMM_BR26    = 0x00010,
41   OP_IMM_BR16    = 0x00020,
42   OP_ENCODE1     = 0x00040,
43   OP_ENCODE2     = 0x00080,
44   OP_ENCODE3     = 0x00100,
45   OP_SEL_HA      = 0x00200,
46   OP_SEL_H       = 0x00400,
47   OP_SEL_L       = 0x00800,
48   OP_SEL_GOT     = 0x01000,
49   OP_SEL_GOTOFF  = 0x02000,
50   OP_SEL_PLT     = 0x04000,
51   OP_ALIGN2      = 0x08000,
52   OP_ALIGN4      = 0x10000,
53   OP_ALIGN8      = 0x20000,
54   OP_ALIGN16     = 0x40000
55 };
56
57
58 /* Set the endianness we are using.  Default to little endian.  */
59 #ifndef TARGET_BYTES_BIG_ENDIAN
60 #define TARGET_BYTES_BIG_ENDIAN 0
61 #endif
62
63 /* Whether or not the target is big endian.  */
64 extern int target_big_endian;
65
66 /* BFD target architecture.  */
67 #define TARGET_ARCH     bfd_arch_i860
68
69 /* The target BFD format.  */
70 #ifdef OBJ_ELF
71 #define TARGET_FORMAT (target_big_endian ? "elf32-i860" : "elf32-i860-little")
72 #else
73 #error i860 GAS currently supports only the ELF object format
74 #endif
75
76 #define WORKING_DOT_WORD
77 #define MD_APPLY_FIX3
78 #define TC_HANDLES_FX_DONE
79 #define DIFF_EXPR_OK
80
81 /* Permit temporary numeric labels.  */
82 #define LOCAL_LABELS_FB         1
83 #define LISTING_HEADER          "GAS for i860"
84
85 #define md_convert_frag(b,s,f)  as_fatal (_("i860_convert_frag\n"));
86
87 #endif /* TC_I860 */
88