2002-11-30 Nathanael Nerode <neroden@gcc.gnu.org>
[deliverable/binutils-gdb.git] / bfd / bfd-in2.h
CommitLineData
4eef72c7 1/* DO NOT EDIT! -*- buffer-read-only: t -*- This file is automatically
59bc061d 2 generated from "bfd-in.h", "init.c", "opncls.c", "libbfd.c",
93509525
KD
3 "bfdio.c", "bfdwin.c", "section.c", "archures.c", "reloc.c",
4 "syms.c", "bfd.c", "archive.c", "corefile.c", "targets.c", "format.c",
5 "linker.c" and "simple.c".
4eef72c7
AM
6 Run "make headers" in your build bfd/ to regenerate. */
7
252b5132 8/* Main header file for the bfd library -- portable access to object files.
7898deda 9 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
b5f79c76 10 2000, 2001, 2002
252b5132
RH
11 Free Software Foundation, Inc.
12 Contributed by Cygnus Support.
13
8afb0e02 14 This file is part of BFD, the Binary File Descriptor library.
252b5132 15
8afb0e02
NC
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
252b5132 20
8afb0e02
NC
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
252b5132 25
8afb0e02
NC
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
252b5132 29
252b5132
RH
30#ifndef __BFD_H_SEEN__
31#define __BFD_H_SEEN__
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37#include "ansidecl.h"
e43d48cc
AM
38#include "symcat.h"
39#if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE)
40#ifndef SABER
41/* This hack is to avoid a problem with some strict ANSI C preprocessors.
42 The problem is, "32_" is not a valid preprocessing token, and we don't
43 want extra underscores (e.g., "nlm_32_"). The XCONCAT2 macro will
44 cause the inner CONCAT2 macros to be evaluated first, producing
45 still-valid pp-tokens. Then the final concatenation can be done. */
46#undef CONCAT4
47#define CONCAT4(a,b,c,d) XCONCAT2(CONCAT2(a,b),CONCAT2(c,d))
48#endif
49#endif
252b5132 50
69263e90
AM
51/* The word size used by BFD on the host. This may be 64 with a 32
52 bit target if the host is 64 bit, or if other 64 bit targets have
53 been selected with --enable-targets, or if --enable-64-bit-bfd. */
252b5132 54#define BFD_ARCH_SIZE @wordsize@
69263e90
AM
55
56/* The word size of the default bfd target. */
57#define BFD_DEFAULT_TARGET_SIZE @bfd_default_target_size@
58
252b5132
RH
59#define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@
60#if @BFD_HOST_64_BIT_DEFINED@
61#define BFD_HOST_64_BIT @BFD_HOST_64_BIT@
62#define BFD_HOST_U_64_BIT @BFD_HOST_U_64_BIT@
63#endif
64
65#if BFD_ARCH_SIZE >= 64
66#define BFD64
67#endif
68
69#ifndef INLINE
70#if __GNUC__ >= 2
71#define INLINE __inline__
72#else
73#define INLINE
74#endif
75#endif
76
b5f79c76 77/* Forward declaration. */
252b5132
RH
78typedef struct _bfd bfd;
79
80/* To squelch erroneous compiler warnings ("illegal pointer
81 combination") from the SVR3 compiler, we would like to typedef
82 boolean to int (it doesn't like functions which return boolean.
83 Making sure they are never implicitly declared to return int
84 doesn't seem to help). But this file is not configured based on
85 the host. */
86/* General rules: functions which are boolean return true on success
87 and false on failure (unless they're a predicate). -- bfd.doc */
88/* I'm sure this is going to break something and someone is going to
8546af74 89 force me to change it. */
252b5132
RH
90/* typedef enum boolean {false, true} boolean; */
91/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
92/* It gets worse if the host also defines a true/false enum... -sts */
93/* And even worse if your compiler has built-in boolean types... -law */
4e4770d0 94/* And even worse if your compiler provides a stdbool.h that conflicts
e108f470
DJ
95 with these definitions... gcc 2.95 and later do. If so, it must
96 be included first. -drow */
a1934524 97#if defined (__GNUG__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))
252b5132 98#define TRUE_FALSE_ALREADY_DEFINED
4e4770d0 99#else
e108f470
DJ
100#if defined (__bool_true_false_are_defined)
101/* We have <stdbool.h>. */
4e4770d0
DJ
102#define TRUE_FALSE_ALREADY_DEFINED
103#endif
252b5132
RH
104#endif
105#ifdef MPW
8546af74 106/* Pre-emptive strike - get the file with the enum. */
252b5132
RH
107#include <Types.h>
108#define TRUE_FALSE_ALREADY_DEFINED
109#endif /* MPW */
110#ifndef TRUE_FALSE_ALREADY_DEFINED
111typedef enum bfd_boolean {false, true} boolean;
112#define BFD_TRUE_FALSE
113#else
114/* Use enum names that will appear nowhere else. */
115typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;
116#endif
117
252b5132
RH
118/* Support for different sizes of target format ints and addresses.
119 If the type `long' is at least 64 bits, BFD_HOST_64BIT_LONG will be
120 set to 1 above. Otherwise, if gcc is being used, this code will
121 use gcc's "long long" type. Otherwise, BFD_HOST_64_BIT must be
122 defined above. */
123
124#ifndef BFD_HOST_64_BIT
125# if BFD_HOST_64BIT_LONG
126# define BFD_HOST_64_BIT long
127# define BFD_HOST_U_64_BIT unsigned long
128# else
129# ifdef __GNUC__
130# if __GNUC__ >= 2
131# define BFD_HOST_64_BIT long long
132# define BFD_HOST_U_64_BIT unsigned long long
133# endif /* __GNUC__ >= 2 */
134# endif /* ! defined (__GNUC__) */
135# endif /* ! BFD_HOST_64BIT_LONG */
136#endif /* ! defined (BFD_HOST_64_BIT) */
137
138#ifdef BFD64
139
140#ifndef BFD_HOST_64_BIT
141 #error No 64 bit integer type available
142#endif /* ! defined (BFD_HOST_64_BIT) */
143
144typedef BFD_HOST_U_64_BIT bfd_vma;
145typedef BFD_HOST_64_BIT bfd_signed_vma;
146typedef BFD_HOST_U_64_BIT bfd_size_type;
147typedef BFD_HOST_U_64_BIT symvalue;
148
149#ifndef fprintf_vma
150#if BFD_HOST_64BIT_LONG
151#define sprintf_vma(s,x) sprintf (s, "%016lx", x)
152#define fprintf_vma(f,x) fprintf (f, "%016lx", x)
153#else
154#define _bfd_int64_low(x) ((unsigned long) (((x) & 0xffffffff)))
155#define _bfd_int64_high(x) ((unsigned long) (((x) >> 32) & 0xffffffff))
156#define fprintf_vma(s,x) \
157 fprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
158#define sprintf_vma(s,x) \
159 sprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
160#endif
161#endif
162
163#else /* not BFD64 */
164
165/* Represent a target address. Also used as a generic unsigned type
166 which is guaranteed to be big enough to hold any arithmetic types
167 we need to deal with. */
168typedef unsigned long bfd_vma;
169
170/* A generic signed type which is guaranteed to be big enough to hold any
171 arithmetic types we need to deal with. Can be assumed to be compatible
172 with bfd_vma in the same way that signed and unsigned ints are compatible
173 (as parameters, in assignment, etc). */
174typedef long bfd_signed_vma;
175
176typedef unsigned long symvalue;
177typedef unsigned long bfd_size_type;
178
179/* Print a bfd_vma x on stream s. */
e60b52c6
KH
180#define fprintf_vma(s,x) fprintf (s, "%08lx", x)
181#define sprintf_vma(s,x) sprintf (s, "%08lx", x)
252b5132
RH
182
183#endif /* not BFD64 */
184
dc810e39
AM
185/* A pointer to a position in a file. */
186/* FIXME: This should be using off_t from <sys/types.h>.
187 For now, try to avoid breaking stuff by not including <sys/types.h> here.
188 This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
189 Probably the best long-term answer is to avoid using file_ptr AND off_t
190 in this header file, and to handle this in the BFD implementation
191 rather than in its interface. */
192/* typedef off_t file_ptr; */
193typedef bfd_signed_vma file_ptr;
194typedef bfd_vma ufile_ptr;
195
ae4221d7
L
196extern void bfd_sprintf_vma PARAMS ((bfd *, char *, bfd_vma));
197extern void bfd_fprintf_vma PARAMS ((bfd *, PTR, bfd_vma));
ae4221d7 198
252b5132 199#define printf_vma(x) fprintf_vma(stdout,x)
ae4221d7 200#define bfd_printf_vma(abfd,x) bfd_fprintf_vma (abfd,stdout,x)
252b5132
RH
201
202typedef unsigned int flagword; /* 32 bits of flags */
203typedef unsigned char bfd_byte;
204\f
b5f79c76 205/* File formats. */
252b5132 206
b5f79c76
NC
207typedef enum bfd_format
208{
209 bfd_unknown = 0, /* File format is unknown. */
210 bfd_object, /* Linker/assember/compiler output. */
211 bfd_archive, /* Object archive file. */
212 bfd_core, /* Core dump. */
213 bfd_type_end /* Marks the end; don't use it! */
214}
215bfd_format;
252b5132
RH
216
217/* Values that may appear in the flags field of a BFD. These also
218 appear in the object_flags field of the bfd_target structure, where
219 they indicate the set of flags used by that backend (not all flags
220 are meaningful for all object file formats) (FIXME: at the moment,
221 the object_flags values have mostly just been copied from backend
222 to another, and are not necessarily correct). */
223
224/* No flags. */
225#define BFD_NO_FLAGS 0x00
226
227/* BFD contains relocation entries. */
228#define HAS_RELOC 0x01
229
230/* BFD is directly executable. */
231#define EXEC_P 0x02
232
233/* BFD has line number information (basically used for F_LNNO in a
234 COFF header). */
235#define HAS_LINENO 0x04
236
237/* BFD has debugging information. */
238#define HAS_DEBUG 0x08
239
240/* BFD has symbols. */
241#define HAS_SYMS 0x10
242
243/* BFD has local symbols (basically used for F_LSYMS in a COFF
244 header). */
245#define HAS_LOCALS 0x20
246
247/* BFD is a dynamic object. */
248#define DYNAMIC 0x40
249
250/* Text section is write protected (if D_PAGED is not set, this is
251 like an a.out NMAGIC file) (the linker sets this by default, but
252 clears it for -r or -N). */
253#define WP_TEXT 0x80
254
255/* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
256 linker sets this by default, but clears it for -r or -n or -N). */
257#define D_PAGED 0x100
258
259/* BFD is relaxable (this means that bfd_relax_section may be able to
260 do something) (sometimes bfd_relax_section can do something even if
261 this is not set). */
262#define BFD_IS_RELAXABLE 0x200
263
264/* This may be set before writing out a BFD to request using a
265 traditional format. For example, this is used to request that when
266 writing out an a.out object the symbols not be hashed to eliminate
267 duplicates. */
268#define BFD_TRADITIONAL_FORMAT 0x400
269
270/* This flag indicates that the BFD contents are actually cached in
271 memory. If this is set, iostream points to a bfd_in_memory struct. */
272#define BFD_IN_MEMORY 0x800
026df7c5 273
86aba9db 274/* The sections in this BFD specify a memory page. */
026df7c5 275#define HAS_LOAD_PAGE 0x1000
252b5132 276\f
b5f79c76 277/* Symbols and relocation. */
252b5132
RH
278
279/* A count of carsyms (canonical archive symbols). */
280typedef unsigned long symindex;
281
282/* How to perform a relocation. */
283typedef const struct reloc_howto_struct reloc_howto_type;
284
285#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
286
287/* General purpose part of a symbol X;
288 target specific parts are in libcoff.h, libaout.h, etc. */
289
290#define bfd_get_section(x) ((x)->section)
291#define bfd_get_output_section(x) ((x)->section->output_section)
292#define bfd_set_section(x,y) ((x)->section) = (y)
293#define bfd_asymbol_base(x) ((x)->section->vma)
294#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
295#define bfd_asymbol_name(x) ((x)->name)
296/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
297#define bfd_asymbol_bfd(x) ((x)->the_bfd)
298#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
299
300/* A canonical archive symbol. */
b5f79c76
NC
301/* This is a type pun with struct ranlib on purpose! */
302typedef struct carsym
303{
252b5132 304 char *name;
b5f79c76
NC
305 file_ptr file_offset; /* Look here to find the file. */
306}
307carsym; /* To make these you call a carsymogen. */
252b5132 308
252b5132 309/* Used in generating armaps (archive tables of contents).
b5f79c76
NC
310 Perhaps just a forward definition would do? */
311struct orl /* Output ranlib. */
312{
313 char **name; /* Symbol name. */
314 union
315 {
dc810e39
AM
316 file_ptr pos;
317 bfd *abfd;
b5f79c76
NC
318 } u; /* bfd* or file position. */
319 int namidx; /* Index into string table. */
252b5132
RH
320};
321\f
b5f79c76
NC
322/* Linenumber stuff. */
323typedef struct lineno_cache_entry
324{
325 unsigned int line_number; /* Linenumber from start of function. */
326 union
327 {
328 struct symbol_cache_entry *sym; /* Function name. */
329 bfd_vma offset; /* Offset into section. */
252b5132 330 } u;
b5f79c76
NC
331}
332alent;
252b5132 333\f
b5f79c76 334/* Object and core file sections. */
252b5132
RH
335
336#define align_power(addr, align) \
e5b45b83 337 (((addr) + ((bfd_vma) 1 << (align)) - 1) & ((bfd_vma) -1 << (align)))
252b5132
RH
338
339typedef struct sec *sec_ptr;
340
341#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
342#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
aa3d5824 343#define bfd_get_section_lma(bfd, ptr) ((ptr)->lma + 0)
252b5132
RH
344#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
345#define bfd_section_name(bfd, ptr) ((ptr)->name)
346#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
347#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
348#define bfd_section_lma(bfd, ptr) ((ptr)->lma)
349#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
350#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
351#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
352
353#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
354
d45913a0 355#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), ((ptr)->user_set_vma = (unsigned int)true), true)
252b5132
RH
356#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
357#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
358
60bcf0fa 359typedef struct stat stat_type;
252b5132
RH
360\f
361typedef enum bfd_print_symbol
60bcf0fa 362{
252b5132
RH
363 bfd_print_symbol_name,
364 bfd_print_symbol_more,
365 bfd_print_symbol_all
366} bfd_print_symbol_type;
60bcf0fa 367
252b5132
RH
368/* Information about a symbol that nm needs. */
369
370typedef struct _symbol_info
371{
372 symvalue value;
373 char type;
dc810e39 374 const char *name; /* Symbol name. */
252b5132 375 unsigned char stab_type; /* Stab type. */
8546af74 376 char stab_other; /* Stab other. */
252b5132 377 short stab_desc; /* Stab desc. */
dc810e39 378 const char *stab_name; /* String for stab type. */
252b5132
RH
379} symbol_info;
380
381/* Get the name of a stabs type code. */
382
383extern const char *bfd_get_stab_name PARAMS ((int));
384\f
385/* Hash table routines. There is no way to free up a hash table. */
386
387/* An element in the hash table. Most uses will actually use a larger
388 structure, and an instance of this will be the first field. */
389
390struct bfd_hash_entry
391{
392 /* Next entry for this hash code. */
393 struct bfd_hash_entry *next;
394 /* String being hashed. */
395 const char *string;
396 /* Hash code. This is the full hash code, not the index into the
397 table. */
398 unsigned long hash;
399};
400
401/* A hash table. */
402
403struct bfd_hash_table
404{
405 /* The hash array. */
406 struct bfd_hash_entry **table;
407 /* The number of slots in the hash table. */
408 unsigned int size;
409 /* A function used to create new elements in the hash table. The
410 first entry is itself a pointer to an element. When this
411 function is first invoked, this pointer will be NULL. However,
412 having the pointer permits a hierarchy of method functions to be
413 built each of which calls the function in the superclass. Thus
414 each function should be written to allocate a new block of memory
415 only if the argument is NULL. */
416 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
417 struct bfd_hash_table *,
418 const char *));
419 /* An objalloc for this hash table. This is a struct objalloc *,
420 but we use PTR to avoid requiring the inclusion of objalloc.h. */
421 PTR memory;
422};
423
424/* Initialize a hash table. */
425extern boolean bfd_hash_table_init
426 PARAMS ((struct bfd_hash_table *,
427 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
428 struct bfd_hash_table *,
429 const char *)));
430
431/* Initialize a hash table specifying a size. */
432extern boolean bfd_hash_table_init_n
433 PARAMS ((struct bfd_hash_table *,
434 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
435 struct bfd_hash_table *,
436 const char *),
437 unsigned int size));
438
439/* Free up a hash table. */
440extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
441
442/* Look up a string in a hash table. If CREATE is true, a new entry
443 will be created for this string if one does not already exist. The
444 COPY argument must be true if this routine should copy the string
445 into newly allocated memory when adding an entry. */
446extern struct bfd_hash_entry *bfd_hash_lookup
447 PARAMS ((struct bfd_hash_table *, const char *, boolean create,
448 boolean copy));
449
450/* Replace an entry in a hash table. */
451extern void bfd_hash_replace
452 PARAMS ((struct bfd_hash_table *, struct bfd_hash_entry *old,
453 struct bfd_hash_entry *nw));
454
455/* Base method for creating a hash table entry. */
456extern struct bfd_hash_entry *bfd_hash_newfunc
457 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
458 const char *));
459
460/* Grab some space for a hash table entry. */
461extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
462 unsigned int));
463
464/* Traverse a hash table in a random order, calling a function on each
465 element. If the function returns false, the traversal stops. The
466 INFO argument is passed to the function. */
467extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
468 boolean (*) (struct bfd_hash_entry *,
469 PTR),
470 PTR info));
252b5132
RH
471
472#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
e43d48cc 473
b5f79c76 474/* User program access to BFD facilities. */
252b5132
RH
475
476/* Direct I/O routines, for programs which know more about the object
477 file than BFD does. Use higher level routines if possible. */
478
dc810e39
AM
479extern bfd_size_type bfd_bread PARAMS ((PTR, bfd_size_type, bfd *));
480extern bfd_size_type bfd_bwrite PARAMS ((const PTR, bfd_size_type, bfd *));
481extern int bfd_seek PARAMS ((bfd *, file_ptr, int));
482extern ufile_ptr bfd_tell PARAMS ((bfd *));
483extern int bfd_flush PARAMS ((bfd *));
484extern int bfd_stat PARAMS ((bfd *, struct stat *));
485
486/* Deprecated old routines. */
487#if __GNUC__
488#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
489 (warn_deprecated ("bfd_read", __FILE__, __LINE__, __FUNCTION__), \
490 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
491#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
492 (warn_deprecated ("bfd_write", __FILE__, __LINE__, __FUNCTION__), \
493 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
494#else
495#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
496 (warn_deprecated ("bfd_read", (const char *) 0, 0, (const char *) 0), \
497 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
498#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
499 (warn_deprecated ("bfd_write", (const char *) 0, 0, (const char *) 0),\
500 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
501#endif
502extern void warn_deprecated
503 PARAMS ((const char *, const char *, int, const char *));
252b5132 504
252b5132
RH
505/* Cast from const char * to char * so that caller can assign to
506 a char * without a warning. */
507#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
508#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
509#define bfd_get_format(abfd) ((abfd)->format)
510#define bfd_get_target(abfd) ((abfd)->xvec->name)
511#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
9bd09e22
ND
512#define bfd_family_coff(abfd) \
513 (bfd_get_flavour (abfd) == bfd_target_coff_flavour || \
514 bfd_get_flavour (abfd) == bfd_target_xcoff_flavour)
252b5132
RH
515#define bfd_big_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_BIG)
516#define bfd_little_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_LITTLE)
517#define bfd_header_big_endian(abfd) \
518 ((abfd)->xvec->header_byteorder == BFD_ENDIAN_BIG)
519#define bfd_header_little_endian(abfd) \
520 ((abfd)->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
521#define bfd_get_file_flags(abfd) ((abfd)->flags)
522#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
523#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
524#define bfd_my_archive(abfd) ((abfd)->my_archive)
525#define bfd_has_map(abfd) ((abfd)->has_armap)
526
527#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
528#define bfd_usrdata(abfd) ((abfd)->usrdata)
529
530#define bfd_get_start_address(abfd) ((abfd)->start_address)
531#define bfd_get_symcount(abfd) ((abfd)->symcount)
532#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
533#define bfd_count_sections(abfd) ((abfd)->section_count)
534
1f70368c
DJ
535#define bfd_get_dynamic_symcount(abfd) ((abfd)->dynsymcount)
536
252b5132
RH
537#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
538
eb6e10cb 539#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean) (bool)), true)
252b5132 540
d436a9b3
FCE
541extern boolean bfd_cache_close PARAMS ((bfd *abfd));
542/* NB: This declaration should match the autogenerated one in libbfd.h. */
543
252b5132
RH
544extern boolean bfd_record_phdr
545 PARAMS ((bfd *, unsigned long, boolean, flagword, boolean, bfd_vma,
546 boolean, boolean, unsigned int, struct sec **));
547
548/* Byte swapping routines. */
549
550bfd_vma bfd_getb64 PARAMS ((const unsigned char *));
551bfd_vma bfd_getl64 PARAMS ((const unsigned char *));
552bfd_signed_vma bfd_getb_signed_64 PARAMS ((const unsigned char *));
553bfd_signed_vma bfd_getl_signed_64 PARAMS ((const unsigned char *));
554bfd_vma bfd_getb32 PARAMS ((const unsigned char *));
555bfd_vma bfd_getl32 PARAMS ((const unsigned char *));
556bfd_signed_vma bfd_getb_signed_32 PARAMS ((const unsigned char *));
557bfd_signed_vma bfd_getl_signed_32 PARAMS ((const unsigned char *));
558bfd_vma bfd_getb16 PARAMS ((const unsigned char *));
559bfd_vma bfd_getl16 PARAMS ((const unsigned char *));
560bfd_signed_vma bfd_getb_signed_16 PARAMS ((const unsigned char *));
561bfd_signed_vma bfd_getl_signed_16 PARAMS ((const unsigned char *));
562void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
563void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
564void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
565void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
566void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
567void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
8c603c85
NC
568
569/* Byte swapping routines which take size and endiannes as arguments. */
570
571bfd_vma bfd_get_bits PARAMS ((bfd_byte *, int, boolean));
572void bfd_put_bits PARAMS ((bfd_vma, bfd_byte *, int, boolean));
252b5132
RH
573\f
574/* Externally visible ECOFF routines. */
575
576#if defined(__STDC__) || defined(ALMOST_STDC)
577struct ecoff_debug_info;
578struct ecoff_debug_swap;
579struct ecoff_extr;
580struct symbol_cache_entry;
581struct bfd_link_info;
582struct bfd_link_hash_entry;
583struct bfd_elf_version_tree;
584#endif
585extern bfd_vma bfd_ecoff_get_gp_value PARAMS ((bfd * abfd));
586extern boolean bfd_ecoff_set_gp_value PARAMS ((bfd *abfd, bfd_vma gp_value));
587extern boolean bfd_ecoff_set_regmasks
588 PARAMS ((bfd *abfd, unsigned long gprmask, unsigned long fprmask,
589 unsigned long *cprmask));
590extern PTR bfd_ecoff_debug_init
591 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
592 const struct ecoff_debug_swap *output_swap,
593 struct bfd_link_info *));
594extern void bfd_ecoff_debug_free
595 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
596 const struct ecoff_debug_swap *output_swap,
597 struct bfd_link_info *));
598extern boolean bfd_ecoff_debug_accumulate
599 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
600 const struct ecoff_debug_swap *output_swap,
601 bfd *input_bfd, struct ecoff_debug_info *input_debug,
602 const struct ecoff_debug_swap *input_swap,
603 struct bfd_link_info *));
604extern boolean bfd_ecoff_debug_accumulate_other
605 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
606 const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
607 struct bfd_link_info *));
608extern boolean bfd_ecoff_debug_externals
609 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
610 const struct ecoff_debug_swap *swap,
611 boolean relocateable,
612 boolean (*get_extr) (struct symbol_cache_entry *,
613 struct ecoff_extr *),
614 void (*set_index) (struct symbol_cache_entry *,
615 bfd_size_type)));
616extern boolean bfd_ecoff_debug_one_external
617 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
618 const struct ecoff_debug_swap *swap,
619 const char *name, struct ecoff_extr *esym));
620extern bfd_size_type bfd_ecoff_debug_size
621 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
622 const struct ecoff_debug_swap *swap));
623extern boolean bfd_ecoff_write_debug
624 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
625 const struct ecoff_debug_swap *swap, file_ptr where));
626extern boolean bfd_ecoff_write_accumulated_debug
627 PARAMS ((PTR handle, bfd *abfd, struct ecoff_debug_info *debug,
628 const struct ecoff_debug_swap *swap,
629 struct bfd_link_info *info, file_ptr where));
630extern boolean bfd_mips_ecoff_create_embedded_relocs
631 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
632 char **));
633
634/* Externally visible ELF routines. */
635
636struct bfd_link_needed_list
637{
638 struct bfd_link_needed_list *next;
639 bfd *by;
640 const char *name;
641};
642
643extern boolean bfd_elf32_record_link_assignment
644 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
645extern boolean bfd_elf64_record_link_assignment
646 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
647extern struct bfd_link_needed_list *bfd_elf_get_needed_list
648 PARAMS ((bfd *, struct bfd_link_info *));
649extern boolean bfd_elf_get_bfd_needed_list
650 PARAMS ((bfd *, struct bfd_link_needed_list **));
651extern boolean bfd_elf32_size_dynamic_sections
99293407 652 PARAMS ((bfd *, const char *, const char *, const char *,
252b5132
RH
653 const char * const *, struct bfd_link_info *, struct sec **,
654 struct bfd_elf_version_tree *));
655extern boolean bfd_elf64_size_dynamic_sections
99293407 656 PARAMS ((bfd *, const char *, const char *, const char *,
252b5132
RH
657 const char * const *, struct bfd_link_info *, struct sec **,
658 struct bfd_elf_version_tree *));
659extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *));
74816898 660extern void bfd_elf_set_dt_needed_soname PARAMS ((bfd *, const char *));
252b5132 661extern const char *bfd_elf_get_dt_soname PARAMS ((bfd *));
a963dc6a
L
662extern struct bfd_link_needed_list *bfd_elf_get_runpath_list
663 PARAMS ((bfd *, struct bfd_link_info *));
73d074b4 664extern boolean bfd_elf32_discard_info
65765700 665 PARAMS ((bfd *, struct bfd_link_info *));
73d074b4 666extern boolean bfd_elf64_discard_info
65765700 667 PARAMS ((bfd *, struct bfd_link_info *));
252b5132 668
7f8d5fc9
ILT
669/* Return an upper bound on the number of bytes required to store a
670 copy of ABFD's program header table entries. Return -1 if an error
671 occurs; bfd_get_error will return an appropriate code. */
672extern long bfd_get_elf_phdr_upper_bound PARAMS ((bfd *abfd));
673
674/* Copy ABFD's program header table entries to *PHDRS. The entries
675 will be stored as an array of Elf_Internal_Phdr structures, as
676 defined in include/elf/internal.h. To find out how large the
677 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
678
679 Return the number of program header table entries read, or -1 if an
680 error occurs; bfd_get_error will return an appropriate code. */
681extern int bfd_get_elf_phdrs PARAMS ((bfd *abfd, void *phdrs));
682
3425c182 683/* Return the arch_size field of an elf bfd, or -1 if not elf. */
125c4a69 684extern int bfd_get_arch_size PARAMS ((bfd *));
3425c182 685
8546af74 686/* Return true if address "naturally" sign extends, or -1 if not elf. */
125c4a69 687extern int bfd_get_sign_extend_vma PARAMS ((bfd *));
6d9019e4 688
0752970e
NC
689extern boolean bfd_m68k_elf32_create_embedded_relocs
690 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
691 char **));
030d18fb
CD
692extern boolean bfd_mips_elf32_create_embedded_relocs
693 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
694 char **));
0752970e 695
252b5132
RH
696/* SunOS shared library support routines for the linker. */
697
698extern struct bfd_link_needed_list *bfd_sunos_get_needed_list
699 PARAMS ((bfd *, struct bfd_link_info *));
700extern boolean bfd_sunos_record_link_assignment
701 PARAMS ((bfd *, struct bfd_link_info *, const char *));
702extern boolean bfd_sunos_size_dynamic_sections
703 PARAMS ((bfd *, struct bfd_link_info *, struct sec **, struct sec **,
704 struct sec **));
705
706/* Linux shared library support routines for the linker. */
707
708extern boolean bfd_i386linux_size_dynamic_sections
709 PARAMS ((bfd *, struct bfd_link_info *));
710extern boolean bfd_m68klinux_size_dynamic_sections
711 PARAMS ((bfd *, struct bfd_link_info *));
712extern boolean bfd_sparclinux_size_dynamic_sections
713 PARAMS ((bfd *, struct bfd_link_info *));
714
715/* mmap hacks */
716
717struct _bfd_window_internal;
718typedef struct _bfd_window_internal bfd_window_internal;
719
b5f79c76
NC
720typedef struct _bfd_window
721{
252b5132
RH
722 /* What the user asked for. */
723 PTR data;
724 bfd_size_type size;
725 /* The actual window used by BFD. Small user-requested read-only
726 regions sharing a page may share a single window into the object
727 file. Read-write versions shouldn't until I've fixed things to
728 keep track of which portions have been claimed by the
729 application; don't want to give the same region back when the
730 application wants two writable copies! */
731 struct _bfd_window_internal *i;
b5f79c76
NC
732}
733bfd_window;
252b5132
RH
734
735extern void bfd_init_window PARAMS ((bfd_window *));
736extern void bfd_free_window PARAMS ((bfd_window *));
737extern boolean bfd_get_file_window
738 PARAMS ((bfd *, file_ptr, bfd_size_type, bfd_window *, boolean));
739
740/* XCOFF support routines for the linker. */
741
742extern boolean bfd_xcoff_link_record_set
743 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
744 bfd_size_type));
745extern boolean bfd_xcoff_import_symbol
746 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
1fdf0249 747 bfd_vma, const char *, const char *, const char *, unsigned int));
252b5132 748extern boolean bfd_xcoff_export_symbol
1fdf0249 749 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *));
252b5132
RH
750extern boolean bfd_xcoff_link_count_reloc
751 PARAMS ((bfd *, struct bfd_link_info *, const char *));
752extern boolean bfd_xcoff_record_link_assignment
753 PARAMS ((bfd *, struct bfd_link_info *, const char *));
754extern boolean bfd_xcoff_size_dynamic_sections
755 PARAMS ((bfd *, struct bfd_link_info *, const char *, const char *,
756 unsigned long, unsigned long, unsigned long, boolean,
69f284c7 757 int, boolean, boolean, struct sec **, boolean));
9a4c7f16 758extern boolean bfd_xcoff_link_generate_rtinit
69f284c7 759 PARAMS ((bfd *, const char *, const char *, boolean));
252b5132 760
54327882
AM
761/* XCOFF support routines for ar. */
762extern boolean bfd_xcoff_ar_archive_set_magic PARAMS ((bfd *, char *));
763
252b5132
RH
764/* Externally visible COFF routines. */
765
766#if defined(__STDC__) || defined(ALMOST_STDC)
767struct internal_syment;
768union internal_auxent;
769#endif
770
771extern boolean bfd_coff_get_syment
772 PARAMS ((bfd *, struct symbol_cache_entry *, struct internal_syment *));
773
774extern boolean bfd_coff_get_auxent
775 PARAMS ((bfd *, struct symbol_cache_entry *, int, union internal_auxent *));
776
777extern boolean bfd_coff_set_symbol_class
778 PARAMS ((bfd *, struct symbol_cache_entry *, unsigned int));
779
3eb6f68f
NC
780extern boolean bfd_m68k_coff_create_embedded_relocs
781 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
782 char **));
783
252b5132
RH
784/* ARM Interworking support. Called from linker. */
785extern boolean bfd_arm_allocate_interworking_sections
786 PARAMS ((struct bfd_link_info *));
787
788extern boolean bfd_arm_process_before_allocation
789 PARAMS ((bfd *, struct bfd_link_info *, int));
790
791extern boolean bfd_arm_get_bfd_for_interworking
792 PARAMS ((bfd *, struct bfd_link_info *));
793
86033394
NC
794/* PE ARM Interworking support. Called from linker. */
795extern boolean bfd_arm_pe_allocate_interworking_sections
796 PARAMS ((struct bfd_link_info *));
797
798extern boolean bfd_arm_pe_process_before_allocation
799 PARAMS ((bfd *, struct bfd_link_info *, int));
800
801extern boolean bfd_arm_pe_get_bfd_for_interworking
802 PARAMS ((bfd *, struct bfd_link_info *));
803
252b5132 804/* ELF ARM Interworking support. Called from linker. */
67e5d3d6
ILT
805extern boolean bfd_elf32_arm_allocate_interworking_sections
806 PARAMS ((struct bfd_link_info *));
807
808extern boolean bfd_elf32_arm_process_before_allocation
809 PARAMS ((bfd *, struct bfd_link_info *, int));
810
811extern boolean bfd_elf32_arm_get_bfd_for_interworking
812 PARAMS ((bfd *, struct bfd_link_info *));
252b5132 813
8afb0e02
NC
814extern boolean bfd_elf32_arm_add_glue_sections_to_bfd
815 PARAMS ((bfd *, struct bfd_link_info *));
816
8546af74 817/* TI COFF load page support. */
b9af77f5
TW
818extern void bfd_ticoff_set_section_load_page
819 PARAMS ((struct sec *, int));
820
821extern int bfd_ticoff_get_section_load_page
822 PARAMS ((struct sec *));
823
e61463e1 824/* Extracted from init.c. */
c02e7c3e 825void
252b5132
RH
826bfd_init PARAMS ((void));
827
e61463e1 828/* Extracted from opncls.c. */
252b5132 829bfd *
dc810e39 830bfd_openr PARAMS ((const char *filename, const char *target));
252b5132
RH
831
832bfd *
dc810e39 833bfd_fdopenr PARAMS ((const char *filename, const char *target, int fd));
252b5132
RH
834
835bfd *
836bfd_openstreamr PARAMS ((const char *, const char *, PTR));
837
838bfd *
dc810e39 839bfd_openw PARAMS ((const char *filename, const char *target));
252b5132 840
c02e7c3e 841boolean
252b5132
RH
842bfd_close PARAMS ((bfd *abfd));
843
c02e7c3e 844boolean
252b5132
RH
845bfd_close_all_done PARAMS ((bfd *));
846
847bfd *
dc810e39 848bfd_create PARAMS ((const char *filename, bfd *templ));
252b5132 849
c02e7c3e 850boolean
252b5132
RH
851bfd_make_writable PARAMS ((bfd *abfd));
852
c02e7c3e 853boolean
252b5132
RH
854bfd_make_readable PARAMS ((bfd *abfd));
855
e61463e1 856/* Extracted from libbfd.c. */
541389e2 857
52b219b5 858/* Byte swapping macros for user section data. */
252b5132
RH
859
860#define bfd_put_8(abfd, val, ptr) \
0d2bcfaf 861 ((void) (*((unsigned char *) (ptr)) = (unsigned char) (val)))
252b5132
RH
862#define bfd_put_signed_8 \
863 bfd_put_8
864#define bfd_get_8(abfd, ptr) \
dc810e39 865 (*(unsigned char *) (ptr) & 0xff)
252b5132 866#define bfd_get_signed_8(abfd, ptr) \
dc810e39 867 (((*(unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
252b5132
RH
868
869#define bfd_put_16(abfd, val, ptr) \
870 BFD_SEND(abfd, bfd_putx16, ((val),(ptr)))
871#define bfd_put_signed_16 \
872 bfd_put_16
873#define bfd_get_16(abfd, ptr) \
874 BFD_SEND(abfd, bfd_getx16, (ptr))
875#define bfd_get_signed_16(abfd, ptr) \
876 BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
877
878#define bfd_put_32(abfd, val, ptr) \
879 BFD_SEND(abfd, bfd_putx32, ((val),(ptr)))
880#define bfd_put_signed_32 \
881 bfd_put_32
882#define bfd_get_32(abfd, ptr) \
883 BFD_SEND(abfd, bfd_getx32, (ptr))
884#define bfd_get_signed_32(abfd, ptr) \
885 BFD_SEND(abfd, bfd_getx_signed_32, (ptr))
886
887#define bfd_put_64(abfd, val, ptr) \
888 BFD_SEND(abfd, bfd_putx64, ((val), (ptr)))
889#define bfd_put_signed_64 \
890 bfd_put_64
891#define bfd_get_64(abfd, ptr) \
892 BFD_SEND(abfd, bfd_getx64, (ptr))
893#define bfd_get_signed_64(abfd, ptr) \
894 BFD_SEND(abfd, bfd_getx_signed_64, (ptr))
895
c7ac6ff8 896#define bfd_get(bits, abfd, ptr) \
09c1cc88 897 ( (bits) == 8 ? (bfd_vma) bfd_get_8 (abfd, ptr) \
c7ac6ff8
MM
898 : (bits) == 16 ? bfd_get_16 (abfd, ptr) \
899 : (bits) == 32 ? bfd_get_32 (abfd, ptr) \
900 : (bits) == 64 ? bfd_get_64 (abfd, ptr) \
09c1cc88 901 : (abort (), (bfd_vma) - 1))
c7ac6ff8
MM
902
903#define bfd_put(bits, abfd, val, ptr) \
09c1cc88 904 ( (bits) == 8 ? bfd_put_8 (abfd, val, ptr) \
c7ac6ff8
MM
905 : (bits) == 16 ? bfd_put_16 (abfd, val, ptr) \
906 : (bits) == 32 ? bfd_put_32 (abfd, val, ptr) \
907 : (bits) == 64 ? bfd_put_64 (abfd, val, ptr) \
908 : (abort (), (void) 0))
909
541389e2 910
52b219b5 911/* Byte swapping macros for file header data. */
252b5132
RH
912
913#define bfd_h_put_8(abfd, val, ptr) \
dc810e39 914 bfd_put_8 (abfd, val, ptr)
252b5132 915#define bfd_h_put_signed_8(abfd, val, ptr) \
dc810e39 916 bfd_put_8 (abfd, val, ptr)
252b5132 917#define bfd_h_get_8(abfd, ptr) \
dc810e39 918 bfd_get_8 (abfd, ptr)
252b5132 919#define bfd_h_get_signed_8(abfd, ptr) \
dc810e39 920 bfd_get_signed_8 (abfd, ptr)
252b5132
RH
921
922#define bfd_h_put_16(abfd, val, ptr) \
dc810e39 923 BFD_SEND (abfd, bfd_h_putx16, (val, ptr))
252b5132 924#define bfd_h_put_signed_16 \
dc810e39 925 bfd_h_put_16
252b5132 926#define bfd_h_get_16(abfd, ptr) \
dc810e39 927 BFD_SEND (abfd, bfd_h_getx16, (ptr))
252b5132 928#define bfd_h_get_signed_16(abfd, ptr) \
dc810e39 929 BFD_SEND (abfd, bfd_h_getx_signed_16, (ptr))
252b5132
RH
930
931#define bfd_h_put_32(abfd, val, ptr) \
dc810e39 932 BFD_SEND (abfd, bfd_h_putx32, (val, ptr))
252b5132 933#define bfd_h_put_signed_32 \
dc810e39 934 bfd_h_put_32
252b5132 935#define bfd_h_get_32(abfd, ptr) \
dc810e39 936 BFD_SEND (abfd, bfd_h_getx32, (ptr))
252b5132 937#define bfd_h_get_signed_32(abfd, ptr) \
dc810e39 938 BFD_SEND (abfd, bfd_h_getx_signed_32, (ptr))
252b5132
RH
939
940#define bfd_h_put_64(abfd, val, ptr) \
dc810e39 941 BFD_SEND (abfd, bfd_h_putx64, (val, ptr))
252b5132 942#define bfd_h_put_signed_64 \
dc810e39 943 bfd_h_put_64
252b5132 944#define bfd_h_get_64(abfd, ptr) \
dc810e39 945 BFD_SEND (abfd, bfd_h_getx64, (ptr))
252b5132 946#define bfd_h_get_signed_64(abfd, ptr) \
dc810e39
AM
947 BFD_SEND (abfd, bfd_h_getx_signed_64, (ptr))
948
949/* Refinements on the above, which should eventually go away. Save
950 cluttering the source with (bfd_vma) and (bfd_byte *) casts. */
951
952#define H_PUT_64(abfd, val, where) \
953 bfd_h_put_64 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
954
955#define H_PUT_32(abfd, val, where) \
956 bfd_h_put_32 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
957
958#define H_PUT_16(abfd, val, where) \
959 bfd_h_put_16 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
960
961#define H_PUT_8 bfd_h_put_8
962
963#define H_PUT_S64(abfd, val, where) \
964 bfd_h_put_signed_64 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
965
966#define H_PUT_S32(abfd, val, where) \
967 bfd_h_put_signed_32 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
968
969#define H_PUT_S16(abfd, val, where) \
970 bfd_h_put_signed_16 ((abfd), (bfd_vma) (val), (bfd_byte *) (where))
971
972#define H_PUT_S8 bfd_h_put_signed_8
973
974#define H_GET_64(abfd, where) \
975 bfd_h_get_64 ((abfd), (bfd_byte *) (where))
976
977#define H_GET_32(abfd, where) \
978 bfd_h_get_32 ((abfd), (bfd_byte *) (where))
979
980#define H_GET_16(abfd, where) \
981 bfd_h_get_16 ((abfd), (bfd_byte *) (where))
982
983#define H_GET_8 bfd_h_get_8
984
985#define H_GET_S64(abfd, where) \
986 bfd_h_get_signed_64 ((abfd), (bfd_byte *) (where))
987
988#define H_GET_S32(abfd, where) \
989 bfd_h_get_signed_32 ((abfd), (bfd_byte *) (where))
990
991#define H_GET_S16(abfd, where) \
992 bfd_h_get_signed_16 ((abfd), (bfd_byte *) (where))
993
994#define H_GET_S8 bfd_h_get_signed_8
995
252b5132 996
93509525
KD
997/* Extracted from bfdio.c. */
998long
999bfd_get_mtime PARAMS ((bfd *abfd));
1000
1001long
1002bfd_get_size PARAMS ((bfd *abfd));
1003
1004/* Extracted from bfdwin.c. */
e61463e1 1005/* Extracted from section.c. */
52b219b5
AM
1006/* This structure is used for a comdat section, as in PE. A comdat
1007 section is associated with a particular symbol. When the linker
1008 sees a comdat section, it keeps only one of the sections with a
1009 given name and associated with a given symbol. */
022a5af4
ILT
1010
1011struct bfd_comdat_info
1012{
52b219b5 1013 /* The name of the symbol associated with a comdat section. */
022a5af4
ILT
1014 const char *name;
1015
52b219b5 1016 /* The local symbol table index of the symbol associated with a
022a5af4
ILT
1017 comdat section. This is only meaningful to the object file format
1018 specific code; it is not an index into the list returned by
1019 bfd_canonicalize_symtab. */
1020 long symbol;
022a5af4
ILT
1021};
1022
252b5132
RH
1023typedef struct sec
1024{
52b219b5
AM
1025 /* The name of the section; the name isn't a copy, the pointer is
1026 the same as that passed to bfd_make_section. */
52b219b5
AM
1027 const char *name;
1028
1029 /* A unique sequence number. */
52b219b5 1030 int id;
252b5132 1031
dbb410c3 1032 /* Which section in the bfd; 0..n-1 as sections are created in a bfd. */
52b219b5 1033 int index;
252b5132 1034
52b219b5 1035 /* The next section in the list belonging to the BFD, or NULL. */
52b219b5 1036 struct sec *next;
252b5132 1037
52b219b5
AM
1038 /* The field flags contains attributes of the section. Some
1039 flags are read in from the object file, and some are
1040 synthesized from other information. */
52b219b5 1041 flagword flags;
252b5132
RH
1042
1043#define SEC_NO_FLAGS 0x000
1044
52b219b5
AM
1045 /* Tells the OS to allocate space for this section when loading.
1046 This is clear for a section containing debug information only. */
252b5132
RH
1047#define SEC_ALLOC 0x001
1048
52b219b5
AM
1049 /* Tells the OS to load the section from the file when loading.
1050 This is clear for a .bss section. */
252b5132
RH
1051#define SEC_LOAD 0x002
1052
52b219b5
AM
1053 /* The section contains data still to be relocated, so there is
1054 some relocation information too. */
252b5132
RH
1055#define SEC_RELOC 0x004
1056
65db3b0d
RH
1057 /* ELF reserves 4 processor specific bits and 8 operating system
1058 specific bits in sh_flags; at present we can get away with just
1059 one in communicating between the assembler and BFD, but this
1060 isn't a good long-term solution. */
1061#define SEC_ARCH_BIT_0 0x008
252b5132 1062
52b219b5 1063 /* A signal to the OS that the section contains read only data. */
252b5132
RH
1064#define SEC_READONLY 0x010
1065
52b219b5 1066 /* The section contains code only. */
252b5132
RH
1067#define SEC_CODE 0x020
1068
52b219b5 1069 /* The section contains data only. */
252b5132
RH
1070#define SEC_DATA 0x040
1071
52b219b5 1072 /* The section will reside in ROM. */
252b5132
RH
1073#define SEC_ROM 0x080
1074
52b219b5
AM
1075 /* The section contains constructor information. This section
1076 type is used by the linker to create lists of constructors and
1077 destructors used by <<g++>>. When a back end sees a symbol
1078 which should be used in a constructor list, it creates a new
1079 section for the type of name (e.g., <<__CTOR_LIST__>>), attaches
1080 the symbol to it, and builds a relocation. To build the lists
1081 of constructors, all the linker has to do is catenate all the
1082 sections called <<__CTOR_LIST__>> and relocate the data
1083 contained within - exactly the operations it would peform on
1084 standard data. */
252b5132
RH
1085#define SEC_CONSTRUCTOR 0x100
1086
52b219b5
AM
1087 /* The section has contents - a data section could be
1088 <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>; a debug section could be
1089 <<SEC_HAS_CONTENTS>> */
252b5132
RH
1090#define SEC_HAS_CONTENTS 0x200
1091
52b219b5
AM
1092 /* An instruction to the linker to not output the section
1093 even if it has information which would normally be written. */
252b5132
RH
1094#define SEC_NEVER_LOAD 0x400
1095
52b219b5
AM
1096 /* The section is a COFF shared library section. This flag is
1097 only for the linker. If this type of section appears in
1098 the input file, the linker must copy it to the output file
1099 without changing the vma or size. FIXME: Although this
1100 was originally intended to be general, it really is COFF
1101 specific (and the flag was renamed to indicate this). It
1102 might be cleaner to have some more general mechanism to
1103 allow the back end to control what the linker does with
1104 sections. */
252b5132
RH
1105#define SEC_COFF_SHARED_LIBRARY 0x800
1106
13ae64f3
JJ
1107 /* The section contains thread local data. */
1108#define SEC_THREAD_LOCAL 0x1000
1109
1bd91689
AM
1110 /* The section has GOT references. This flag is only for the
1111 linker, and is currently only used by the elf32-hppa back end.
1112 It will be set if global offset table references were detected
1113 in this section, which indicate to the linker that the section
1114 contains PIC code, and must be handled specially when doing a
1115 static link. */
1116#define SEC_HAS_GOT_REF 0x4000
1117
52b219b5
AM
1118 /* The section contains common symbols (symbols may be defined
1119 multiple times, the value of a symbol is the amount of
1120 space it requires, and the largest symbol value is the one
1121 used). Most targets have exactly one of these (which we
1122 translate to bfd_com_section_ptr), but ECOFF has two. */
252b5132
RH
1123#define SEC_IS_COMMON 0x8000
1124
52b219b5
AM
1125 /* The section contains only debugging information. For
1126 example, this is set for ELF .debug and .stab sections.
1127 strip tests this flag to see if a section can be
1128 discarded. */
252b5132
RH
1129#define SEC_DEBUGGING 0x10000
1130
52b219b5
AM
1131 /* The contents of this section are held in memory pointed to
1132 by the contents field. This is checked by bfd_get_section_contents,
1133 and the data is retrieved from memory if appropriate. */
252b5132
RH
1134#define SEC_IN_MEMORY 0x20000
1135
52b219b5
AM
1136 /* The contents of this section are to be excluded by the
1137 linker for executable and shared objects unless those
1138 objects are to be further relocated. */
252b5132
RH
1139#define SEC_EXCLUDE 0x40000
1140
dbb410c3
AM
1141 /* The contents of this section are to be sorted based on the sum of
1142 the symbol and addend values specified by the associated relocation
1143 entries. Entries without associated relocation entries will be
1144 appended to the end of the section in an unspecified order. */
252b5132
RH
1145#define SEC_SORT_ENTRIES 0x80000
1146
52b219b5
AM
1147 /* When linking, duplicate sections of the same name should be
1148 discarded, rather than being combined into a single section as
1149 is usually done. This is similar to how common symbols are
1150 handled. See SEC_LINK_DUPLICATES below. */
252b5132
RH
1151#define SEC_LINK_ONCE 0x100000
1152
52b219b5
AM
1153 /* If SEC_LINK_ONCE is set, this bitfield describes how the linker
1154 should handle duplicate sections. */
252b5132
RH
1155#define SEC_LINK_DUPLICATES 0x600000
1156
52b219b5
AM
1157 /* This value for SEC_LINK_DUPLICATES means that duplicate
1158 sections with the same name should simply be discarded. */
252b5132
RH
1159#define SEC_LINK_DUPLICATES_DISCARD 0x0
1160
52b219b5
AM
1161 /* This value for SEC_LINK_DUPLICATES means that the linker
1162 should warn if there are any duplicate sections, although
1163 it should still only link one copy. */
252b5132
RH
1164#define SEC_LINK_DUPLICATES_ONE_ONLY 0x200000
1165
52b219b5
AM
1166 /* This value for SEC_LINK_DUPLICATES means that the linker
1167 should warn if any duplicate sections are a different size. */
252b5132
RH
1168#define SEC_LINK_DUPLICATES_SAME_SIZE 0x400000
1169
52b219b5
AM
1170 /* This value for SEC_LINK_DUPLICATES means that the linker
1171 should warn if any duplicate sections contain different
1172 contents. */
252b5132
RH
1173#define SEC_LINK_DUPLICATES_SAME_CONTENTS 0x600000
1174
52b219b5
AM
1175 /* This section was created by the linker as part of dynamic
1176 relocation or other arcane processing. It is skipped when
1177 going through the first-pass output, trusting that someone
1178 else up the line will take care of it later. */
252b5132
RH
1179#define SEC_LINKER_CREATED 0x800000
1180
52b219b5 1181 /* This section should not be subject to garbage collection. */
252b5132
RH
1182#define SEC_KEEP 0x1000000
1183
52b219b5
AM
1184 /* This section contains "short" data, and should be placed
1185 "near" the GP. */
851edbaf 1186#define SEC_SMALL_DATA 0x2000000
0c3ff40b 1187
52b219b5
AM
1188 /* This section contains data which may be shared with other
1189 executables or shared objects. */
bd826630
ILT
1190#define SEC_SHARED 0x4000000
1191
52b219b5
AM
1192 /* When a section with this flag is being linked, then if the size of
1193 the input section is less than a page, it should not cross a page
1194 boundary. If the size of the input section is one page or more, it
1195 should be aligned on a page boundary. */
34cbe64e
TW
1196#define SEC_BLOCK 0x8000000
1197
52b219b5
AM
1198 /* Conditionally link this section; do not link if there are no
1199 references found to any symbol in the section. */
34cbe64e
TW
1200#define SEC_CLINK 0x10000000
1201
f5fa8ca2
JJ
1202 /* Attempt to merge identical entities in the section.
1203 Entity size is given in the entsize field. */
1204#define SEC_MERGE 0x20000000
1205
a80f6941
L
1206 /* If given with SEC_MERGE, entities to merge are zero terminated
1207 strings where entsize specifies character size instead of fixed
1208 size entries. */
f5fa8ca2
JJ
1209#define SEC_STRINGS 0x40000000
1210
dbb410c3
AM
1211 /* This section contains data about section groups. */
1212#define SEC_GROUP 0x80000000
1213
52b219b5 1214 /* End of section flags. */
252b5132 1215
52b219b5 1216 /* Some internal packed boolean fields. */
252b5132 1217
52b219b5
AM
1218 /* See the vma field. */
1219 unsigned int user_set_vma : 1;
252b5132 1220
52b219b5
AM
1221 /* Whether relocations have been processed. */
1222 unsigned int reloc_done : 1;
252b5132 1223
52b219b5
AM
1224 /* A mark flag used by some of the linker backends. */
1225 unsigned int linker_mark : 1;
252b5132 1226
d1778b88 1227 /* Another mark flag used by some of the linker backends. Set for
08da05b0 1228 output sections that have an input section. */
d1778b88
AM
1229 unsigned int linker_has_input : 1;
1230
52b219b5
AM
1231 /* A mark flag used by some linker backends for garbage collection. */
1232 unsigned int gc_mark : 1;
252b5132 1233
dbb410c3
AM
1234 /* Used by the ELF code to mark sections which have been allocated
1235 to segments. */
bc67d8a6
NC
1236 unsigned int segment_mark : 1;
1237
52b219b5 1238 /* End of internal packed boolean fields. */
252b5132 1239
52b219b5
AM
1240 /* The virtual memory address of the section - where it will be
1241 at run time. The symbols are relocated against this. The
1242 user_set_vma flag is maintained by bfd; if it's not set, the
1243 backend can assign addresses (for example, in <<a.out>>, where
1244 the default address for <<.data>> is dependent on the specific
1245 target and various flags). */
52b219b5 1246 bfd_vma vma;
252b5132 1247
52b219b5
AM
1248 /* The load address of the section - where it would be in a
1249 rom image; really only used for writing section header
b5f79c76 1250 information. */
52b219b5 1251 bfd_vma lma;
252b5132 1252
52b219b5
AM
1253 /* The size of the section in octets, as it will be output.
1254 Contains a value even if the section has no contents (e.g., the
1255 size of <<.bss>>). This will be filled in after relocation. */
52b219b5 1256 bfd_size_type _cooked_size;
252b5132 1257
52b219b5
AM
1258 /* The original size on disk of the section, in octets. Normally this
1259 value is the same as the size, but if some relaxing has
1260 been done, then this value will be bigger. */
52b219b5 1261 bfd_size_type _raw_size;
252b5132 1262
52b219b5
AM
1263 /* If this section is going to be output, then this value is the
1264 offset in *bytes* into the output section of the first byte in the
1265 input section (byte ==> smallest addressable unit on the
1266 target). In most cases, if this was going to start at the
1267 100th octet (8-bit quantity) in the output section, this value
1268 would be 100. However, if the target byte size is 16 bits
1269 (bfd_octets_per_byte is "2"), this value would be 50. */
52b219b5 1270 bfd_vma output_offset;
252b5132 1271
52b219b5 1272 /* The output section through which to map on output. */
52b219b5 1273 struct sec *output_section;
252b5132 1274
52b219b5
AM
1275 /* The alignment requirement of the section, as an exponent of 2 -
1276 e.g., 3 aligns to 2^3 (or 8). */
52b219b5 1277 unsigned int alignment_power;
252b5132 1278
52b219b5
AM
1279 /* If an input section, a pointer to a vector of relocation
1280 records for the data in this section. */
52b219b5 1281 struct reloc_cache_entry *relocation;
252b5132 1282
52b219b5
AM
1283 /* If an output section, a pointer to a vector of pointers to
1284 relocation records for the data in this section. */
52b219b5 1285 struct reloc_cache_entry **orelocation;
252b5132 1286
b5f79c76 1287 /* The number of relocation records in one of the above. */
52b219b5 1288 unsigned reloc_count;
252b5132 1289
52b219b5
AM
1290 /* Information below is back end specific - and not always used
1291 or updated. */
252b5132 1292
52b219b5 1293 /* File position of section data. */
52b219b5 1294 file_ptr filepos;
252b5132 1295
52b219b5 1296 /* File position of relocation info. */
52b219b5 1297 file_ptr rel_filepos;
252b5132 1298
52b219b5 1299 /* File position of line data. */
52b219b5 1300 file_ptr line_filepos;
252b5132 1301
52b219b5 1302 /* Pointer to data for applications. */
52b219b5 1303 PTR userdata;
252b5132 1304
52b219b5
AM
1305 /* If the SEC_IN_MEMORY flag is set, this points to the actual
1306 contents. */
1307 unsigned char *contents;
252b5132 1308
52b219b5 1309 /* Attached line number information. */
52b219b5 1310 alent *lineno;
252b5132 1311
52b219b5 1312 /* Number of line number records. */
52b219b5 1313 unsigned int lineno_count;
252b5132 1314
f5fa8ca2 1315 /* Entity size for merging purposes. */
f5fa8ca2
JJ
1316 unsigned int entsize;
1317
52b219b5 1318 /* Optional information about a COMDAT entry; NULL if not COMDAT. */
52b219b5 1319 struct bfd_comdat_info *comdat;
022a5af4 1320
52b219b5
AM
1321 /* When a section is being output, this value changes as more
1322 linenumbers are written out. */
52b219b5 1323 file_ptr moving_line_filepos;
252b5132 1324
52b219b5 1325 /* What the section number is in the target world. */
52b219b5 1326 int target_index;
252b5132 1327
52b219b5 1328 PTR used_by_bfd;
252b5132 1329
52b219b5
AM
1330 /* If this is a constructor section then here is a list of the
1331 relocations created to relocate items within it. */
52b219b5 1332 struct relent_chain *constructor_chain;
252b5132 1333
52b219b5 1334 /* The BFD which owns the section. */
52b219b5 1335 bfd *owner;
252b5132 1336
b5f79c76 1337 /* A symbol which points at this section only. */
52b219b5
AM
1338 struct symbol_cache_entry *symbol;
1339 struct symbol_cache_entry **symbol_ptr_ptr;
252b5132 1340
52b219b5
AM
1341 struct bfd_link_order *link_order_head;
1342 struct bfd_link_order *link_order_tail;
b5f79c76 1343} asection;
252b5132 1344
52b219b5
AM
1345/* These sections are global, and are managed by BFD. The application
1346 and target back end are not permitted to change the values in
1347 these sections. New code should use the section_ptr macros rather
1348 than referring directly to the const sections. The const sections
1349 may eventually vanish. */
252b5132
RH
1350#define BFD_ABS_SECTION_NAME "*ABS*"
1351#define BFD_UND_SECTION_NAME "*UND*"
1352#define BFD_COM_SECTION_NAME "*COM*"
1353#define BFD_IND_SECTION_NAME "*IND*"
1354
b5f79c76 1355/* The absolute section. */
252b5132
RH
1356extern const asection bfd_abs_section;
1357#define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
1358#define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
b5f79c76 1359/* Pointer to the undefined section. */
252b5132
RH
1360extern const asection bfd_und_section;
1361#define bfd_und_section_ptr ((asection *) &bfd_und_section)
1362#define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
b5f79c76 1363/* Pointer to the common section. */
252b5132
RH
1364extern const asection bfd_com_section;
1365#define bfd_com_section_ptr ((asection *) &bfd_com_section)
b5f79c76 1366/* Pointer to the indirect section. */
252b5132
RH
1367extern const asection bfd_ind_section;
1368#define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
1369#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
1370
84c254c6
NC
1371#define bfd_is_const_section(SEC) \
1372 ( ((SEC) == bfd_abs_section_ptr) \
1373 || ((SEC) == bfd_und_section_ptr) \
1374 || ((SEC) == bfd_com_section_ptr) \
1375 || ((SEC) == bfd_ind_section_ptr))
1376
252b5132
RH
1377extern const struct symbol_cache_entry * const bfd_abs_symbol;
1378extern const struct symbol_cache_entry * const bfd_com_symbol;
1379extern const struct symbol_cache_entry * const bfd_und_symbol;
1380extern const struct symbol_cache_entry * const bfd_ind_symbol;
1381#define bfd_get_section_size_before_reloc(section) \
f6af82bd
AM
1382 ((section)->reloc_done ? (abort (), (bfd_size_type) 1) \
1383 : (section)->_raw_size)
252b5132 1384#define bfd_get_section_size_after_reloc(section) \
f6af82bd
AM
1385 ((section)->reloc_done ? (section)->_cooked_size \
1386 : (abort (), (bfd_size_type) 1))
9e7b37b3
AM
1387
1388/* Macros to handle insertion and deletion of a bfd's sections. These
1389 only handle the list pointers, ie. do not adjust section_count,
1390 target_index etc. */
1391#define bfd_section_list_remove(ABFD, PS) \
1392 do \
1393 { \
1394 asection **_ps = PS; \
1395 asection *_s = *_ps; \
1396 *_ps = _s->next; \
1397 if (_s->next == NULL) \
1398 (ABFD)->section_tail = _ps; \
1399 } \
1400 while (0)
1401#define bfd_section_list_insert(ABFD, PS, S) \
1402 do \
1403 { \
1404 asection **_ps = PS; \
1405 asection *_s = S; \
1406 _s->next = *_ps; \
1407 *_ps = _s; \
1408 if (_s->next == NULL) \
1409 (ABFD)->section_tail = &_s->next; \
1410 } \
1411 while (0)
1412
1413void
1414bfd_section_list_clear PARAMS ((bfd *));
1415
252b5132 1416asection *
52b219b5 1417bfd_get_section_by_name PARAMS ((bfd *abfd, const char *name));
252b5132 1418
1bd91689
AM
1419char *
1420bfd_get_unique_section_name PARAMS ((bfd *abfd,
a966dba9 1421 const char *templat,
1bd91689
AM
1422 int *count));
1423
252b5132 1424asection *
52b219b5 1425bfd_make_section_old_way PARAMS ((bfd *abfd, const char *name));
252b5132
RH
1426
1427asection *
52b219b5 1428bfd_make_section_anyway PARAMS ((bfd *abfd, const char *name));
252b5132
RH
1429
1430asection *
52b219b5 1431bfd_make_section PARAMS ((bfd *, const char *name));
252b5132 1432
c02e7c3e 1433boolean
252b5132
RH
1434bfd_set_section_flags PARAMS ((bfd *abfd, asection *sec, flagword flags));
1435
c02e7c3e 1436void
252b5132 1437bfd_map_over_sections PARAMS ((bfd *abfd,
8c603c85 1438 void (*func) (bfd *abfd,
252b5132
RH
1439 asection *sect,
1440 PTR obj),
1441 PTR obj));
1442
c02e7c3e 1443boolean
252b5132
RH
1444bfd_set_section_size PARAMS ((bfd *abfd, asection *sec, bfd_size_type val));
1445
c02e7c3e 1446boolean
dc810e39
AM
1447bfd_set_section_contents PARAMS ((bfd *abfd, asection *section,
1448 PTR data, file_ptr offset,
252b5132
RH
1449 bfd_size_type count));
1450
c02e7c3e 1451boolean
dc810e39
AM
1452bfd_get_section_contents PARAMS ((bfd *abfd, asection *section,
1453 PTR location, file_ptr offset,
1454 bfd_size_type count));
252b5132 1455
c02e7c3e 1456boolean
dc810e39
AM
1457bfd_copy_private_section_data PARAMS ((bfd *ibfd, asection *isec,
1458 bfd *obfd, asection *osec));
252b5132
RH
1459
1460#define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
1461 BFD_SEND (obfd, _bfd_copy_private_section_data, \
1462 (ibfd, isection, obfd, osection))
c02e7c3e
KH
1463void
1464_bfd_strip_section_from_output PARAMS ((struct bfd_link_info *info, asection *section));
252b5132 1465
e61463e1
AM
1466boolean
1467bfd_generic_discard_group PARAMS ((bfd *abfd, asection *group));
b885599b 1468
e61463e1 1469/* Extracted from archures.c. */
8546af74 1470enum bfd_architecture
252b5132 1471{
c312a6a4
NC
1472 bfd_arch_unknown, /* File arch not known. */
1473 bfd_arch_obscure, /* Arch known, not one of these. */
52b219b5 1474 bfd_arch_m68k, /* Motorola 68xxx */
252b5132
RH
1475#define bfd_mach_m68000 1
1476#define bfd_mach_m68008 2
1477#define bfd_mach_m68010 3
1478#define bfd_mach_m68020 4
1479#define bfd_mach_m68030 5
1480#define bfd_mach_m68040 6
1481#define bfd_mach_m68060 7
1482#define bfd_mach_cpu32 8
3cac17ae
NC
1483#define bfd_mach_mcf5200 9
1484#define bfd_mach_mcf5206e 10
1485#define bfd_mach_mcf5307 11
1486#define bfd_mach_mcf5407 12
8546af74 1487 bfd_arch_vax, /* DEC Vax */
52b219b5
AM
1488 bfd_arch_i960, /* Intel 960 */
1489 /* The order of the following is important.
8546af74 1490 lower number indicates a machine type that
252b5132
RH
1491 only accepts a subset of the instructions
1492 available to machines with higher numbers.
1493 The exception is the "ca", which is
8546af74 1494 incompatible with all other machines except
c312a6a4 1495 "core". */
252b5132
RH
1496
1497#define bfd_mach_i960_core 1
1498#define bfd_mach_i960_ka_sa 2
1499#define bfd_mach_i960_kb_sb 3
1500#define bfd_mach_i960_mc 4
1501#define bfd_mach_i960_xa 5
1502#define bfd_mach_i960_ca 6
1503#define bfd_mach_i960_jx 7
1504#define bfd_mach_i960_hx 8
1505
3b16e843
NC
1506 bfd_arch_or32, /* OpenRISC 32 */
1507
52b219b5
AM
1508 bfd_arch_a29k, /* AMD 29000 */
1509 bfd_arch_sparc, /* SPARC */
252b5132 1510#define bfd_mach_sparc 1
52b219b5 1511/* The difference between v8plus and v9 is that v9 is a true 64 bit env. */
252b5132
RH
1512#define bfd_mach_sparc_sparclet 2
1513#define bfd_mach_sparc_sparclite 3
1514#define bfd_mach_sparc_v8plus 4
c312a6a4 1515#define bfd_mach_sparc_v8plusa 5 /* with ultrasparc add'ns. */
252b5132
RH
1516#define bfd_mach_sparc_sparclite_le 6
1517#define bfd_mach_sparc_v9 7
c312a6a4
NC
1518#define bfd_mach_sparc_v9a 8 /* with ultrasparc add'ns. */
1519#define bfd_mach_sparc_v8plusb 9 /* with cheetah add'ns. */
1520#define bfd_mach_sparc_v9b 10 /* with cheetah add'ns. */
52b219b5 1521/* Nonzero if MACH has the v9 instruction set. */
252b5132 1522#define bfd_mach_sparc_v9_p(mach) \
59ff2774 1523 ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9b \
19f7b010 1524 && (mach) != bfd_mach_sparc_sparclite_le)
52b219b5 1525 bfd_arch_mips, /* MIPS Rxxxx */
252b5132
RH
1526#define bfd_mach_mips3000 3000
1527#define bfd_mach_mips3900 3900
1528#define bfd_mach_mips4000 4000
1529#define bfd_mach_mips4010 4010
1530#define bfd_mach_mips4100 4100
1531#define bfd_mach_mips4111 4111
00707a0e 1532#define bfd_mach_mips4120 4120
252b5132
RH
1533#define bfd_mach_mips4300 4300
1534#define bfd_mach_mips4400 4400
1535#define bfd_mach_mips4600 4600
1536#define bfd_mach_mips4650 4650
1537#define bfd_mach_mips5000 5000
00707a0e
RS
1538#define bfd_mach_mips5400 5400
1539#define bfd_mach_mips5500 5500
252b5132
RH
1540#define bfd_mach_mips6000 6000
1541#define bfd_mach_mips8000 8000
1542#define bfd_mach_mips10000 10000
d1cf510e 1543#define bfd_mach_mips12000 12000
0752970e 1544#define bfd_mach_mips16 16
84ea6cf2 1545#define bfd_mach_mips5 5
c6c98b38 1546#define bfd_mach_mips_sb1 12310201 /* octal 'SB', 01 */
a1cd6a8f
EC
1547#define bfd_mach_mipsisa32 32
1548#define bfd_mach_mipsisa64 64
52b219b5 1549 bfd_arch_i386, /* Intel 386 */
686e4055
AM
1550#define bfd_mach_i386_i386 1
1551#define bfd_mach_i386_i8086 2
1552#define bfd_mach_i386_i386_intel_syntax 3
1553#define bfd_mach_x86_64 64
1554#define bfd_mach_x86_64_intel_syntax 65
52b219b5
AM
1555 bfd_arch_we32k, /* AT&T WE32xxx */
1556 bfd_arch_tahoe, /* CCI/Harris Tahoe */
1557 bfd_arch_i860, /* Intel 860 */
1558 bfd_arch_i370, /* IBM 360/370 Mainframes */
1559 bfd_arch_romp, /* IBM ROMP PC/RT */
1560 bfd_arch_alliant, /* Alliant */
1561 bfd_arch_convex, /* Convex */
1562 bfd_arch_m88k, /* Motorola 88xxx */
3af9a47b 1563 bfd_arch_m98k, /* Motorola 98xxx */
52b219b5
AM
1564 bfd_arch_pyramid, /* Pyramid Technology */
1565 bfd_arch_h8300, /* Hitachi H8/300 */
252b5132
RH
1566#define bfd_mach_h8300 1
1567#define bfd_mach_h8300h 2
1568#define bfd_mach_h8300s 3
e135f41b 1569 bfd_arch_pdp11, /* DEC PDP-11 */
52b219b5 1570 bfd_arch_powerpc, /* PowerPC */
686e4055
AM
1571#define bfd_mach_ppc 32
1572#define bfd_mach_ppc64 64
87f33987
ND
1573#define bfd_mach_ppc_403 403
1574#define bfd_mach_ppc_403gc 4030
1575#define bfd_mach_ppc_505 505
1576#define bfd_mach_ppc_601 601
1577#define bfd_mach_ppc_602 602
1578#define bfd_mach_ppc_603 603
1579#define bfd_mach_ppc_ec603e 6031
1580#define bfd_mach_ppc_604 604
1581#define bfd_mach_ppc_620 620
1582#define bfd_mach_ppc_630 630
1583#define bfd_mach_ppc_750 750
1584#define bfd_mach_ppc_860 860
1585#define bfd_mach_ppc_a35 35
1586#define bfd_mach_ppc_rs64ii 642
1587#define bfd_mach_ppc_rs64iii 643
1588#define bfd_mach_ppc_7400 7400
d62b1198 1589#define bfd_mach_ppc_e500 500
52b219b5 1590 bfd_arch_rs6000, /* IBM RS/6000 */
686e4055 1591#define bfd_mach_rs6k 6000
87f33987
ND
1592#define bfd_mach_rs6k_rs1 6001
1593#define bfd_mach_rs6k_rsc 6003
1594#define bfd_mach_rs6k_rs2 6002
52b219b5
AM
1595 bfd_arch_hppa, /* HP PA RISC */
1596 bfd_arch_d10v, /* Mitsubishi D10V */
686e4055 1597#define bfd_mach_d10v 1
7af8cca9
MM
1598#define bfd_mach_d10v_ts2 2
1599#define bfd_mach_d10v_ts3 3
52b219b5 1600 bfd_arch_d30v, /* Mitsubishi D30V */
d172d4ba 1601 bfd_arch_dlx, /* DLX */
52b219b5
AM
1602 bfd_arch_m68hc11, /* Motorola 68HC11 */
1603 bfd_arch_m68hc12, /* Motorola 68HC12 */
1604 bfd_arch_z8k, /* Zilog Z8000 */
252b5132
RH
1605#define bfd_mach_z8001 1
1606#define bfd_mach_z8002 2
52b219b5
AM
1607 bfd_arch_h8500, /* Hitachi H8/500 */
1608 bfd_arch_sh, /* Hitachi SH */
686e4055 1609#define bfd_mach_sh 1
d4845d57
JR
1610#define bfd_mach_sh2 0x20
1611#define bfd_mach_sh_dsp 0x2d
252b5132 1612#define bfd_mach_sh3 0x30
d4845d57 1613#define bfd_mach_sh3_dsp 0x3d
252b5132 1614#define bfd_mach_sh3e 0x3e
d4845d57 1615#define bfd_mach_sh4 0x40
fbca6ad9 1616#define bfd_mach_sh5 0x50
52b219b5 1617 bfd_arch_alpha, /* Dec Alpha */
252b5132
RH
1618#define bfd_mach_alpha_ev4 0x10
1619#define bfd_mach_alpha_ev5 0x20
1620#define bfd_mach_alpha_ev6 0x30
c312a6a4 1621 bfd_arch_arm, /* Advanced Risc Machines ARM. */
252b5132 1622#define bfd_mach_arm_2 1
478d07d6 1623#define bfd_mach_arm_2a 2
252b5132
RH
1624#define bfd_mach_arm_3 3
1625#define bfd_mach_arm_3M 4
478d07d6 1626#define bfd_mach_arm_4 5
252b5132 1627#define bfd_mach_arm_4T 6
478d07d6
NC
1628#define bfd_mach_arm_5 7
1629#define bfd_mach_arm_5T 8
077b8428
NC
1630#define bfd_mach_arm_5TE 9
1631#define bfd_mach_arm_XScale 10
52b219b5
AM
1632 bfd_arch_ns32k, /* National Semiconductors ns32000 */
1633 bfd_arch_w65, /* WDC 65816 */
1634 bfd_arch_tic30, /* Texas Instruments TMS320C30 */
026df7c5
NC
1635 bfd_arch_tic4x, /* Texas Instruments TMS320C3X/4X */
1636#define bfd_mach_c3x 30
1637#define bfd_mach_c4x 40
52b219b5
AM
1638 bfd_arch_tic54x, /* Texas Instruments TMS320C54X */
1639 bfd_arch_tic80, /* TI TMS320c80 (MVP) */
1640 bfd_arch_v850, /* NEC V850 */
686e4055 1641#define bfd_mach_v850 1
252b5132 1642#define bfd_mach_v850e 'E'
0d2bcfaf 1643 bfd_arch_arc, /* ARC Cores */
686e4055
AM
1644#define bfd_mach_arc_5 5
1645#define bfd_mach_arc_6 6
1646#define bfd_mach_arc_7 7
1647#define bfd_mach_arc_8 8
52b219b5 1648 bfd_arch_m32r, /* Mitsubishi M32R/D */
686e4055 1649#define bfd_mach_m32r 1 /* For backwards compatibility. */
a23ef39f 1650#define bfd_mach_m32rx 'x'
52b219b5
AM
1651 bfd_arch_mn10200, /* Matsushita MN10200 */
1652 bfd_arch_mn10300, /* Matsushita MN10300 */
252b5132 1653#define bfd_mach_mn10300 300
7f8d5fc9 1654#define bfd_mach_am33 330
252b5132
RH
1655 bfd_arch_fr30,
1656#define bfd_mach_fr30 0x46523330
4e5ba5b7 1657 bfd_arch_frv,
686e4055
AM
1658#define bfd_mach_frv 1
1659#define bfd_mach_frvsimple 2
4e5ba5b7
DB
1660#define bfd_mach_fr300 300
1661#define bfd_mach_fr400 400
1662#define bfd_mach_frvtomcat 499 /* fr500 prototype */
1663#define bfd_mach_fr500 500
252b5132 1664 bfd_arch_mcore,
52b219b5 1665 bfd_arch_ia64, /* HP/Intel ia64 */
686e4055
AM
1666#define bfd_mach_ia64_elf64 64
1667#define bfd_mach_ia64_elf32 32
cf88bb9f 1668 bfd_arch_ip2k, /* Ubicom IP2K microcontrollers. */
686e4055
AM
1669#define bfd_mach_ip2022 1
1670#define bfd_mach_ip2022ext 2
0bcb993b 1671 bfd_arch_pj,
c312a6a4 1672 bfd_arch_avr, /* Atmel AVR microcontrollers. */
adde6300
AM
1673#define bfd_mach_avr1 1
1674#define bfd_mach_avr2 2
1675#define bfd_mach_avr3 3
1676#define bfd_mach_avr4 4
65aa24b6 1677#define bfd_mach_avr5 5
06c15ad7 1678 bfd_arch_cris, /* Axis CRIS */
a85d7ed0 1679 bfd_arch_s390, /* IBM s390 */
686e4055
AM
1680#define bfd_mach_s390_31 31
1681#define bfd_mach_s390_64 64
b3baf5d0 1682 bfd_arch_openrisc, /* OpenRISC */
c312a6a4 1683 bfd_arch_mmix, /* Donald Knuth's educational processor. */
93fbbb04 1684 bfd_arch_xstormy16,
686e4055 1685#define bfd_mach_xstormy16 1
252b5132
RH
1686 bfd_arch_last
1687 };
1688
8546af74 1689typedef struct bfd_arch_info
252b5132
RH
1690{
1691 int bits_per_word;
1692 int bits_per_address;
1693 int bits_per_byte;
1694 enum bfd_architecture arch;
1695 unsigned long mach;
1696 const char *arch_name;
1697 const char *printable_name;
1698 unsigned int section_align_power;
aa3d5824
AM
1699 /* True if this is the default machine for the architecture.
1700 The default arch should be the first entry for an arch so that
1701 all the entries for that arch can be accessed via <<next>>. */
8546af74 1702 boolean the_default;
252b5132
RH
1703 const struct bfd_arch_info * (*compatible)
1704 PARAMS ((const struct bfd_arch_info *a,
1705 const struct bfd_arch_info *b));
1706
1707 boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *));
1708
1709 const struct bfd_arch_info *next;
3b16e843
NC
1710}
1711bfd_arch_info_type;
1712
252b5132
RH
1713const char *
1714bfd_printable_name PARAMS ((bfd *abfd));
1715
1716const bfd_arch_info_type *
1717bfd_scan_arch PARAMS ((const char *string));
1718
1719const char **
1720bfd_arch_list PARAMS ((void));
1721
1722const bfd_arch_info_type *
1723bfd_arch_get_compatible PARAMS ((
1724 const bfd *abfd,
1725 const bfd *bbfd));
1726
c02e7c3e 1727void
252b5132
RH
1728bfd_set_arch_info PARAMS ((bfd *abfd, const bfd_arch_info_type *arg));
1729
c02e7c3e 1730enum bfd_architecture
252b5132
RH
1731bfd_get_arch PARAMS ((bfd *abfd));
1732
c02e7c3e 1733unsigned long
252b5132
RH
1734bfd_get_mach PARAMS ((bfd *abfd));
1735
c02e7c3e 1736unsigned int
252b5132
RH
1737bfd_arch_bits_per_byte PARAMS ((bfd *abfd));
1738
c02e7c3e 1739unsigned int
252b5132
RH
1740bfd_arch_bits_per_address PARAMS ((bfd *abfd));
1741
c02e7c3e 1742const bfd_arch_info_type *
252b5132
RH
1743bfd_get_arch_info PARAMS ((bfd *abfd));
1744
1745const bfd_arch_info_type *
c02e7c3e 1746bfd_lookup_arch PARAMS ((enum bfd_architecture
252b5132
RH
1747 arch,
1748 unsigned long machine));
1749
1750const char *
c02e7c3e 1751bfd_printable_arch_mach PARAMS ((enum bfd_architecture arch, unsigned long machine));
252b5132 1752
c02e7c3e 1753unsigned int
9a968f43
NC
1754bfd_octets_per_byte PARAMS ((bfd *abfd));
1755
c02e7c3e 1756unsigned int
9a968f43 1757bfd_arch_mach_octets_per_byte PARAMS ((enum bfd_architecture arch,
7f8d5fc9 1758 unsigned long machine));
9a968f43 1759
e61463e1 1760/* Extracted from reloc.c. */
252b5132
RH
1761typedef enum bfd_reloc_status
1762{
b5f79c76 1763 /* No errors detected. */
252b5132
RH
1764 bfd_reloc_ok,
1765
b5f79c76 1766 /* The relocation was performed, but there was an overflow. */
252b5132
RH
1767 bfd_reloc_overflow,
1768
b5f79c76 1769 /* The address to relocate was not within the section supplied. */
252b5132
RH
1770 bfd_reloc_outofrange,
1771
b5f79c76 1772 /* Used by special functions. */
252b5132
RH
1773 bfd_reloc_continue,
1774
b5f79c76 1775 /* Unsupported relocation size requested. */
252b5132
RH
1776 bfd_reloc_notsupported,
1777
b5f79c76 1778 /* Unused. */
252b5132
RH
1779 bfd_reloc_other,
1780
b5f79c76 1781 /* The symbol to relocate against was undefined. */
252b5132
RH
1782 bfd_reloc_undefined,
1783
dc810e39
AM
1784 /* The relocation was performed, but may not be ok - presently
1785 generated only when linking i960 coff files with i960 b.out
1786 symbols. If this type is returned, the error_message argument
1787 to bfd_perform_relocation will be set. */
252b5132
RH
1788 bfd_reloc_dangerous
1789 }
1790 bfd_reloc_status_type;
1791
541389e2 1792
252b5132
RH
1793typedef struct reloc_cache_entry
1794{
b5f79c76 1795 /* A pointer into the canonical table of pointers. */
252b5132
RH
1796 struct symbol_cache_entry **sym_ptr_ptr;
1797
b5f79c76 1798 /* offset in section. */
252b5132
RH
1799 bfd_size_type address;
1800
b5f79c76 1801 /* addend for relocation value. */
252b5132
RH
1802 bfd_vma addend;
1803
b5f79c76 1804 /* Pointer to how to perform the required relocation. */
252b5132
RH
1805 reloc_howto_type *howto;
1806
b5f79c76
NC
1807}
1808arelent;
1809
252b5132
RH
1810enum complain_overflow
1811{
b5f79c76 1812 /* Do not complain on overflow. */
252b5132
RH
1813 complain_overflow_dont,
1814
dc810e39 1815 /* Complain if the bitfield overflows, whether it is considered
b5f79c76 1816 as signed or unsigned. */
252b5132
RH
1817 complain_overflow_bitfield,
1818
dc810e39 1819 /* Complain if the value overflows when considered as signed
b5f79c76 1820 number. */
252b5132
RH
1821 complain_overflow_signed,
1822
dc810e39 1823 /* Complain if the value overflows when considered as an
b5f79c76 1824 unsigned number. */
252b5132
RH
1825 complain_overflow_unsigned
1826};
1827
1828struct reloc_howto_struct
1829{
dc810e39
AM
1830 /* The type field has mainly a documentary use - the back end can
1831 do what it wants with it, though normally the back end's
1832 external idea of what a reloc number is stored
1833 in this field. For example, a PC relative word relocation
1834 in a coff environment has the type 023 - because that's
1835 what the outside world calls a R_PCRWORD reloc. */
252b5132
RH
1836 unsigned int type;
1837
dc810e39
AM
1838 /* The value the final relocation is shifted right by. This drops
1839 unwanted data from the relocation. */
252b5132
RH
1840 unsigned int rightshift;
1841
dc810e39
AM
1842 /* The size of the item to be relocated. This is *not* a
1843 power-of-two measure. To get the number of bytes operated
1844 on by a type of relocation, use bfd_get_reloc_size. */
252b5132
RH
1845 int size;
1846
dc810e39
AM
1847 /* The number of bits in the item to be relocated. This is used
1848 when doing overflow checking. */
252b5132
RH
1849 unsigned int bitsize;
1850
dc810e39
AM
1851 /* Notes that the relocation is relative to the location in the
1852 data section of the addend. The relocation function will
1853 subtract from the relocation value the address of the location
1854 being relocated. */
252b5132
RH
1855 boolean pc_relative;
1856
dc810e39
AM
1857 /* The bit position of the reloc value in the destination.
1858 The relocated value is left shifted by this amount. */
252b5132
RH
1859 unsigned int bitpos;
1860
dc810e39
AM
1861 /* What type of overflow error should be checked for when
1862 relocating. */
252b5132
RH
1863 enum complain_overflow complain_on_overflow;
1864
dc810e39
AM
1865 /* If this field is non null, then the supplied function is
1866 called rather than the normal function. This allows really
1867 strange relocation methods to be accomodated (e.g., i960 callj
1868 instructions). */
252b5132 1869 bfd_reloc_status_type (*special_function)
dc810e39
AM
1870 PARAMS ((bfd *, arelent *, struct symbol_cache_entry *, PTR, asection *,
1871 bfd *, char **));
1872
1873 /* The textual name of the relocation type. */
252b5132
RH
1874 char *name;
1875
dc810e39
AM
1876 /* Some formats record a relocation addend in the section contents
1877 rather than with the relocation. For ELF formats this is the
1878 distinction between USE_REL and USE_RELA (though the code checks
1879 for USE_REL == 1/0). The value of this field is TRUE if the
1880 addend is recorded with the section contents; when performing a
1881 partial link (ld -r) the section contents (the data) will be
1882 modified. The value of this field is FALSE if addends are
1883 recorded with the relocation (in arelent.addend); when performing
1884 a partial link the relocation will be modified.
1885 All relocations for all ELF USE_RELA targets should set this field
1886 to FALSE (values of TRUE should be looked on with suspicion).
1887 However, the converse is not true: not all relocations of all ELF
1888 USE_REL targets set this field to TRUE. Why this is so is peculiar
1889 to each particular target. For relocs that aren't used in partial
1890 links (e.g. GOT stuff) it doesn't matter what this is set to. */
252b5132
RH
1891 boolean partial_inplace;
1892
dc810e39
AM
1893 /* The src_mask selects which parts of the read in data
1894 are to be used in the relocation sum. E.g., if this was an 8 bit
1895 byte of data which we read and relocated, this would be
1896 0x000000ff. When we have relocs which have an addend, such as
1897 sun4 extended relocs, the value in the offset part of a
1898 relocating field is garbage so we never use it. In this case
1899 the mask would be 0x00000000. */
252b5132
RH
1900 bfd_vma src_mask;
1901
dc810e39
AM
1902 /* The dst_mask selects which parts of the instruction are replaced
1903 into the instruction. In most cases src_mask == dst_mask,
1904 except in the above special case, where dst_mask would be
1905 0x000000ff, and src_mask would be 0x00000000. */
252b5132
RH
1906 bfd_vma dst_mask;
1907
dc810e39
AM
1908 /* When some formats create PC relative instructions, they leave
1909 the value of the pc of the place being relocated in the offset
1910 slot of the instruction, so that a PC relative relocation can
1911 be made just by adding in an ordinary offset (e.g., sun3 a.out).
1912 Some formats leave the displacement part of an instruction
1913 empty (e.g., m88k bcs); this flag signals the fact. */
252b5132 1914 boolean pcrel_offset;
252b5132 1915};
b5f79c76 1916
dc810e39
AM
1917#define HOWTO(C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
1918 { (unsigned) C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC }
1919#define NEWHOWTO(FUNCTION, NAME, SIZE, REL, IN) \
1920 HOWTO (0, 0, SIZE, 0, REL, 0, complain_overflow_dont, FUNCTION, \
1921 NAME, false, 0, 0, IN)
252b5132 1922
5f771d47 1923#define EMPTY_HOWTO(C) \
dc810e39
AM
1924 HOWTO ((C), 0, 0, 0, false, 0, complain_overflow_dont, NULL, \
1925 NULL, false, 0, 0, false)
1926
1927#define HOWTO_PREPARE(relocation, symbol) \
1928 { \
1929 if (symbol != (asymbol *) NULL) \
1930 { \
1931 if (bfd_is_com_section (symbol->section)) \
1932 { \
1933 relocation = 0; \
1934 } \
1935 else \
1936 { \
1937 relocation = symbol->value; \
1938 } \
1939 } \
1940 }
b5f79c76 1941
c02e7c3e
KH
1942unsigned int
1943bfd_get_reloc_size PARAMS ((reloc_howto_type *));
252b5132 1944
dc810e39
AM
1945typedef struct relent_chain
1946{
252b5132 1947 arelent relent;
dc810e39 1948 struct relent_chain *next;
b5f79c76
NC
1949}
1950arelent_chain;
1951
252b5132 1952bfd_reloc_status_type
c02e7c3e 1953bfd_check_overflow PARAMS ((enum complain_overflow how,
252b5132
RH
1954 unsigned int bitsize,
1955 unsigned int rightshift,
1956 unsigned int addrsize,
1957 bfd_vma relocation));
1958
1959bfd_reloc_status_type
c02e7c3e 1960bfd_perform_relocation PARAMS ((bfd *abfd,
252b5132
RH
1961 arelent *reloc_entry,
1962 PTR data,
1963 asection *input_section,
1964 bfd *output_bfd,
1965 char **error_message));
1966
1967bfd_reloc_status_type
c02e7c3e 1968bfd_install_relocation PARAMS ((bfd *abfd,
252b5132
RH
1969 arelent *reloc_entry,
1970 PTR data, bfd_vma data_start,
1971 asection *input_section,
1972 char **error_message));
1973
1974enum bfd_reloc_code_real {
1975 _dummy_first_bfd_reloc_code_real,
1976
541389e2 1977
b5f79c76 1978/* Basic absolute relocations of N bits. */
252b5132
RH
1979 BFD_RELOC_64,
1980 BFD_RELOC_32,
1981 BFD_RELOC_26,
1982 BFD_RELOC_24,
1983 BFD_RELOC_16,
1984 BFD_RELOC_14,
1985 BFD_RELOC_8,
1986
1987/* PC-relative relocations. Sometimes these are relative to the address
1988of the relocation itself; sometimes they are relative to the start of
1989the section containing the relocation. It depends on the specific target.
1990
b5f79c76 1991The 24-bit relocation is used in some Intel 960 configurations. */
252b5132
RH
1992 BFD_RELOC_64_PCREL,
1993 BFD_RELOC_32_PCREL,
1994 BFD_RELOC_24_PCREL,
1995 BFD_RELOC_16_PCREL,
1996 BFD_RELOC_12_PCREL,
1997 BFD_RELOC_8_PCREL,
1998
b5f79c76 1999/* For ELF. */
252b5132
RH
2000 BFD_RELOC_32_GOT_PCREL,
2001 BFD_RELOC_16_GOT_PCREL,
2002 BFD_RELOC_8_GOT_PCREL,
2003 BFD_RELOC_32_GOTOFF,
2004 BFD_RELOC_16_GOTOFF,
2005 BFD_RELOC_LO16_GOTOFF,
2006 BFD_RELOC_HI16_GOTOFF,
2007 BFD_RELOC_HI16_S_GOTOFF,
2008 BFD_RELOC_8_GOTOFF,
5bd4f169 2009 BFD_RELOC_64_PLT_PCREL,
252b5132
RH
2010 BFD_RELOC_32_PLT_PCREL,
2011 BFD_RELOC_24_PLT_PCREL,
2012 BFD_RELOC_16_PLT_PCREL,
2013 BFD_RELOC_8_PLT_PCREL,
5bd4f169 2014 BFD_RELOC_64_PLTOFF,
252b5132
RH
2015 BFD_RELOC_32_PLTOFF,
2016 BFD_RELOC_16_PLTOFF,
2017 BFD_RELOC_LO16_PLTOFF,
2018 BFD_RELOC_HI16_PLTOFF,
2019 BFD_RELOC_HI16_S_PLTOFF,
2020 BFD_RELOC_8_PLTOFF,
2021
b5f79c76 2022/* Relocations used by 68K ELF. */
252b5132
RH
2023 BFD_RELOC_68K_GLOB_DAT,
2024 BFD_RELOC_68K_JMP_SLOT,
2025 BFD_RELOC_68K_RELATIVE,
2026
b5f79c76 2027/* Linkage-table relative. */
252b5132
RH
2028 BFD_RELOC_32_BASEREL,
2029 BFD_RELOC_16_BASEREL,
2030 BFD_RELOC_LO16_BASEREL,
2031 BFD_RELOC_HI16_BASEREL,
2032 BFD_RELOC_HI16_S_BASEREL,
2033 BFD_RELOC_8_BASEREL,
2034 BFD_RELOC_RVA,
2035
b5f79c76 2036/* Absolute 8-bit relocation, but used to form an address like 0xFFnn. */
252b5132
RH
2037 BFD_RELOC_8_FFnn,
2038
2039/* These PC-relative relocations are stored as word displacements --
2040i.e., byte displacements shifted right two bits. The 30-bit word
2041displacement (<<32_PCREL_S2>> -- 32 bits, shifted 2) is used on the
2042SPARC. (SPARC tools generally refer to this as <<WDISP30>>.) The
2043signed 16-bit displacement is used on the MIPS, and the 23-bit
b5f79c76 2044displacement is used on the Alpha. */
252b5132
RH
2045 BFD_RELOC_32_PCREL_S2,
2046 BFD_RELOC_16_PCREL_S2,
2047 BFD_RELOC_23_PCREL_S2,
2048
2049/* High 22 bits and low 10 bits of 32-bit value, placed into lower bits of
b5f79c76 2050the target word. These are used on the SPARC. */
252b5132
RH
2051 BFD_RELOC_HI22,
2052 BFD_RELOC_LO10,
2053
2054/* For systems that allocate a Global Pointer register, these are
2055displacements off that register. These relocation types are
2056handled specially, because the value the register will have is
b5f79c76 2057decided relatively late. */
252b5132
RH
2058 BFD_RELOC_GPREL16,
2059 BFD_RELOC_GPREL32,
2060
b5f79c76 2061/* Reloc types used for i960/b.out. */
252b5132
RH
2062 BFD_RELOC_I960_CALLJ,
2063
2064/* SPARC ELF relocations. There is probably some overlap with other
b5f79c76 2065relocation types already defined. */
252b5132
RH
2066 BFD_RELOC_NONE,
2067 BFD_RELOC_SPARC_WDISP22,
2068 BFD_RELOC_SPARC22,
2069 BFD_RELOC_SPARC13,
2070 BFD_RELOC_SPARC_GOT10,
2071 BFD_RELOC_SPARC_GOT13,
2072 BFD_RELOC_SPARC_GOT22,
2073 BFD_RELOC_SPARC_PC10,
2074 BFD_RELOC_SPARC_PC22,
2075 BFD_RELOC_SPARC_WPLT30,
2076 BFD_RELOC_SPARC_COPY,
2077 BFD_RELOC_SPARC_GLOB_DAT,
2078 BFD_RELOC_SPARC_JMP_SLOT,
2079 BFD_RELOC_SPARC_RELATIVE,
0f2712ed 2080 BFD_RELOC_SPARC_UA16,
252b5132 2081 BFD_RELOC_SPARC_UA32,
0f2712ed 2082 BFD_RELOC_SPARC_UA64,
252b5132 2083
b5f79c76 2084/* I think these are specific to SPARC a.out (e.g., Sun 4). */
252b5132
RH
2085 BFD_RELOC_SPARC_BASE13,
2086 BFD_RELOC_SPARC_BASE22,
2087
b5f79c76 2088/* SPARC64 relocations */
252b5132
RH
2089#define BFD_RELOC_SPARC_64 BFD_RELOC_64
2090 BFD_RELOC_SPARC_10,
2091 BFD_RELOC_SPARC_11,
2092 BFD_RELOC_SPARC_OLO10,
2093 BFD_RELOC_SPARC_HH22,
2094 BFD_RELOC_SPARC_HM10,
2095 BFD_RELOC_SPARC_LM22,
2096 BFD_RELOC_SPARC_PC_HH22,
2097 BFD_RELOC_SPARC_PC_HM10,
2098 BFD_RELOC_SPARC_PC_LM22,
2099 BFD_RELOC_SPARC_WDISP16,
2100 BFD_RELOC_SPARC_WDISP19,
2101 BFD_RELOC_SPARC_7,
2102 BFD_RELOC_SPARC_6,
2103 BFD_RELOC_SPARC_5,
2104#define BFD_RELOC_SPARC_DISP64 BFD_RELOC_64_PCREL
bd5e6e7e 2105 BFD_RELOC_SPARC_PLT32,
252b5132
RH
2106 BFD_RELOC_SPARC_PLT64,
2107 BFD_RELOC_SPARC_HIX22,
2108 BFD_RELOC_SPARC_LOX10,
2109 BFD_RELOC_SPARC_H44,
2110 BFD_RELOC_SPARC_M44,
2111 BFD_RELOC_SPARC_L44,
2112 BFD_RELOC_SPARC_REGISTER,
2113
b5f79c76 2114/* SPARC little endian relocation */
252b5132
RH
2115 BFD_RELOC_SPARC_REV32,
2116
2117/* Alpha ECOFF and ELF relocations. Some of these treat the symbol or
2118"addend" in some special way.
2119For GPDISP_HI16 ("gpdisp") relocations, the symbol is ignored when
2120writing; when reading, it will be the absolute section symbol. The
2121addend is the displacement in bytes of the "lda" instruction from
b5f79c76 2122the "ldah" instruction (which is at the address of this reloc). */
252b5132
RH
2123 BFD_RELOC_ALPHA_GPDISP_HI16,
2124
2125/* For GPDISP_LO16 ("ignore") relocations, the symbol is handled as
2126with GPDISP_HI16 relocs. The addend is ignored when writing the
2127relocations out, and is filled in with the file's GP value on
b5f79c76 2128reading, for convenience. */
252b5132
RH
2129 BFD_RELOC_ALPHA_GPDISP_LO16,
2130
2131/* The ELF GPDISP relocation is exactly the same as the GPDISP_HI16
2132relocation except that there is no accompanying GPDISP_LO16
b5f79c76 2133relocation. */
252b5132
RH
2134 BFD_RELOC_ALPHA_GPDISP,
2135
2136/* The Alpha LITERAL/LITUSE relocs are produced by a symbol reference;
2137the assembler turns it into a LDQ instruction to load the address of
2138the symbol, and then fills in a register in the real instruction.
2139
2140The LITERAL reloc, at the LDQ instruction, refers to the .lita
2141section symbol. The addend is ignored when writing, but is filled
2142in with the file's GP value on reading, for convenience, as with the
2143GPDISP_LO16 reloc.
2144
2145The ELF_LITERAL reloc is somewhere between 16_GOTOFF and GPDISP_LO16.
2146It should refer to the symbol to be referenced, as with 16_GOTOFF,
2147but it generates output not based on the position within the .got
2148section, but relative to the GP value chosen for the file during the
2149final link stage.
2150
2151The LITUSE reloc, on the instruction using the loaded address, gives
2152information to the linker that it might be able to use to optimize
2153away some literal section references. The symbol is ignored (read
2154as the absolute section symbol), and the "addend" indicates the type
2155of instruction using the register:
21561 - "memory" fmt insn
21572 - byte-manipulation (byte offset reg)
b5f79c76 21583 - jsr (target of branch) */
252b5132
RH
2159 BFD_RELOC_ALPHA_LITERAL,
2160 BFD_RELOC_ALPHA_ELF_LITERAL,
2161 BFD_RELOC_ALPHA_LITUSE,
2162
2163/* The HINT relocation indicates a value that should be filled into the
2164"hint" field of a jmp/jsr/ret instruction, for possible branch-
b5f79c76 2165prediction logic which may be provided on some processors. */
252b5132
RH
2166 BFD_RELOC_ALPHA_HINT,
2167
2168/* The LINKAGE relocation outputs a linkage pair in the object file,
b5f79c76 2169which is filled by the linker. */
252b5132
RH
2170 BFD_RELOC_ALPHA_LINKAGE,
2171
2172/* The CODEADDR relocation outputs a STO_CA in the object file,
b5f79c76 2173which is filled by the linker. */
252b5132
RH
2174 BFD_RELOC_ALPHA_CODEADDR,
2175
dc810e39 2176/* The GPREL_HI/LO relocations together form a 32-bit offset from the
b5f79c76 2177GP register. */
dfe57ca0
RH
2178 BFD_RELOC_ALPHA_GPREL_HI16,
2179 BFD_RELOC_ALPHA_GPREL_LO16,
2180
7793f4d0
RH
2181/* Like BFD_RELOC_23_PCREL_S2, except that the source and target must
2182share a common GP, and the target address is adjusted for
2183STO_ALPHA_STD_GPLOAD. */
2184 BFD_RELOC_ALPHA_BRSGP,
2185
3765b1be
RH
2186/* Alpha thread-local storage relocations. */
2187 BFD_RELOC_ALPHA_TLSGD,
2188 BFD_RELOC_ALPHA_TLSLDM,
2189 BFD_RELOC_ALPHA_DTPMOD64,
2190 BFD_RELOC_ALPHA_GOTDTPREL16,
2191 BFD_RELOC_ALPHA_DTPREL64,
2192 BFD_RELOC_ALPHA_DTPREL_HI16,
2193 BFD_RELOC_ALPHA_DTPREL_LO16,
2194 BFD_RELOC_ALPHA_DTPREL16,
2195 BFD_RELOC_ALPHA_GOTTPREL16,
2196 BFD_RELOC_ALPHA_TPREL64,
2197 BFD_RELOC_ALPHA_TPREL_HI16,
2198 BFD_RELOC_ALPHA_TPREL_LO16,
2199 BFD_RELOC_ALPHA_TPREL16,
2200
252b5132 2201/* Bits 27..2 of the relocation address shifted right 2 bits;
b5f79c76 2202simple reloc otherwise. */
252b5132
RH
2203 BFD_RELOC_MIPS_JMP,
2204
b5f79c76 2205/* The MIPS16 jump instruction. */
252b5132
RH
2206 BFD_RELOC_MIPS16_JMP,
2207
b5f79c76 2208/* MIPS16 GP relative reloc. */
252b5132
RH
2209 BFD_RELOC_MIPS16_GPREL,
2210
b5f79c76 2211/* High 16 bits of 32-bit value; simple reloc. */
252b5132
RH
2212 BFD_RELOC_HI16,
2213
2214/* High 16 bits of 32-bit value but the low 16 bits will be sign
2215extended and added to form the final result. If the low 16
2216bits form a negative number, we need to add one to the high value
b5f79c76 2217to compensate for the borrow when the low bits are added. */
252b5132
RH
2218 BFD_RELOC_HI16_S,
2219
b5f79c76 2220/* Low 16 bits. */
252b5132
RH
2221 BFD_RELOC_LO16,
2222
b5f79c76 2223/* Like BFD_RELOC_HI16_S, but PC relative. */
252b5132
RH
2224 BFD_RELOC_PCREL_HI16_S,
2225
b5f79c76 2226/* Like BFD_RELOC_LO16, but PC relative. */
252b5132
RH
2227 BFD_RELOC_PCREL_LO16,
2228
b5f79c76 2229/* Relocation against a MIPS literal section. */
252b5132
RH
2230 BFD_RELOC_MIPS_LITERAL,
2231
b5f79c76 2232/* MIPS ELF relocations. */
252b5132
RH
2233 BFD_RELOC_MIPS_GOT16,
2234 BFD_RELOC_MIPS_CALL16,
252b5132
RH
2235 BFD_RELOC_MIPS_GOT_HI16,
2236 BFD_RELOC_MIPS_GOT_LO16,
2237 BFD_RELOC_MIPS_CALL_HI16,
2238 BFD_RELOC_MIPS_CALL_LO16,
3f830999
MM
2239 BFD_RELOC_MIPS_SUB,
2240 BFD_RELOC_MIPS_GOT_PAGE,
2241 BFD_RELOC_MIPS_GOT_OFST,
2242 BFD_RELOC_MIPS_GOT_DISP,
c2feb664
NC
2243 BFD_RELOC_MIPS_SHIFT5,
2244 BFD_RELOC_MIPS_SHIFT6,
2245 BFD_RELOC_MIPS_INSERT_A,
2246 BFD_RELOC_MIPS_INSERT_B,
2247 BFD_RELOC_MIPS_DELETE,
2248 BFD_RELOC_MIPS_HIGHEST,
2249 BFD_RELOC_MIPS_HIGHER,
2250 BFD_RELOC_MIPS_SCN_DISP,
2251 BFD_RELOC_MIPS_REL16,
2252 BFD_RELOC_MIPS_RELGOT,
2253 BFD_RELOC_MIPS_JALR,
252b5132 2254
bb3fff1e
AM
2255/* Fujitsu Frv Relocations. */
2256 BFD_RELOC_FRV_LABEL16,
2257 BFD_RELOC_FRV_LABEL24,
2258 BFD_RELOC_FRV_LO16,
2259 BFD_RELOC_FRV_HI16,
2260 BFD_RELOC_FRV_GPREL12,
2261 BFD_RELOC_FRV_GPRELU12,
2262 BFD_RELOC_FRV_GPREL32,
2263 BFD_RELOC_FRV_GPRELHI,
2264 BFD_RELOC_FRV_GPRELLO,
2265
541389e2 2266
b5f79c76 2267/* i386/elf relocations */
252b5132
RH
2268 BFD_RELOC_386_GOT32,
2269 BFD_RELOC_386_PLT32,
2270 BFD_RELOC_386_COPY,
2271 BFD_RELOC_386_GLOB_DAT,
2272 BFD_RELOC_386_JUMP_SLOT,
2273 BFD_RELOC_386_RELATIVE,
2274 BFD_RELOC_386_GOTOFF,
2275 BFD_RELOC_386_GOTPC,
37e55690
JJ
2276 BFD_RELOC_386_TLS_TPOFF,
2277 BFD_RELOC_386_TLS_IE,
2278 BFD_RELOC_386_TLS_GOTIE,
13ae64f3
JJ
2279 BFD_RELOC_386_TLS_LE,
2280 BFD_RELOC_386_TLS_GD,
2281 BFD_RELOC_386_TLS_LDM,
2282 BFD_RELOC_386_TLS_LDO_32,
2283 BFD_RELOC_386_TLS_IE_32,
2284 BFD_RELOC_386_TLS_LE_32,
2285 BFD_RELOC_386_TLS_DTPMOD32,
2286 BFD_RELOC_386_TLS_DTPOFF32,
2287 BFD_RELOC_386_TLS_TPOFF32,
252b5132 2288
b5f79c76 2289/* x86-64/elf relocations */
8d88c4ca
NC
2290 BFD_RELOC_X86_64_GOT32,
2291 BFD_RELOC_X86_64_PLT32,
2292 BFD_RELOC_X86_64_COPY,
2293 BFD_RELOC_X86_64_GLOB_DAT,
2294 BFD_RELOC_X86_64_JUMP_SLOT,
2295 BFD_RELOC_X86_64_RELATIVE,
2296 BFD_RELOC_X86_64_GOTPCREL,
2297 BFD_RELOC_X86_64_32S,
bffbf940
JJ
2298 BFD_RELOC_X86_64_DTPMOD64,
2299 BFD_RELOC_X86_64_DTPOFF64,
2300 BFD_RELOC_X86_64_TPOFF64,
2301 BFD_RELOC_X86_64_TLSGD,
2302 BFD_RELOC_X86_64_TLSLD,
2303 BFD_RELOC_X86_64_DTPOFF32,
2304 BFD_RELOC_X86_64_GOTTPOFF,
2305 BFD_RELOC_X86_64_TPOFF32,
8d88c4ca 2306
b5f79c76 2307/* ns32k relocations */
252b5132
RH
2308 BFD_RELOC_NS32K_IMM_8,
2309 BFD_RELOC_NS32K_IMM_16,
2310 BFD_RELOC_NS32K_IMM_32,
2311 BFD_RELOC_NS32K_IMM_8_PCREL,
2312 BFD_RELOC_NS32K_IMM_16_PCREL,
2313 BFD_RELOC_NS32K_IMM_32_PCREL,
2314 BFD_RELOC_NS32K_DISP_8,
2315 BFD_RELOC_NS32K_DISP_16,
2316 BFD_RELOC_NS32K_DISP_32,
2317 BFD_RELOC_NS32K_DISP_8_PCREL,
2318 BFD_RELOC_NS32K_DISP_16_PCREL,
2319 BFD_RELOC_NS32K_DISP_32_PCREL,
2320
b5f79c76 2321/* PDP11 relocations */
e135f41b
NC
2322 BFD_RELOC_PDP11_DISP_8_PCREL,
2323 BFD_RELOC_PDP11_DISP_6_PCREL,
2324
b5f79c76 2325/* Picojava relocs. Not all of these appear in object files. */
0bcb993b
ILT
2326 BFD_RELOC_PJ_CODE_HI16,
2327 BFD_RELOC_PJ_CODE_LO16,
2328 BFD_RELOC_PJ_CODE_DIR16,
2329 BFD_RELOC_PJ_CODE_DIR32,
2330 BFD_RELOC_PJ_CODE_REL16,
2331 BFD_RELOC_PJ_CODE_REL32,
2332
b5f79c76 2333/* Power(rs6000) and PowerPC relocations. */
252b5132
RH
2334 BFD_RELOC_PPC_B26,
2335 BFD_RELOC_PPC_BA26,
2336 BFD_RELOC_PPC_TOC16,
2337 BFD_RELOC_PPC_B16,
2338 BFD_RELOC_PPC_B16_BRTAKEN,
2339 BFD_RELOC_PPC_B16_BRNTAKEN,
2340 BFD_RELOC_PPC_BA16,
2341 BFD_RELOC_PPC_BA16_BRTAKEN,
2342 BFD_RELOC_PPC_BA16_BRNTAKEN,
2343 BFD_RELOC_PPC_COPY,
2344 BFD_RELOC_PPC_GLOB_DAT,
2345 BFD_RELOC_PPC_JMP_SLOT,
2346 BFD_RELOC_PPC_RELATIVE,
2347 BFD_RELOC_PPC_LOCAL24PC,
2348 BFD_RELOC_PPC_EMB_NADDR32,
2349 BFD_RELOC_PPC_EMB_NADDR16,
2350 BFD_RELOC_PPC_EMB_NADDR16_LO,
2351 BFD_RELOC_PPC_EMB_NADDR16_HI,
2352 BFD_RELOC_PPC_EMB_NADDR16_HA,
2353 BFD_RELOC_PPC_EMB_SDAI16,
2354 BFD_RELOC_PPC_EMB_SDA2I16,
2355 BFD_RELOC_PPC_EMB_SDA2REL,
2356 BFD_RELOC_PPC_EMB_SDA21,
2357 BFD_RELOC_PPC_EMB_MRKREF,
2358 BFD_RELOC_PPC_EMB_RELSEC16,
2359 BFD_RELOC_PPC_EMB_RELST_LO,
2360 BFD_RELOC_PPC_EMB_RELST_HI,
2361 BFD_RELOC_PPC_EMB_RELST_HA,
2362 BFD_RELOC_PPC_EMB_BIT_FLD,
2363 BFD_RELOC_PPC_EMB_RELSDA,
5bd4f169
AM
2364 BFD_RELOC_PPC64_HIGHER,
2365 BFD_RELOC_PPC64_HIGHER_S,
2366 BFD_RELOC_PPC64_HIGHEST,
2367 BFD_RELOC_PPC64_HIGHEST_S,
2368 BFD_RELOC_PPC64_TOC16_LO,
2369 BFD_RELOC_PPC64_TOC16_HI,
2370 BFD_RELOC_PPC64_TOC16_HA,
2371 BFD_RELOC_PPC64_TOC,
dc810e39 2372 BFD_RELOC_PPC64_PLTGOT16,
5bd4f169
AM
2373 BFD_RELOC_PPC64_PLTGOT16_LO,
2374 BFD_RELOC_PPC64_PLTGOT16_HI,
2375 BFD_RELOC_PPC64_PLTGOT16_HA,
2376 BFD_RELOC_PPC64_ADDR16_DS,
2377 BFD_RELOC_PPC64_ADDR16_LO_DS,
2378 BFD_RELOC_PPC64_GOT16_DS,
2379 BFD_RELOC_PPC64_GOT16_LO_DS,
2380 BFD_RELOC_PPC64_PLT16_LO_DS,
2381 BFD_RELOC_PPC64_SECTOFF_DS,
2382 BFD_RELOC_PPC64_SECTOFF_LO_DS,
2383 BFD_RELOC_PPC64_TOC16_DS,
2384 BFD_RELOC_PPC64_TOC16_LO_DS,
2385 BFD_RELOC_PPC64_PLTGOT16_DS,
2386 BFD_RELOC_PPC64_PLTGOT16_LO_DS,
252b5132 2387
b5f79c76 2388/* IBM 370/390 relocations */
5b93d8bb
AM
2389 BFD_RELOC_I370_D12,
2390
252b5132
RH
2391/* The type of reloc used to build a contructor table - at the moment
2392probably a 32 bit wide absolute relocation, but the target can choose.
b5f79c76 2393It generally does map to one of the other relocation types. */
252b5132
RH
2394 BFD_RELOC_CTOR,
2395
2396/* ARM 26 bit pc-relative branch. The lowest two bits must be zero and are
b5f79c76 2397not stored in the instruction. */
252b5132
RH
2398 BFD_RELOC_ARM_PCREL_BRANCH,
2399
dfc5f959
NC
2400/* ARM 26 bit pc-relative branch. The lowest bit must be zero and is
2401not stored in the instruction. The 2nd lowest bit comes from a 1 bit
b5f79c76 2402field in the instruction. */
dfc5f959
NC
2403 BFD_RELOC_ARM_PCREL_BLX,
2404
2405/* Thumb 22 bit pc-relative branch. The lowest bit must be zero and is
2406not stored in the instruction. The 2nd lowest bit comes from a 1 bit
b5f79c76 2407field in the instruction. */
dfc5f959
NC
2408 BFD_RELOC_THUMB_PCREL_BLX,
2409
252b5132 2410/* These relocs are only used within the ARM assembler. They are not
b5f79c76 2411(at present) written to any object files. */
252b5132 2412 BFD_RELOC_ARM_IMMEDIATE,
752149a0 2413 BFD_RELOC_ARM_ADRL_IMMEDIATE,
252b5132
RH
2414 BFD_RELOC_ARM_OFFSET_IMM,
2415 BFD_RELOC_ARM_SHIFT_IMM,
2416 BFD_RELOC_ARM_SWI,
2417 BFD_RELOC_ARM_MULTI,
2418 BFD_RELOC_ARM_CP_OFF_IMM,
2419 BFD_RELOC_ARM_ADR_IMM,
2420 BFD_RELOC_ARM_LDR_IMM,
2421 BFD_RELOC_ARM_LITERAL,
2422 BFD_RELOC_ARM_IN_POOL,
2423 BFD_RELOC_ARM_OFFSET_IMM8,
2424 BFD_RELOC_ARM_HWLITERAL,
2425 BFD_RELOC_ARM_THUMB_ADD,
2426 BFD_RELOC_ARM_THUMB_IMM,
2427 BFD_RELOC_ARM_THUMB_SHIFT,
2428 BFD_RELOC_ARM_THUMB_OFFSET,
2429 BFD_RELOC_ARM_GOT12,
2430 BFD_RELOC_ARM_GOT32,
2431 BFD_RELOC_ARM_JUMP_SLOT,
2432 BFD_RELOC_ARM_COPY,
2433 BFD_RELOC_ARM_GLOB_DAT,
2434 BFD_RELOC_ARM_PLT32,
2435 BFD_RELOC_ARM_RELATIVE,
2436 BFD_RELOC_ARM_GOTOFF,
2437 BFD_RELOC_ARM_GOTPC,
2438
b5f79c76 2439/* Hitachi SH relocs. Not all of these appear in object files. */
252b5132
RH
2440 BFD_RELOC_SH_PCDISP8BY2,
2441 BFD_RELOC_SH_PCDISP12BY2,
2442 BFD_RELOC_SH_IMM4,
2443 BFD_RELOC_SH_IMM4BY2,
2444 BFD_RELOC_SH_IMM4BY4,
2445 BFD_RELOC_SH_IMM8,
2446 BFD_RELOC_SH_IMM8BY2,
2447 BFD_RELOC_SH_IMM8BY4,
2448 BFD_RELOC_SH_PCRELIMM8BY2,
2449 BFD_RELOC_SH_PCRELIMM8BY4,
2450 BFD_RELOC_SH_SWITCH16,
2451 BFD_RELOC_SH_SWITCH32,
2452 BFD_RELOC_SH_USES,
2453 BFD_RELOC_SH_COUNT,
2454 BFD_RELOC_SH_ALIGN,
2455 BFD_RELOC_SH_CODE,
2456 BFD_RELOC_SH_DATA,
2457 BFD_RELOC_SH_LABEL,
015551fc
JR
2458 BFD_RELOC_SH_LOOP_START,
2459 BFD_RELOC_SH_LOOP_END,
1bd91689
AM
2460 BFD_RELOC_SH_COPY,
2461 BFD_RELOC_SH_GLOB_DAT,
2462 BFD_RELOC_SH_JMP_SLOT,
2463 BFD_RELOC_SH_RELATIVE,
2464 BFD_RELOC_SH_GOTPC,
54327882
AM
2465 BFD_RELOC_SH_GOT_LOW16,
2466 BFD_RELOC_SH_GOT_MEDLOW16,
2467 BFD_RELOC_SH_GOT_MEDHI16,
2468 BFD_RELOC_SH_GOT_HI16,
2469 BFD_RELOC_SH_GOTPLT_LOW16,
2470 BFD_RELOC_SH_GOTPLT_MEDLOW16,
2471 BFD_RELOC_SH_GOTPLT_MEDHI16,
2472 BFD_RELOC_SH_GOTPLT_HI16,
2473 BFD_RELOC_SH_PLT_LOW16,
2474 BFD_RELOC_SH_PLT_MEDLOW16,
2475 BFD_RELOC_SH_PLT_MEDHI16,
2476 BFD_RELOC_SH_PLT_HI16,
2477 BFD_RELOC_SH_GOTOFF_LOW16,
2478 BFD_RELOC_SH_GOTOFF_MEDLOW16,
2479 BFD_RELOC_SH_GOTOFF_MEDHI16,
2480 BFD_RELOC_SH_GOTOFF_HI16,
2481 BFD_RELOC_SH_GOTPC_LOW16,
2482 BFD_RELOC_SH_GOTPC_MEDLOW16,
2483 BFD_RELOC_SH_GOTPC_MEDHI16,
2484 BFD_RELOC_SH_GOTPC_HI16,
2485 BFD_RELOC_SH_COPY64,
2486 BFD_RELOC_SH_GLOB_DAT64,
2487 BFD_RELOC_SH_JMP_SLOT64,
2488 BFD_RELOC_SH_RELATIVE64,
2489 BFD_RELOC_SH_GOT10BY4,
2490 BFD_RELOC_SH_GOT10BY8,
2491 BFD_RELOC_SH_GOTPLT10BY4,
2492 BFD_RELOC_SH_GOTPLT10BY8,
2493 BFD_RELOC_SH_GOTPLT32,
2494 BFD_RELOC_SH_SHMEDIA_CODE,
2495 BFD_RELOC_SH_IMMU5,
2496 BFD_RELOC_SH_IMMS6,
2497 BFD_RELOC_SH_IMMS6BY32,
2498 BFD_RELOC_SH_IMMU6,
2499 BFD_RELOC_SH_IMMS10,
2500 BFD_RELOC_SH_IMMS10BY2,
2501 BFD_RELOC_SH_IMMS10BY4,
2502 BFD_RELOC_SH_IMMS10BY8,
2503 BFD_RELOC_SH_IMMS16,
2504 BFD_RELOC_SH_IMMU16,
2505 BFD_RELOC_SH_IMM_LOW16,
2506 BFD_RELOC_SH_IMM_LOW16_PCREL,
2507 BFD_RELOC_SH_IMM_MEDLOW16,
2508 BFD_RELOC_SH_IMM_MEDLOW16_PCREL,
2509 BFD_RELOC_SH_IMM_MEDHI16,
2510 BFD_RELOC_SH_IMM_MEDHI16_PCREL,
2511 BFD_RELOC_SH_IMM_HI16,
2512 BFD_RELOC_SH_IMM_HI16_PCREL,
2513 BFD_RELOC_SH_PT_16,
5dc97655
KK
2514 BFD_RELOC_SH_TLS_GD_32,
2515 BFD_RELOC_SH_TLS_LD_32,
2516 BFD_RELOC_SH_TLS_LDO_32,
2517 BFD_RELOC_SH_TLS_IE_32,
2518 BFD_RELOC_SH_TLS_LE_32,
2519 BFD_RELOC_SH_TLS_DTPMOD32,
2520 BFD_RELOC_SH_TLS_DTPOFF32,
2521 BFD_RELOC_SH_TLS_TPOFF32,
252b5132
RH
2522
2523/* Thumb 23-, 12- and 9-bit pc-relative branches. The lowest bit must
b5f79c76 2524be zero and is not stored in the instruction. */
252b5132
RH
2525 BFD_RELOC_THUMB_PCREL_BRANCH9,
2526 BFD_RELOC_THUMB_PCREL_BRANCH12,
2527 BFD_RELOC_THUMB_PCREL_BRANCH23,
2528
0d2bcfaf 2529/* ARC Cores relocs.
252b5132
RH
2530ARC 22 bit pc-relative branch. The lowest two bits must be zero and are
2531not stored in the instruction. The high 20 bits are installed in bits 26
b5f79c76 2532through 7 of the instruction. */
252b5132
RH
2533 BFD_RELOC_ARC_B22_PCREL,
2534
2535/* ARC 26 bit absolute branch. The lowest two bits must be zero and are not
2536stored in the instruction. The high 24 bits are installed in bits 23
b5f79c76 2537through 0. */
252b5132
RH
2538 BFD_RELOC_ARC_B26,
2539
2540/* Mitsubishi D10V relocs.
2541This is a 10-bit reloc with the right 2 bits
b5f79c76 2542assumed to be 0. */
252b5132
RH
2543 BFD_RELOC_D10V_10_PCREL_R,
2544
2545/* Mitsubishi D10V relocs.
2546This is a 10-bit reloc with the right 2 bits
2547assumed to be 0. This is the same as the previous reloc
2548except it is in the left container, i.e.,
b5f79c76 2549shifted left 15 bits. */
252b5132
RH
2550 BFD_RELOC_D10V_10_PCREL_L,
2551
2552/* This is an 18-bit reloc with the right 2 bits
b5f79c76 2553assumed to be 0. */
252b5132
RH
2554 BFD_RELOC_D10V_18,
2555
2556/* This is an 18-bit reloc with the right 2 bits
b5f79c76 2557assumed to be 0. */
252b5132
RH
2558 BFD_RELOC_D10V_18_PCREL,
2559
2560/* Mitsubishi D30V relocs.
b5f79c76 2561This is a 6-bit absolute reloc. */
252b5132
RH
2562 BFD_RELOC_D30V_6,
2563
adde6300 2564/* This is a 6-bit pc-relative reloc with
b5f79c76 2565the right 3 bits assumed to be 0. */
252b5132
RH
2566 BFD_RELOC_D30V_9_PCREL,
2567
adde6300 2568/* This is a 6-bit pc-relative reloc with
252b5132
RH
2569the right 3 bits assumed to be 0. Same
2570as the previous reloc but on the right side
b5f79c76 2571of the container. */
252b5132
RH
2572 BFD_RELOC_D30V_9_PCREL_R,
2573
adde6300 2574/* This is a 12-bit absolute reloc with the
b5f79c76 2575right 3 bitsassumed to be 0. */
252b5132
RH
2576 BFD_RELOC_D30V_15,
2577
adde6300 2578/* This is a 12-bit pc-relative reloc with
b5f79c76 2579the right 3 bits assumed to be 0. */
252b5132
RH
2580 BFD_RELOC_D30V_15_PCREL,
2581
adde6300 2582/* This is a 12-bit pc-relative reloc with
252b5132
RH
2583the right 3 bits assumed to be 0. Same
2584as the previous reloc but on the right side
b5f79c76 2585of the container. */
252b5132
RH
2586 BFD_RELOC_D30V_15_PCREL_R,
2587
adde6300 2588/* This is an 18-bit absolute reloc with
b5f79c76 2589the right 3 bits assumed to be 0. */
252b5132
RH
2590 BFD_RELOC_D30V_21,
2591
adde6300 2592/* This is an 18-bit pc-relative reloc with
b5f79c76 2593the right 3 bits assumed to be 0. */
252b5132
RH
2594 BFD_RELOC_D30V_21_PCREL,
2595
adde6300 2596/* This is an 18-bit pc-relative reloc with
252b5132
RH
2597the right 3 bits assumed to be 0. Same
2598as the previous reloc but on the right side
b5f79c76 2599of the container. */
252b5132
RH
2600 BFD_RELOC_D30V_21_PCREL_R,
2601
b5f79c76 2602/* This is a 32-bit absolute reloc. */
252b5132
RH
2603 BFD_RELOC_D30V_32,
2604
b5f79c76 2605/* This is a 32-bit pc-relative reloc. */
252b5132
RH
2606 BFD_RELOC_D30V_32_PCREL,
2607
d172d4ba
NC
2608/* DLX relocs */
2609 BFD_RELOC_DLX_HI16_S,
2610
2611/* DLX relocs */
2612 BFD_RELOC_DLX_LO16,
2613
2614/* DLX relocs */
2615 BFD_RELOC_DLX_JMP26,
2616
252b5132 2617/* Mitsubishi M32R relocs.
b5f79c76 2618This is a 24 bit absolute address. */
252b5132
RH
2619 BFD_RELOC_M32R_24,
2620
b5f79c76 2621/* This is a 10-bit pc-relative reloc with the right 2 bits assumed to be 0. */
252b5132
RH
2622 BFD_RELOC_M32R_10_PCREL,
2623
b5f79c76 2624/* This is an 18-bit reloc with the right 2 bits assumed to be 0. */
252b5132
RH
2625 BFD_RELOC_M32R_18_PCREL,
2626
b5f79c76 2627/* This is a 26-bit reloc with the right 2 bits assumed to be 0. */
252b5132
RH
2628 BFD_RELOC_M32R_26_PCREL,
2629
2630/* This is a 16-bit reloc containing the high 16 bits of an address
b5f79c76 2631used when the lower 16 bits are treated as unsigned. */
252b5132
RH
2632 BFD_RELOC_M32R_HI16_ULO,
2633
2634/* This is a 16-bit reloc containing the high 16 bits of an address
b5f79c76 2635used when the lower 16 bits are treated as signed. */
252b5132
RH
2636 BFD_RELOC_M32R_HI16_SLO,
2637
b5f79c76 2638/* This is a 16-bit reloc containing the lower 16 bits of an address. */
252b5132
RH
2639 BFD_RELOC_M32R_LO16,
2640
2641/* This is a 16-bit reloc containing the small data area offset for use in
b5f79c76 2642add3, load, and store instructions. */
252b5132
RH
2643 BFD_RELOC_M32R_SDA16,
2644
b5f79c76 2645/* This is a 9-bit reloc */
252b5132
RH
2646 BFD_RELOC_V850_9_PCREL,
2647
b5f79c76 2648/* This is a 22-bit reloc */
252b5132
RH
2649 BFD_RELOC_V850_22_PCREL,
2650
b5f79c76 2651/* This is a 16 bit offset from the short data area pointer. */
252b5132
RH
2652 BFD_RELOC_V850_SDA_16_16_OFFSET,
2653
2654/* This is a 16 bit offset (of which only 15 bits are used) from the
b5f79c76 2655short data area pointer. */
252b5132
RH
2656 BFD_RELOC_V850_SDA_15_16_OFFSET,
2657
b5f79c76 2658/* This is a 16 bit offset from the zero data area pointer. */
252b5132
RH
2659 BFD_RELOC_V850_ZDA_16_16_OFFSET,
2660
2661/* This is a 16 bit offset (of which only 15 bits are used) from the
b5f79c76 2662zero data area pointer. */
252b5132
RH
2663 BFD_RELOC_V850_ZDA_15_16_OFFSET,
2664
2665/* This is an 8 bit offset (of which only 6 bits are used) from the
b5f79c76 2666tiny data area pointer. */
252b5132
RH
2667 BFD_RELOC_V850_TDA_6_8_OFFSET,
2668
2669/* This is an 8bit offset (of which only 7 bits are used) from the tiny
b5f79c76 2670data area pointer. */
252b5132
RH
2671 BFD_RELOC_V850_TDA_7_8_OFFSET,
2672
b5f79c76 2673/* This is a 7 bit offset from the tiny data area pointer. */
252b5132
RH
2674 BFD_RELOC_V850_TDA_7_7_OFFSET,
2675
b5f79c76 2676/* This is a 16 bit offset from the tiny data area pointer. */
252b5132
RH
2677 BFD_RELOC_V850_TDA_16_16_OFFSET,
2678
2679/* This is a 5 bit offset (of which only 4 bits are used) from the tiny
b5f79c76 2680data area pointer. */
252b5132
RH
2681 BFD_RELOC_V850_TDA_4_5_OFFSET,
2682
b5f79c76 2683/* This is a 4 bit offset from the tiny data area pointer. */
252b5132
RH
2684 BFD_RELOC_V850_TDA_4_4_OFFSET,
2685
2686/* This is a 16 bit offset from the short data area pointer, with the
b5f79c76 2687bits placed non-contigously in the instruction. */
252b5132
RH
2688 BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET,
2689
2690/* This is a 16 bit offset from the zero data area pointer, with the
b5f79c76 2691bits placed non-contigously in the instruction. */
252b5132
RH
2692 BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET,
2693
b5f79c76 2694/* This is a 6 bit offset from the call table base pointer. */
252b5132
RH
2695 BFD_RELOC_V850_CALLT_6_7_OFFSET,
2696
b5f79c76 2697/* This is a 16 bit offset from the call table base pointer. */
252b5132
RH
2698 BFD_RELOC_V850_CALLT_16_16_OFFSET,
2699
86aba9db
NC
2700/* Used for relaxing indirect function calls. */
2701 BFD_RELOC_V850_LONGCALL,
2702
2703/* Used for relaxing indirect jumps. */
2704 BFD_RELOC_V850_LONGJUMP,
2705
2706/* Used to maintain alignment whilst relaxing. */
2707 BFD_RELOC_V850_ALIGN,
541389e2 2708
252b5132 2709/* This is a 32bit pcrel reloc for the mn10300, offset by two bytes in the
b5f79c76 2710instruction. */
252b5132
RH
2711 BFD_RELOC_MN10300_32_PCREL,
2712
2713/* This is a 16bit pcrel reloc for the mn10300, offset by two bytes in the
b5f79c76 2714instruction. */
252b5132
RH
2715 BFD_RELOC_MN10300_16_PCREL,
2716
2717/* This is a 8bit DP reloc for the tms320c30, where the most
2718significant 8 bits of a 24 bit word are placed into the least
b5f79c76 2719significant 8 bits of the opcode. */
252b5132
RH
2720 BFD_RELOC_TIC30_LDP,
2721
81635ce4
TW
2722/* This is a 7bit reloc for the tms320c54x, where the least
2723significant 7 bits of a 16 bit word are placed into the least
b5f79c76 2724significant 7 bits of the opcode. */
81635ce4
TW
2725 BFD_RELOC_TIC54X_PARTLS7,
2726
2727/* This is a 9bit DP reloc for the tms320c54x, where the most
2728significant 9 bits of a 16 bit word are placed into the least
b5f79c76 2729significant 9 bits of the opcode. */
81635ce4
TW
2730 BFD_RELOC_TIC54X_PARTMS9,
2731
b5f79c76 2732/* This is an extended address 23-bit reloc for the tms320c54x. */
81635ce4
TW
2733 BFD_RELOC_TIC54X_23,
2734
0d2bcfaf
NC
2735/* This is a 16-bit reloc for the tms320c54x, where the least
2736significant 16 bits of a 23-bit extended address are placed into
b5f79c76 2737the opcode. */
81635ce4
TW
2738 BFD_RELOC_TIC54X_16_OF_23,
2739
2740/* This is a reloc for the tms320c54x, where the most
0d2bcfaf 2741significant 7 bits of a 23-bit extended address are placed into
b5f79c76 2742the opcode. */
81635ce4
TW
2743 BFD_RELOC_TIC54X_MS7_OF_23,
2744
b5f79c76 2745/* This is a 48 bit reloc for the FR30 that stores 32 bits. */
252b5132
RH
2746 BFD_RELOC_FR30_48,
2747
2748/* This is a 32 bit reloc for the FR30 that stores 20 bits split up into
b5f79c76 2749two sections. */
252b5132
RH
2750 BFD_RELOC_FR30_20,
2751
2752/* This is a 16 bit reloc for the FR30 that stores a 6 bit word offset in
b5f79c76 27534 bits. */
252b5132
RH
2754 BFD_RELOC_FR30_6_IN_4,
2755
2756/* This is a 16 bit reloc for the FR30 that stores an 8 bit byte offset
b5f79c76 2757into 8 bits. */
252b5132
RH
2758 BFD_RELOC_FR30_8_IN_8,
2759
2760/* This is a 16 bit reloc for the FR30 that stores a 9 bit short offset
b5f79c76 2761into 8 bits. */
252b5132
RH
2762 BFD_RELOC_FR30_9_IN_8,
2763
2764/* This is a 16 bit reloc for the FR30 that stores a 10 bit word offset
b5f79c76 2765into 8 bits. */
252b5132
RH
2766 BFD_RELOC_FR30_10_IN_8,
2767
2768/* This is a 16 bit reloc for the FR30 that stores a 9 bit pc relative
b5f79c76 2769short offset into 8 bits. */
252b5132
RH
2770 BFD_RELOC_FR30_9_PCREL,
2771
2772/* This is a 16 bit reloc for the FR30 that stores a 12 bit pc relative
b5f79c76 2773short offset into 11 bits. */
252b5132
RH
2774 BFD_RELOC_FR30_12_PCREL,
2775
b5f79c76 2776/* Motorola Mcore relocations. */
252b5132
RH
2777 BFD_RELOC_MCORE_PCREL_IMM8BY4,
2778 BFD_RELOC_MCORE_PCREL_IMM11BY2,
2779 BFD_RELOC_MCORE_PCREL_IMM4BY2,
2780 BFD_RELOC_MCORE_PCREL_32,
2781 BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2,
36797d47 2782 BFD_RELOC_MCORE_RVA,
252b5132 2783
b5f79c76 2784/* These are relocations for the GETA instruction. */
3c3bdf30
NC
2785 BFD_RELOC_MMIX_GETA,
2786 BFD_RELOC_MMIX_GETA_1,
2787 BFD_RELOC_MMIX_GETA_2,
2788 BFD_RELOC_MMIX_GETA_3,
2789
b5f79c76 2790/* These are relocations for a conditional branch instruction. */
3c3bdf30
NC
2791 BFD_RELOC_MMIX_CBRANCH,
2792 BFD_RELOC_MMIX_CBRANCH_J,
2793 BFD_RELOC_MMIX_CBRANCH_1,
2794 BFD_RELOC_MMIX_CBRANCH_2,
2795 BFD_RELOC_MMIX_CBRANCH_3,
2796
b5f79c76 2797/* These are relocations for the PUSHJ instruction. */
3c3bdf30
NC
2798 BFD_RELOC_MMIX_PUSHJ,
2799 BFD_RELOC_MMIX_PUSHJ_1,
2800 BFD_RELOC_MMIX_PUSHJ_2,
2801 BFD_RELOC_MMIX_PUSHJ_3,
2802
b5f79c76 2803/* These are relocations for the JMP instruction. */
3c3bdf30
NC
2804 BFD_RELOC_MMIX_JMP,
2805 BFD_RELOC_MMIX_JMP_1,
2806 BFD_RELOC_MMIX_JMP_2,
2807 BFD_RELOC_MMIX_JMP_3,
2808
2809/* This is a relocation for a relative address as in a GETA instruction or
b5f79c76 2810a branch. */
3c3bdf30
NC
2811 BFD_RELOC_MMIX_ADDR19,
2812
b5f79c76 2813/* This is a relocation for a relative address as in a JMP instruction. */
3c3bdf30
NC
2814 BFD_RELOC_MMIX_ADDR27,
2815
2816/* This is a relocation for an instruction field that may be a general
b5f79c76 2817register or a value 0..255. */
3c3bdf30
NC
2818 BFD_RELOC_MMIX_REG_OR_BYTE,
2819
2820/* This is a relocation for an instruction field that may be a general
b5f79c76 2821register. */
3c3bdf30
NC
2822 BFD_RELOC_MMIX_REG,
2823
2824/* This is a relocation for two instruction fields holding a register and
b5f79c76 2825an offset, the equivalent of the relocation. */
3c3bdf30
NC
2826 BFD_RELOC_MMIX_BASE_PLUS_OFFSET,
2827
2828/* This relocation is an assertion that the expression is not allocated as
b5f79c76 2829a global register. It does not modify contents. */
3c3bdf30
NC
2830 BFD_RELOC_MMIX_LOCAL,
2831
adde6300 2832/* This is a 16 bit reloc for the AVR that stores 8 bit pc relative
b5f79c76 2833short offset into 7 bits. */
adde6300
AM
2834 BFD_RELOC_AVR_7_PCREL,
2835
2836/* This is a 16 bit reloc for the AVR that stores 13 bit pc relative
b5f79c76 2837short offset into 12 bits. */
adde6300
AM
2838 BFD_RELOC_AVR_13_PCREL,
2839
2840/* This is a 16 bit reloc for the AVR that stores 17 bit value (usually
b5f79c76 2841program memory address) into 16 bits. */
adde6300
AM
2842 BFD_RELOC_AVR_16_PM,
2843
2844/* This is a 16 bit reloc for the AVR that stores 8 bit value (usually
b5f79c76 2845data memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2846 BFD_RELOC_AVR_LO8_LDI,
2847
2848/* This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
b5f79c76 2849of data memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2850 BFD_RELOC_AVR_HI8_LDI,
2851
2852/* This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
b5f79c76 2853of program memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2854 BFD_RELOC_AVR_HH8_LDI,
2855
2856/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
b5f79c76 2857(usually data memory address) into 8 bit immediate value of SUBI insn. */
adde6300
AM
2858 BFD_RELOC_AVR_LO8_LDI_NEG,
2859
2860/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
2861(high 8 bit of data memory address) into 8 bit immediate value of
b5f79c76 2862SUBI insn. */
adde6300
AM
2863 BFD_RELOC_AVR_HI8_LDI_NEG,
2864
2865/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
2866(most high 8 bit of program memory address) into 8 bit immediate value
b5f79c76 2867of LDI or SUBI insn. */
adde6300
AM
2868 BFD_RELOC_AVR_HH8_LDI_NEG,
2869
2870/* This is a 16 bit reloc for the AVR that stores 8 bit value (usually
b5f79c76 2871command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2872 BFD_RELOC_AVR_LO8_LDI_PM,
2873
2874/* This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
b5f79c76 2875of command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2876 BFD_RELOC_AVR_HI8_LDI_PM,
2877
2878/* This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
b5f79c76 2879of command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
2880 BFD_RELOC_AVR_HH8_LDI_PM,
2881
2882/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
b5f79c76 2883(usually command address) into 8 bit immediate value of SUBI insn. */
adde6300
AM
2884 BFD_RELOC_AVR_LO8_LDI_PM_NEG,
2885
2886/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
2887(high 8 bit of 16 bit command address) into 8 bit immediate value
b5f79c76 2888of SUBI insn. */
adde6300
AM
2889 BFD_RELOC_AVR_HI8_LDI_PM_NEG,
2890
2891/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
2892(high 6 bit of 22 bit command address) into 8 bit immediate
b5f79c76 2893value of SUBI insn. */
adde6300
AM
2894 BFD_RELOC_AVR_HH8_LDI_PM_NEG,
2895
2896/* This is a 32 bit reloc for the AVR that stores 23 bit value
b5f79c76 2897into 22 bits. */
adde6300
AM
2898 BFD_RELOC_AVR_CALL,
2899
b5f79c76 2900/* Direct 12 bit. */
a85d7ed0
NC
2901 BFD_RELOC_390_12,
2902
b5f79c76 2903/* 12 bit GOT offset. */
a85d7ed0
NC
2904 BFD_RELOC_390_GOT12,
2905
b5f79c76 2906/* 32 bit PC relative PLT address. */
a85d7ed0
NC
2907 BFD_RELOC_390_PLT32,
2908
b5f79c76 2909/* Copy symbol at runtime. */
a85d7ed0
NC
2910 BFD_RELOC_390_COPY,
2911
b5f79c76 2912/* Create GOT entry. */
a85d7ed0
NC
2913 BFD_RELOC_390_GLOB_DAT,
2914
b5f79c76 2915/* Create PLT entry. */
a85d7ed0
NC
2916 BFD_RELOC_390_JMP_SLOT,
2917
b5f79c76 2918/* Adjust by program base. */
a85d7ed0
NC
2919 BFD_RELOC_390_RELATIVE,
2920
b5f79c76 2921/* 32 bit PC relative offset to GOT. */
a85d7ed0
NC
2922 BFD_RELOC_390_GOTPC,
2923
b5f79c76 2924/* 16 bit GOT offset. */
a85d7ed0
NC
2925 BFD_RELOC_390_GOT16,
2926
b5f79c76 2927/* PC relative 16 bit shifted by 1. */
a85d7ed0
NC
2928 BFD_RELOC_390_PC16DBL,
2929
b5f79c76 2930/* 16 bit PC rel. PLT shifted by 1. */
a85d7ed0
NC
2931 BFD_RELOC_390_PLT16DBL,
2932
b5f79c76 2933/* PC relative 32 bit shifted by 1. */
a85d7ed0
NC
2934 BFD_RELOC_390_PC32DBL,
2935
b5f79c76 2936/* 32 bit PC rel. PLT shifted by 1. */
a85d7ed0
NC
2937 BFD_RELOC_390_PLT32DBL,
2938
b5f79c76 2939/* 32 bit PC rel. GOT shifted by 1. */
a85d7ed0
NC
2940 BFD_RELOC_390_GOTPCDBL,
2941
b5f79c76 2942/* 64 bit GOT offset. */
a85d7ed0
NC
2943 BFD_RELOC_390_GOT64,
2944
b5f79c76 2945/* 64 bit PC relative PLT address. */
a85d7ed0
NC
2946 BFD_RELOC_390_PLT64,
2947
b5f79c76 2948/* 32 bit rel. offset to GOT entry. */
a85d7ed0
NC
2949 BFD_RELOC_390_GOTENT,
2950
cf88bb9f
NC
2951/* Scenix IP2K - 9-bit register number / data address */
2952 BFD_RELOC_IP2K_FR9,
2953
2954/* Scenix IP2K - 4-bit register/data bank number */
2955 BFD_RELOC_IP2K_BANK,
2956
2957/* Scenix IP2K - low 13 bits of instruction word address */
2958 BFD_RELOC_IP2K_ADDR16CJP,
2959
2960/* Scenix IP2K - high 3 bits of instruction word address */
2961 BFD_RELOC_IP2K_PAGE3,
2962
2963/* Scenix IP2K - ext/low/high 8 bits of data address */
2964 BFD_RELOC_IP2K_LO8DATA,
2965 BFD_RELOC_IP2K_HI8DATA,
2966 BFD_RELOC_IP2K_EX8DATA,
2967
2968/* Scenix IP2K - low/high 8 bits of instruction word address */
2969 BFD_RELOC_IP2K_LO8INSN,
2970 BFD_RELOC_IP2K_HI8INSN,
2971
2972/* Scenix IP2K - even/odd PC modifier to modify snb pcl.0 */
2973 BFD_RELOC_IP2K_PC_SKIP,
2974
2975/* Scenix IP2K - 16 bit word address in text section. */
2976 BFD_RELOC_IP2K_TEXT,
2977
2978/* Scenix IP2K - 7-bit sp or dp offset */
2979 BFD_RELOC_IP2K_FR_OFFSET,
2980
2981/* Scenix VPE4K coprocessor - data/insn-space addressing */
2982 BFD_RELOC_VPE4KMATH_DATA,
2983 BFD_RELOC_VPE4KMATH_INSN,
2984
adde6300 2985/* These two relocations are used by the linker to determine which of
252b5132
RH
2986the entries in a C++ virtual function table are actually used. When
2987the --gc-sections option is given, the linker will zero out the entries
2988that are not used, so that the code for those functions need not be
2989included in the output.
2990
2991VTABLE_INHERIT is a zero-space relocation used to describe to the
2992linker the inheritence tree of a C++ virtual function table. The
2993relocation's symbol should be the parent class' vtable, and the
2994relocation should be located at the child vtable.
2995
2996VTABLE_ENTRY is a zero-space relocation that describes the use of a
2997virtual function table entry. The reloc's symbol should refer to the
2998table of the class mentioned in the code. Off of that base, an offset
adde6300 2999describes the entry that is being used. For Rela hosts, this offset
252b5132 3000is stored in the reloc's addend. For Rel hosts, we are forced to put
b5f79c76 3001this offset in the reloc's section offset. */
252b5132
RH
3002 BFD_RELOC_VTABLE_INHERIT,
3003 BFD_RELOC_VTABLE_ENTRY,
800eeca4 3004
b5f79c76 3005/* Intel IA64 Relocations. */
800eeca4
JW
3006 BFD_RELOC_IA64_IMM14,
3007 BFD_RELOC_IA64_IMM22,
3008 BFD_RELOC_IA64_IMM64,
3009 BFD_RELOC_IA64_DIR32MSB,
3010 BFD_RELOC_IA64_DIR32LSB,
3011 BFD_RELOC_IA64_DIR64MSB,
3012 BFD_RELOC_IA64_DIR64LSB,
3013 BFD_RELOC_IA64_GPREL22,
3014 BFD_RELOC_IA64_GPREL64I,
3015 BFD_RELOC_IA64_GPREL32MSB,
3016 BFD_RELOC_IA64_GPREL32LSB,
3017 BFD_RELOC_IA64_GPREL64MSB,
3018 BFD_RELOC_IA64_GPREL64LSB,
3019 BFD_RELOC_IA64_LTOFF22,
3020 BFD_RELOC_IA64_LTOFF64I,
3021 BFD_RELOC_IA64_PLTOFF22,
3022 BFD_RELOC_IA64_PLTOFF64I,
3023 BFD_RELOC_IA64_PLTOFF64MSB,
3024 BFD_RELOC_IA64_PLTOFF64LSB,
3025 BFD_RELOC_IA64_FPTR64I,
3026 BFD_RELOC_IA64_FPTR32MSB,
3027 BFD_RELOC_IA64_FPTR32LSB,
3028 BFD_RELOC_IA64_FPTR64MSB,
3029 BFD_RELOC_IA64_FPTR64LSB,
3030 BFD_RELOC_IA64_PCREL21B,
748abff6 3031 BFD_RELOC_IA64_PCREL21BI,
800eeca4
JW
3032 BFD_RELOC_IA64_PCREL21M,
3033 BFD_RELOC_IA64_PCREL21F,
748abff6
RH
3034 BFD_RELOC_IA64_PCREL22,
3035 BFD_RELOC_IA64_PCREL60B,
3036 BFD_RELOC_IA64_PCREL64I,
800eeca4
JW
3037 BFD_RELOC_IA64_PCREL32MSB,
3038 BFD_RELOC_IA64_PCREL32LSB,
3039 BFD_RELOC_IA64_PCREL64MSB,
3040 BFD_RELOC_IA64_PCREL64LSB,
3041 BFD_RELOC_IA64_LTOFF_FPTR22,
3042 BFD_RELOC_IA64_LTOFF_FPTR64I,
a4bd8390
JW
3043 BFD_RELOC_IA64_LTOFF_FPTR32MSB,
3044 BFD_RELOC_IA64_LTOFF_FPTR32LSB,
800eeca4
JW
3045 BFD_RELOC_IA64_LTOFF_FPTR64MSB,
3046 BFD_RELOC_IA64_LTOFF_FPTR64LSB,
800eeca4
JW
3047 BFD_RELOC_IA64_SEGREL32MSB,
3048 BFD_RELOC_IA64_SEGREL32LSB,
3049 BFD_RELOC_IA64_SEGREL64MSB,
3050 BFD_RELOC_IA64_SEGREL64LSB,
3051 BFD_RELOC_IA64_SECREL32MSB,
3052 BFD_RELOC_IA64_SECREL32LSB,
3053 BFD_RELOC_IA64_SECREL64MSB,
3054 BFD_RELOC_IA64_SECREL64LSB,
3055 BFD_RELOC_IA64_REL32MSB,
3056 BFD_RELOC_IA64_REL32LSB,
3057 BFD_RELOC_IA64_REL64MSB,
3058 BFD_RELOC_IA64_REL64LSB,
3059 BFD_RELOC_IA64_LTV32MSB,
3060 BFD_RELOC_IA64_LTV32LSB,
3061 BFD_RELOC_IA64_LTV64MSB,
3062 BFD_RELOC_IA64_LTV64LSB,
3063 BFD_RELOC_IA64_IPLTMSB,
3064 BFD_RELOC_IA64_IPLTLSB,
800eeca4 3065 BFD_RELOC_IA64_COPY,
13ae64f3
JJ
3066 BFD_RELOC_IA64_LTOFF22X,
3067 BFD_RELOC_IA64_LDXMOV,
3068 BFD_RELOC_IA64_TPREL14,
800eeca4 3069 BFD_RELOC_IA64_TPREL22,
13ae64f3 3070 BFD_RELOC_IA64_TPREL64I,
800eeca4
JW
3071 BFD_RELOC_IA64_TPREL64MSB,
3072 BFD_RELOC_IA64_TPREL64LSB,
13ae64f3
JJ
3073 BFD_RELOC_IA64_LTOFF_TPREL22,
3074 BFD_RELOC_IA64_DTPMOD64MSB,
3075 BFD_RELOC_IA64_DTPMOD64LSB,
3076 BFD_RELOC_IA64_LTOFF_DTPMOD22,
3077 BFD_RELOC_IA64_DTPREL14,
3078 BFD_RELOC_IA64_DTPREL22,
3079 BFD_RELOC_IA64_DTPREL64I,
3080 BFD_RELOC_IA64_DTPREL32MSB,
3081 BFD_RELOC_IA64_DTPREL32LSB,
3082 BFD_RELOC_IA64_DTPREL64MSB,
3083 BFD_RELOC_IA64_DTPREL64LSB,
3084 BFD_RELOC_IA64_LTOFF_DTPREL22,
60bcf0fa
NC
3085
3086/* Motorola 68HC11 reloc.
3dbfec86 3087This is the 8 bit high part of an absolute address. */
60bcf0fa
NC
3088 BFD_RELOC_M68HC11_HI8,
3089
3090/* Motorola 68HC11 reloc.
3dbfec86 3091This is the 8 bit low part of an absolute address. */
60bcf0fa
NC
3092 BFD_RELOC_M68HC11_LO8,
3093
3094/* Motorola 68HC11 reloc.
3dbfec86 3095This is the 3 bit of a value. */
60bcf0fa 3096 BFD_RELOC_M68HC11_3B,
06c15ad7 3097
3dbfec86
SC
3098/* Motorola 68HC11 reloc.
3099This reloc marks the beginning of a jump/call instruction.
3100It is used for linker relaxation to correctly identify beginning
3101of instruction and change some branchs to use PC-relative
3102addressing mode. */
3103 BFD_RELOC_M68HC11_RL_JUMP,
3104
3105/* Motorola 68HC11 reloc.
3106This reloc marks a group of several instructions that gcc generates
3107and for which the linker relaxation pass can modify and/or remove
3108some of them. */
3109 BFD_RELOC_M68HC11_RL_GROUP,
3110
3111/* Motorola 68HC11 reloc.
3112This is the 16-bit lower part of an address. It is used for 'call'
3113instruction to specify the symbol address without any special
3114transformation (due to memory bank window). */
3115 BFD_RELOC_M68HC11_LO16,
3116
3117/* Motorola 68HC11 reloc.
3118This is a 8-bit reloc that specifies the page number of an address.
3119It is used by 'call' instruction to specify the page number of
3120the symbol. */
3121 BFD_RELOC_M68HC11_PAGE,
3122
3123/* Motorola 68HC11 reloc.
3124This is a 24-bit reloc that represents the address with a 16-bit
3125value and a 8-bit page number. The symbol address is transformed
3126to follow the 16K memory bank of 68HC12 (seen as mapped in the window). */
3127 BFD_RELOC_M68HC11_24,
3128
06c15ad7 3129/* These relocs are only used within the CRIS assembler. They are not
b5f79c76 3130(at present) written to any object files. */
06c15ad7
HPN
3131 BFD_RELOC_CRIS_BDISP8,
3132 BFD_RELOC_CRIS_UNSIGNED_5,
3133 BFD_RELOC_CRIS_SIGNED_6,
3134 BFD_RELOC_CRIS_UNSIGNED_6,
3135 BFD_RELOC_CRIS_UNSIGNED_4,
a87fdb8d 3136
b5f79c76 3137/* Relocs used in ELF shared libraries for CRIS. */
58d29fc3
HPN
3138 BFD_RELOC_CRIS_COPY,
3139 BFD_RELOC_CRIS_GLOB_DAT,
3140 BFD_RELOC_CRIS_JUMP_SLOT,
3141 BFD_RELOC_CRIS_RELATIVE,
3142
b5f79c76 3143/* 32-bit offset to symbol-entry within GOT. */
58d29fc3
HPN
3144 BFD_RELOC_CRIS_32_GOT,
3145
b5f79c76 3146/* 16-bit offset to symbol-entry within GOT. */
58d29fc3
HPN
3147 BFD_RELOC_CRIS_16_GOT,
3148
b5f79c76 3149/* 32-bit offset to symbol-entry within GOT, with PLT handling. */
58d29fc3
HPN
3150 BFD_RELOC_CRIS_32_GOTPLT,
3151
b5f79c76 3152/* 16-bit offset to symbol-entry within GOT, with PLT handling. */
58d29fc3
HPN
3153 BFD_RELOC_CRIS_16_GOTPLT,
3154
b5f79c76 3155/* 32-bit offset to symbol, relative to GOT. */
58d29fc3
HPN
3156 BFD_RELOC_CRIS_32_GOTREL,
3157
b5f79c76 3158/* 32-bit offset to symbol with PLT entry, relative to GOT. */
58d29fc3
HPN
3159 BFD_RELOC_CRIS_32_PLT_GOTREL,
3160
b5f79c76 3161/* 32-bit offset to symbol with PLT entry, relative to this relocation. */
58d29fc3
HPN
3162 BFD_RELOC_CRIS_32_PLT_PCREL,
3163
b5f79c76 3164/* Intel i860 Relocations. */
a87fdb8d
JE
3165 BFD_RELOC_860_COPY,
3166 BFD_RELOC_860_GLOB_DAT,
3167 BFD_RELOC_860_JUMP_SLOT,
3168 BFD_RELOC_860_RELATIVE,
3169 BFD_RELOC_860_PC26,
3170 BFD_RELOC_860_PLT26,
3171 BFD_RELOC_860_PC16,
3172 BFD_RELOC_860_LOW0,
3173 BFD_RELOC_860_SPLIT0,
3174 BFD_RELOC_860_LOW1,
3175 BFD_RELOC_860_SPLIT1,
3176 BFD_RELOC_860_LOW2,
3177 BFD_RELOC_860_SPLIT2,
3178 BFD_RELOC_860_LOW3,
3179 BFD_RELOC_860_LOGOT0,
3180 BFD_RELOC_860_SPGOT0,
3181 BFD_RELOC_860_LOGOT1,
3182 BFD_RELOC_860_SPGOT1,
3183 BFD_RELOC_860_LOGOTOFF0,
3184 BFD_RELOC_860_SPGOTOFF0,
3185 BFD_RELOC_860_LOGOTOFF1,
3186 BFD_RELOC_860_SPGOTOFF1,
3187 BFD_RELOC_860_LOGOTOFF2,
3188 BFD_RELOC_860_LOGOTOFF3,
3189 BFD_RELOC_860_LOPC,
3190 BFD_RELOC_860_HIGHADJ,
3191 BFD_RELOC_860_HAGOT,
3192 BFD_RELOC_860_HAGOTOFF,
3193 BFD_RELOC_860_HAPC,
3194 BFD_RELOC_860_HIGH,
3195 BFD_RELOC_860_HIGOT,
3196 BFD_RELOC_860_HIGOTOFF,
b3baf5d0 3197
b5f79c76 3198/* OpenRISC Relocations. */
b3baf5d0
NC
3199 BFD_RELOC_OPENRISC_ABS_26,
3200 BFD_RELOC_OPENRISC_REL_26,
e01b0e69 3201
b5f79c76 3202/* H8 elf Relocations. */
e01b0e69
JR
3203 BFD_RELOC_H8_DIR16A8,
3204 BFD_RELOC_H8_DIR16R8,
3205 BFD_RELOC_H8_DIR24A8,
3206 BFD_RELOC_H8_DIR24R8,
3207 BFD_RELOC_H8_DIR32A16,
93fbbb04 3208
b5f79c76 3209/* Sony Xstormy16 Relocations. */
93fbbb04
GK
3210 BFD_RELOC_XSTORMY16_REL_12,
3211 BFD_RELOC_XSTORMY16_24,
3212 BFD_RELOC_XSTORMY16_FPTR16,
90ace9e9
JT
3213
3214/* Relocations used by VAX ELF. */
3215 BFD_RELOC_VAX_GLOB_DAT,
3216 BFD_RELOC_VAX_JMP_SLOT,
3217 BFD_RELOC_VAX_RELATIVE,
252b5132
RH
3218 BFD_RELOC_UNUSED };
3219typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
3220reloc_howto_type *
c02e7c3e 3221bfd_reloc_type_lookup PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
252b5132
RH
3222
3223const char *
c02e7c3e 3224bfd_get_reloc_code_name PARAMS ((bfd_reloc_code_real_type code));
252b5132 3225
e61463e1 3226/* Extracted from syms.c. */
541389e2 3227
252b5132
RH
3228typedef struct symbol_cache_entry
3229{
b5f79c76
NC
3230 /* A pointer to the BFD which owns the symbol. This information
3231 is necessary so that a back end can work out what additional
3232 information (invisible to the application writer) is carried
3233 with the symbol.
3234
3235 This field is *almost* redundant, since you can use section->owner
3236 instead, except that some symbols point to the global sections
3237 bfd_{abs,com,und}_section. This could be fixed by making
3238 these globals be per-bfd (or per-target-flavor). FIXME. */
3239 struct _bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field. */
3240
3241 /* The text of the symbol. The name is left alone, and not copied; the
3242 application may not alter it. */
dc810e39 3243 const char *name;
252b5132 3244
b5f79c76
NC
3245 /* The value of the symbol. This really should be a union of a
3246 numeric value with a pointer, since some flags indicate that
3247 a pointer to another symbol is stored here. */
252b5132
RH
3248 symvalue value;
3249
b5f79c76 3250 /* Attributes of a symbol. */
252b5132
RH
3251#define BSF_NO_FLAGS 0x00
3252
b5f79c76
NC
3253 /* The symbol has local scope; <<static>> in <<C>>. The value
3254 is the offset into the section of the data. */
252b5132
RH
3255#define BSF_LOCAL 0x01
3256
b5f79c76
NC
3257 /* The symbol has global scope; initialized data in <<C>>. The
3258 value is the offset into the section of the data. */
252b5132
RH
3259#define BSF_GLOBAL 0x02
3260
b5f79c76
NC
3261 /* The symbol has global scope and is exported. The value is
3262 the offset into the section of the data. */
3263#define BSF_EXPORT BSF_GLOBAL /* No real difference. */
252b5132 3264
b5f79c76
NC
3265 /* A normal C symbol would be one of:
3266 <<BSF_LOCAL>>, <<BSF_FORT_COMM>>, <<BSF_UNDEFINED>> or
3267 <<BSF_GLOBAL>>. */
252b5132 3268
b5f79c76
NC
3269 /* The symbol is a debugging record. The value has an arbitary
3270 meaning, unless BSF_DEBUGGING_RELOC is also set. */
252b5132
RH
3271#define BSF_DEBUGGING 0x08
3272
b5f79c76
NC
3273 /* The symbol denotes a function entry point. Used in ELF,
3274 perhaps others someday. */
252b5132
RH
3275#define BSF_FUNCTION 0x10
3276
b5f79c76 3277 /* Used by the linker. */
252b5132
RH
3278#define BSF_KEEP 0x20
3279#define BSF_KEEP_G 0x40
3280
b5f79c76
NC
3281 /* A weak global symbol, overridable without warnings by
3282 a regular global symbol of the same name. */
252b5132
RH
3283#define BSF_WEAK 0x80
3284
b5f79c76
NC
3285 /* This symbol was created to point to a section, e.g. ELF's
3286 STT_SECTION symbols. */
252b5132
RH
3287#define BSF_SECTION_SYM 0x100
3288
b5f79c76
NC
3289 /* The symbol used to be a common symbol, but now it is
3290 allocated. */
252b5132
RH
3291#define BSF_OLD_COMMON 0x200
3292
b5f79c76 3293 /* The default value for common data. */
252b5132
RH
3294#define BFD_FORT_COMM_DEFAULT_VALUE 0
3295
b5f79c76
NC
3296 /* In some files the type of a symbol sometimes alters its
3297 location in an output file - ie in coff a <<ISFCN>> symbol
3298 which is also <<C_EXT>> symbol appears where it was
3299 declared and not at the end of a section. This bit is set
3300 by the target BFD part to convey this information. */
252b5132
RH
3301#define BSF_NOT_AT_END 0x400
3302
b5f79c76 3303 /* Signal that the symbol is the label of constructor section. */
252b5132
RH
3304#define BSF_CONSTRUCTOR 0x800
3305
b5f79c76
NC
3306 /* Signal that the symbol is a warning symbol. The name is a
3307 warning. The name of the next symbol is the one to warn about;
3308 if a reference is made to a symbol with the same name as the next
3309 symbol, a warning is issued by the linker. */
252b5132
RH
3310#define BSF_WARNING 0x1000
3311
b5f79c76
NC
3312 /* Signal that the symbol is indirect. This symbol is an indirect
3313 pointer to the symbol with the same name as the next symbol. */
252b5132
RH
3314#define BSF_INDIRECT 0x2000
3315
b5f79c76
NC
3316 /* BSF_FILE marks symbols that contain a file name. This is used
3317 for ELF STT_FILE symbols. */
252b5132
RH
3318#define BSF_FILE 0x4000
3319
b5f79c76 3320 /* Symbol is from dynamic linking information. */
252b5132
RH
3321#define BSF_DYNAMIC 0x8000
3322
b5f79c76
NC
3323 /* The symbol denotes a data object. Used in ELF, and perhaps
3324 others someday. */
252b5132
RH
3325#define BSF_OBJECT 0x10000
3326
b5f79c76
NC
3327 /* This symbol is a debugging symbol. The value is the offset
3328 into the section of the data. BSF_DEBUGGING should be set
3329 as well. */
703153b5
ILT
3330#define BSF_DEBUGGING_RELOC 0x20000
3331
13ae64f3
JJ
3332 /* This symbol is thread local. Used in ELF. */
3333#define BSF_THREAD_LOCAL 0x40000
3334
252b5132
RH
3335 flagword flags;
3336
b5f79c76
NC
3337 /* A pointer to the section to which this symbol is
3338 relative. This will always be non NULL, there are special
3339 sections for undefined and absolute symbols. */
252b5132
RH
3340 struct sec *section;
3341
b5f79c76 3342 /* Back end special data. */
252b5132
RH
3343 union
3344 {
3345 PTR p;
3346 bfd_vma i;
b5f79c76
NC
3347 }
3348 udata;
3349}
3350asymbol;
252b5132 3351
252b5132
RH
3352#define bfd_get_symtab_upper_bound(abfd) \
3353 BFD_SEND (abfd, _bfd_get_symtab_upper_bound, (abfd))
b5f79c76 3354
c02e7c3e 3355boolean
252b5132
RH
3356bfd_is_local_label PARAMS ((bfd *abfd, asymbol *sym));
3357
c02e7c3e 3358boolean
252b5132
RH
3359bfd_is_local_label_name PARAMS ((bfd *abfd, const char *name));
3360
3361#define bfd_is_local_label_name(abfd, name) \
3362 BFD_SEND (abfd, _bfd_is_local_label_name, (abfd, name))
b5f79c76 3363
252b5132
RH
3364#define bfd_canonicalize_symtab(abfd, location) \
3365 BFD_SEND (abfd, _bfd_canonicalize_symtab,\
3366 (abfd, location))
b5f79c76 3367
c02e7c3e
KH
3368boolean
3369bfd_set_symtab PARAMS ((bfd *abfd, asymbol **location, unsigned int count));
252b5132 3370
c02e7c3e 3371void
60b89a18 3372bfd_print_symbol_vandf PARAMS ((bfd *abfd, PTR file, asymbol *symbol));
252b5132
RH
3373
3374#define bfd_make_empty_symbol(abfd) \
3375 BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
b5f79c76 3376
3f3c5c34
AM
3377asymbol *
3378_bfd_generic_make_empty_symbol PARAMS ((bfd *));
3379
252b5132
RH
3380#define bfd_make_debug_symbol(abfd,ptr,size) \
3381 BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
b5f79c76 3382
c02e7c3e 3383int
252b5132
RH
3384bfd_decode_symclass PARAMS ((asymbol *symbol));
3385
c02e7c3e
KH
3386boolean
3387bfd_is_undefined_symclass PARAMS ((int symclass));
fad6fcbb 3388
c02e7c3e 3389void
252b5132
RH
3390bfd_symbol_info PARAMS ((asymbol *symbol, symbol_info *ret));
3391
c02e7c3e 3392boolean
252b5132
RH
3393bfd_copy_private_symbol_data PARAMS ((bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym));
3394
3395#define bfd_copy_private_symbol_data(ibfd, isymbol, obfd, osymbol) \
3396 BFD_SEND (obfd, _bfd_copy_private_symbol_data, \
3397 (ibfd, isymbol, obfd, osymbol))
b5f79c76 3398
e61463e1 3399/* Extracted from bfd.c. */
8546af74 3400struct _bfd
252b5132 3401{
b5f79c76
NC
3402 /* The filename the application opened the BFD with. */
3403 const char *filename;
252b5132 3404
b5f79c76
NC
3405 /* A pointer to the target jump table. */
3406 const struct bfd_target *xvec;
252b5132 3407
b5f79c76
NC
3408 /* To avoid dragging too many header files into every file that
3409 includes `<<bfd.h>>', IOSTREAM has been declared as a "char *",
3410 and MTIME as a "long". Their correct types, to which they
3411 are cast when used, are "FILE *" and "time_t". The iostream
3412 is the result of an fopen on the filename. However, if the
3413 BFD_IN_MEMORY flag is set, then iostream is actually a pointer
3414 to a bfd_in_memory struct. */
3415 PTR iostream;
252b5132 3416
b5f79c76
NC
3417 /* Is the file descriptor being cached? That is, can it be closed as
3418 needed, and re-opened when accessed later? */
3419 boolean cacheable;
252b5132 3420
b5f79c76
NC
3421 /* Marks whether there was a default target specified when the
3422 BFD was opened. This is used to select which matching algorithm
3423 to use to choose the back end. */
3424 boolean target_defaulted;
252b5132 3425
b5f79c76
NC
3426 /* The caching routines use these to maintain a
3427 least-recently-used list of BFDs. */
3428 struct _bfd *lru_prev, *lru_next;
252b5132 3429
b5f79c76
NC
3430 /* When a file is closed by the caching routines, BFD retains
3431 state information on the file here... */
3432 ufile_ptr where;
252b5132 3433
b5f79c76
NC
3434 /* ... and here: (``once'' means at least once). */
3435 boolean opened_once;
252b5132 3436
b5f79c76
NC
3437 /* Set if we have a locally maintained mtime value, rather than
3438 getting it from the file each time. */
3439 boolean mtime_set;
252b5132 3440
b5f79c76
NC
3441 /* File modified time, if mtime_set is true. */
3442 long mtime;
252b5132 3443
b5f79c76
NC
3444 /* Reserved for an unimplemented file locking extension. */
3445 int ifd;
252b5132 3446
b5f79c76
NC
3447 /* The format which belongs to the BFD. (object, core, etc.) */
3448 bfd_format format;
252b5132 3449
b5f79c76
NC
3450 /* The direction with which the BFD was opened. */
3451 enum bfd_direction
3452 {
3453 no_direction = 0,
3454 read_direction = 1,
3455 write_direction = 2,
3456 both_direction = 3
3457 }
3458 direction;
3459
3460 /* Format_specific flags. */
3461 flagword flags;
252b5132 3462
b5f79c76
NC
3463 /* Currently my_archive is tested before adding origin to
3464 anything. I believe that this can become always an add of
3465 origin, with origin set to 0 for non archive files. */
3466 ufile_ptr origin;
252b5132 3467
b5f79c76
NC
3468 /* Remember when output has begun, to stop strange things
3469 from happening. */
3470 boolean output_has_begun;
73e87d70 3471
b5f79c76
NC
3472 /* A hash table for section names. */
3473 struct bfd_hash_table section_htab;
73e87d70 3474
b5f79c76
NC
3475 /* Pointer to linked list of sections. */
3476 struct sec *sections;
252b5132 3477
b5f79c76
NC
3478 /* The place where we add to the section list. */
3479 struct sec **section_tail;
252b5132 3480
b5f79c76
NC
3481 /* The number of sections. */
3482 unsigned int section_count;
252b5132 3483
b5f79c76
NC
3484 /* Stuff only useful for object files:
3485 The start address. */
3486 bfd_vma start_address;
252b5132 3487
b5f79c76
NC
3488 /* Used for input and output. */
3489 unsigned int symcount;
252b5132 3490
b5f79c76
NC
3491 /* Symbol table for output BFD (with symcount entries). */
3492 struct symbol_cache_entry **outsymbols;
252b5132 3493
1f70368c
DJ
3494 /* Used for slurped dynamic symbol tables. */
3495 unsigned int dynsymcount;
3496
b5f79c76
NC
3497 /* Pointer to structure which contains architecture information. */
3498 const struct bfd_arch_info *arch_info;
252b5132 3499
b5f79c76
NC
3500 /* Stuff only useful for archives. */
3501 PTR arelt_data;
3502 struct _bfd *my_archive; /* The containing archive BFD. */
3503 struct _bfd *next; /* The next BFD in the archive. */
3504 struct _bfd *archive_head; /* The first BFD in the archive. */
3505 boolean has_armap;
252b5132 3506
b5f79c76
NC
3507 /* A chain of BFD structures involved in a link. */
3508 struct _bfd *link_next;
252b5132 3509
b5f79c76
NC
3510 /* A field used by _bfd_generic_link_add_archive_symbols. This will
3511 be used only for archive elements. */
3512 int archive_pass;
252b5132 3513
b5f79c76
NC
3514 /* Used by the back end to hold private data. */
3515 union
3516 {
252b5132
RH
3517 struct aout_data_struct *aout_data;
3518 struct artdata *aout_ar_data;
3519 struct _oasys_data *oasys_obj_data;
3520 struct _oasys_ar_data *oasys_ar_data;
3521 struct coff_tdata *coff_obj_data;
3522 struct pe_tdata *pe_obj_data;
3523 struct xcoff_tdata *xcoff_obj_data;
3524 struct ecoff_tdata *ecoff_obj_data;
3525 struct ieee_data_struct *ieee_data;
3526 struct ieee_ar_data_struct *ieee_ar_data;
3527 struct srec_data_struct *srec_data;
3528 struct ihex_data_struct *ihex_data;
3529 struct tekhex_data_struct *tekhex_data;
3530 struct elf_obj_tdata *elf_obj_data;
3531 struct nlm_obj_tdata *nlm_obj_data;
3532 struct bout_data_struct *bout_data;
3c3bdf30 3533 struct mmo_data_struct *mmo_data;
252b5132
RH
3534 struct sun_core_struct *sun_core_data;
3535 struct sco5_core_struct *sco5_core_data;
3536 struct trad_core_struct *trad_core_data;
3537 struct som_data_struct *som_data;
3538 struct hpux_core_struct *hpux_core_data;
3539 struct hppabsd_core_struct *hppabsd_core_data;
3540 struct sgi_core_struct *sgi_core_data;
3541 struct lynx_core_struct *lynx_core_data;
3542 struct osf_core_struct *osf_core_data;
3543 struct cisco_core_struct *cisco_core_data;
3544 struct versados_data_struct *versados_data;
3545 struct netbsd_core_struct *netbsd_core_data;
3af9a47b
NC
3546 struct mach_o_data_struct *mach_o_data;
3547 struct mach_o_fat_data_struct *mach_o_fat_data;
3548 struct bfd_pef_data_struct *pef_data;
3549 struct bfd_pef_xlib_data_struct *pef_xlib_data;
3550 struct bfd_sym_data_struct *sym_data;
252b5132 3551 PTR any;
b5f79c76
NC
3552 }
3553 tdata;
8546af74 3554
b5f79c76
NC
3555 /* Used by the application to hold private data. */
3556 PTR usrdata;
252b5132 3557
52b219b5 3558 /* Where all the allocated stuff under this BFD goes. This is a
252b5132
RH
3559 struct objalloc *, but we use PTR to avoid requiring the inclusion of
3560 objalloc.h. */
b5f79c76 3561 PTR memory;
252b5132
RH
3562};
3563
3564typedef enum bfd_error
3565{
3566 bfd_error_no_error = 0,
3567 bfd_error_system_call,
3568 bfd_error_invalid_target,
3569 bfd_error_wrong_format,
3619ad04 3570 bfd_error_wrong_object_format,
252b5132
RH
3571 bfd_error_invalid_operation,
3572 bfd_error_no_memory,
3573 bfd_error_no_symbols,
3574 bfd_error_no_armap,
3575 bfd_error_no_more_archived_files,
3576 bfd_error_malformed_archive,
3577 bfd_error_file_not_recognized,
3578 bfd_error_file_ambiguously_recognized,
3579 bfd_error_no_contents,
3580 bfd_error_nonrepresentable_section,
3581 bfd_error_no_debug_section,
3582 bfd_error_bad_value,
3583 bfd_error_file_truncated,
3584 bfd_error_file_too_big,
3585 bfd_error_invalid_error_code
b5f79c76
NC
3586}
3587bfd_error_type;
252b5132 3588
c02e7c3e
KH
3589bfd_error_type
3590bfd_get_error PARAMS ((void));
252b5132 3591
c02e7c3e
KH
3592void
3593bfd_set_error PARAMS ((bfd_error_type error_tag));
252b5132 3594
55ab10f0 3595const char *
c02e7c3e 3596bfd_errmsg PARAMS ((bfd_error_type error_tag));
252b5132 3597
c02e7c3e 3598void
55ab10f0 3599bfd_perror PARAMS ((const char *message));
252b5132
RH
3600
3601typedef void (*bfd_error_handler_type) PARAMS ((const char *, ...));
3602
c02e7c3e
KH
3603bfd_error_handler_type
3604bfd_set_error_handler PARAMS ((bfd_error_handler_type));
252b5132 3605
c02e7c3e
KH
3606void
3607bfd_set_error_program_name PARAMS ((const char *));
252b5132 3608
c02e7c3e
KH
3609bfd_error_handler_type
3610bfd_get_error_handler PARAMS ((void));
252b5132 3611
8f615d07
AM
3612const char *
3613bfd_archive_filename PARAMS ((bfd *));
3614
c02e7c3e 3615long
252b5132
RH
3616bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect));
3617
c02e7c3e
KH
3618long
3619bfd_canonicalize_reloc PARAMS ((bfd *abfd,
252b5132
RH
3620 asection *sec,
3621 arelent **loc,
3622 asymbol **syms));
3623
c02e7c3e 3624void
b5f79c76 3625bfd_set_reloc PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count));
252b5132 3626
c02e7c3e 3627boolean
252b5132
RH
3628bfd_set_file_flags PARAMS ((bfd *abfd, flagword flags));
3629
c02e7c3e
KH
3630int
3631bfd_get_arch_size PARAMS ((bfd *abfd));
125c4a69 3632
c02e7c3e
KH
3633int
3634bfd_get_sign_extend_vma PARAMS ((bfd *abfd));
125c4a69 3635
c02e7c3e 3636boolean
252b5132
RH
3637bfd_set_start_address PARAMS ((bfd *abfd, bfd_vma vma));
3638
c0846b23 3639unsigned int
252b5132
RH
3640bfd_get_gp_size PARAMS ((bfd *abfd));
3641
c02e7c3e 3642void
c0846b23 3643bfd_set_gp_size PARAMS ((bfd *abfd, unsigned int i));
252b5132 3644
c02e7c3e 3645bfd_vma
55ab10f0 3646bfd_scan_vma PARAMS ((const char *string, const char **end, int base));
252b5132 3647
c02e7c3e 3648boolean
252b5132
RH
3649bfd_copy_private_bfd_data PARAMS ((bfd *ibfd, bfd *obfd));
3650
3651#define bfd_copy_private_bfd_data(ibfd, obfd) \
3652 BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
3653 (ibfd, obfd))
c02e7c3e 3654boolean
252b5132
RH
3655bfd_merge_private_bfd_data PARAMS ((bfd *ibfd, bfd *obfd));
3656
3657#define bfd_merge_private_bfd_data(ibfd, obfd) \
3658 BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
3659 (ibfd, obfd))
c02e7c3e 3660boolean
252b5132
RH
3661bfd_set_private_flags PARAMS ((bfd *abfd, flagword flags));
3662
3663#define bfd_set_private_flags(abfd, flags) \
3664 BFD_SEND (abfd, _bfd_set_private_flags, \
3665 (abfd, flags))
3666#define bfd_sizeof_headers(abfd, reloc) \
3667 BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
3668
3669#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
3670 BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
3671
52b219b5 3672 /* Do these three do anything useful at all, for any back end? */
252b5132
RH
3673#define bfd_debug_info_start(abfd) \
3674 BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
3675
3676#define bfd_debug_info_end(abfd) \
3677 BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
3678
3679#define bfd_debug_info_accumulate(abfd, section) \
3680 BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
3681
541389e2 3682
252b5132
RH
3683#define bfd_stat_arch_elt(abfd, stat) \
3684 BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
3685
3686#define bfd_update_armap_timestamp(abfd) \
3687 BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
3688
3689#define bfd_set_arch_mach(abfd, arch, mach)\
3690 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
3691
3692#define bfd_relax_section(abfd, section, link_info, again) \
3693 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
3694
3695#define bfd_gc_sections(abfd, link_info) \
3696 BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
3697
8550eb6e
JJ
3698#define bfd_merge_sections(abfd, link_info) \
3699 BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
3700
e61463e1
AM
3701#define bfd_discard_group(abfd, sec) \
3702 BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
3703
252b5132
RH
3704#define bfd_link_hash_table_create(abfd) \
3705 BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
3706
e2d34d7d
DJ
3707#define bfd_link_hash_table_free(abfd, hash) \
3708 BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
3709
252b5132
RH
3710#define bfd_link_add_symbols(abfd, info) \
3711 BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
3712
2d653fc7
AM
3713#define bfd_link_just_syms(sec, info) \
3714 BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
3715
252b5132
RH
3716#define bfd_final_link(abfd, info) \
3717 BFD_SEND (abfd, _bfd_final_link, (abfd, info))
3718
3719#define bfd_free_cached_info(abfd) \
3720 BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
3721
3722#define bfd_get_dynamic_symtab_upper_bound(abfd) \
3723 BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
3724
3725#define bfd_print_private_bfd_data(abfd, file)\
3726 BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
3727
3728#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
3729 BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
3730
3731#define bfd_get_dynamic_reloc_upper_bound(abfd) \
3732 BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
3733
3734#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
3735 BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
3736
3737extern bfd_byte *bfd_get_relocated_section_contents
3738 PARAMS ((bfd *, struct bfd_link_info *,
3739 struct bfd_link_order *, bfd_byte *,
3740 boolean, asymbol **));
3741
8c98ec7d 3742boolean
47badb7b 3743bfd_alt_mach_code PARAMS ((bfd *abfd, int alternative));
8c98ec7d 3744
e84d6fca
AM
3745struct bfd_preserve
3746{
3747 PTR marker;
3748 PTR tdata;
3749 flagword flags;
3750 const struct bfd_arch_info *arch_info;
3751 struct sec *sections;
3752 struct sec **section_tail;
3753 unsigned int section_count;
3754 struct bfd_hash_table section_htab;
3755};
3756
3757boolean
3758bfd_preserve_save PARAMS ((bfd *, struct bfd_preserve *));
3759
3760void
3761bfd_preserve_restore PARAMS ((bfd *, struct bfd_preserve *));
3762
3763void
3764bfd_preserve_finish PARAMS ((bfd *, struct bfd_preserve *));
3765
e61463e1 3766/* Extracted from archive.c. */
c02e7c3e 3767symindex
252b5132
RH
3768bfd_get_next_mapent PARAMS ((bfd *abfd, symindex previous, carsym **sym));
3769
c02e7c3e 3770boolean
252b5132
RH
3771bfd_set_archive_head PARAMS ((bfd *output, bfd *new_head));
3772
3773bfd *
3774bfd_openr_next_archived_file PARAMS ((bfd *archive, bfd *previous));
3775
e61463e1 3776/* Extracted from corefile.c. */
dc810e39 3777const char *
252b5132
RH
3778bfd_core_file_failing_command PARAMS ((bfd *abfd));
3779
c02e7c3e 3780int
252b5132
RH
3781bfd_core_file_failing_signal PARAMS ((bfd *abfd));
3782
c02e7c3e
KH
3783boolean
3784core_file_matches_executable_p PARAMS ((bfd *core_bfd, bfd *exec_bfd));
252b5132 3785
e61463e1 3786/* Extracted from targets.c. */
252b5132
RH
3787#define BFD_SEND(bfd, message, arglist) \
3788 ((*((bfd)->xvec->message)) arglist)
3789
3790#ifdef DEBUG_BFD_SEND
3791#undef BFD_SEND
3792#define BFD_SEND(bfd, message, arglist) \
3793 (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
3794 ((*((bfd)->xvec->message)) arglist) : \
3795 (bfd_assert (__FILE__,__LINE__), NULL))
3796#endif
3797#define BFD_SEND_FMT(bfd, message, arglist) \
8c603c85 3798 (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist)
252b5132
RH
3799
3800#ifdef DEBUG_BFD_SEND
3801#undef BFD_SEND_FMT
3802#define BFD_SEND_FMT(bfd, message, arglist) \
3803 (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
8c603c85 3804 (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist) : \
252b5132
RH
3805 (bfd_assert (__FILE__,__LINE__), NULL))
3806#endif
b5f79c76
NC
3807
3808enum bfd_flavour
3809{
252b5132
RH
3810 bfd_target_unknown_flavour,
3811 bfd_target_aout_flavour,
3812 bfd_target_coff_flavour,
3813 bfd_target_ecoff_flavour,
9bd09e22 3814 bfd_target_xcoff_flavour,
252b5132
RH
3815 bfd_target_elf_flavour,
3816 bfd_target_ieee_flavour,
3817 bfd_target_nlm_flavour,
3818 bfd_target_oasys_flavour,
3819 bfd_target_tekhex_flavour,
3820 bfd_target_srec_flavour,
3821 bfd_target_ihex_flavour,
3822 bfd_target_som_flavour,
3823 bfd_target_os9k_flavour,
3824 bfd_target_versados_flavour,
3825 bfd_target_msdos_flavour,
3826 bfd_target_ovax_flavour,
3c3bdf30 3827 bfd_target_evax_flavour,
3af9a47b
NC
3828 bfd_target_mmo_flavour,
3829 bfd_target_mach_o_flavour,
3830 bfd_target_pef_flavour,
3831 bfd_target_pef_xlib_flavour,
3832 bfd_target_sym_flavour
252b5132
RH
3833};
3834
3835enum bfd_endian { BFD_ENDIAN_BIG, BFD_ENDIAN_LITTLE, BFD_ENDIAN_UNKNOWN };
3836
52b219b5 3837/* Forward declaration. */
252b5132
RH
3838typedef struct bfd_link_info _bfd_link_info;
3839
3840typedef struct bfd_target
3841{
b5f79c76 3842 /* Identifies the kind of target, e.g., SunOS4, Ultrix, etc. */
252b5132 3843 char *name;
b5f79c76
NC
3844
3845 /* The "flavour" of a back end is a general indication about
3846 the contents of a file. */
252b5132 3847 enum bfd_flavour flavour;
b5f79c76
NC
3848
3849 /* The order of bytes within the data area of a file. */
252b5132 3850 enum bfd_endian byteorder;
b5f79c76
NC
3851
3852 /* The order of bytes within the header parts of a file. */
252b5132 3853 enum bfd_endian header_byteorder;
b5f79c76
NC
3854
3855 /* A mask of all the flags which an executable may have set -
3856 from the set <<BFD_NO_FLAGS>>, <<HAS_RELOC>>, ...<<D_PAGED>>. */
8c603c85 3857 flagword object_flags;
b5f79c76
NC
3858
3859 /* A mask of all the flags which a section may have set - from
3860 the set <<SEC_NO_FLAGS>>, <<SEC_ALLOC>>, ...<<SET_NEVER_LOAD>>. */
252b5132 3861 flagword section_flags;
b5f79c76
NC
3862
3863 /* The character normally found at the front of a symbol.
3864 (if any), perhaps `_'. */
252b5132 3865 char symbol_leading_char;
b5f79c76
NC
3866
3867 /* The pad character for file names within an archive header. */
8c603c85 3868 char ar_pad_char;
b5f79c76
NC
3869
3870 /* The maximum number of characters in an archive header. */
252b5132 3871 unsigned short ar_max_namelen;
b5f79c76
NC
3872
3873 /* Entries for byte swapping for data. These are different from the
3874 other entry points, since they don't take a BFD asthe first argument.
3875 Certain other handlers could do the same. */
dc810e39 3876 bfd_vma (*bfd_getx64) PARAMS ((const bfd_byte *));
252b5132 3877 bfd_signed_vma (*bfd_getx_signed_64) PARAMS ((const bfd_byte *));
dc810e39
AM
3878 void (*bfd_putx64) PARAMS ((bfd_vma, bfd_byte *));
3879 bfd_vma (*bfd_getx32) PARAMS ((const bfd_byte *));
252b5132 3880 bfd_signed_vma (*bfd_getx_signed_32) PARAMS ((const bfd_byte *));
dc810e39
AM
3881 void (*bfd_putx32) PARAMS ((bfd_vma, bfd_byte *));
3882 bfd_vma (*bfd_getx16) PARAMS ((const bfd_byte *));
252b5132 3883 bfd_signed_vma (*bfd_getx_signed_16) PARAMS ((const bfd_byte *));
dc810e39 3884 void (*bfd_putx16) PARAMS ((bfd_vma, bfd_byte *));
b5f79c76
NC
3885
3886 /* Byte swapping for the headers. */
dc810e39 3887 bfd_vma (*bfd_h_getx64) PARAMS ((const bfd_byte *));
252b5132 3888 bfd_signed_vma (*bfd_h_getx_signed_64) PARAMS ((const bfd_byte *));
dc810e39
AM
3889 void (*bfd_h_putx64) PARAMS ((bfd_vma, bfd_byte *));
3890 bfd_vma (*bfd_h_getx32) PARAMS ((const bfd_byte *));
252b5132 3891 bfd_signed_vma (*bfd_h_getx_signed_32) PARAMS ((const bfd_byte *));
dc810e39
AM
3892 void (*bfd_h_putx32) PARAMS ((bfd_vma, bfd_byte *));
3893 bfd_vma (*bfd_h_getx16) PARAMS ((const bfd_byte *));
252b5132 3894 bfd_signed_vma (*bfd_h_getx_signed_16) PARAMS ((const bfd_byte *));
dc810e39 3895 void (*bfd_h_putx16) PARAMS ((bfd_vma, bfd_byte *));
b5f79c76
NC
3896
3897 /* Format dependent routines: these are vectors of entry points
3898 within the target vector structure, one for each format to check. */
3899
3900 /* Check the format of a file being read. Return a <<bfd_target *>> or zero. */
252b5132 3901 const struct bfd_target *(*_bfd_check_format[bfd_type_end]) PARAMS ((bfd *));
b5f79c76
NC
3902
3903 /* Set the format of a file being written. */
dc810e39 3904 boolean (*_bfd_set_format[bfd_type_end]) PARAMS ((bfd *));
b5f79c76
NC
3905
3906 /* Write cached information into a file being written, at <<bfd_close>>. */
dc810e39 3907 boolean (*_bfd_write_contents[bfd_type_end]) PARAMS ((bfd *));
252b5132 3908
b5f79c76 3909
52b219b5 3910 /* Generic entry points. */
e43d48cc
AM
3911#define BFD_JUMP_TABLE_GENERIC(NAME) \
3912CONCAT2 (NAME,_close_and_cleanup), \
3913CONCAT2 (NAME,_bfd_free_cached_info), \
3914CONCAT2 (NAME,_new_section_hook), \
3915CONCAT2 (NAME,_get_section_contents), \
3916CONCAT2 (NAME,_get_section_contents_in_window)
252b5132 3917
52b219b5 3918 /* Called when the BFD is being closed to do any necessary cleanup. */
dc810e39 3919 boolean (*_close_and_cleanup) PARAMS ((bfd *));
52b219b5 3920 /* Ask the BFD to free all cached information. */
dc810e39 3921 boolean (*_bfd_free_cached_info) PARAMS ((bfd *));
52b219b5 3922 /* Called when a new section is created. */
dc810e39 3923 boolean (*_new_section_hook) PARAMS ((bfd *, sec_ptr));
52b219b5 3924 /* Read the contents of a section. */
dc810e39
AM
3925 boolean (*_bfd_get_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
3926 file_ptr, bfd_size_type));
3927 boolean (*_bfd_get_section_contents_in_window)
3928 PARAMS ((bfd *, sec_ptr, bfd_window *, file_ptr, bfd_size_type));
252b5132 3929
52b219b5 3930 /* Entry points to copy private data. */
e43d48cc
AM
3931#define BFD_JUMP_TABLE_COPY(NAME) \
3932CONCAT2 (NAME,_bfd_copy_private_bfd_data), \
3933CONCAT2 (NAME,_bfd_merge_private_bfd_data), \
3934CONCAT2 (NAME,_bfd_copy_private_section_data), \
3935CONCAT2 (NAME,_bfd_copy_private_symbol_data), \
3936CONCAT2 (NAME,_bfd_set_private_flags), \
3937CONCAT2 (NAME,_bfd_print_private_bfd_data) \
52b219b5 3938 /* Called to copy BFD general private data from one object file
252b5132 3939 to another. */
dc810e39 3940 boolean (*_bfd_copy_private_bfd_data) PARAMS ((bfd *, bfd *));
52b219b5 3941 /* Called to merge BFD general private data from one object file
252b5132 3942 to a common output file when linking. */
dc810e39 3943 boolean (*_bfd_merge_private_bfd_data) PARAMS ((bfd *, bfd *));
52b219b5 3944 /* Called to copy BFD private section data from one object file
252b5132 3945 to another. */
dc810e39
AM
3946 boolean (*_bfd_copy_private_section_data) PARAMS ((bfd *, sec_ptr,
3947 bfd *, sec_ptr));
8c603c85 3948 /* Called to copy BFD private symbol data from one symbol
252b5132 3949 to another. */
dc810e39
AM
3950 boolean (*_bfd_copy_private_symbol_data) PARAMS ((bfd *, asymbol *,
3951 bfd *, asymbol *));
b5f79c76 3952 /* Called to set private backend flags. */
dc810e39 3953 boolean (*_bfd_set_private_flags) PARAMS ((bfd *, flagword));
252b5132 3954
b5f79c76 3955 /* Called to print private BFD data. */
dc810e39 3956 boolean (*_bfd_print_private_bfd_data) PARAMS ((bfd *, PTR));
252b5132 3957
52b219b5 3958 /* Core file entry points. */
e43d48cc
AM
3959#define BFD_JUMP_TABLE_CORE(NAME) \
3960CONCAT2 (NAME,_core_file_failing_command), \
3961CONCAT2 (NAME,_core_file_failing_signal), \
3962CONCAT2 (NAME,_core_file_matches_executable_p)
252b5132
RH
3963 char * (*_core_file_failing_command) PARAMS ((bfd *));
3964 int (*_core_file_failing_signal) PARAMS ((bfd *));
3965 boolean (*_core_file_matches_executable_p) PARAMS ((bfd *, bfd *));
3966
52b219b5 3967 /* Archive entry points. */
e43d48cc
AM
3968#define BFD_JUMP_TABLE_ARCHIVE(NAME) \
3969CONCAT2 (NAME,_slurp_armap), \
3970CONCAT2 (NAME,_slurp_extended_name_table), \
3971CONCAT2 (NAME,_construct_extended_name_table), \
3972CONCAT2 (NAME,_truncate_arname), \
3973CONCAT2 (NAME,_write_armap), \
3974CONCAT2 (NAME,_read_ar_hdr), \
3975CONCAT2 (NAME,_openr_next_archived_file), \
3976CONCAT2 (NAME,_get_elt_at_index), \
3977CONCAT2 (NAME,_generic_stat_arch_elt), \
3978CONCAT2 (NAME,_update_armap_timestamp)
252b5132
RH
3979 boolean (*_bfd_slurp_armap) PARAMS ((bfd *));
3980 boolean (*_bfd_slurp_extended_name_table) PARAMS ((bfd *));
3981 boolean (*_bfd_construct_extended_name_table)
dc810e39
AM
3982 PARAMS ((bfd *, char **, bfd_size_type *, const char **));
3983 void (*_bfd_truncate_arname) PARAMS ((bfd *, const char *, char *));
3984 boolean (*write_armap)
3985 PARAMS ((bfd *, unsigned int, struct orl *, unsigned int, int));
3986 PTR (*_bfd_read_ar_hdr_fn) PARAMS ((bfd *));
3987 bfd * (*openr_next_archived_file) PARAMS ((bfd *, bfd *));
252b5132
RH
3988#define bfd_get_elt_at_index(b,i) BFD_SEND(b, _bfd_get_elt_at_index, (b,i))
3989 bfd * (*_bfd_get_elt_at_index) PARAMS ((bfd *, symindex));
3990 int (*_bfd_stat_arch_elt) PARAMS ((bfd *, struct stat *));
3991 boolean (*_bfd_update_armap_timestamp) PARAMS ((bfd *));
77fb9c28 3992
52b219b5 3993 /* Entry points used for symbols. */
e43d48cc
AM
3994#define BFD_JUMP_TABLE_SYMBOLS(NAME) \
3995CONCAT2 (NAME,_get_symtab_upper_bound), \
3996CONCAT2 (NAME,_get_symtab), \
3997CONCAT2 (NAME,_make_empty_symbol), \
3998CONCAT2 (NAME,_print_symbol), \
3999CONCAT2 (NAME,_get_symbol_info), \
4000CONCAT2 (NAME,_bfd_is_local_label_name), \
4001CONCAT2 (NAME,_get_lineno), \
4002CONCAT2 (NAME,_find_nearest_line), \
4003CONCAT2 (NAME,_bfd_make_debug_symbol), \
4004CONCAT2 (NAME,_read_minisymbols), \
4005CONCAT2 (NAME,_minisymbol_to_symbol)
dc810e39
AM
4006 long (*_bfd_get_symtab_upper_bound) PARAMS ((bfd *));
4007 long (*_bfd_canonicalize_symtab) PARAMS ((bfd *,
4008 struct symbol_cache_entry **));
4009 struct symbol_cache_entry *
4010 (*_bfd_make_empty_symbol) PARAMS ((bfd *));
4011 void (*_bfd_print_symbol) PARAMS ((bfd *, PTR,
4012 struct symbol_cache_entry *,
4013 bfd_print_symbol_type));
252b5132 4014#define bfd_print_symbol(b,p,s,e) BFD_SEND(b, _bfd_print_symbol, (b,p,s,e))
dc810e39
AM
4015 void (*_bfd_get_symbol_info) PARAMS ((bfd *,
4016 struct symbol_cache_entry *,
4017 symbol_info *));
252b5132 4018#define bfd_get_symbol_info(b,p,e) BFD_SEND(b, _bfd_get_symbol_info, (b,p,e))
dc810e39 4019 boolean (*_bfd_is_local_label_name) PARAMS ((bfd *, const char *));
252b5132 4020
dc810e39
AM
4021 alent * (*_get_lineno) PARAMS ((bfd *, struct symbol_cache_entry *));
4022 boolean (*_bfd_find_nearest_line)
4023 PARAMS ((bfd *, struct sec *, struct symbol_cache_entry **, bfd_vma,
4024 const char **, const char **, unsigned int *));
52b219b5 4025 /* Back-door to allow format-aware applications to create debug symbols
252b5132
RH
4026 while using BFD for everything else. Currently used by the assembler
4027 when creating COFF files. */
dc810e39
AM
4028 asymbol *(*_bfd_make_debug_symbol) PARAMS ((bfd *, void *,
4029 unsigned long size));
252b5132
RH
4030#define bfd_read_minisymbols(b, d, m, s) \
4031 BFD_SEND (b, _read_minisymbols, (b, d, m, s))
dc810e39
AM
4032 long (*_read_minisymbols) PARAMS ((bfd *, boolean, PTR *,
4033 unsigned int *));
252b5132
RH
4034#define bfd_minisymbol_to_symbol(b, d, m, f) \
4035 BFD_SEND (b, _minisymbol_to_symbol, (b, d, m, f))
4036 asymbol *(*_minisymbol_to_symbol) PARAMS ((bfd *, boolean, const PTR,
4037 asymbol *));
4038
52b219b5 4039 /* Routines for relocs. */
e43d48cc
AM
4040#define BFD_JUMP_TABLE_RELOCS(NAME) \
4041CONCAT2 (NAME,_get_reloc_upper_bound), \
4042CONCAT2 (NAME,_canonicalize_reloc), \
4043CONCAT2 (NAME,_bfd_reloc_type_lookup)
dc810e39
AM
4044 long (*_get_reloc_upper_bound) PARAMS ((bfd *, sec_ptr));
4045 long (*_bfd_canonicalize_reloc) PARAMS ((bfd *, sec_ptr, arelent **,
4046 struct symbol_cache_entry **));
52b219b5 4047 /* See documentation on reloc types. */
252b5132 4048 reloc_howto_type *
dc810e39 4049 (*reloc_type_lookup) PARAMS ((bfd *, bfd_reloc_code_real_type));
252b5132 4050
52b219b5 4051 /* Routines used when writing an object file. */
e43d48cc
AM
4052#define BFD_JUMP_TABLE_WRITE(NAME) \
4053CONCAT2 (NAME,_set_arch_mach), \
4054CONCAT2 (NAME,_set_section_contents)
dc810e39
AM
4055 boolean (*_bfd_set_arch_mach) PARAMS ((bfd *, enum bfd_architecture,
4056 unsigned long));
4057 boolean (*_bfd_set_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
4058 file_ptr, bfd_size_type));
252b5132 4059
52b219b5 4060 /* Routines used by the linker. */
e43d48cc
AM
4061#define BFD_JUMP_TABLE_LINK(NAME) \
4062CONCAT2 (NAME,_sizeof_headers), \
4063CONCAT2 (NAME,_bfd_get_relocated_section_contents), \
4064CONCAT2 (NAME,_bfd_relax_section), \
4065CONCAT2 (NAME,_bfd_link_hash_table_create), \
e2d34d7d 4066CONCAT2 (NAME,_bfd_link_hash_table_free), \
e43d48cc 4067CONCAT2 (NAME,_bfd_link_add_symbols), \
2d653fc7 4068CONCAT2 (NAME,_bfd_link_just_syms), \
e43d48cc
AM
4069CONCAT2 (NAME,_bfd_final_link), \
4070CONCAT2 (NAME,_bfd_link_split_section), \
4071CONCAT2 (NAME,_bfd_gc_sections), \
e61463e1
AM
4072CONCAT2 (NAME,_bfd_merge_sections), \
4073CONCAT2 (NAME,_bfd_discard_group)
dc810e39
AM
4074 int (*_bfd_sizeof_headers) PARAMS ((bfd *, boolean));
4075 bfd_byte *(*_bfd_get_relocated_section_contents)
4076 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *,
4077 bfd_byte *, boolean, struct symbol_cache_entry **));
252b5132 4078
dc810e39
AM
4079 boolean (*_bfd_relax_section)
4080 PARAMS ((bfd *, struct sec *, struct bfd_link_info *, boolean *));
252b5132 4081
52b219b5 4082 /* Create a hash table for the linker. Different backends store
252b5132
RH
4083 different information in this table. */
4084 struct bfd_link_hash_table *(*_bfd_link_hash_table_create) PARAMS ((bfd *));
4085
e2d34d7d
DJ
4086 /* Release the memory associated with the linker hash table. */
4087 void (*_bfd_link_hash_table_free) PARAMS ((struct bfd_link_hash_table *));
4088
52b219b5 4089 /* Add symbols from this object file into the hash table. */
dc810e39 4090 boolean (*_bfd_link_add_symbols) PARAMS ((bfd *, struct bfd_link_info *));
252b5132 4091
2d653fc7
AM
4092 /* Indicate that we are only retrieving symbol values from this section. */
4093 void (*_bfd_link_just_syms) PARAMS ((asection *, struct bfd_link_info *));
4094
52b219b5 4095 /* Do a link based on the link_order structures attached to each
252b5132 4096 section of the BFD. */
dc810e39 4097 boolean (*_bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *));
252b5132 4098
52b219b5 4099 /* Should this section be split up into smaller pieces during linking. */
dc810e39 4100 boolean (*_bfd_link_split_section) PARAMS ((bfd *, struct sec *));
252b5132 4101
52b219b5 4102 /* Remove sections that are not referenced from the output. */
dc810e39 4103 boolean (*_bfd_gc_sections) PARAMS ((bfd *, struct bfd_link_info *));
252b5132 4104
8550eb6e 4105 /* Attempt to merge SEC_MERGE sections. */
dc810e39 4106 boolean (*_bfd_merge_sections) PARAMS ((bfd *, struct bfd_link_info *));
8550eb6e 4107
e61463e1
AM
4108 /* Discard members of a group. */
4109 boolean (*_bfd_discard_group) PARAMS ((bfd *, struct sec *));
4110
52b219b5 4111 /* Routines to handle dynamic symbols and relocs. */
e43d48cc
AM
4112#define BFD_JUMP_TABLE_DYNAMIC(NAME) \
4113CONCAT2 (NAME,_get_dynamic_symtab_upper_bound), \
4114CONCAT2 (NAME,_canonicalize_dynamic_symtab), \
4115CONCAT2 (NAME,_get_dynamic_reloc_upper_bound), \
4116CONCAT2 (NAME,_canonicalize_dynamic_reloc)
b5f79c76 4117 /* Get the amount of memory required to hold the dynamic symbols. */
dc810e39 4118 long (*_bfd_get_dynamic_symtab_upper_bound) PARAMS ((bfd *));
52b219b5 4119 /* Read in the dynamic symbols. */
dc810e39 4120 long (*_bfd_canonicalize_dynamic_symtab)
252b5132 4121 PARAMS ((bfd *, struct symbol_cache_entry **));
52b219b5 4122 /* Get the amount of memory required to hold the dynamic relocs. */
dc810e39 4123 long (*_bfd_get_dynamic_reloc_upper_bound) PARAMS ((bfd *));
52b219b5 4124 /* Read in the dynamic relocs. */
dc810e39 4125 long (*_bfd_canonicalize_dynamic_reloc)
252b5132 4126 PARAMS ((bfd *, arelent **, struct symbol_cache_entry **));
b23b8e6e 4127
b5f79c76
NC
4128 /* Opposite endian version of this target. */
4129 const struct bfd_target * alternative_target;
8c603c85 4130
b5f79c76
NC
4131 /* Data for use by back-end routines, which isn't
4132 generic enough to belong in this structure. */
4133 PTR backend_data;
8c603c85 4134
252b5132 4135} bfd_target;
b5f79c76 4136
c02e7c3e
KH
4137boolean
4138bfd_set_default_target PARAMS ((const char *name));
252b5132
RH
4139
4140const bfd_target *
dc810e39 4141bfd_find_target PARAMS ((const char *target_name, bfd *abfd));
252b5132
RH
4142
4143const char **
4144bfd_target_list PARAMS ((void));
4145
c02e7c3e
KH
4146const bfd_target *
4147bfd_search_for_target PARAMS ((int (* search_func) (const bfd_target *, void *), void *));
c3c89269 4148
e61463e1 4149/* Extracted from format.c. */
c02e7c3e 4150boolean
252b5132
RH
4151bfd_check_format PARAMS ((bfd *abfd, bfd_format format));
4152
c02e7c3e 4153boolean
252b5132
RH
4154bfd_check_format_matches PARAMS ((bfd *abfd, bfd_format format, char ***matching));
4155
c02e7c3e 4156boolean
252b5132
RH
4157bfd_set_format PARAMS ((bfd *abfd, bfd_format format));
4158
3619ad04 4159const char *
252b5132
RH
4160bfd_format_string PARAMS ((bfd_format format));
4161
af39267e
DJ
4162/* Extracted from linker.c. */
4163boolean
4164bfd_link_split_section PARAMS ((bfd *abfd, asection *sec));
4165
4166#define bfd_link_split_section(abfd, sec) \
4167 BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
4168
4169/* Extracted from simple.c. */
4170bfd_byte *
4171bfd_simple_get_relocated_section_contents PARAMS ((bfd *abfd, asection *sec, bfd_byte *outbuf));
4172
252b5132
RH
4173#ifdef __cplusplus
4174}
4175#endif
4176#endif
This page took 0.605838 seconds and 4 git commands to generate.