2009-03-03 Tristan Gingold <gingold@adacore.com>
[binutils.git] / gas / config / obj-evax.h
blob162d5663727a86f1f7a48047304b6917567240da
1 /* This file is obj-evax.h
2 Copyright 1996, 2000, 2005, 2007 Free Software Foundation, Inc.
3 Contributed by Klaus Kämpf (kkaempf@progis.de) of
4 proGIS Software, Aachen, Germany.
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
21 MA 02110-1301, USA. */
24 * This file is obj-evax.h and is intended to be a template for
25 * object format specific header files.
28 #include "as.h"
30 /* define an obj specific macro off which target cpu back ends may key. */
31 #define OBJ_EVAX 1
33 /* include whatever target cpu is appropriate. */
34 #include "targ-cpu.h"
36 #define OUTPUT_FLAVOR bfd_target_evax_flavour
38 struct fix;
40 struct alpha_linkage_fixups
42 struct alpha_linkage_fixups *next;
43 struct fix *fixp;
44 segT seg;
45 symbolS *label;
49 * SYMBOLS
53 * If your object format needs to reorder symbols, define this. When
54 * defined, symbols are kept on a doubly linked list and functions are
55 * made available for push, insert, append, and delete. If not defined,
56 * symbols are kept on a singly linked list, only the append and clear
57 * facilities are available, and they are macros.
60 /* #define SYMBOLS_NEED_PACKPOINTERS */
62 /* */
63 typedef struct
65 void *nothing;
67 obj_symbol_type; /* should be the format's symbol structure */
69 typedef void *object_headers;
71 #define OBJ_EMIT_LINENO(a,b,c) /* must be *something*. This no-op's it out. */
73 /* This field keeps the symbols position in the link section. */
74 #define OBJ_SYMFIELD_TYPE valueT
76 #define obj_symbol_new_hook(s) evax_symbol_new_hook (s)
77 #define obj_frob_symbol(s,p) evax_frob_symbol (s, &p)
78 #define obj_frob_file_before_adjust evax_frob_file_before_adjust
79 #define obj_frob_file_before_fix evax_frob_file_before_fix
81 #define S_SET_OTHER(S,V)
82 #define S_SET_TYPE(S,T)
83 #define S_SET_DESC(S,D)
84 #define S_GET_OTHER(S) 0
85 #define S_GET_TYPE(S) 0
86 #define S_GET_DESC(S) 0
88 #define PDSC_S_K_KIND_FP_STACK 9
89 #define PDSC_S_K_KIND_FP_REGISTER 10
90 #define PDSC_S_K_KIND_NULL 8
92 #define PDSC_S_K_MIN_STACK_SIZE 32
93 #define PDSC_S_K_MIN_REGISTER_SIZE 24
94 #define PDSC_S_K_NULL_SIZE 16
96 #define PDSC_S_M_HANDLER_VALID 0x10 /* low byte */
97 #define PDSC_S_M_HANDLER_DATA_VALID 0x40 /* low byte */
98 #define PDSC_S_M_BASE_REG_IS_FP 0x80 /* low byte */
99 #define PDSC_S_M_NATIVE 0x10 /* high byte */
100 #define PDSC_S_M_NO_JACKET 0x20 /* high byte */
102 #define LKP_S_K_SIZE 16
104 extern segT alpha_link_section;
105 extern struct alpha_linkage_fixups *alpha_linkage_fixup_root;
107 extern void evax_section (int);
108 extern void evax_symbol_new_hook (symbolS *);
109 extern void evax_frob_symbol (symbolS *, int *);
110 extern void evax_frob_file_before_adjust (void);
111 extern void evax_frob_file_before_fix (void);
112 extern char *evax_shorten_name (char *);
115 * Local Variables:
116 * comment-column: 0
117 * fill-column: 131
118 * End: