]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/bfd-in2.h
* bfd-in.h (STRING_AND_COMMA): New macro. Takes one constant string as its
[thirdparty/binutils-gdb.git] / bfd / bfd-in2.h
CommitLineData
e30ddb24
NC
1/* DO NOT EDIT! -*- buffer-read-only: t -*- This file is automatically
2 generated from "bfd-in.h", "init.c", "opncls.c", "libbfd.c",
3 "bfdio.c", "bfdwin.c", "section.c", "archures.c", "reloc.c",
4 "syms.c", "bfd.c", "archive.c", "corefile.c", "targets.c", "format.c",
93509525 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.
c2852e88
AC
9
10 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
df406460
NC
11 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
12 Free Software Foundation, Inc.
c2852e88 13
252b5132
RH
14 Contributed by Cygnus Support.
15
8afb0e02 16 This file is part of BFD, the Binary File Descriptor library.
252b5132 17
8afb0e02
NC
18 This program is free software; you can redistribute it and/or modify
19 it under the terms of the GNU General Public License as published by
20 the Free Software Foundation; either version 2 of the License, or
21 (at your option) any later version.
252b5132 22
8afb0e02
NC
23 This program is distributed in the hope that it will be useful,
24 but WITHOUT ANY WARRANTY; without even the implied warranty of
25 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 GNU General Public License for more details.
252b5132 27
8afb0e02
NC
28 You should have received a copy of the GNU General Public License
29 along with this program; if not, write to the Free Software
3e110533 30 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
252b5132 31
252b5132
RH
32#ifndef __BFD_H_SEEN__
33#define __BFD_H_SEEN__
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39#include "ansidecl.h"
e43d48cc
AM
40#include "symcat.h"
41#if defined (__STDC__) || defined (ALMOST_STDC) || defined (HAVE_STRINGIZE)
42#ifndef SABER
43/* This hack is to avoid a problem with some strict ANSI C preprocessors.
44 The problem is, "32_" is not a valid preprocessing token, and we don't
45 want extra underscores (e.g., "nlm_32_"). The XCONCAT2 macro will
46 cause the inner CONCAT2 macros to be evaluated first, producing
47 still-valid pp-tokens. Then the final concatenation can be done. */
48#undef CONCAT4
49#define CONCAT4(a,b,c,d) XCONCAT2(CONCAT2(a,b),CONCAT2(c,d))
50#endif
51#endif
252b5132 52
0112cd26
NC
53/* This is a utility macro to handle the situation where the code
54 wants to place a constant string into the code, followed by a
55 comma and then the length of the string. Doing this by hand
56 is error prone, so using this macro is safer. The macro will
57 also safely handle the case where a NULL is passed as the arg. */
58#define STRING_COMMA_LEN(STR) (STR), ((STR) ? sizeof (STR) - 1 : 0)
59/* Unfortunately it is not possible to use the STRING_COMMA_LEN macro
60 to create the arguments to another macro, since the preprocessor
61 will mis-count the number of arguments to the outer macro (by not
62 evaluating STRING_COMMA_LEN and so missing the comma). This is a
63 problem for example when trying to use STRING_COMMA_LEN to build
64 the arguments to the strncmp() macro. Hence this alternative
65 definition of strncmp is provided here.
66
67 Note - these macros do NOT work if STR2 is not a constant string. */
68#define CONST_STRNEQ(STR1,STR2) (strncmp ((STR1), (STR2), sizeof (STR2) - 1) == 0)
69#define CONST_STRNCPY(STR1,STR2) strncpy ((STR1), (STR2), sizeof (STR2) - 1)
70
71
69263e90
AM
72/* The word size used by BFD on the host. This may be 64 with a 32
73 bit target if the host is 64 bit, or if other 64 bit targets have
74 been selected with --enable-targets, or if --enable-64-bit-bfd. */
252b5132 75#define BFD_ARCH_SIZE @wordsize@
69263e90
AM
76
77/* The word size of the default bfd target. */
78#define BFD_DEFAULT_TARGET_SIZE @bfd_default_target_size@
79
252b5132 80#define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@
ec317fb1 81#define BFD_HOST_LONG_LONG @BFD_HOST_LONG_LONG@
252b5132
RH
82#if @BFD_HOST_64_BIT_DEFINED@
83#define BFD_HOST_64_BIT @BFD_HOST_64_BIT@
84#define BFD_HOST_U_64_BIT @BFD_HOST_U_64_BIT@
8ce8c090
AM
85typedef BFD_HOST_64_BIT bfd_int64_t;
86typedef BFD_HOST_U_64_BIT bfd_uint64_t;
252b5132
RH
87#endif
88
89#if BFD_ARCH_SIZE >= 64
90#define BFD64
91#endif
92
93#ifndef INLINE
94#if __GNUC__ >= 2
95#define INLINE __inline__
96#else
97#define INLINE
98#endif
99#endif
100
b5f79c76 101/* Forward declaration. */
c2852e88 102typedef struct bfd bfd;
252b5132 103
b34976b6
AM
104/* Boolean type used in bfd. Too many systems define their own
105 versions of "boolean" for us to safely typedef a "boolean" of
cf3d882d 106 our own. Using an enum for "bfd_boolean" has its own set of
b34976b6
AM
107 problems, with strange looking casts required to avoid warnings
108 on some older compilers. Thus we just use an int.
109
cf3d882d 110 General rule: Functions which are bfd_boolean return TRUE on
b34976b6
AM
111 success and FALSE on failure (unless they're a predicate). */
112
113typedef int bfd_boolean;
114#undef FALSE
115#undef TRUE
116#define FALSE 0
117#define TRUE 1
118
252b5132
RH
119#ifdef BFD64
120
121#ifndef BFD_HOST_64_BIT
122 #error No 64 bit integer type available
123#endif /* ! defined (BFD_HOST_64_BIT) */
124
125typedef BFD_HOST_U_64_BIT bfd_vma;
126typedef BFD_HOST_64_BIT bfd_signed_vma;
127typedef BFD_HOST_U_64_BIT bfd_size_type;
128typedef BFD_HOST_U_64_BIT symvalue;
129
130#ifndef fprintf_vma
131#if BFD_HOST_64BIT_LONG
132#define sprintf_vma(s,x) sprintf (s, "%016lx", x)
133#define fprintf_vma(f,x) fprintf (f, "%016lx", x)
134#else
135#define _bfd_int64_low(x) ((unsigned long) (((x) & 0xffffffff)))
136#define _bfd_int64_high(x) ((unsigned long) (((x) >> 32) & 0xffffffff))
137#define fprintf_vma(s,x) \
138 fprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
139#define sprintf_vma(s,x) \
140 sprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
141#endif
142#endif
143
144#else /* not BFD64 */
145
146/* Represent a target address. Also used as a generic unsigned type
147 which is guaranteed to be big enough to hold any arithmetic types
148 we need to deal with. */
149typedef unsigned long bfd_vma;
150
151/* A generic signed type which is guaranteed to be big enough to hold any
152 arithmetic types we need to deal with. Can be assumed to be compatible
153 with bfd_vma in the same way that signed and unsigned ints are compatible
154 (as parameters, in assignment, etc). */
155typedef long bfd_signed_vma;
156
157typedef unsigned long symvalue;
158typedef unsigned long bfd_size_type;
159
160/* Print a bfd_vma x on stream s. */
e60b52c6
KH
161#define fprintf_vma(s,x) fprintf (s, "%08lx", x)
162#define sprintf_vma(s,x) sprintf (s, "%08lx", x)
252b5132
RH
163
164#endif /* not BFD64 */
165
d0fb9a8d
JJ
166#define HALF_BFD_SIZE_TYPE \
167 (((bfd_size_type) 1) << (8 * sizeof (bfd_size_type) / 2))
168
8ce8c090
AM
169#ifndef BFD_HOST_64_BIT
170/* Fall back on a 32 bit type. The idea is to make these types always
171 available for function return types, but in the case that
172 BFD_HOST_64_BIT is undefined such a function should abort or
173 otherwise signal an error. */
174typedef bfd_signed_vma bfd_int64_t;
175typedef bfd_vma bfd_uint64_t;
176#endif
177
d7ce59e3
AC
178/* An offset into a file. BFD always uses the largest possible offset
179 based on the build time availability of fseek, fseeko, or fseeko64. */
180typedef @bfd_file_ptr@ file_ptr;
181typedef unsigned @bfd_file_ptr@ ufile_ptr;
dc810e39 182
c58b9523
AM
183extern void bfd_sprintf_vma (bfd *, char *, bfd_vma);
184extern void bfd_fprintf_vma (bfd *, void *, bfd_vma);
ae4221d7 185
252b5132 186#define printf_vma(x) fprintf_vma(stdout,x)
ae4221d7 187#define bfd_printf_vma(abfd,x) bfd_fprintf_vma (abfd,stdout,x)
252b5132
RH
188
189typedef unsigned int flagword; /* 32 bits of flags */
190typedef unsigned char bfd_byte;
191\f
b5f79c76 192/* File formats. */
252b5132 193
b5f79c76
NC
194typedef enum bfd_format
195{
196 bfd_unknown = 0, /* File format is unknown. */
5c4491d3 197 bfd_object, /* Linker/assembler/compiler output. */
b5f79c76
NC
198 bfd_archive, /* Object archive file. */
199 bfd_core, /* Core dump. */
200 bfd_type_end /* Marks the end; don't use it! */
201}
202bfd_format;
252b5132
RH
203
204/* Values that may appear in the flags field of a BFD. These also
205 appear in the object_flags field of the bfd_target structure, where
206 they indicate the set of flags used by that backend (not all flags
207 are meaningful for all object file formats) (FIXME: at the moment,
208 the object_flags values have mostly just been copied from backend
209 to another, and are not necessarily correct). */
210
211/* No flags. */
212#define BFD_NO_FLAGS 0x00
213
214/* BFD contains relocation entries. */
215#define HAS_RELOC 0x01
216
217/* BFD is directly executable. */
218#define EXEC_P 0x02
219
220/* BFD has line number information (basically used for F_LNNO in a
221 COFF header). */
222#define HAS_LINENO 0x04
223
224/* BFD has debugging information. */
225#define HAS_DEBUG 0x08
226
227/* BFD has symbols. */
228#define HAS_SYMS 0x10
229
230/* BFD has local symbols (basically used for F_LSYMS in a COFF
231 header). */
232#define HAS_LOCALS 0x20
233
234/* BFD is a dynamic object. */
235#define DYNAMIC 0x40
236
237/* Text section is write protected (if D_PAGED is not set, this is
238 like an a.out NMAGIC file) (the linker sets this by default, but
239 clears it for -r or -N). */
240#define WP_TEXT 0x80
241
242/* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
243 linker sets this by default, but clears it for -r or -n or -N). */
244#define D_PAGED 0x100
245
246/* BFD is relaxable (this means that bfd_relax_section may be able to
247 do something) (sometimes bfd_relax_section can do something even if
248 this is not set). */
249#define BFD_IS_RELAXABLE 0x200
250
251/* This may be set before writing out a BFD to request using a
252 traditional format. For example, this is used to request that when
253 writing out an a.out object the symbols not be hashed to eliminate
254 duplicates. */
255#define BFD_TRADITIONAL_FORMAT 0x400
256
257/* This flag indicates that the BFD contents are actually cached in
258 memory. If this is set, iostream points to a bfd_in_memory struct. */
259#define BFD_IN_MEMORY 0x800
b34976b6 260
86aba9db 261/* The sections in this BFD specify a memory page. */
026df7c5 262#define HAS_LOAD_PAGE 0x1000
d457dcf6
JJ
263
264/* This BFD has been created by the linker and doesn't correspond
265 to any input file. */
266#define BFD_LINKER_CREATED 0x2000
252b5132 267\f
b5f79c76 268/* Symbols and relocation. */
252b5132
RH
269
270/* A count of carsyms (canonical archive symbols). */
271typedef unsigned long symindex;
272
273/* How to perform a relocation. */
274typedef const struct reloc_howto_struct reloc_howto_type;
275
276#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
277
278/* General purpose part of a symbol X;
279 target specific parts are in libcoff.h, libaout.h, etc. */
280
281#define bfd_get_section(x) ((x)->section)
282#define bfd_get_output_section(x) ((x)->section->output_section)
283#define bfd_set_section(x,y) ((x)->section) = (y)
284#define bfd_asymbol_base(x) ((x)->section->vma)
285#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
286#define bfd_asymbol_name(x) ((x)->name)
287/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
288#define bfd_asymbol_bfd(x) ((x)->the_bfd)
289#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
290
291/* A canonical archive symbol. */
b5f79c76
NC
292/* This is a type pun with struct ranlib on purpose! */
293typedef struct carsym
294{
252b5132 295 char *name;
b5f79c76
NC
296 file_ptr file_offset; /* Look here to find the file. */
297}
298carsym; /* To make these you call a carsymogen. */
252b5132 299
252b5132 300/* Used in generating armaps (archive tables of contents).
b5f79c76
NC
301 Perhaps just a forward definition would do? */
302struct orl /* Output ranlib. */
303{
304 char **name; /* Symbol name. */
305 union
306 {
dc810e39
AM
307 file_ptr pos;
308 bfd *abfd;
b5f79c76
NC
309 } u; /* bfd* or file position. */
310 int namidx; /* Index into string table. */
252b5132
RH
311};
312\f
b5f79c76
NC
313/* Linenumber stuff. */
314typedef struct lineno_cache_entry
315{
316 unsigned int line_number; /* Linenumber from start of function. */
317 union
318 {
fc0a2244 319 struct bfd_symbol *sym; /* Function name. */
b5f79c76 320 bfd_vma offset; /* Offset into section. */
252b5132 321 } u;
b5f79c76
NC
322}
323alent;
252b5132 324\f
b5f79c76 325/* Object and core file sections. */
252b5132
RH
326
327#define align_power(addr, align) \
e5b45b83 328 (((addr) + ((bfd_vma) 1 << (align)) - 1) & ((bfd_vma) -1 << (align)))
252b5132 329
198beae2 330typedef struct bfd_section *sec_ptr;
252b5132
RH
331
332#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
333#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
aa3d5824 334#define bfd_get_section_lma(bfd, ptr) ((ptr)->lma + 0)
252b5132
RH
335#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
336#define bfd_section_name(bfd, ptr) ((ptr)->name)
eea6121a
AM
337#define bfd_section_size(bfd, ptr) ((ptr)->size)
338#define bfd_get_section_size(ptr) ((ptr)->size)
252b5132
RH
339#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
340#define bfd_section_lma(bfd, ptr) ((ptr)->lma)
341#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
342#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
343#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
344
345#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
346
b34976b6
AM
347#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma = (val)), ((ptr)->user_set_vma = TRUE), TRUE)
348#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),TRUE)
349#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),TRUE)
07515404
AM
350/* Find the address one past the end of SEC. */
351#define bfd_get_section_limit(bfd, sec) \
352 (((sec)->rawsize ? (sec)->rawsize : (sec)->size) \
353 / bfd_octets_per_byte (bfd))
252b5132 354
60bcf0fa 355typedef struct stat stat_type;
252b5132
RH
356\f
357typedef enum bfd_print_symbol
60bcf0fa 358{
252b5132
RH
359 bfd_print_symbol_name,
360 bfd_print_symbol_more,
361 bfd_print_symbol_all
362} bfd_print_symbol_type;
60bcf0fa 363
252b5132
RH
364/* Information about a symbol that nm needs. */
365
366typedef struct _symbol_info
367{
368 symvalue value;
369 char type;
dc810e39 370 const char *name; /* Symbol name. */
252b5132 371 unsigned char stab_type; /* Stab type. */
8546af74 372 char stab_other; /* Stab other. */
252b5132 373 short stab_desc; /* Stab desc. */
dc810e39 374 const char *stab_name; /* String for stab type. */
252b5132
RH
375} symbol_info;
376
377/* Get the name of a stabs type code. */
378
c58b9523 379extern const char *bfd_get_stab_name (int);
252b5132
RH
380\f
381/* Hash table routines. There is no way to free up a hash table. */
382
383/* An element in the hash table. Most uses will actually use a larger
384 structure, and an instance of this will be the first field. */
385
386struct bfd_hash_entry
387{
388 /* Next entry for this hash code. */
389 struct bfd_hash_entry *next;
390 /* String being hashed. */
391 const char *string;
392 /* Hash code. This is the full hash code, not the index into the
393 table. */
394 unsigned long hash;
395};
396
397/* A hash table. */
398
399struct bfd_hash_table
400{
401 /* The hash array. */
402 struct bfd_hash_entry **table;
403 /* The number of slots in the hash table. */
404 unsigned int size;
aa149cf7
DD
405 /* The number of entries in the hash table. */
406 unsigned int count;
66eb6687
AM
407 /* The size of elements. */
408 unsigned int entsize;
252b5132
RH
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. */
b34976b6 416 struct bfd_hash_entry *(*newfunc)
c58b9523 417 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
252b5132 418 /* An objalloc for this hash table. This is a struct objalloc *,
c58b9523
AM
419 but we use void * to avoid requiring the inclusion of objalloc.h. */
420 void *memory;
252b5132
RH
421};
422
423/* Initialize a hash table. */
b34976b6 424extern bfd_boolean bfd_hash_table_init
c58b9523
AM
425 (struct bfd_hash_table *,
426 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
427 struct bfd_hash_table *,
66eb6687
AM
428 const char *),
429 unsigned int);
252b5132
RH
430
431/* Initialize a hash table specifying a size. */
b34976b6 432extern bfd_boolean bfd_hash_table_init_n
c58b9523
AM
433 (struct bfd_hash_table *,
434 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
435 struct bfd_hash_table *,
436 const char *),
66eb6687 437 unsigned int, unsigned int);
252b5132
RH
438
439/* Free up a hash table. */
b34976b6 440extern void bfd_hash_table_free
c58b9523 441 (struct bfd_hash_table *);
252b5132 442
b34976b6 443/* Look up a string in a hash table. If CREATE is TRUE, a new entry
252b5132 444 will be created for this string if one does not already exist. The
b34976b6 445 COPY argument must be TRUE if this routine should copy the string
252b5132
RH
446 into newly allocated memory when adding an entry. */
447extern struct bfd_hash_entry *bfd_hash_lookup
c58b9523
AM
448 (struct bfd_hash_table *, const char *, bfd_boolean create,
449 bfd_boolean copy);
252b5132
RH
450
451/* Replace an entry in a hash table. */
452extern void bfd_hash_replace
c58b9523
AM
453 (struct bfd_hash_table *, struct bfd_hash_entry *old,
454 struct bfd_hash_entry *nw);
252b5132
RH
455
456/* Base method for creating a hash table entry. */
457extern struct bfd_hash_entry *bfd_hash_newfunc
c58b9523 458 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
252b5132
RH
459
460/* Grab some space for a hash table entry. */
c58b9523
AM
461extern void *bfd_hash_allocate
462 (struct bfd_hash_table *, unsigned int);
252b5132
RH
463
464/* Traverse a hash table in a random order, calling a function on each
b34976b6 465 element. If the function returns FALSE, the traversal stops. The
252b5132 466 INFO argument is passed to the function. */
b34976b6 467extern void bfd_hash_traverse
c58b9523
AM
468 (struct bfd_hash_table *,
469 bfd_boolean (*) (struct bfd_hash_entry *, void *),
470 void *info);
252b5132 471
2d643429
NC
472/* Allows the default size of a hash table to be configured. New hash
473 tables allocated using bfd_hash_table_init will be created with
474 this size. */
475extern void bfd_hash_set_default_size (bfd_size_type);
476
3722b82f
AM
477/* This structure is used to keep track of stabs in sections
478 information while linking. */
479
480struct stab_info
481{
482 /* A hash table used to hold stabs strings. */
483 struct bfd_strtab_hash *strings;
484 /* The header file hash table. */
485 struct bfd_hash_table includes;
486 /* The first .stabstr section. */
487 struct bfd_section *stabstr;
488};
489
c58b9523 490#define COFF_SWAP_TABLE (void *) &bfd_coff_std_swap_table
e43d48cc 491
b5f79c76 492/* User program access to BFD facilities. */
252b5132
RH
493
494/* Direct I/O routines, for programs which know more about the object
495 file than BFD does. Use higher level routines if possible. */
496
c58b9523
AM
497extern bfd_size_type bfd_bread (void *, bfd_size_type, bfd *);
498extern bfd_size_type bfd_bwrite (const void *, bfd_size_type, bfd *);
499extern int bfd_seek (bfd *, file_ptr, int);
7c192733 500extern file_ptr bfd_tell (bfd *);
c58b9523
AM
501extern int bfd_flush (bfd *);
502extern int bfd_stat (bfd *, struct stat *);
dc810e39
AM
503
504/* Deprecated old routines. */
505#if __GNUC__
506#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
507 (warn_deprecated ("bfd_read", __FILE__, __LINE__, __FUNCTION__), \
508 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
509#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
510 (warn_deprecated ("bfd_write", __FILE__, __LINE__, __FUNCTION__), \
511 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
512#else
513#define bfd_read(BUF, ELTSIZE, NITEMS, ABFD) \
514 (warn_deprecated ("bfd_read", (const char *) 0, 0, (const char *) 0), \
515 bfd_bread ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
516#define bfd_write(BUF, ELTSIZE, NITEMS, ABFD) \
517 (warn_deprecated ("bfd_write", (const char *) 0, 0, (const char *) 0),\
518 bfd_bwrite ((BUF), (ELTSIZE) * (NITEMS), (ABFD)))
519#endif
c58b9523 520extern void warn_deprecated (const char *, const char *, int, const char *);
252b5132 521
252b5132
RH
522/* Cast from const char * to char * so that caller can assign to
523 a char * without a warning. */
524#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
525#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
526#define bfd_get_format(abfd) ((abfd)->format)
527#define bfd_get_target(abfd) ((abfd)->xvec->name)
528#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
9bd09e22
ND
529#define bfd_family_coff(abfd) \
530 (bfd_get_flavour (abfd) == bfd_target_coff_flavour || \
531 bfd_get_flavour (abfd) == bfd_target_xcoff_flavour)
252b5132
RH
532#define bfd_big_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_BIG)
533#define bfd_little_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_LITTLE)
534#define bfd_header_big_endian(abfd) \
535 ((abfd)->xvec->header_byteorder == BFD_ENDIAN_BIG)
536#define bfd_header_little_endian(abfd) \
537 ((abfd)->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
538#define bfd_get_file_flags(abfd) ((abfd)->flags)
539#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
540#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
541#define bfd_my_archive(abfd) ((abfd)->my_archive)
542#define bfd_has_map(abfd) ((abfd)->has_armap)
543
544#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
545#define bfd_usrdata(abfd) ((abfd)->usrdata)
546
547#define bfd_get_start_address(abfd) ((abfd)->start_address)
548#define bfd_get_symcount(abfd) ((abfd)->symcount)
549#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
550#define bfd_count_sections(abfd) ((abfd)->section_count)
551
1f70368c
DJ
552#define bfd_get_dynamic_symcount(abfd) ((abfd)->dynsymcount)
553
252b5132
RH
554#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
555
b34976b6 556#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = bool), TRUE)
252b5132 557
b34976b6 558extern bfd_boolean bfd_cache_close
c58b9523 559 (bfd *abfd);
d436a9b3
FCE
560/* NB: This declaration should match the autogenerated one in libbfd.h. */
561
02d5a37b
JG
562extern bfd_boolean bfd_cache_close_all (void);
563
b34976b6 564extern bfd_boolean bfd_record_phdr
c58b9523 565 (bfd *, unsigned long, bfd_boolean, flagword, bfd_boolean, bfd_vma,
198beae2 566 bfd_boolean, bfd_boolean, unsigned int, struct bfd_section **);
252b5132
RH
567
568/* Byte swapping routines. */
569
8ce8c090
AM
570bfd_uint64_t bfd_getb64 (const void *);
571bfd_uint64_t bfd_getl64 (const void *);
572bfd_int64_t bfd_getb_signed_64 (const void *);
573bfd_int64_t bfd_getl_signed_64 (const void *);
edeb6e24
AM
574bfd_vma bfd_getb32 (const void *);
575bfd_vma bfd_getl32 (const void *);
576bfd_signed_vma bfd_getb_signed_32 (const void *);
577bfd_signed_vma bfd_getl_signed_32 (const void *);
578bfd_vma bfd_getb16 (const void *);
579bfd_vma bfd_getl16 (const void *);
580bfd_signed_vma bfd_getb_signed_16 (const void *);
581bfd_signed_vma bfd_getl_signed_16 (const void *);
8ce8c090
AM
582void bfd_putb64 (bfd_uint64_t, void *);
583void bfd_putl64 (bfd_uint64_t, void *);
edeb6e24
AM
584void bfd_putb32 (bfd_vma, void *);
585void bfd_putl32 (bfd_vma, void *);
586void bfd_putb16 (bfd_vma, void *);
587void bfd_putl16 (bfd_vma, void *);
8c603c85
NC
588
589/* Byte swapping routines which take size and endiannes as arguments. */
590
8ce8c090
AM
591bfd_uint64_t bfd_get_bits (const void *, int, bfd_boolean);
592void bfd_put_bits (bfd_uint64_t, void *, int, bfd_boolean);
082b7297
L
593
594extern bfd_boolean bfd_section_already_linked_table_init (void);
595extern void bfd_section_already_linked_table_free (void);
252b5132
RH
596\f
597/* Externally visible ECOFF routines. */
598
599#if defined(__STDC__) || defined(ALMOST_STDC)
600struct ecoff_debug_info;
601struct ecoff_debug_swap;
602struct ecoff_extr;
fc0a2244 603struct bfd_symbol;
252b5132
RH
604struct bfd_link_info;
605struct bfd_link_hash_entry;
606struct bfd_elf_version_tree;
607#endif
b34976b6 608extern bfd_vma bfd_ecoff_get_gp_value
c58b9523 609 (bfd * abfd);
b34976b6 610extern bfd_boolean bfd_ecoff_set_gp_value
c58b9523 611 (bfd *abfd, bfd_vma gp_value);
b34976b6 612extern bfd_boolean bfd_ecoff_set_regmasks
c58b9523
AM
613 (bfd *abfd, unsigned long gprmask, unsigned long fprmask,
614 unsigned long *cprmask);
615extern void *bfd_ecoff_debug_init
616 (bfd *output_bfd, struct ecoff_debug_info *output_debug,
617 const struct ecoff_debug_swap *output_swap, struct bfd_link_info *);
252b5132 618extern void bfd_ecoff_debug_free
c58b9523
AM
619 (void *handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
620 const struct ecoff_debug_swap *output_swap, struct bfd_link_info *);
b34976b6 621extern bfd_boolean bfd_ecoff_debug_accumulate
c58b9523
AM
622 (void *handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
623 const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
624 struct ecoff_debug_info *input_debug,
625 const struct ecoff_debug_swap *input_swap, struct bfd_link_info *);
b34976b6 626extern bfd_boolean bfd_ecoff_debug_accumulate_other
c58b9523
AM
627 (void *handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
628 const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
629 struct bfd_link_info *);
b34976b6 630extern bfd_boolean bfd_ecoff_debug_externals
c58b9523
AM
631 (bfd *abfd, struct ecoff_debug_info *debug,
632 const struct ecoff_debug_swap *swap, bfd_boolean relocatable,
fc0a2244
AC
633 bfd_boolean (*get_extr) (struct bfd_symbol *, struct ecoff_extr *),
634 void (*set_index) (struct bfd_symbol *, bfd_size_type));
b34976b6 635extern bfd_boolean bfd_ecoff_debug_one_external
c58b9523
AM
636 (bfd *abfd, struct ecoff_debug_info *debug,
637 const struct ecoff_debug_swap *swap, const char *name,
638 struct ecoff_extr *esym);
252b5132 639extern bfd_size_type bfd_ecoff_debug_size
c58b9523
AM
640 (bfd *abfd, struct ecoff_debug_info *debug,
641 const struct ecoff_debug_swap *swap);
b34976b6 642extern bfd_boolean bfd_ecoff_write_debug
c58b9523
AM
643 (bfd *abfd, struct ecoff_debug_info *debug,
644 const struct ecoff_debug_swap *swap, file_ptr where);
b34976b6 645extern bfd_boolean bfd_ecoff_write_accumulated_debug
c58b9523
AM
646 (void *handle, bfd *abfd, struct ecoff_debug_info *debug,
647 const struct ecoff_debug_swap *swap,
648 struct bfd_link_info *info, file_ptr where);
252b5132
RH
649
650/* Externally visible ELF routines. */
651
652struct bfd_link_needed_list
653{
654 struct bfd_link_needed_list *next;
655 bfd *by;
656 const char *name;
657};
658
4a43e768
AM
659enum dynamic_lib_link_class {
660 DYN_NORMAL = 0,
661 DYN_AS_NEEDED = 1,
e56f61be
L
662 DYN_DT_NEEDED = 2,
663 DYN_NO_ADD_NEEDED = 4,
664 DYN_NO_NEEDED = 8
4a43e768
AM
665};
666
5061a885
AM
667enum notice_asneeded_action {
668 notice_as_needed,
669 notice_not_needed,
670 notice_needed
671};
672
45d6a902 673extern bfd_boolean bfd_elf_record_link_assignment
fe21a8fc
L
674 (bfd *, struct bfd_link_info *, const char *, bfd_boolean,
675 bfd_boolean);
252b5132 676extern struct bfd_link_needed_list *bfd_elf_get_needed_list
c58b9523 677 (bfd *, struct bfd_link_info *);
b34976b6 678extern bfd_boolean bfd_elf_get_bfd_needed_list
c58b9523 679 (bfd *, struct bfd_link_needed_list **);
11c251f4 680extern bfd_boolean bfd_elf_size_dynamic_sections
c58b9523 681 (bfd *, const char *, const char *, const char *, const char * const *,
8423293d
AM
682 struct bfd_link_info *, struct bfd_section **,
683 struct bfd_elf_version_tree *);
684extern bfd_boolean bfd_elf_size_dynsym_hash_dynstr
685 (bfd *, struct bfd_link_info *);
b34976b6 686extern void bfd_elf_set_dt_needed_name
c58b9523 687 (bfd *, const char *);
b34976b6 688extern const char *bfd_elf_get_dt_soname
c58b9523 689 (bfd *);
4a43e768
AM
690extern void bfd_elf_set_dyn_lib_class
691 (bfd *, int);
e56f61be
L
692extern int bfd_elf_get_dyn_lib_class
693 (bfd *);
a963dc6a 694extern struct bfd_link_needed_list *bfd_elf_get_runpath_list
c58b9523 695 (bfd *, struct bfd_link_info *);
c152c796 696extern bfd_boolean bfd_elf_discard_info
c58b9523 697 (bfd *, struct bfd_link_info *);
8a696751
AM
698extern unsigned int _bfd_elf_default_action_discarded
699 (struct bfd_section *);
252b5132 700
7f8d5fc9
ILT
701/* Return an upper bound on the number of bytes required to store a
702 copy of ABFD's program header table entries. Return -1 if an error
703 occurs; bfd_get_error will return an appropriate code. */
b34976b6 704extern long bfd_get_elf_phdr_upper_bound
c58b9523 705 (bfd *abfd);
7f8d5fc9
ILT
706
707/* Copy ABFD's program header table entries to *PHDRS. The entries
708 will be stored as an array of Elf_Internal_Phdr structures, as
709 defined in include/elf/internal.h. To find out how large the
710 buffer needs to be, call bfd_get_elf_phdr_upper_bound.
711
712 Return the number of program header table entries read, or -1 if an
713 error occurs; bfd_get_error will return an appropriate code. */
b34976b6 714extern int bfd_get_elf_phdrs
c58b9523 715 (bfd *abfd, void *phdrs);
7f8d5fc9 716
a05758dd
RM
717/* Create a new BFD as if by bfd_openr. Rather than opening a file,
718 reconstruct an ELF file by reading the segments out of remote memory
719 based on the ELF file header at EHDR_VMA and the ELF program headers it
720 points to. If not null, *LOADBASEP is filled in with the difference
721 between the VMAs from which the segments were read, and the VMAs the
722 file headers (and hence BFD's idea of each section's VMA) put them at.
723
724 The function TARGET_READ_MEMORY is called to copy LEN bytes from the
725 remote memory at target address VMA into the local buffer at MYADDR; it
726 should return zero on success or an `errno' code on failure. TEMPL must
727 be a BFD for an ELF target with the word size and byte order found in
728 the remote memory. */
729extern bfd *bfd_elf_bfd_from_remote_memory
c58b9523 730 (bfd *templ, bfd_vma ehdr_vma, bfd_vma *loadbasep,
f075ee0c 731 int (*target_read_memory) (bfd_vma vma, bfd_byte *myaddr, int len));
a05758dd 732
3425c182 733/* Return the arch_size field of an elf bfd, or -1 if not elf. */
b34976b6 734extern int bfd_get_arch_size
c58b9523 735 (bfd *);
3425c182 736
b34976b6
AM
737/* Return TRUE if address "naturally" sign extends, or -1 if not elf. */
738extern int bfd_get_sign_extend_vma
c58b9523 739 (bfd *);
6d9019e4 740
e1918d23
AM
741extern struct bfd_section *_bfd_elf_tls_setup
742 (bfd *, struct bfd_link_info *);
743
1e035701 744extern void _bfd_fix_excluded_sec_syms
a3c2b96a 745 (bfd *, struct bfd_link_info *);
f652615e 746
266abb8f
NS
747extern unsigned bfd_m68k_mach_to_features (int);
748
749extern int bfd_m68k_features_to_mach (unsigned);
750
b34976b6 751extern bfd_boolean bfd_m68k_elf32_create_embedded_relocs
a3c2b96a
AM
752 (bfd *, struct bfd_link_info *, struct bfd_section *, struct bfd_section *,
753 char **);
0752970e 754
0f64bb02
CM
755extern bfd_boolean bfd_bfin_elf32_create_embedded_relocs
756 (bfd *, struct bfd_link_info *, struct bfd_section *, struct bfd_section *,
757 char **);
758
252b5132
RH
759/* SunOS shared library support routines for the linker. */
760
761extern struct bfd_link_needed_list *bfd_sunos_get_needed_list
c58b9523 762 (bfd *, struct bfd_link_info *);
b34976b6 763extern bfd_boolean bfd_sunos_record_link_assignment
c58b9523 764 (bfd *, struct bfd_link_info *, const char *);
b34976b6 765extern bfd_boolean bfd_sunos_size_dynamic_sections
a3c2b96a
AM
766 (bfd *, struct bfd_link_info *, struct bfd_section **,
767 struct bfd_section **, struct bfd_section **);
252b5132
RH
768
769/* Linux shared library support routines for the linker. */
770
b34976b6 771extern bfd_boolean bfd_i386linux_size_dynamic_sections
c58b9523 772 (bfd *, struct bfd_link_info *);
b34976b6 773extern bfd_boolean bfd_m68klinux_size_dynamic_sections
c58b9523 774 (bfd *, struct bfd_link_info *);
b34976b6 775extern bfd_boolean bfd_sparclinux_size_dynamic_sections
c58b9523 776 (bfd *, struct bfd_link_info *);
252b5132
RH
777
778/* mmap hacks */
779
780struct _bfd_window_internal;
781typedef struct _bfd_window_internal bfd_window_internal;
782
b5f79c76
NC
783typedef struct _bfd_window
784{
252b5132 785 /* What the user asked for. */
c58b9523 786 void *data;
252b5132
RH
787 bfd_size_type size;
788 /* The actual window used by BFD. Small user-requested read-only
789 regions sharing a page may share a single window into the object
790 file. Read-write versions shouldn't until I've fixed things to
791 keep track of which portions have been claimed by the
792 application; don't want to give the same region back when the
793 application wants two writable copies! */
794 struct _bfd_window_internal *i;
b5f79c76
NC
795}
796bfd_window;
252b5132 797
b34976b6 798extern void bfd_init_window
c58b9523 799 (bfd_window *);
b34976b6 800extern void bfd_free_window
c58b9523 801 (bfd_window *);
b34976b6 802extern bfd_boolean bfd_get_file_window
c58b9523 803 (bfd *, file_ptr, bfd_size_type, bfd_window *, bfd_boolean);
252b5132
RH
804
805/* XCOFF support routines for the linker. */
806
b34976b6 807extern bfd_boolean bfd_xcoff_link_record_set
c58b9523 808 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, bfd_size_type);
b34976b6 809extern bfd_boolean bfd_xcoff_import_symbol
c58b9523
AM
810 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *, bfd_vma,
811 const char *, const char *, const char *, unsigned int);
b34976b6 812extern bfd_boolean bfd_xcoff_export_symbol
c58b9523 813 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *);
b34976b6 814extern bfd_boolean bfd_xcoff_link_count_reloc
c58b9523 815 (bfd *, struct bfd_link_info *, const char *);
b34976b6 816extern bfd_boolean bfd_xcoff_record_link_assignment
c58b9523 817 (bfd *, struct bfd_link_info *, const char *);
b34976b6 818extern bfd_boolean bfd_xcoff_size_dynamic_sections
c58b9523
AM
819 (bfd *, struct bfd_link_info *, const char *, const char *,
820 unsigned long, unsigned long, unsigned long, bfd_boolean,
198beae2 821 int, bfd_boolean, bfd_boolean, struct bfd_section **, bfd_boolean);
b34976b6 822extern bfd_boolean bfd_xcoff_link_generate_rtinit
c58b9523 823 (bfd *, const char *, const char *, bfd_boolean);
252b5132 824
54327882 825/* XCOFF support routines for ar. */
b34976b6 826extern bfd_boolean bfd_xcoff_ar_archive_set_magic
c58b9523 827 (bfd *, char *);
54327882 828
252b5132
RH
829/* Externally visible COFF routines. */
830
831#if defined(__STDC__) || defined(ALMOST_STDC)
832struct internal_syment;
833union internal_auxent;
834#endif
835
b34976b6 836extern bfd_boolean bfd_coff_get_syment
fc0a2244 837 (bfd *, struct bfd_symbol *, struct internal_syment *);
252b5132 838
b34976b6 839extern bfd_boolean bfd_coff_get_auxent
fc0a2244 840 (bfd *, struct bfd_symbol *, int, union internal_auxent *);
252b5132 841
b34976b6 842extern bfd_boolean bfd_coff_set_symbol_class
fc0a2244 843 (bfd *, struct bfd_symbol *, unsigned int);
252b5132 844
b34976b6 845extern bfd_boolean bfd_m68k_coff_create_embedded_relocs
198beae2 846 (bfd *, struct bfd_link_info *, struct bfd_section *, struct bfd_section *, char **);
3eb6f68f 847
252b5132 848/* ARM Interworking support. Called from linker. */
b34976b6 849extern bfd_boolean bfd_arm_allocate_interworking_sections
c58b9523 850 (struct bfd_link_info *);
252b5132 851
b34976b6 852extern bfd_boolean bfd_arm_process_before_allocation
c58b9523 853 (bfd *, struct bfd_link_info *, int);
252b5132 854
b34976b6 855extern bfd_boolean bfd_arm_get_bfd_for_interworking
c58b9523 856 (bfd *, struct bfd_link_info *);
252b5132 857
86033394 858/* PE ARM Interworking support. Called from linker. */
b34976b6 859extern bfd_boolean bfd_arm_pe_allocate_interworking_sections
c58b9523 860 (struct bfd_link_info *);
86033394 861
b34976b6 862extern bfd_boolean bfd_arm_pe_process_before_allocation
c58b9523 863 (bfd *, struct bfd_link_info *, int);
86033394 864
b34976b6 865extern bfd_boolean bfd_arm_pe_get_bfd_for_interworking
c58b9523 866 (bfd *, struct bfd_link_info *);
86033394 867
252b5132 868/* ELF ARM Interworking support. Called from linker. */
b34976b6 869extern bfd_boolean bfd_elf32_arm_allocate_interworking_sections
c58b9523 870 (struct bfd_link_info *);
67e5d3d6 871
b34976b6 872extern bfd_boolean bfd_elf32_arm_process_before_allocation
dea514f5 873 (bfd *, struct bfd_link_info *, int);
eb043451
PB
874
875void bfd_elf32_arm_set_target_relocs
33bfe774 876 (struct bfd_link_info *, int, char *, int, int);
67e5d3d6 877
b34976b6 878extern bfd_boolean bfd_elf32_arm_get_bfd_for_interworking
c58b9523 879 (bfd *, struct bfd_link_info *);
252b5132 880
b34976b6 881extern bfd_boolean bfd_elf32_arm_add_glue_sections_to_bfd
c58b9523 882 (bfd *, struct bfd_link_info *);
8afb0e02 883
9d2da7ca 884/* ELF ARM mapping symbol support */
b0796911
PB
885#define BFD_ARM_SPECIAL_SYM_TYPE_MAP (1 << 0)
886#define BFD_ARM_SPECIAL_SYM_TYPE_TAG (1 << 1)
887#define BFD_ARM_SPECIAL_SYM_TYPE_OTHER (1 << 2)
888#define BFD_ARM_SPECIAL_SYM_TYPE_ANY (~0)
889extern bfd_boolean bfd_is_arm_special_symbol_name
890 (const char * name, int type);
9d2da7ca 891
5a6c6817
NC
892/* ARM Note section processing. */
893extern bfd_boolean bfd_arm_merge_machines
c58b9523 894 (bfd *, bfd *);
5a6c6817
NC
895
896extern bfd_boolean bfd_arm_update_notes
c58b9523 897 (bfd *, const char *);
5a6c6817
NC
898
899extern unsigned int bfd_arm_get_mach_from_notes
c58b9523 900 (bfd *, const char *);
5a6c6817 901
8546af74 902/* TI COFF load page support. */
b9af77f5 903extern void bfd_ticoff_set_section_load_page
198beae2 904 (struct bfd_section *, int);
b9af77f5
TW
905
906extern int bfd_ticoff_get_section_load_page
198beae2 907 (struct bfd_section *);
b9af77f5 908
7a9823f1
RS
909/* H8/300 functions. */
910extern bfd_vma bfd_h8300_pad_address
911 (bfd *, bfd_vma);
912
3f7deb8a
L
913/* IA64 Itanium code generation. Called from linker. */
914extern void bfd_elf32_ia64_after_parse
915 (int);
916
917extern void bfd_elf64_ia64_after_parse
918 (int);
919
082b7297
L
920/* This structure is used for a comdat section, as in PE. A comdat
921 section is associated with a particular symbol. When the linker
922 sees a comdat section, it keeps only one of the sections with a
923 given name and associated with a given symbol. */
924
925struct coff_comdat_info
926{
927 /* The name of the symbol associated with a comdat section. */
928 const char *name;
929
930 /* The local symbol table index of the symbol associated with a
931 comdat section. This is only meaningful to the object file format
932 specific code; it is not an index into the list returned by
933 bfd_canonicalize_symtab. */
934 long symbol;
935};
936
937extern struct coff_comdat_info *bfd_coff_get_comdat_section
938 (bfd *, struct bfd_section *);
939
e61463e1 940/* Extracted from init.c. */
c58b9523 941void bfd_init (void);
252b5132 942
e61463e1 943/* Extracted from opncls.c. */
2d0123b7
MM
944bfd *bfd_fopen (const char *filename, const char *target,
945 const char *mode, int fd);
946
c58b9523 947bfd *bfd_openr (const char *filename, const char *target);
252b5132 948
c58b9523 949bfd *bfd_fdopenr (const char *filename, const char *target, int fd);
252b5132 950
c58b9523 951bfd *bfd_openstreamr (const char *, const char *, void *);
252b5132 952
40838a72
AC
953bfd *bfd_openr_iovec (const char *filename, const char *target,
954 void *(*open) (struct bfd *nbfd,
955 void *open_closure),
956 void *open_closure,
957 file_ptr (*pread) (struct bfd *nbfd,
958 void *stream,
959 void *buf,
960 file_ptr nbytes,
961 file_ptr offset),
962 int (*close) (struct bfd *nbfd,
963 void *stream));
964
c58b9523 965bfd *bfd_openw (const char *filename, const char *target);
252b5132 966
c58b9523 967bfd_boolean bfd_close (bfd *abfd);
252b5132 968
c58b9523 969bfd_boolean bfd_close_all_done (bfd *);
252b5132 970
c58b9523 971bfd *bfd_create (const char *filename, bfd *templ);
252b5132 972
c58b9523 973bfd_boolean bfd_make_writable (bfd *abfd);
252b5132 974
c58b9523 975bfd_boolean bfd_make_readable (bfd *abfd);
252b5132 976
c58b9523
AM
977unsigned long bfd_calc_gnu_debuglink_crc32
978 (unsigned long crc, const unsigned char *buf, bfd_size_type len);
2593f09a 979
c58b9523 980char *bfd_follow_gnu_debuglink (bfd *abfd, const char *dir);
31f7ba04 981
198beae2 982struct bfd_section *bfd_create_gnu_debuglink_section
c58b9523 983 (bfd *abfd, const char *filename);
e7c81c25 984
c58b9523 985bfd_boolean bfd_fill_in_gnu_debuglink_section
198beae2 986 (bfd *abfd, struct bfd_section *sect, const char *filename);
2593f09a 987
e61463e1 988/* Extracted from libbfd.c. */
541389e2 989
52b219b5 990/* Byte swapping macros for user section data. */
252b5132
RH
991
992#define bfd_put_8(abfd, val, ptr) \
edeb6e24 993 ((void) (*((unsigned char *) (ptr)) = (val) & 0xff))
252b5132 994#define bfd_put_signed_8 \
c58b9523 995 bfd_put_8
252b5132 996#define bfd_get_8(abfd, ptr) \
c58b9523 997 (*(unsigned char *) (ptr) & 0xff)
252b5132 998#define bfd_get_signed_8(abfd, ptr) \
c58b9523 999 (((*(unsigned char *) (ptr) & 0xff) ^ 0x80) - 0x80)
252b5132
RH
1000
1001#define bfd_put_16(abfd, val, ptr) \
c58b9523 1002 BFD_SEND (abfd, bfd_putx16, ((val),(ptr)))
252b5132 1003#define bfd_put_signed_16 \
c58b9523 1004 bfd_put_16
252b5132 1005#define bfd_get_16(abfd, ptr) \
c58b9523 1006 BFD_SEND (abfd, bfd_getx16, (ptr))
252b5132 1007#define bfd_get_signed_16(abfd, ptr) \
c58b9523 1008 BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
252b5132
RH
1009
1010#define bfd_put_32(abfd, val, ptr) \
c58b9523 1011 BFD_SEND (abfd, bfd_putx32, ((val),(ptr)))
252b5132 1012#define bfd_put_signed_32 \
c58b9523 1013 bfd_put_32
252b5132 1014#define bfd_get_32(abfd, ptr) \
c58b9523 1015 BFD_SEND (abfd, bfd_getx32, (ptr))
252b5132 1016#define bfd_get_signed_32(abfd, ptr) \
c58b9523 1017 BFD_SEND (abfd, bfd_getx_signed_32, (ptr))
252b5132
RH
1018
1019#define bfd_put_64(abfd, val, ptr) \
c58b9523 1020 BFD_SEND (abfd, bfd_putx64, ((val), (ptr)))
252b5132 1021#define bfd_put_signed_64 \
c58b9523 1022 bfd_put_64
252b5132 1023#define bfd_get_64(abfd, ptr) \
c58b9523 1024 BFD_SEND (abfd, bfd_getx64, (ptr))
252b5132 1025#define bfd_get_signed_64(abfd, ptr) \
c58b9523 1026 BFD_SEND (abfd, bfd_getx_signed_64, (ptr))
252b5132 1027
c58b9523
AM
1028#define bfd_get(bits, abfd, ptr) \
1029 ((bits) == 8 ? (bfd_vma) bfd_get_8 (abfd, ptr) \
1030 : (bits) == 16 ? bfd_get_16 (abfd, ptr) \
1031 : (bits) == 32 ? bfd_get_32 (abfd, ptr) \
1032 : (bits) == 64 ? bfd_get_64 (abfd, ptr) \
1033 : (abort (), (bfd_vma) - 1))
c7ac6ff8 1034
c58b9523
AM
1035#define bfd_put(bits, abfd, val, ptr) \
1036 ((bits) == 8 ? bfd_put_8 (abfd, val, ptr) \
1037 : (bits) == 16 ? bfd_put_16 (abfd, val, ptr) \
1038 : (bits) == 32 ? bfd_put_32 (abfd, val, ptr) \
1039 : (bits) == 64 ? bfd_put_64 (abfd, val, ptr) \
1040 : (abort (), (void) 0))
c7ac6ff8 1041
541389e2 1042
52b219b5 1043/* Byte swapping macros for file header data. */
252b5132
RH
1044
1045#define bfd_h_put_8(abfd, val, ptr) \
dc810e39 1046 bfd_put_8 (abfd, val, ptr)
252b5132 1047#define bfd_h_put_signed_8(abfd, val, ptr) \
dc810e39 1048 bfd_put_8 (abfd, val, ptr)
252b5132 1049#define bfd_h_get_8(abfd, ptr) \
dc810e39 1050 bfd_get_8 (abfd, ptr)
252b5132 1051#define bfd_h_get_signed_8(abfd, ptr) \
dc810e39 1052 bfd_get_signed_8 (abfd, ptr)
252b5132
RH
1053
1054#define bfd_h_put_16(abfd, val, ptr) \
dc810e39 1055 BFD_SEND (abfd, bfd_h_putx16, (val, ptr))
252b5132 1056#define bfd_h_put_signed_16 \
dc810e39 1057 bfd_h_put_16
252b5132 1058#define bfd_h_get_16(abfd, ptr) \
dc810e39 1059 BFD_SEND (abfd, bfd_h_getx16, (ptr))
252b5132 1060#define bfd_h_get_signed_16(abfd, ptr) \
dc810e39 1061 BFD_SEND (abfd, bfd_h_getx_signed_16, (ptr))
252b5132
RH
1062
1063#define bfd_h_put_32(abfd, val, ptr) \
dc810e39 1064 BFD_SEND (abfd, bfd_h_putx32, (val, ptr))
252b5132 1065#define bfd_h_put_signed_32 \
dc810e39 1066 bfd_h_put_32
252b5132 1067#define bfd_h_get_32(abfd, ptr) \
dc810e39 1068 BFD_SEND (abfd, bfd_h_getx32, (ptr))
252b5132 1069#define bfd_h_get_signed_32(abfd, ptr) \
dc810e39 1070 BFD_SEND (abfd, bfd_h_getx_signed_32, (ptr))
252b5132
RH
1071
1072#define bfd_h_put_64(abfd, val, ptr) \
dc810e39 1073 BFD_SEND (abfd, bfd_h_putx64, (val, ptr))
252b5132 1074#define bfd_h_put_signed_64 \
dc810e39 1075 bfd_h_put_64
252b5132 1076#define bfd_h_get_64(abfd, ptr) \
dc810e39 1077 BFD_SEND (abfd, bfd_h_getx64, (ptr))
252b5132 1078#define bfd_h_get_signed_64(abfd, ptr) \
dc810e39
AM
1079 BFD_SEND (abfd, bfd_h_getx_signed_64, (ptr))
1080
edeb6e24
AM
1081/* Aliases for the above, which should eventually go away. */
1082
1083#define H_PUT_64 bfd_h_put_64
1084#define H_PUT_32 bfd_h_put_32
1085#define H_PUT_16 bfd_h_put_16
1086#define H_PUT_8 bfd_h_put_8
1087#define H_PUT_S64 bfd_h_put_signed_64
1088#define H_PUT_S32 bfd_h_put_signed_32
1089#define H_PUT_S16 bfd_h_put_signed_16
1090#define H_PUT_S8 bfd_h_put_signed_8
1091#define H_GET_64 bfd_h_get_64
1092#define H_GET_32 bfd_h_get_32
1093#define H_GET_16 bfd_h_get_16
1094#define H_GET_8 bfd_h_get_8
1095#define H_GET_S64 bfd_h_get_signed_64
1096#define H_GET_S32 bfd_h_get_signed_32
1097#define H_GET_S16 bfd_h_get_signed_16
1098#define H_GET_S8 bfd_h_get_signed_8
dc810e39 1099
252b5132 1100
93509525 1101/* Extracted from bfdio.c. */
c58b9523 1102long bfd_get_mtime (bfd *abfd);
93509525 1103
c58b9523 1104long bfd_get_size (bfd *abfd);
93509525
KD
1105
1106/* Extracted from bfdwin.c. */
e61463e1 1107/* Extracted from section.c. */
198beae2 1108typedef struct bfd_section
252b5132 1109{
52b219b5
AM
1110 /* The name of the section; the name isn't a copy, the pointer is
1111 the same as that passed to bfd_make_section. */
52b219b5
AM
1112 const char *name;
1113
1114 /* A unique sequence number. */
52b219b5 1115 int id;
252b5132 1116
dbb410c3 1117 /* Which section in the bfd; 0..n-1 as sections are created in a bfd. */
52b219b5 1118 int index;
252b5132 1119
52b219b5 1120 /* The next section in the list belonging to the BFD, or NULL. */
198beae2 1121 struct bfd_section *next;
252b5132 1122
5daa8fe7
L
1123 /* The previous section in the list belonging to the BFD, or NULL. */
1124 struct bfd_section *prev;
1125
52b219b5
AM
1126 /* The field flags contains attributes of the section. Some
1127 flags are read in from the object file, and some are
1128 synthesized from other information. */
52b219b5 1129 flagword flags;
252b5132
RH
1130
1131#define SEC_NO_FLAGS 0x000
1132
52b219b5
AM
1133 /* Tells the OS to allocate space for this section when loading.
1134 This is clear for a section containing debug information only. */
252b5132
RH
1135#define SEC_ALLOC 0x001
1136
52b219b5
AM
1137 /* Tells the OS to load the section from the file when loading.
1138 This is clear for a .bss section. */
252b5132
RH
1139#define SEC_LOAD 0x002
1140
52b219b5
AM
1141 /* The section contains data still to be relocated, so there is
1142 some relocation information too. */
252b5132
RH
1143#define SEC_RELOC 0x004
1144
52b219b5 1145 /* A signal to the OS that the section contains read only data. */
ebe372c1 1146#define SEC_READONLY 0x008
252b5132 1147
52b219b5 1148 /* The section contains code only. */
ebe372c1 1149#define SEC_CODE 0x010
252b5132 1150
52b219b5 1151 /* The section contains data only. */
ebe372c1 1152#define SEC_DATA 0x020
252b5132 1153
52b219b5 1154 /* The section will reside in ROM. */
ebe372c1 1155#define SEC_ROM 0x040
252b5132 1156
52b219b5
AM
1157 /* The section contains constructor information. This section
1158 type is used by the linker to create lists of constructors and
1159 destructors used by <<g++>>. When a back end sees a symbol
1160 which should be used in a constructor list, it creates a new
1161 section for the type of name (e.g., <<__CTOR_LIST__>>), attaches
1162 the symbol to it, and builds a relocation. To build the lists
1163 of constructors, all the linker has to do is catenate all the
1164 sections called <<__CTOR_LIST__>> and relocate the data
1165 contained within - exactly the operations it would peform on
1166 standard data. */
ebe372c1 1167#define SEC_CONSTRUCTOR 0x080
252b5132 1168
52b219b5
AM
1169 /* The section has contents - a data section could be
1170 <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>; a debug section could be
1171 <<SEC_HAS_CONTENTS>> */
ebe372c1 1172#define SEC_HAS_CONTENTS 0x100
252b5132 1173
52b219b5
AM
1174 /* An instruction to the linker to not output the section
1175 even if it has information which would normally be written. */
ebe372c1 1176#define SEC_NEVER_LOAD 0x200
252b5132 1177
13ae64f3 1178 /* The section contains thread local data. */
ebe372c1 1179#define SEC_THREAD_LOCAL 0x400
13ae64f3 1180
1bd91689
AM
1181 /* The section has GOT references. This flag is only for the
1182 linker, and is currently only used by the elf32-hppa back end.
1183 It will be set if global offset table references were detected
1184 in this section, which indicate to the linker that the section
1185 contains PIC code, and must be handled specially when doing a
1186 static link. */
ebe372c1 1187#define SEC_HAS_GOT_REF 0x800
1bd91689 1188
52b219b5
AM
1189 /* The section contains common symbols (symbols may be defined
1190 multiple times, the value of a symbol is the amount of
1191 space it requires, and the largest symbol value is the one
1192 used). Most targets have exactly one of these (which we
1193 translate to bfd_com_section_ptr), but ECOFF has two. */
ebe372c1 1194#define SEC_IS_COMMON 0x1000
252b5132 1195
52b219b5
AM
1196 /* The section contains only debugging information. For
1197 example, this is set for ELF .debug and .stab sections.
1198 strip tests this flag to see if a section can be
1199 discarded. */
ebe372c1 1200#define SEC_DEBUGGING 0x2000
252b5132 1201
52b219b5
AM
1202 /* The contents of this section are held in memory pointed to
1203 by the contents field. This is checked by bfd_get_section_contents,
1204 and the data is retrieved from memory if appropriate. */
ebe372c1 1205#define SEC_IN_MEMORY 0x4000
252b5132 1206
52b219b5
AM
1207 /* The contents of this section are to be excluded by the
1208 linker for executable and shared objects unless those
1209 objects are to be further relocated. */
ebe372c1 1210#define SEC_EXCLUDE 0x8000
252b5132 1211
dbb410c3
AM
1212 /* The contents of this section are to be sorted based on the sum of
1213 the symbol and addend values specified by the associated relocation
1214 entries. Entries without associated relocation entries will be
1215 appended to the end of the section in an unspecified order. */
ebe372c1 1216#define SEC_SORT_ENTRIES 0x10000
252b5132 1217
52b219b5
AM
1218 /* When linking, duplicate sections of the same name should be
1219 discarded, rather than being combined into a single section as
1220 is usually done. This is similar to how common symbols are
1221 handled. See SEC_LINK_DUPLICATES below. */
ebe372c1 1222#define SEC_LINK_ONCE 0x20000
252b5132 1223
52b219b5
AM
1224 /* If SEC_LINK_ONCE is set, this bitfield describes how the linker
1225 should handle duplicate sections. */
ebe372c1 1226#define SEC_LINK_DUPLICATES 0x40000
252b5132 1227
52b219b5
AM
1228 /* This value for SEC_LINK_DUPLICATES means that duplicate
1229 sections with the same name should simply be discarded. */
252b5132
RH
1230#define SEC_LINK_DUPLICATES_DISCARD 0x0
1231
52b219b5
AM
1232 /* This value for SEC_LINK_DUPLICATES means that the linker
1233 should warn if there are any duplicate sections, although
1234 it should still only link one copy. */
ebe372c1 1235#define SEC_LINK_DUPLICATES_ONE_ONLY 0x80000
252b5132 1236
52b219b5
AM
1237 /* This value for SEC_LINK_DUPLICATES means that the linker
1238 should warn if any duplicate sections are a different size. */
ebe372c1 1239#define SEC_LINK_DUPLICATES_SAME_SIZE 0x100000
252b5132 1240
52b219b5
AM
1241 /* This value for SEC_LINK_DUPLICATES means that the linker
1242 should warn if any duplicate sections contain different
1243 contents. */
ebe372c1
L
1244#define SEC_LINK_DUPLICATES_SAME_CONTENTS \
1245 (SEC_LINK_DUPLICATES_ONE_ONLY | SEC_LINK_DUPLICATES_SAME_SIZE)
252b5132 1246
52b219b5
AM
1247 /* This section was created by the linker as part of dynamic
1248 relocation or other arcane processing. It is skipped when
1249 going through the first-pass output, trusting that someone
1250 else up the line will take care of it later. */
ebe372c1 1251#define SEC_LINKER_CREATED 0x200000
252b5132 1252
52b219b5 1253 /* This section should not be subject to garbage collection. */
ebe372c1 1254#define SEC_KEEP 0x400000
252b5132 1255
52b219b5
AM
1256 /* This section contains "short" data, and should be placed
1257 "near" the GP. */
ebe372c1 1258#define SEC_SMALL_DATA 0x800000
34cbe64e 1259
f5fa8ca2
JJ
1260 /* Attempt to merge identical entities in the section.
1261 Entity size is given in the entsize field. */
ebe372c1 1262#define SEC_MERGE 0x1000000
f5fa8ca2 1263
a80f6941
L
1264 /* If given with SEC_MERGE, entities to merge are zero terminated
1265 strings where entsize specifies character size instead of fixed
1266 size entries. */
ebe372c1 1267#define SEC_STRINGS 0x2000000
f5fa8ca2 1268
dbb410c3 1269 /* This section contains data about section groups. */
ebe372c1
L
1270#define SEC_GROUP 0x4000000
1271
1272 /* The section is a COFF shared library section. This flag is
1273 only for the linker. If this type of section appears in
1274 the input file, the linker must copy it to the output file
1275 without changing the vma or size. FIXME: Although this
1276 was originally intended to be general, it really is COFF
1277 specific (and the flag was renamed to indicate this). It
1278 might be cleaner to have some more general mechanism to
1279 allow the back end to control what the linker does with
1280 sections. */
1281#define SEC_COFF_SHARED_LIBRARY 0x10000000
1282
1283 /* This section contains data which may be shared with other
1284 executables or shared objects. This is for COFF only. */
1285#define SEC_COFF_SHARED 0x20000000
1286
1287 /* When a section with this flag is being linked, then if the size of
1288 the input section is less than a page, it should not cross a page
1289 boundary. If the size of the input section is one page or more,
1290 it should be aligned on a page boundary. This is for TI
1291 TMS320C54X only. */
1292#define SEC_TIC54X_BLOCK 0x40000000
1293
1294 /* Conditionally link this section; do not link if there are no
1295 references found to any symbol in the section. This is for TI
1296 TMS320C54X only. */
1297#define SEC_TIC54X_CLINK 0x80000000
dbb410c3 1298
52b219b5 1299 /* End of section flags. */
252b5132 1300
52b219b5 1301 /* Some internal packed boolean fields. */
252b5132 1302
52b219b5
AM
1303 /* See the vma field. */
1304 unsigned int user_set_vma : 1;
252b5132 1305
52b219b5
AM
1306 /* A mark flag used by some of the linker backends. */
1307 unsigned int linker_mark : 1;
252b5132 1308
d1778b88 1309 /* Another mark flag used by some of the linker backends. Set for
08da05b0 1310 output sections that have an input section. */
d1778b88
AM
1311 unsigned int linker_has_input : 1;
1312
39c2f51b 1313 /* Mark flags used by some linker backends for garbage collection. */
52b219b5 1314 unsigned int gc_mark : 1;
39c2f51b 1315 unsigned int gc_mark_from_eh : 1;
252b5132 1316
68bfbfcc
AM
1317 /* The following flags are used by the ELF linker. */
1318
1319 /* Mark sections which have been allocated to segments. */
bc67d8a6
NC
1320 unsigned int segment_mark : 1;
1321
68bfbfcc
AM
1322 /* Type of sec_info information. */
1323 unsigned int sec_info_type:3;
1324#define ELF_INFO_TYPE_NONE 0
1325#define ELF_INFO_TYPE_STABS 1
1326#define ELF_INFO_TYPE_MERGE 2
1327#define ELF_INFO_TYPE_EH_FRAME 3
1328#define ELF_INFO_TYPE_JUST_SYMS 4
1329
1330 /* Nonzero if this section uses RELA relocations, rather than REL. */
1331 unsigned int use_rela_p:1;
1332
4c52953f
AM
1333 /* Bits used by various backends. The generic code doesn't touch
1334 these fields. */
68bfbfcc 1335
911d08a7
AM
1336 /* Nonzero if this section has TLS related relocations. */
1337 unsigned int has_tls_reloc:1;
c7996ad6 1338
ad8e1ba5
AM
1339 /* Nonzero if this section has a gp reloc. */
1340 unsigned int has_gp_reloc:1;
1341
911d08a7
AM
1342 /* Nonzero if this section needs the relax finalize pass. */
1343 unsigned int need_finalize_relax:1;
1344
1345 /* Whether relocations have been processed. */
1346 unsigned int reloc_done : 1;
68bfbfcc 1347
52b219b5 1348 /* End of internal packed boolean fields. */
252b5132 1349
52b219b5
AM
1350 /* The virtual memory address of the section - where it will be
1351 at run time. The symbols are relocated against this. The
1352 user_set_vma flag is maintained by bfd; if it's not set, the
1353 backend can assign addresses (for example, in <<a.out>>, where
1354 the default address for <<.data>> is dependent on the specific
1355 target and various flags). */
52b219b5 1356 bfd_vma vma;
252b5132 1357
52b219b5
AM
1358 /* The load address of the section - where it would be in a
1359 rom image; really only used for writing section header
b5f79c76 1360 information. */
52b219b5 1361 bfd_vma lma;
252b5132 1362
52b219b5
AM
1363 /* The size of the section in octets, as it will be output.
1364 Contains a value even if the section has no contents (e.g., the
eea6121a
AM
1365 size of <<.bss>>). */
1366 bfd_size_type size;
252b5132 1367
1a23a9e6
AM
1368 /* For input sections, the original size on disk of the section, in
1369 octets. This field is used by the linker relaxation code. It is
1370 currently only set for sections where the linker relaxation scheme
1371 doesn't cache altered section and reloc contents (stabs, eh_frame,
1372 SEC_MERGE, some coff relaxing targets), and thus the original size
1373 needs to be kept to read the section multiple times.
1374 For output sections, rawsize holds the section size calculated on
1375 a previous linker relaxation pass. */
eea6121a 1376 bfd_size_type rawsize;
252b5132 1377
52b219b5
AM
1378 /* If this section is going to be output, then this value is the
1379 offset in *bytes* into the output section of the first byte in the
1380 input section (byte ==> smallest addressable unit on the
1381 target). In most cases, if this was going to start at the
1382 100th octet (8-bit quantity) in the output section, this value
1383 would be 100. However, if the target byte size is 16 bits
1384 (bfd_octets_per_byte is "2"), this value would be 50. */
52b219b5 1385 bfd_vma output_offset;
252b5132 1386
52b219b5 1387 /* The output section through which to map on output. */
198beae2 1388 struct bfd_section *output_section;
252b5132 1389
52b219b5
AM
1390 /* The alignment requirement of the section, as an exponent of 2 -
1391 e.g., 3 aligns to 2^3 (or 8). */
52b219b5 1392 unsigned int alignment_power;
252b5132 1393
52b219b5
AM
1394 /* If an input section, a pointer to a vector of relocation
1395 records for the data in this section. */
52b219b5 1396 struct reloc_cache_entry *relocation;
252b5132 1397
52b219b5
AM
1398 /* If an output section, a pointer to a vector of pointers to
1399 relocation records for the data in this section. */
52b219b5 1400 struct reloc_cache_entry **orelocation;
252b5132 1401
b5f79c76 1402 /* The number of relocation records in one of the above. */
52b219b5 1403 unsigned reloc_count;
252b5132 1404
52b219b5
AM
1405 /* Information below is back end specific - and not always used
1406 or updated. */
252b5132 1407
52b219b5 1408 /* File position of section data. */
52b219b5 1409 file_ptr filepos;
252b5132 1410
52b219b5 1411 /* File position of relocation info. */
52b219b5 1412 file_ptr rel_filepos;
252b5132 1413
52b219b5 1414 /* File position of line data. */
52b219b5 1415 file_ptr line_filepos;
252b5132 1416
52b219b5 1417 /* Pointer to data for applications. */
c58b9523 1418 void *userdata;
252b5132 1419
52b219b5
AM
1420 /* If the SEC_IN_MEMORY flag is set, this points to the actual
1421 contents. */
1422 unsigned char *contents;
252b5132 1423
52b219b5 1424 /* Attached line number information. */
52b219b5 1425 alent *lineno;
252b5132 1426
52b219b5 1427 /* Number of line number records. */
52b219b5 1428 unsigned int lineno_count;
252b5132 1429
f5fa8ca2 1430 /* Entity size for merging purposes. */
f5fa8ca2
JJ
1431 unsigned int entsize;
1432
f97b9cb8
L
1433 /* Points to the kept section if this section is a link-once section,
1434 and is discarded. */
198beae2 1435 struct bfd_section *kept_section;
f97b9cb8 1436
52b219b5
AM
1437 /* When a section is being output, this value changes as more
1438 linenumbers are written out. */
52b219b5 1439 file_ptr moving_line_filepos;
252b5132 1440
52b219b5 1441 /* What the section number is in the target world. */
52b219b5 1442 int target_index;
252b5132 1443
c58b9523 1444 void *used_by_bfd;
252b5132 1445
52b219b5
AM
1446 /* If this is a constructor section then here is a list of the
1447 relocations created to relocate items within it. */
52b219b5 1448 struct relent_chain *constructor_chain;
252b5132 1449
52b219b5 1450 /* The BFD which owns the section. */
52b219b5 1451 bfd *owner;
252b5132 1452
b5f79c76 1453 /* A symbol which points at this section only. */
fc0a2244
AC
1454 struct bfd_symbol *symbol;
1455 struct bfd_symbol **symbol_ptr_ptr;
252b5132 1456
8423293d
AM
1457 /* Early in the link process, map_head and map_tail are used to build
1458 a list of input sections attached to an output section. Later,
1459 output sections use these fields for a list of bfd_link_order
1460 structs. */
1461 union {
1462 struct bfd_link_order *link_order;
1463 struct bfd_section *s;
1464 } map_head, map_tail;
b5f79c76 1465} asection;
252b5132 1466
52b219b5
AM
1467/* These sections are global, and are managed by BFD. The application
1468 and target back end are not permitted to change the values in
1469 these sections. New code should use the section_ptr macros rather
1470 than referring directly to the const sections. The const sections
1471 may eventually vanish. */
252b5132
RH
1472#define BFD_ABS_SECTION_NAME "*ABS*"
1473#define BFD_UND_SECTION_NAME "*UND*"
1474#define BFD_COM_SECTION_NAME "*COM*"
1475#define BFD_IND_SECTION_NAME "*IND*"
1476
b5f79c76 1477/* The absolute section. */
d622ef4b 1478extern asection bfd_abs_section;
252b5132
RH
1479#define bfd_abs_section_ptr ((asection *) &bfd_abs_section)
1480#define bfd_is_abs_section(sec) ((sec) == bfd_abs_section_ptr)
b5f79c76 1481/* Pointer to the undefined section. */
d622ef4b 1482extern asection bfd_und_section;
252b5132
RH
1483#define bfd_und_section_ptr ((asection *) &bfd_und_section)
1484#define bfd_is_und_section(sec) ((sec) == bfd_und_section_ptr)
b5f79c76 1485/* Pointer to the common section. */
d622ef4b 1486extern asection bfd_com_section;
252b5132 1487#define bfd_com_section_ptr ((asection *) &bfd_com_section)
b5f79c76 1488/* Pointer to the indirect section. */
d622ef4b 1489extern asection bfd_ind_section;
252b5132
RH
1490#define bfd_ind_section_ptr ((asection *) &bfd_ind_section)
1491#define bfd_is_ind_section(sec) ((sec) == bfd_ind_section_ptr)
1492
84c254c6
NC
1493#define bfd_is_const_section(SEC) \
1494 ( ((SEC) == bfd_abs_section_ptr) \
1495 || ((SEC) == bfd_und_section_ptr) \
1496 || ((SEC) == bfd_com_section_ptr) \
1497 || ((SEC) == bfd_ind_section_ptr))
1498
9e7b37b3
AM
1499/* Macros to handle insertion and deletion of a bfd's sections. These
1500 only handle the list pointers, ie. do not adjust section_count,
1501 target_index etc. */
e02b83d7 1502#define bfd_section_list_remove(ABFD, S) \
5daa8fe7
L
1503 do \
1504 { \
1505 asection *_s = S; \
1506 asection *_next = _s->next; \
1507 asection *_prev = _s->prev; \
1508 if (_prev) \
1509 _prev->next = _next; \
1510 else \
1511 (ABFD)->sections = _next; \
1512 if (_next) \
04dd1667 1513 _next->prev = _prev; \
5daa8fe7
L
1514 else \
1515 (ABFD)->section_last = _prev; \
1516 } \
1517 while (0)
e02b83d7 1518#define bfd_section_list_append(ABFD, S) \
5daa8fe7
L
1519 do \
1520 { \
1521 asection *_s = S; \
1522 bfd *_abfd = ABFD; \
1523 _s->next = NULL; \
1524 if (_abfd->section_last) \
1525 { \
1526 _s->prev = _abfd->section_last; \
1527 _abfd->section_last->next = _s; \
1528 } \
1529 else \
04dd1667
AM
1530 { \
1531 _s->prev = NULL; \
1532 _abfd->sections = _s; \
1533 } \
5daa8fe7
L
1534 _abfd->section_last = _s; \
1535 } \
1536 while (0)
04dd1667
AM
1537#define bfd_section_list_prepend(ABFD, S) \
1538 do \
1539 { \
1540 asection *_s = S; \
1541 bfd *_abfd = ABFD; \
1542 _s->prev = NULL; \
1543 if (_abfd->sections) \
1544 { \
1545 _s->next = _abfd->sections; \
1546 _abfd->sections->prev = _s; \
1547 } \
1548 else \
1549 { \
1550 _s->next = NULL; \
1551 _abfd->section_last = _s; \
1552 } \
1553 _abfd->sections = _s; \
1554 } \
1555 while (0)
e02b83d7 1556#define bfd_section_list_insert_after(ABFD, A, S) \
9e7b37b3
AM
1557 do \
1558 { \
5daa8fe7
L
1559 asection *_a = A; \
1560 asection *_s = S; \
e02b83d7
L
1561 asection *_next = _a->next; \
1562 _s->next = _next; \
1563 _s->prev = _a; \
1564 _a->next = _s; \
1565 if (_next) \
04dd1667 1566 _next->prev = _s; \
ab82c5b9 1567 else \
e02b83d7 1568 (ABFD)->section_last = _s; \
9e7b37b3
AM
1569 } \
1570 while (0)
e02b83d7 1571#define bfd_section_list_insert_before(ABFD, B, S) \
9e7b37b3
AM
1572 do \
1573 { \
5daa8fe7 1574 asection *_b = B; \
9e7b37b3 1575 asection *_s = S; \
e02b83d7
L
1576 asection *_prev = _b->prev; \
1577 _s->prev = _prev; \
1578 _s->next = _b; \
1579 _b->prev = _s; \
1580 if (_prev) \
1581 _prev->next = _s; \
5daa8fe7 1582 else \
e02b83d7 1583 (ABFD)->sections = _s; \
9e7b37b3
AM
1584 } \
1585 while (0)
ab82c5b9 1586#define bfd_section_removed_from_list(ABFD, S) \
04dd1667 1587 ((S)->next == NULL ? (ABFD)->section_last != (S) : (S)->next->prev != (S))
9e7b37b3 1588
f592407e 1589#define BFD_FAKE_SECTION(SEC, FLAGS, SYM, NAME, IDX) \
a4d8e49b
L
1590 /* name, id, index, next, prev, flags, user_set_vma, */ \
1591 { NAME, IDX, 0, NULL, NULL, FLAGS, 0, \
1592 \
1593 /* linker_mark, linker_has_input, gc_mark, gc_mark_from_eh, */ \
1594 0, 0, 1, 0, \
1595 \
1596 /* segment_mark, sec_info_type, use_rela_p, has_tls_reloc, */ \
1597 0, 0, 0, 0, \
1598 \
1599 /* has_gp_reloc, need_finalize_relax, reloc_done, */ \
1600 0, 0, 0, \
1601 \
1602 /* vma, lma, size, rawsize */ \
1603 0, 0, 0, 0, \
1604 \
1605 /* output_offset, output_section, alignment_power, */ \
1606 0, (struct bfd_section *) &SEC, 0, \
1607 \
1608 /* relocation, orelocation, reloc_count, filepos, rel_filepos, */ \
1609 NULL, NULL, 0, 0, 0, \
1610 \
1611 /* line_filepos, userdata, contents, lineno, lineno_count, */ \
1612 0, NULL, NULL, NULL, 0, \
1613 \
1614 /* entsize, kept_section, moving_line_filepos, */ \
1615 0, NULL, 0, \
1616 \
1617 /* target_index, used_by_bfd, constructor_chain, owner, */ \
1618 0, NULL, NULL, NULL, \
1619 \
f592407e
AM
1620 /* symbol, symbol_ptr_ptr, */ \
1621 (struct bfd_symbol *) SYM, &SEC.symbol, \
a4d8e49b
L
1622 \
1623 /* map_head, map_tail */ \
1624 { NULL }, { NULL } \
1625 }
1626
c58b9523 1627void bfd_section_list_clear (bfd *);
9e7b37b3 1628
c58b9523 1629asection *bfd_get_section_by_name (bfd *abfd, const char *name);
252b5132 1630
fafe6678
L
1631asection *bfd_get_section_by_name_if
1632 (bfd *abfd,
1633 const char *name,
1634 bfd_boolean (*func) (bfd *abfd, asection *sect, void *obj),
1635 void *obj);
1636
c58b9523
AM
1637char *bfd_get_unique_section_name
1638 (bfd *abfd, const char *templat, int *count);
1bd91689 1639
c58b9523 1640asection *bfd_make_section_old_way (bfd *abfd, const char *name);
252b5132 1641
b36b76cb
L
1642asection *bfd_make_section_anyway_with_flags
1643 (bfd *abfd, const char *name, flagword flags);
1644
c58b9523 1645asection *bfd_make_section_anyway (bfd *abfd, const char *name);
252b5132 1646
b36b76cb
L
1647asection *bfd_make_section_with_flags
1648 (bfd *, const char *name, flagword flags);
1649
c58b9523 1650asection *bfd_make_section (bfd *, const char *name);
252b5132 1651
c58b9523
AM
1652bfd_boolean bfd_set_section_flags
1653 (bfd *abfd, asection *sec, flagword flags);
252b5132 1654
c58b9523
AM
1655void bfd_map_over_sections
1656 (bfd *abfd,
1657 void (*func) (bfd *abfd, asection *sect, void *obj),
1658 void *obj);
252b5132 1659
bc87dd2e
L
1660asection *bfd_sections_find_if
1661 (bfd *abfd,
90c0a373 1662 bfd_boolean (*operation) (bfd *abfd, asection *sect, void *obj),
bc87dd2e
L
1663 void *obj);
1664
c58b9523
AM
1665bfd_boolean bfd_set_section_size
1666 (bfd *abfd, asection *sec, bfd_size_type val);
252b5132 1667
c58b9523 1668bfd_boolean bfd_set_section_contents
85302095
AC
1669 (bfd *abfd, asection *section, const void *data,
1670 file_ptr offset, bfd_size_type count);
252b5132 1671
c58b9523
AM
1672bfd_boolean bfd_get_section_contents
1673 (bfd *abfd, asection *section, void *location, file_ptr offset,
1674 bfd_size_type count);
252b5132 1675
eea6121a
AM
1676bfd_boolean bfd_malloc_and_get_section
1677 (bfd *abfd, asection *section, bfd_byte **buf);
1678
c58b9523
AM
1679bfd_boolean bfd_copy_private_section_data
1680 (bfd *ibfd, asection *isec, bfd *obfd, asection *osec);
252b5132
RH
1681
1682#define bfd_copy_private_section_data(ibfd, isection, obfd, osection) \
1683 BFD_SEND (obfd, _bfd_copy_private_section_data, \
1684 (ibfd, isection, obfd, osection))
72adc230
AM
1685bfd_boolean bfd_generic_is_group_section (bfd *, const asection *sec);
1686
c58b9523 1687bfd_boolean bfd_generic_discard_group (bfd *abfd, asection *group);
b885599b 1688
e61463e1 1689/* Extracted from archures.c. */
8546af74 1690enum bfd_architecture
252b5132 1691{
c312a6a4
NC
1692 bfd_arch_unknown, /* File arch not known. */
1693 bfd_arch_obscure, /* Arch known, not one of these. */
52b219b5 1694 bfd_arch_m68k, /* Motorola 68xxx */
252b5132
RH
1695#define bfd_mach_m68000 1
1696#define bfd_mach_m68008 2
1697#define bfd_mach_m68010 3
1698#define bfd_mach_m68020 4
1699#define bfd_mach_m68030 5
1700#define bfd_mach_m68040 6
1701#define bfd_mach_m68060 7
1702#define bfd_mach_cpu32 8
0b2e31dc
NS
1703#define bfd_mach_mcf_isa_a_nodiv 9
1704#define bfd_mach_mcf_isa_a 10
1705#define bfd_mach_mcf_isa_a_mac 11
1706#define bfd_mach_mcf_isa_a_emac 12
266abb8f
NS
1707#define bfd_mach_mcf_isa_aplus 13
1708#define bfd_mach_mcf_isa_aplus_mac 14
1709#define bfd_mach_mcf_isa_aplus_emac 15
0b2e31dc
NS
1710#define bfd_mach_mcf_isa_b_nousp 16
1711#define bfd_mach_mcf_isa_b_nousp_mac 17
1712#define bfd_mach_mcf_isa_b_nousp_emac 18
266abb8f
NS
1713#define bfd_mach_mcf_isa_b 19
1714#define bfd_mach_mcf_isa_b_mac 20
1715#define bfd_mach_mcf_isa_b_emac 21
0b2e31dc
NS
1716#define bfd_mach_mcf_isa_b_float 22
1717#define bfd_mach_mcf_isa_b_float_mac 23
1718#define bfd_mach_mcf_isa_b_float_emac 24
8546af74 1719 bfd_arch_vax, /* DEC Vax */
52b219b5
AM
1720 bfd_arch_i960, /* Intel 960 */
1721 /* The order of the following is important.
8546af74 1722 lower number indicates a machine type that
252b5132
RH
1723 only accepts a subset of the instructions
1724 available to machines with higher numbers.
1725 The exception is the "ca", which is
8546af74 1726 incompatible with all other machines except
c312a6a4 1727 "core". */
252b5132
RH
1728
1729#define bfd_mach_i960_core 1
1730#define bfd_mach_i960_ka_sa 2
1731#define bfd_mach_i960_kb_sb 3
1732#define bfd_mach_i960_mc 4
1733#define bfd_mach_i960_xa 5
1734#define bfd_mach_i960_ca 6
1735#define bfd_mach_i960_jx 7
1736#define bfd_mach_i960_hx 8
1737
3b16e843
NC
1738 bfd_arch_or32, /* OpenRISC 32 */
1739
52b219b5 1740 bfd_arch_sparc, /* SPARC */
252b5132 1741#define bfd_mach_sparc 1
52b219b5 1742/* The difference between v8plus and v9 is that v9 is a true 64 bit env. */
252b5132
RH
1743#define bfd_mach_sparc_sparclet 2
1744#define bfd_mach_sparc_sparclite 3
1745#define bfd_mach_sparc_v8plus 4
c312a6a4 1746#define bfd_mach_sparc_v8plusa 5 /* with ultrasparc add'ns. */
252b5132
RH
1747#define bfd_mach_sparc_sparclite_le 6
1748#define bfd_mach_sparc_v9 7
c312a6a4
NC
1749#define bfd_mach_sparc_v9a 8 /* with ultrasparc add'ns. */
1750#define bfd_mach_sparc_v8plusb 9 /* with cheetah add'ns. */
1751#define bfd_mach_sparc_v9b 10 /* with cheetah add'ns. */
52b219b5 1752/* Nonzero if MACH has the v9 instruction set. */
252b5132 1753#define bfd_mach_sparc_v9_p(mach) \
59ff2774 1754 ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9b \
19f7b010 1755 && (mach) != bfd_mach_sparc_sparclite_le)
7946e94a
JJ
1756/* Nonzero if MACH is a 64 bit sparc architecture. */
1757#define bfd_mach_sparc_64bit_p(mach) \
1758 ((mach) >= bfd_mach_sparc_v9 && (mach) != bfd_mach_sparc_v8plusb)
52b219b5 1759 bfd_arch_mips, /* MIPS Rxxxx */
252b5132
RH
1760#define bfd_mach_mips3000 3000
1761#define bfd_mach_mips3900 3900
1762#define bfd_mach_mips4000 4000
1763#define bfd_mach_mips4010 4010
1764#define bfd_mach_mips4100 4100
1765#define bfd_mach_mips4111 4111
00707a0e 1766#define bfd_mach_mips4120 4120
252b5132
RH
1767#define bfd_mach_mips4300 4300
1768#define bfd_mach_mips4400 4400
1769#define bfd_mach_mips4600 4600
1770#define bfd_mach_mips4650 4650
1771#define bfd_mach_mips5000 5000
00707a0e
RS
1772#define bfd_mach_mips5400 5400
1773#define bfd_mach_mips5500 5500
252b5132 1774#define bfd_mach_mips6000 6000
5a7ea749 1775#define bfd_mach_mips7000 7000
252b5132 1776#define bfd_mach_mips8000 8000
0d2e43ed 1777#define bfd_mach_mips9000 9000
252b5132 1778#define bfd_mach_mips10000 10000
d1cf510e 1779#define bfd_mach_mips12000 12000
0752970e 1780#define bfd_mach_mips16 16
84ea6cf2 1781#define bfd_mach_mips5 5
c6c98b38 1782#define bfd_mach_mips_sb1 12310201 /* octal 'SB', 01 */
a1cd6a8f 1783#define bfd_mach_mipsisa32 32
af7ee8bf 1784#define bfd_mach_mipsisa32r2 33
a1cd6a8f 1785#define bfd_mach_mipsisa64 64
5f74bc13 1786#define bfd_mach_mipsisa64r2 65
52b219b5 1787 bfd_arch_i386, /* Intel 386 */
686e4055
AM
1788#define bfd_mach_i386_i386 1
1789#define bfd_mach_i386_i8086 2
1790#define bfd_mach_i386_i386_intel_syntax 3
1791#define bfd_mach_x86_64 64
1792#define bfd_mach_x86_64_intel_syntax 65
52b219b5
AM
1793 bfd_arch_we32k, /* AT&T WE32xxx */
1794 bfd_arch_tahoe, /* CCI/Harris Tahoe */
1795 bfd_arch_i860, /* Intel 860 */
1796 bfd_arch_i370, /* IBM 360/370 Mainframes */
1797 bfd_arch_romp, /* IBM ROMP PC/RT */
52b219b5
AM
1798 bfd_arch_convex, /* Convex */
1799 bfd_arch_m88k, /* Motorola 88xxx */
3af9a47b 1800 bfd_arch_m98k, /* Motorola 98xxx */
52b219b5 1801 bfd_arch_pyramid, /* Pyramid Technology */
c2dcd04e 1802 bfd_arch_h8300, /* Renesas H8/300 (formerly Hitachi H8/300) */
8d9cd6b1
NC
1803#define bfd_mach_h8300 1
1804#define bfd_mach_h8300h 2
1805#define bfd_mach_h8300s 3
1806#define bfd_mach_h8300hn 4
1807#define bfd_mach_h8300sn 5
5d1db417 1808#define bfd_mach_h8300sx 6
f4984206 1809#define bfd_mach_h8300sxn 7
e135f41b 1810 bfd_arch_pdp11, /* DEC PDP-11 */
52b219b5 1811 bfd_arch_powerpc, /* PowerPC */
686e4055
AM
1812#define bfd_mach_ppc 32
1813#define bfd_mach_ppc64 64
87f33987
ND
1814#define bfd_mach_ppc_403 403
1815#define bfd_mach_ppc_403gc 4030
1816#define bfd_mach_ppc_505 505
1817#define bfd_mach_ppc_601 601
1818#define bfd_mach_ppc_602 602
1819#define bfd_mach_ppc_603 603
1820#define bfd_mach_ppc_ec603e 6031
1821#define bfd_mach_ppc_604 604
1822#define bfd_mach_ppc_620 620
1823#define bfd_mach_ppc_630 630
1824#define bfd_mach_ppc_750 750
1825#define bfd_mach_ppc_860 860
1826#define bfd_mach_ppc_a35 35
1827#define bfd_mach_ppc_rs64ii 642
1828#define bfd_mach_ppc_rs64iii 643
1829#define bfd_mach_ppc_7400 7400
d62b1198 1830#define bfd_mach_ppc_e500 500
52b219b5 1831 bfd_arch_rs6000, /* IBM RS/6000 */
686e4055 1832#define bfd_mach_rs6k 6000
87f33987
ND
1833#define bfd_mach_rs6k_rs1 6001
1834#define bfd_mach_rs6k_rsc 6003
1835#define bfd_mach_rs6k_rs2 6002
52b219b5 1836 bfd_arch_hppa, /* HP PA RISC */
42acdc7c
JB
1837#define bfd_mach_hppa10 10
1838#define bfd_mach_hppa11 11
1839#define bfd_mach_hppa20 20
1840#define bfd_mach_hppa20w 25
52b219b5 1841 bfd_arch_d10v, /* Mitsubishi D10V */
686e4055 1842#define bfd_mach_d10v 1
7af8cca9
MM
1843#define bfd_mach_d10v_ts2 2
1844#define bfd_mach_d10v_ts3 3
52b219b5 1845 bfd_arch_d30v, /* Mitsubishi D30V */
d172d4ba 1846 bfd_arch_dlx, /* DLX */
52b219b5
AM
1847 bfd_arch_m68hc11, /* Motorola 68HC11 */
1848 bfd_arch_m68hc12, /* Motorola 68HC12 */
bc7c6a90
SC
1849#define bfd_mach_m6812_default 0
1850#define bfd_mach_m6812 1
1851#define bfd_mach_m6812s 2
52b219b5 1852 bfd_arch_z8k, /* Zilog Z8000 */
252b5132
RH
1853#define bfd_mach_z8001 1
1854#define bfd_mach_z8002 2
c2dcd04e 1855 bfd_arch_h8500, /* Renesas H8/500 (formerly Hitachi H8/500) */
ef230218 1856 bfd_arch_sh, /* Renesas / SuperH SH (formerly Hitachi SH) */
686e4055 1857#define bfd_mach_sh 1
d4845d57
JR
1858#define bfd_mach_sh2 0x20
1859#define bfd_mach_sh_dsp 0x2d
1d70c7fb
AO
1860#define bfd_mach_sh2a 0x2a
1861#define bfd_mach_sh2a_nofpu 0x2b
e38bc3b5
NC
1862#define bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu 0x2a1
1863#define bfd_mach_sh2a_nofpu_or_sh3_nommu 0x2a2
1864#define bfd_mach_sh2a_or_sh4 0x2a3
1865#define bfd_mach_sh2a_or_sh3e 0x2a4
5177500f 1866#define bfd_mach_sh2e 0x2e
252b5132 1867#define bfd_mach_sh3 0x30
f6f9408f 1868#define bfd_mach_sh3_nommu 0x31
d4845d57 1869#define bfd_mach_sh3_dsp 0x3d
252b5132 1870#define bfd_mach_sh3e 0x3e
d4845d57 1871#define bfd_mach_sh4 0x40
af9ba621 1872#define bfd_mach_sh4_nofpu 0x41
ae51a426 1873#define bfd_mach_sh4_nommu_nofpu 0x42
af9ba621
CV
1874#define bfd_mach_sh4a 0x4a
1875#define bfd_mach_sh4a_nofpu 0x4b
1876#define bfd_mach_sh4al_dsp 0x4d
fbca6ad9 1877#define bfd_mach_sh5 0x50
52b219b5 1878 bfd_arch_alpha, /* Dec Alpha */
252b5132
RH
1879#define bfd_mach_alpha_ev4 0x10
1880#define bfd_mach_alpha_ev5 0x20
1881#define bfd_mach_alpha_ev6 0x30
c312a6a4 1882 bfd_arch_arm, /* Advanced Risc Machines ARM. */
5a6c6817 1883#define bfd_mach_arm_unknown 0
252b5132 1884#define bfd_mach_arm_2 1
478d07d6 1885#define bfd_mach_arm_2a 2
252b5132
RH
1886#define bfd_mach_arm_3 3
1887#define bfd_mach_arm_3M 4
478d07d6 1888#define bfd_mach_arm_4 5
252b5132 1889#define bfd_mach_arm_4T 6
478d07d6
NC
1890#define bfd_mach_arm_5 7
1891#define bfd_mach_arm_5T 8
077b8428
NC
1892#define bfd_mach_arm_5TE 9
1893#define bfd_mach_arm_XScale 10
fde78edd 1894#define bfd_mach_arm_ep9312 11
e16bb312 1895#define bfd_mach_arm_iWMMXt 12
52b219b5
AM
1896 bfd_arch_ns32k, /* National Semiconductors ns32000 */
1897 bfd_arch_w65, /* WDC 65816 */
1898 bfd_arch_tic30, /* Texas Instruments TMS320C30 */
026df7c5 1899 bfd_arch_tic4x, /* Texas Instruments TMS320C3X/4X */
be33c5dd
SS
1900#define bfd_mach_tic3x 30
1901#define bfd_mach_tic4x 40
52b219b5
AM
1902 bfd_arch_tic54x, /* Texas Instruments TMS320C54X */
1903 bfd_arch_tic80, /* TI TMS320c80 (MVP) */
1904 bfd_arch_v850, /* NEC V850 */
686e4055 1905#define bfd_mach_v850 1
252b5132 1906#define bfd_mach_v850e 'E'
8ad30312 1907#define bfd_mach_v850e1 '1'
0d2bcfaf 1908 bfd_arch_arc, /* ARC Cores */
686e4055
AM
1909#define bfd_mach_arc_5 5
1910#define bfd_mach_arc_6 6
1911#define bfd_mach_arc_7 7
1912#define bfd_mach_arc_8 8
49f58d10
JB
1913 bfd_arch_m32c, /* Renesas M16C/M32C. */
1914#define bfd_mach_m16c 0x75
1915#define bfd_mach_m32c 0x78
26597c86 1916 bfd_arch_m32r, /* Renesas M32R (formerly Mitsubishi M32R/D) */
686e4055 1917#define bfd_mach_m32r 1 /* For backwards compatibility. */
a23ef39f 1918#define bfd_mach_m32rx 'x'
88845958 1919#define bfd_mach_m32r2 '2'
52b219b5
AM
1920 bfd_arch_mn10200, /* Matsushita MN10200 */
1921 bfd_arch_mn10300, /* Matsushita MN10300 */
252b5132 1922#define bfd_mach_mn10300 300
7f8d5fc9 1923#define bfd_mach_am33 330
b08fa4d3 1924#define bfd_mach_am33_2 332
252b5132
RH
1925 bfd_arch_fr30,
1926#define bfd_mach_fr30 0x46523330
4e5ba5b7 1927 bfd_arch_frv,
686e4055
AM
1928#define bfd_mach_frv 1
1929#define bfd_mach_frvsimple 2
4e5ba5b7
DB
1930#define bfd_mach_fr300 300
1931#define bfd_mach_fr400 400
676a64f4 1932#define bfd_mach_fr450 450
4e5ba5b7
DB
1933#define bfd_mach_frvtomcat 499 /* fr500 prototype */
1934#define bfd_mach_fr500 500
9c8ee639 1935#define bfd_mach_fr550 550
252b5132 1936 bfd_arch_mcore,
52b219b5 1937 bfd_arch_ia64, /* HP/Intel ia64 */
686e4055
AM
1938#define bfd_mach_ia64_elf64 64
1939#define bfd_mach_ia64_elf32 32
cf88bb9f 1940 bfd_arch_ip2k, /* Ubicom IP2K microcontrollers. */
686e4055
AM
1941#define bfd_mach_ip2022 1
1942#define bfd_mach_ip2022ext 2
a75473eb
SC
1943 bfd_arch_iq2000, /* Vitesse IQ2000. */
1944#define bfd_mach_iq2000 1
1945#define bfd_mach_iq10 2
d031aafb 1946 bfd_arch_mt,
de33e640
AH
1947#define bfd_mach_ms1 1
1948#define bfd_mach_mrisc2 2
6f84a2a6 1949#define bfd_mach_ms2 3
0bcb993b 1950 bfd_arch_pj,
c312a6a4 1951 bfd_arch_avr, /* Atmel AVR microcontrollers. */
adde6300
AM
1952#define bfd_mach_avr1 1
1953#define bfd_mach_avr2 2
1954#define bfd_mach_avr3 3
1955#define bfd_mach_avr4 4
65aa24b6 1956#define bfd_mach_avr5 5
28c9d252 1957#define bfd_mach_avr6 6
0f64bb02
CM
1958 bfd_arch_bfin, /* ADI Blackfin */
1959#define bfd_mach_bfin 1
0949843d
NC
1960 bfd_arch_cr16c, /* National Semiconductor CompactRISC. */
1961#define bfd_mach_cr16c 1
e56f61be 1962 bfd_arch_crx, /* National Semiconductor CRX. */
1fe1f39c 1963#define bfd_mach_crx 1
06c15ad7 1964 bfd_arch_cris, /* Axis CRIS */
bac23f82
HPN
1965#define bfd_mach_cris_v0_v10 255
1966#define bfd_mach_cris_v32 32
1967#define bfd_mach_cris_v10_v32 1032
a85d7ed0 1968 bfd_arch_s390, /* IBM s390 */
686e4055
AM
1969#define bfd_mach_s390_31 31
1970#define bfd_mach_s390_64 64
b3baf5d0 1971 bfd_arch_openrisc, /* OpenRISC */
c312a6a4 1972 bfd_arch_mmix, /* Donald Knuth's educational processor. */
93fbbb04 1973 bfd_arch_xstormy16,
686e4055 1974#define bfd_mach_xstormy16 1
2469cfa2 1975 bfd_arch_msp430, /* Texas Instruments MSP430 architecture. */
2469cfa2 1976#define bfd_mach_msp11 11
3b260895 1977#define bfd_mach_msp110 110
2469cfa2
NC
1978#define bfd_mach_msp12 12
1979#define bfd_mach_msp13 13
1980#define bfd_mach_msp14 14
3b260895 1981#define bfd_mach_msp15 15
d70c5fc7 1982#define bfd_mach_msp16 16
44c86e8c 1983#define bfd_mach_msp21 21
2469cfa2
NC
1984#define bfd_mach_msp31 31
1985#define bfd_mach_msp32 32
1986#define bfd_mach_msp33 33
3b260895
NC
1987#define bfd_mach_msp41 41
1988#define bfd_mach_msp42 42
2469cfa2
NC
1989#define bfd_mach_msp43 43
1990#define bfd_mach_msp44 44
d70c5fc7
NC
1991 bfd_arch_xc16x, /* Infineon's XC16X Series. */
1992#define bfd_mach_xc16x 1
1993#define bfd_mach_xc16xl 2
1994#define bfd_mach_xc16xs 3
e0001a05
NC
1995 bfd_arch_xtensa, /* Tensilica's Xtensa cores. */
1996#define bfd_mach_xtensa 1
7499d566 1997 bfd_arch_maxq, /* Dallas MAXQ 10/20 */
5c4504f7
NC
1998#define bfd_mach_maxq10 10
1999#define bfd_mach_maxq20 20
3c9b82ba
NC
2000 bfd_arch_z80,
2001#define bfd_mach_z80strict 1 /* No undocumented opcodes. */
2002#define bfd_mach_z80 3 /* With ixl, ixh, iyl, and iyh. */
2003#define bfd_mach_z80full 7 /* All undocumented instructions. */
2004#define bfd_mach_r800 11 /* R800: successor with multiplication. */
252b5132
RH
2005 bfd_arch_last
2006 };
2007
8546af74 2008typedef struct bfd_arch_info
252b5132
RH
2009{
2010 int bits_per_word;
2011 int bits_per_address;
2012 int bits_per_byte;
2013 enum bfd_architecture arch;
2014 unsigned long mach;
2015 const char *arch_name;
2016 const char *printable_name;
2017 unsigned int section_align_power;
b34976b6 2018 /* TRUE if this is the default machine for the architecture.
aa3d5824
AM
2019 The default arch should be the first entry for an arch so that
2020 all the entries for that arch can be accessed via <<next>>. */
b34976b6 2021 bfd_boolean the_default;
252b5132 2022 const struct bfd_arch_info * (*compatible)
c58b9523 2023 (const struct bfd_arch_info *a, const struct bfd_arch_info *b);
252b5132 2024
c58b9523 2025 bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
252b5132
RH
2026
2027 const struct bfd_arch_info *next;
3b16e843
NC
2028}
2029bfd_arch_info_type;
2030
c58b9523 2031const char *bfd_printable_name (bfd *abfd);
252b5132 2032
c58b9523 2033const bfd_arch_info_type *bfd_scan_arch (const char *string);
252b5132 2034
c58b9523 2035const char **bfd_arch_list (void);
252b5132 2036
c58b9523
AM
2037const bfd_arch_info_type *bfd_arch_get_compatible
2038 (const bfd *abfd, const bfd *bbfd, bfd_boolean accept_unknowns);
252b5132 2039
c58b9523 2040void bfd_set_arch_info (bfd *abfd, const bfd_arch_info_type *arg);
252b5132 2041
c58b9523 2042enum bfd_architecture bfd_get_arch (bfd *abfd);
252b5132 2043
c58b9523 2044unsigned long bfd_get_mach (bfd *abfd);
252b5132 2045
c58b9523 2046unsigned int bfd_arch_bits_per_byte (bfd *abfd);
252b5132 2047
c58b9523 2048unsigned int bfd_arch_bits_per_address (bfd *abfd);
252b5132 2049
c58b9523 2050const bfd_arch_info_type *bfd_get_arch_info (bfd *abfd);
252b5132 2051
c58b9523
AM
2052const bfd_arch_info_type *bfd_lookup_arch
2053 (enum bfd_architecture arch, unsigned long machine);
252b5132 2054
c58b9523
AM
2055const char *bfd_printable_arch_mach
2056 (enum bfd_architecture arch, unsigned long machine);
252b5132 2057
c58b9523 2058unsigned int bfd_octets_per_byte (bfd *abfd);
9a968f43 2059
c58b9523
AM
2060unsigned int bfd_arch_mach_octets_per_byte
2061 (enum bfd_architecture arch, unsigned long machine);
9a968f43 2062
e61463e1 2063/* Extracted from reloc.c. */
252b5132
RH
2064typedef enum bfd_reloc_status
2065{
b5f79c76 2066 /* No errors detected. */
252b5132
RH
2067 bfd_reloc_ok,
2068
b5f79c76 2069 /* The relocation was performed, but there was an overflow. */
252b5132
RH
2070 bfd_reloc_overflow,
2071
b5f79c76 2072 /* The address to relocate was not within the section supplied. */
252b5132
RH
2073 bfd_reloc_outofrange,
2074
b5f79c76 2075 /* Used by special functions. */
252b5132
RH
2076 bfd_reloc_continue,
2077
b5f79c76 2078 /* Unsupported relocation size requested. */
252b5132
RH
2079 bfd_reloc_notsupported,
2080
b5f79c76 2081 /* Unused. */
252b5132
RH
2082 bfd_reloc_other,
2083
b5f79c76 2084 /* The symbol to relocate against was undefined. */
252b5132
RH
2085 bfd_reloc_undefined,
2086
dc810e39
AM
2087 /* The relocation was performed, but may not be ok - presently
2088 generated only when linking i960 coff files with i960 b.out
2089 symbols. If this type is returned, the error_message argument
2090 to bfd_perform_relocation will be set. */
252b5132
RH
2091 bfd_reloc_dangerous
2092 }
2093 bfd_reloc_status_type;
2094
541389e2 2095
252b5132
RH
2096typedef struct reloc_cache_entry
2097{
b5f79c76 2098 /* A pointer into the canonical table of pointers. */
fc0a2244 2099 struct bfd_symbol **sym_ptr_ptr;
252b5132 2100
b5f79c76 2101 /* offset in section. */
252b5132
RH
2102 bfd_size_type address;
2103
b5f79c76 2104 /* addend for relocation value. */
252b5132
RH
2105 bfd_vma addend;
2106
b5f79c76 2107 /* Pointer to how to perform the required relocation. */
252b5132
RH
2108 reloc_howto_type *howto;
2109
b5f79c76
NC
2110}
2111arelent;
2112
252b5132
RH
2113enum complain_overflow
2114{
b5f79c76 2115 /* Do not complain on overflow. */
252b5132
RH
2116 complain_overflow_dont,
2117
a7985d73
AM
2118 /* Complain if the value overflows when considered as a signed
2119 number one bit larger than the field. ie. A bitfield of N bits
2120 is allowed to represent -2**n to 2**n-1. */
252b5132
RH
2121 complain_overflow_bitfield,
2122
a7985d73 2123 /* Complain if the value overflows when considered as a signed
b5f79c76 2124 number. */
252b5132
RH
2125 complain_overflow_signed,
2126
dc810e39 2127 /* Complain if the value overflows when considered as an
b5f79c76 2128 unsigned number. */
252b5132
RH
2129 complain_overflow_unsigned
2130};
2131
2132struct reloc_howto_struct
2133{
dc810e39
AM
2134 /* The type field has mainly a documentary use - the back end can
2135 do what it wants with it, though normally the back end's
2136 external idea of what a reloc number is stored
2137 in this field. For example, a PC relative word relocation
2138 in a coff environment has the type 023 - because that's
2139 what the outside world calls a R_PCRWORD reloc. */
252b5132
RH
2140 unsigned int type;
2141
dc810e39
AM
2142 /* The value the final relocation is shifted right by. This drops
2143 unwanted data from the relocation. */
252b5132
RH
2144 unsigned int rightshift;
2145
dc810e39
AM
2146 /* The size of the item to be relocated. This is *not* a
2147 power-of-two measure. To get the number of bytes operated
2148 on by a type of relocation, use bfd_get_reloc_size. */
252b5132
RH
2149 int size;
2150
dc810e39
AM
2151 /* The number of bits in the item to be relocated. This is used
2152 when doing overflow checking. */
252b5132
RH
2153 unsigned int bitsize;
2154
dc810e39
AM
2155 /* Notes that the relocation is relative to the location in the
2156 data section of the addend. The relocation function will
2157 subtract from the relocation value the address of the location
2158 being relocated. */
b34976b6 2159 bfd_boolean pc_relative;
252b5132 2160
dc810e39
AM
2161 /* The bit position of the reloc value in the destination.
2162 The relocated value is left shifted by this amount. */
252b5132
RH
2163 unsigned int bitpos;
2164
dc810e39
AM
2165 /* What type of overflow error should be checked for when
2166 relocating. */
252b5132
RH
2167 enum complain_overflow complain_on_overflow;
2168
dc810e39
AM
2169 /* If this field is non null, then the supplied function is
2170 called rather than the normal function. This allows really
7dee875e 2171 strange relocation methods to be accommodated (e.g., i960 callj
dc810e39 2172 instructions). */
252b5132 2173 bfd_reloc_status_type (*special_function)
fc0a2244 2174 (bfd *, arelent *, struct bfd_symbol *, void *, asection *,
c58b9523 2175 bfd *, char **);
dc810e39
AM
2176
2177 /* The textual name of the relocation type. */
252b5132
RH
2178 char *name;
2179
dc810e39
AM
2180 /* Some formats record a relocation addend in the section contents
2181 rather than with the relocation. For ELF formats this is the
2182 distinction between USE_REL and USE_RELA (though the code checks
2183 for USE_REL == 1/0). The value of this field is TRUE if the
2184 addend is recorded with the section contents; when performing a
2185 partial link (ld -r) the section contents (the data) will be
2186 modified. The value of this field is FALSE if addends are
2187 recorded with the relocation (in arelent.addend); when performing
2188 a partial link the relocation will be modified.
2189 All relocations for all ELF USE_RELA targets should set this field
2190 to FALSE (values of TRUE should be looked on with suspicion).
2191 However, the converse is not true: not all relocations of all ELF
2192 USE_REL targets set this field to TRUE. Why this is so is peculiar
2193 to each particular target. For relocs that aren't used in partial
2194 links (e.g. GOT stuff) it doesn't matter what this is set to. */
b34976b6 2195 bfd_boolean partial_inplace;
252b5132 2196
7dc77aaa
AM
2197 /* src_mask selects the part of the instruction (or data) to be used
2198 in the relocation sum. If the target relocations don't have an
2199 addend in the reloc, eg. ELF USE_REL, src_mask will normally equal
2200 dst_mask to extract the addend from the section contents. If
2201 relocations do have an addend in the reloc, eg. ELF USE_RELA, this
2202 field should be zero. Non-zero values for ELF USE_RELA targets are
2203 bogus as in those cases the value in the dst_mask part of the
2204 section contents should be treated as garbage. */
252b5132
RH
2205 bfd_vma src_mask;
2206
7dc77aaa
AM
2207 /* dst_mask selects which parts of the instruction (or data) are
2208 replaced with a relocated value. */
252b5132
RH
2209 bfd_vma dst_mask;
2210
dc810e39
AM
2211 /* When some formats create PC relative instructions, they leave
2212 the value of the pc of the place being relocated in the offset
2213 slot of the instruction, so that a PC relative relocation can
2214 be made just by adding in an ordinary offset (e.g., sun3 a.out).
2215 Some formats leave the displacement part of an instruction
2216 empty (e.g., m88k bcs); this flag signals the fact. */
b34976b6 2217 bfd_boolean pcrel_offset;
252b5132 2218};
b5f79c76 2219
dc810e39
AM
2220#define HOWTO(C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
2221 { (unsigned) C, R, S, B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC }
2222#define NEWHOWTO(FUNCTION, NAME, SIZE, REL, IN) \
2223 HOWTO (0, 0, SIZE, 0, REL, 0, complain_overflow_dont, FUNCTION, \
b34976b6 2224 NAME, FALSE, 0, 0, IN)
252b5132 2225
5f771d47 2226#define EMPTY_HOWTO(C) \
b34976b6
AM
2227 HOWTO ((C), 0, 0, 0, FALSE, 0, complain_overflow_dont, NULL, \
2228 NULL, FALSE, 0, 0, FALSE)
dc810e39
AM
2229
2230#define HOWTO_PREPARE(relocation, symbol) \
2231 { \
c58b9523 2232 if (symbol != NULL) \
dc810e39
AM
2233 { \
2234 if (bfd_is_com_section (symbol->section)) \
2235 { \
2236 relocation = 0; \
2237 } \
2238 else \
2239 { \
2240 relocation = symbol->value; \
2241 } \
2242 } \
2243 }
b5f79c76 2244
c58b9523 2245unsigned int bfd_get_reloc_size (reloc_howto_type *);
252b5132 2246
dc810e39
AM
2247typedef struct relent_chain
2248{
252b5132 2249 arelent relent;
dc810e39 2250 struct relent_chain *next;
b5f79c76
NC
2251}
2252arelent_chain;
2253
c58b9523
AM
2254bfd_reloc_status_type bfd_check_overflow
2255 (enum complain_overflow how,
252b5132
RH
2256 unsigned int bitsize,
2257 unsigned int rightshift,
2258 unsigned int addrsize,
c58b9523 2259 bfd_vma relocation);
252b5132 2260
c58b9523
AM
2261bfd_reloc_status_type bfd_perform_relocation
2262 (bfd *abfd,
252b5132 2263 arelent *reloc_entry,
c58b9523 2264 void *data,
252b5132
RH
2265 asection *input_section,
2266 bfd *output_bfd,
c58b9523 2267 char **error_message);
252b5132 2268
c58b9523
AM
2269bfd_reloc_status_type bfd_install_relocation
2270 (bfd *abfd,
252b5132 2271 arelent *reloc_entry,
c58b9523 2272 void *data, bfd_vma data_start,
252b5132 2273 asection *input_section,
c58b9523 2274 char **error_message);
252b5132
RH
2275
2276enum bfd_reloc_code_real {
2277 _dummy_first_bfd_reloc_code_real,
2278
541389e2 2279
b5f79c76 2280/* Basic absolute relocations of N bits. */
252b5132
RH
2281 BFD_RELOC_64,
2282 BFD_RELOC_32,
2283 BFD_RELOC_26,
2284 BFD_RELOC_24,
2285 BFD_RELOC_16,
2286 BFD_RELOC_14,
2287 BFD_RELOC_8,
2288
2289/* PC-relative relocations. Sometimes these are relative to the address
2290of the relocation itself; sometimes they are relative to the start of
2291the section containing the relocation. It depends on the specific target.
2292
b5f79c76 2293The 24-bit relocation is used in some Intel 960 configurations. */
252b5132
RH
2294 BFD_RELOC_64_PCREL,
2295 BFD_RELOC_32_PCREL,
2296 BFD_RELOC_24_PCREL,
2297 BFD_RELOC_16_PCREL,
2298 BFD_RELOC_12_PCREL,
2299 BFD_RELOC_8_PCREL,
2300
6482c264
NC
2301/* Section relative relocations. Some targets need this for DWARF2. */
2302 BFD_RELOC_32_SECREL,
2303
b5f79c76 2304/* For ELF. */
252b5132
RH
2305 BFD_RELOC_32_GOT_PCREL,
2306 BFD_RELOC_16_GOT_PCREL,
2307 BFD_RELOC_8_GOT_PCREL,
2308 BFD_RELOC_32_GOTOFF,
2309 BFD_RELOC_16_GOTOFF,
2310 BFD_RELOC_LO16_GOTOFF,
2311 BFD_RELOC_HI16_GOTOFF,
2312 BFD_RELOC_HI16_S_GOTOFF,
2313 BFD_RELOC_8_GOTOFF,
5bd4f169 2314 BFD_RELOC_64_PLT_PCREL,
252b5132
RH
2315 BFD_RELOC_32_PLT_PCREL,
2316 BFD_RELOC_24_PLT_PCREL,
2317 BFD_RELOC_16_PLT_PCREL,
2318 BFD_RELOC_8_PLT_PCREL,
5bd4f169 2319 BFD_RELOC_64_PLTOFF,
252b5132
RH
2320 BFD_RELOC_32_PLTOFF,
2321 BFD_RELOC_16_PLTOFF,
2322 BFD_RELOC_LO16_PLTOFF,
2323 BFD_RELOC_HI16_PLTOFF,
2324 BFD_RELOC_HI16_S_PLTOFF,
2325 BFD_RELOC_8_PLTOFF,
2326
b5f79c76 2327/* Relocations used by 68K ELF. */
252b5132
RH
2328 BFD_RELOC_68K_GLOB_DAT,
2329 BFD_RELOC_68K_JMP_SLOT,
2330 BFD_RELOC_68K_RELATIVE,
2331
b5f79c76 2332/* Linkage-table relative. */
252b5132
RH
2333 BFD_RELOC_32_BASEREL,
2334 BFD_RELOC_16_BASEREL,
2335 BFD_RELOC_LO16_BASEREL,
2336 BFD_RELOC_HI16_BASEREL,
2337 BFD_RELOC_HI16_S_BASEREL,
2338 BFD_RELOC_8_BASEREL,
2339 BFD_RELOC_RVA,
2340
b5f79c76 2341/* Absolute 8-bit relocation, but used to form an address like 0xFFnn. */
252b5132
RH
2342 BFD_RELOC_8_FFnn,
2343
2344/* These PC-relative relocations are stored as word displacements --
2345i.e., byte displacements shifted right two bits. The 30-bit word
2346displacement (<<32_PCREL_S2>> -- 32 bits, shifted 2) is used on the
2347SPARC. (SPARC tools generally refer to this as <<WDISP30>>.) The
2348signed 16-bit displacement is used on the MIPS, and the 23-bit
b5f79c76 2349displacement is used on the Alpha. */
252b5132
RH
2350 BFD_RELOC_32_PCREL_S2,
2351 BFD_RELOC_16_PCREL_S2,
2352 BFD_RELOC_23_PCREL_S2,
2353
2354/* High 22 bits and low 10 bits of 32-bit value, placed into lower bits of
b5f79c76 2355the target word. These are used on the SPARC. */
252b5132
RH
2356 BFD_RELOC_HI22,
2357 BFD_RELOC_LO10,
2358
2359/* For systems that allocate a Global Pointer register, these are
2360displacements off that register. These relocation types are
2361handled specially, because the value the register will have is
b5f79c76 2362decided relatively late. */
252b5132
RH
2363 BFD_RELOC_GPREL16,
2364 BFD_RELOC_GPREL32,
2365
b5f79c76 2366/* Reloc types used for i960/b.out. */
252b5132
RH
2367 BFD_RELOC_I960_CALLJ,
2368
2369/* SPARC ELF relocations. There is probably some overlap with other
b5f79c76 2370relocation types already defined. */
252b5132
RH
2371 BFD_RELOC_NONE,
2372 BFD_RELOC_SPARC_WDISP22,
2373 BFD_RELOC_SPARC22,
2374 BFD_RELOC_SPARC13,
2375 BFD_RELOC_SPARC_GOT10,
2376 BFD_RELOC_SPARC_GOT13,
2377 BFD_RELOC_SPARC_GOT22,
2378 BFD_RELOC_SPARC_PC10,
2379 BFD_RELOC_SPARC_PC22,
2380 BFD_RELOC_SPARC_WPLT30,
2381 BFD_RELOC_SPARC_COPY,
2382 BFD_RELOC_SPARC_GLOB_DAT,
2383 BFD_RELOC_SPARC_JMP_SLOT,
2384 BFD_RELOC_SPARC_RELATIVE,
0f2712ed 2385 BFD_RELOC_SPARC_UA16,
252b5132 2386 BFD_RELOC_SPARC_UA32,
0f2712ed 2387 BFD_RELOC_SPARC_UA64,
252b5132 2388
b5f79c76 2389/* I think these are specific to SPARC a.out (e.g., Sun 4). */
252b5132
RH
2390 BFD_RELOC_SPARC_BASE13,
2391 BFD_RELOC_SPARC_BASE22,
2392
b5f79c76 2393/* SPARC64 relocations */
252b5132
RH
2394#define BFD_RELOC_SPARC_64 BFD_RELOC_64
2395 BFD_RELOC_SPARC_10,
2396 BFD_RELOC_SPARC_11,
2397 BFD_RELOC_SPARC_OLO10,
2398 BFD_RELOC_SPARC_HH22,
2399 BFD_RELOC_SPARC_HM10,
2400 BFD_RELOC_SPARC_LM22,
2401 BFD_RELOC_SPARC_PC_HH22,
2402 BFD_RELOC_SPARC_PC_HM10,
2403 BFD_RELOC_SPARC_PC_LM22,
2404 BFD_RELOC_SPARC_WDISP16,
2405 BFD_RELOC_SPARC_WDISP19,
2406 BFD_RELOC_SPARC_7,
2407 BFD_RELOC_SPARC_6,
2408 BFD_RELOC_SPARC_5,
2409#define BFD_RELOC_SPARC_DISP64 BFD_RELOC_64_PCREL
bd5e6e7e 2410 BFD_RELOC_SPARC_PLT32,
252b5132
RH
2411 BFD_RELOC_SPARC_PLT64,
2412 BFD_RELOC_SPARC_HIX22,
2413 BFD_RELOC_SPARC_LOX10,
2414 BFD_RELOC_SPARC_H44,
2415 BFD_RELOC_SPARC_M44,
2416 BFD_RELOC_SPARC_L44,
2417 BFD_RELOC_SPARC_REGISTER,
2418
b5f79c76 2419/* SPARC little endian relocation */
252b5132
RH
2420 BFD_RELOC_SPARC_REV32,
2421
b9734f35
JJ
2422/* SPARC TLS relocations */
2423 BFD_RELOC_SPARC_TLS_GD_HI22,
2424 BFD_RELOC_SPARC_TLS_GD_LO10,
2425 BFD_RELOC_SPARC_TLS_GD_ADD,
2426 BFD_RELOC_SPARC_TLS_GD_CALL,
2427 BFD_RELOC_SPARC_TLS_LDM_HI22,
2428 BFD_RELOC_SPARC_TLS_LDM_LO10,
2429 BFD_RELOC_SPARC_TLS_LDM_ADD,
2430 BFD_RELOC_SPARC_TLS_LDM_CALL,
2431 BFD_RELOC_SPARC_TLS_LDO_HIX22,
2432 BFD_RELOC_SPARC_TLS_LDO_LOX10,
2433 BFD_RELOC_SPARC_TLS_LDO_ADD,
2434 BFD_RELOC_SPARC_TLS_IE_HI22,
2435 BFD_RELOC_SPARC_TLS_IE_LO10,
2436 BFD_RELOC_SPARC_TLS_IE_LD,
2437 BFD_RELOC_SPARC_TLS_IE_LDX,
2438 BFD_RELOC_SPARC_TLS_IE_ADD,
2439 BFD_RELOC_SPARC_TLS_LE_HIX22,
2440 BFD_RELOC_SPARC_TLS_LE_LOX10,
2441 BFD_RELOC_SPARC_TLS_DTPMOD32,
2442 BFD_RELOC_SPARC_TLS_DTPMOD64,
2443 BFD_RELOC_SPARC_TLS_DTPOFF32,
2444 BFD_RELOC_SPARC_TLS_DTPOFF64,
2445 BFD_RELOC_SPARC_TLS_TPOFF32,
2446 BFD_RELOC_SPARC_TLS_TPOFF64,
2447
252b5132
RH
2448/* Alpha ECOFF and ELF relocations. Some of these treat the symbol or
2449"addend" in some special way.
2450For GPDISP_HI16 ("gpdisp") relocations, the symbol is ignored when
2451writing; when reading, it will be the absolute section symbol. The
2452addend is the displacement in bytes of the "lda" instruction from
b5f79c76 2453the "ldah" instruction (which is at the address of this reloc). */
252b5132
RH
2454 BFD_RELOC_ALPHA_GPDISP_HI16,
2455
2456/* For GPDISP_LO16 ("ignore") relocations, the symbol is handled as
2457with GPDISP_HI16 relocs. The addend is ignored when writing the
2458relocations out, and is filled in with the file's GP value on
b5f79c76 2459reading, for convenience. */
252b5132
RH
2460 BFD_RELOC_ALPHA_GPDISP_LO16,
2461
2462/* The ELF GPDISP relocation is exactly the same as the GPDISP_HI16
2463relocation except that there is no accompanying GPDISP_LO16
b5f79c76 2464relocation. */
252b5132
RH
2465 BFD_RELOC_ALPHA_GPDISP,
2466
2467/* The Alpha LITERAL/LITUSE relocs are produced by a symbol reference;
2468the assembler turns it into a LDQ instruction to load the address of
2469the symbol, and then fills in a register in the real instruction.
2470
2471The LITERAL reloc, at the LDQ instruction, refers to the .lita
2472section symbol. The addend is ignored when writing, but is filled
2473in with the file's GP value on reading, for convenience, as with the
2474GPDISP_LO16 reloc.
2475
2476The ELF_LITERAL reloc is somewhere between 16_GOTOFF and GPDISP_LO16.
2477It should refer to the symbol to be referenced, as with 16_GOTOFF,
2478but it generates output not based on the position within the .got
2479section, but relative to the GP value chosen for the file during the
2480final link stage.
2481
2482The LITUSE reloc, on the instruction using the loaded address, gives
2483information to the linker that it might be able to use to optimize
2484away some literal section references. The symbol is ignored (read
2485as the absolute section symbol), and the "addend" indicates the type
2486of instruction using the register:
24871 - "memory" fmt insn
24882 - byte-manipulation (byte offset reg)
b5f79c76 24893 - jsr (target of branch) */
252b5132
RH
2490 BFD_RELOC_ALPHA_LITERAL,
2491 BFD_RELOC_ALPHA_ELF_LITERAL,
2492 BFD_RELOC_ALPHA_LITUSE,
2493
2494/* The HINT relocation indicates a value that should be filled into the
2495"hint" field of a jmp/jsr/ret instruction, for possible branch-
b5f79c76 2496prediction logic which may be provided on some processors. */
252b5132
RH
2497 BFD_RELOC_ALPHA_HINT,
2498
2499/* The LINKAGE relocation outputs a linkage pair in the object file,
b5f79c76 2500which is filled by the linker. */
252b5132
RH
2501 BFD_RELOC_ALPHA_LINKAGE,
2502
2503/* The CODEADDR relocation outputs a STO_CA in the object file,
b5f79c76 2504which is filled by the linker. */
252b5132
RH
2505 BFD_RELOC_ALPHA_CODEADDR,
2506
dc810e39 2507/* The GPREL_HI/LO relocations together form a 32-bit offset from the
b5f79c76 2508GP register. */
dfe57ca0
RH
2509 BFD_RELOC_ALPHA_GPREL_HI16,
2510 BFD_RELOC_ALPHA_GPREL_LO16,
2511
7793f4d0 2512/* Like BFD_RELOC_23_PCREL_S2, except that the source and target must
b34976b6 2513share a common GP, and the target address is adjusted for
7793f4d0
RH
2514STO_ALPHA_STD_GPLOAD. */
2515 BFD_RELOC_ALPHA_BRSGP,
2516
3765b1be
RH
2517/* Alpha thread-local storage relocations. */
2518 BFD_RELOC_ALPHA_TLSGD,
2519 BFD_RELOC_ALPHA_TLSLDM,
2520 BFD_RELOC_ALPHA_DTPMOD64,
2521 BFD_RELOC_ALPHA_GOTDTPREL16,
2522 BFD_RELOC_ALPHA_DTPREL64,
2523 BFD_RELOC_ALPHA_DTPREL_HI16,
2524 BFD_RELOC_ALPHA_DTPREL_LO16,
2525 BFD_RELOC_ALPHA_DTPREL16,
2526 BFD_RELOC_ALPHA_GOTTPREL16,
2527 BFD_RELOC_ALPHA_TPREL64,
2528 BFD_RELOC_ALPHA_TPREL_HI16,
2529 BFD_RELOC_ALPHA_TPREL_LO16,
2530 BFD_RELOC_ALPHA_TPREL16,
2531
252b5132 2532/* Bits 27..2 of the relocation address shifted right 2 bits;
b5f79c76 2533simple reloc otherwise. */
252b5132
RH
2534 BFD_RELOC_MIPS_JMP,
2535
b5f79c76 2536/* The MIPS16 jump instruction. */
252b5132
RH
2537 BFD_RELOC_MIPS16_JMP,
2538
b5f79c76 2539/* MIPS16 GP relative reloc. */
252b5132
RH
2540 BFD_RELOC_MIPS16_GPREL,
2541
b5f79c76 2542/* High 16 bits of 32-bit value; simple reloc. */
252b5132
RH
2543 BFD_RELOC_HI16,
2544
2545/* High 16 bits of 32-bit value but the low 16 bits will be sign
2546extended and added to form the final result. If the low 16
2547bits form a negative number, we need to add one to the high value
b5f79c76 2548to compensate for the borrow when the low bits are added. */
252b5132
RH
2549 BFD_RELOC_HI16_S,
2550
b5f79c76 2551/* Low 16 bits. */
252b5132
RH
2552 BFD_RELOC_LO16,
2553
d7128ce4
AM
2554/* High 16 bits of 32-bit pc-relative value */
2555 BFD_RELOC_HI16_PCREL,
2556
2557/* High 16 bits of 32-bit pc-relative value, adjusted */
2558 BFD_RELOC_HI16_S_PCREL,
2559
2560/* Low 16 bits of pc-relative value */
2561 BFD_RELOC_LO16_PCREL,
2562
d6f16593
MR
2563/* MIPS16 high 16 bits of 32-bit value. */
2564 BFD_RELOC_MIPS16_HI16,
2565
2566/* MIPS16 high 16 bits of 32-bit value but the low 16 bits will be sign
2567extended and added to form the final result. If the low 16
2568bits form a negative number, we need to add one to the high value
2569to compensate for the borrow when the low bits are added. */
2570 BFD_RELOC_MIPS16_HI16_S,
2571
2572/* MIPS16 low 16 bits. */
2573 BFD_RELOC_MIPS16_LO16,
2574
b5f79c76 2575/* Relocation against a MIPS literal section. */
252b5132
RH
2576 BFD_RELOC_MIPS_LITERAL,
2577
b5f79c76 2578/* MIPS ELF relocations. */
252b5132
RH
2579 BFD_RELOC_MIPS_GOT16,
2580 BFD_RELOC_MIPS_CALL16,
252b5132
RH
2581 BFD_RELOC_MIPS_GOT_HI16,
2582 BFD_RELOC_MIPS_GOT_LO16,
2583 BFD_RELOC_MIPS_CALL_HI16,
2584 BFD_RELOC_MIPS_CALL_LO16,
3f830999
MM
2585 BFD_RELOC_MIPS_SUB,
2586 BFD_RELOC_MIPS_GOT_PAGE,
2587 BFD_RELOC_MIPS_GOT_OFST,
2588 BFD_RELOC_MIPS_GOT_DISP,
c2feb664
NC
2589 BFD_RELOC_MIPS_SHIFT5,
2590 BFD_RELOC_MIPS_SHIFT6,
2591 BFD_RELOC_MIPS_INSERT_A,
2592 BFD_RELOC_MIPS_INSERT_B,
2593 BFD_RELOC_MIPS_DELETE,
2594 BFD_RELOC_MIPS_HIGHEST,
2595 BFD_RELOC_MIPS_HIGHER,
2596 BFD_RELOC_MIPS_SCN_DISP,
2597 BFD_RELOC_MIPS_REL16,
2598 BFD_RELOC_MIPS_RELGOT,
2599 BFD_RELOC_MIPS_JALR,
0f20cc35
DJ
2600 BFD_RELOC_MIPS_TLS_DTPMOD32,
2601 BFD_RELOC_MIPS_TLS_DTPREL32,
2602 BFD_RELOC_MIPS_TLS_DTPMOD64,
2603 BFD_RELOC_MIPS_TLS_DTPREL64,
2604 BFD_RELOC_MIPS_TLS_GD,
2605 BFD_RELOC_MIPS_TLS_LDM,
2606 BFD_RELOC_MIPS_TLS_DTPREL_HI16,
2607 BFD_RELOC_MIPS_TLS_DTPREL_LO16,
2608 BFD_RELOC_MIPS_TLS_GOTTPREL,
2609 BFD_RELOC_MIPS_TLS_TPREL32,
2610 BFD_RELOC_MIPS_TLS_TPREL64,
2611 BFD_RELOC_MIPS_TLS_TPREL_HI16,
2612 BFD_RELOC_MIPS_TLS_TPREL_LO16,
252b5132 2613
ec317fb1 2614
0a44bf69
RS
2615/* MIPS ELF relocations (VxWorks extensions). */
2616 BFD_RELOC_MIPS_COPY,
2617 BFD_RELOC_MIPS_JUMP_SLOT,
2618
2619
bb3fff1e
AM
2620/* Fujitsu Frv Relocations. */
2621 BFD_RELOC_FRV_LABEL16,
2622 BFD_RELOC_FRV_LABEL24,
2623 BFD_RELOC_FRV_LO16,
2624 BFD_RELOC_FRV_HI16,
2625 BFD_RELOC_FRV_GPREL12,
2626 BFD_RELOC_FRV_GPRELU12,
2627 BFD_RELOC_FRV_GPREL32,
2628 BFD_RELOC_FRV_GPRELHI,
2629 BFD_RELOC_FRV_GPRELLO,
51532845
AO
2630 BFD_RELOC_FRV_GOT12,
2631 BFD_RELOC_FRV_GOTHI,
2632 BFD_RELOC_FRV_GOTLO,
2633 BFD_RELOC_FRV_FUNCDESC,
2634 BFD_RELOC_FRV_FUNCDESC_GOT12,
2635 BFD_RELOC_FRV_FUNCDESC_GOTHI,
2636 BFD_RELOC_FRV_FUNCDESC_GOTLO,
2637 BFD_RELOC_FRV_FUNCDESC_VALUE,
2638 BFD_RELOC_FRV_FUNCDESC_GOTOFF12,
2639 BFD_RELOC_FRV_FUNCDESC_GOTOFFHI,
2640 BFD_RELOC_FRV_FUNCDESC_GOTOFFLO,
2641 BFD_RELOC_FRV_GOTOFF12,
2642 BFD_RELOC_FRV_GOTOFFHI,
2643 BFD_RELOC_FRV_GOTOFFLO,
90219bd0
AO
2644 BFD_RELOC_FRV_GETTLSOFF,
2645 BFD_RELOC_FRV_TLSDESC_VALUE,
2646 BFD_RELOC_FRV_GOTTLSDESC12,
2647 BFD_RELOC_FRV_GOTTLSDESCHI,
2648 BFD_RELOC_FRV_GOTTLSDESCLO,
2649 BFD_RELOC_FRV_TLSMOFF12,
2650 BFD_RELOC_FRV_TLSMOFFHI,
2651 BFD_RELOC_FRV_TLSMOFFLO,
2652 BFD_RELOC_FRV_GOTTLSOFF12,
2653 BFD_RELOC_FRV_GOTTLSOFFHI,
2654 BFD_RELOC_FRV_GOTTLSOFFLO,
2655 BFD_RELOC_FRV_TLSOFF,
2656 BFD_RELOC_FRV_TLSDESC_RELAX,
2657 BFD_RELOC_FRV_GETTLSOFF_RELAX,
2658 BFD_RELOC_FRV_TLSOFF_RELAX,
2659 BFD_RELOC_FRV_TLSMOFF,
bb3fff1e 2660
ec317fb1 2661
03a12831
AO
2662/* This is a 24bit GOT-relative reloc for the mn10300. */
2663 BFD_RELOC_MN10300_GOTOFF24,
2664
2665/* This is a 32bit GOT-relative reloc for the mn10300, offset by two bytes
2666in the instruction. */
2667 BFD_RELOC_MN10300_GOT32,
2668
2669/* This is a 24bit GOT-relative reloc for the mn10300, offset by two bytes
2670in the instruction. */
2671 BFD_RELOC_MN10300_GOT24,
2672
2673/* This is a 16bit GOT-relative reloc for the mn10300, offset by two bytes
2674in the instruction. */
2675 BFD_RELOC_MN10300_GOT16,
2676
2677/* Copy symbol at runtime. */
2678 BFD_RELOC_MN10300_COPY,
2679
2680/* Create GOT entry. */
2681 BFD_RELOC_MN10300_GLOB_DAT,
2682
2683/* Create PLT entry. */
2684 BFD_RELOC_MN10300_JMP_SLOT,
2685
2686/* Adjust by program base. */
2687 BFD_RELOC_MN10300_RELATIVE,
2688
541389e2 2689
b5f79c76 2690/* i386/elf relocations */
252b5132
RH
2691 BFD_RELOC_386_GOT32,
2692 BFD_RELOC_386_PLT32,
2693 BFD_RELOC_386_COPY,
2694 BFD_RELOC_386_GLOB_DAT,
2695 BFD_RELOC_386_JUMP_SLOT,
2696 BFD_RELOC_386_RELATIVE,
2697 BFD_RELOC_386_GOTOFF,
2698 BFD_RELOC_386_GOTPC,
37e55690
JJ
2699 BFD_RELOC_386_TLS_TPOFF,
2700 BFD_RELOC_386_TLS_IE,
2701 BFD_RELOC_386_TLS_GOTIE,
13ae64f3
JJ
2702 BFD_RELOC_386_TLS_LE,
2703 BFD_RELOC_386_TLS_GD,
2704 BFD_RELOC_386_TLS_LDM,
2705 BFD_RELOC_386_TLS_LDO_32,
2706 BFD_RELOC_386_TLS_IE_32,
2707 BFD_RELOC_386_TLS_LE_32,
2708 BFD_RELOC_386_TLS_DTPMOD32,
2709 BFD_RELOC_386_TLS_DTPOFF32,
2710 BFD_RELOC_386_TLS_TPOFF32,
67a4f2b7
AO
2711 BFD_RELOC_386_TLS_GOTDESC,
2712 BFD_RELOC_386_TLS_DESC_CALL,
2713 BFD_RELOC_386_TLS_DESC,
252b5132 2714
b5f79c76 2715/* x86-64/elf relocations */
8d88c4ca
NC
2716 BFD_RELOC_X86_64_GOT32,
2717 BFD_RELOC_X86_64_PLT32,
2718 BFD_RELOC_X86_64_COPY,
2719 BFD_RELOC_X86_64_GLOB_DAT,
2720 BFD_RELOC_X86_64_JUMP_SLOT,
2721 BFD_RELOC_X86_64_RELATIVE,
2722 BFD_RELOC_X86_64_GOTPCREL,
2723 BFD_RELOC_X86_64_32S,
bffbf940
JJ
2724 BFD_RELOC_X86_64_DTPMOD64,
2725 BFD_RELOC_X86_64_DTPOFF64,
2726 BFD_RELOC_X86_64_TPOFF64,
2727 BFD_RELOC_X86_64_TLSGD,
2728 BFD_RELOC_X86_64_TLSLD,
2729 BFD_RELOC_X86_64_DTPOFF32,
2730 BFD_RELOC_X86_64_GOTTPOFF,
2731 BFD_RELOC_X86_64_TPOFF32,
d6ab8113
JB
2732 BFD_RELOC_X86_64_GOTOFF64,
2733 BFD_RELOC_X86_64_GOTPC32,
7b81dfbb
AJ
2734 BFD_RELOC_X86_64_GOT64,
2735 BFD_RELOC_X86_64_GOTPCREL64,
2736 BFD_RELOC_X86_64_GOTPC64,
2737 BFD_RELOC_X86_64_GOTPLT64,
2738 BFD_RELOC_X86_64_PLTOFF64,
67a4f2b7
AO
2739 BFD_RELOC_X86_64_GOTPC32_TLSDESC,
2740 BFD_RELOC_X86_64_TLSDESC_CALL,
2741 BFD_RELOC_X86_64_TLSDESC,
8d88c4ca 2742
b5f79c76 2743/* ns32k relocations */
252b5132
RH
2744 BFD_RELOC_NS32K_IMM_8,
2745 BFD_RELOC_NS32K_IMM_16,
2746 BFD_RELOC_NS32K_IMM_32,
2747 BFD_RELOC_NS32K_IMM_8_PCREL,
2748 BFD_RELOC_NS32K_IMM_16_PCREL,
2749 BFD_RELOC_NS32K_IMM_32_PCREL,
2750 BFD_RELOC_NS32K_DISP_8,
2751 BFD_RELOC_NS32K_DISP_16,
2752 BFD_RELOC_NS32K_DISP_32,
2753 BFD_RELOC_NS32K_DISP_8_PCREL,
2754 BFD_RELOC_NS32K_DISP_16_PCREL,
2755 BFD_RELOC_NS32K_DISP_32_PCREL,
2756
b5f79c76 2757/* PDP11 relocations */
e135f41b
NC
2758 BFD_RELOC_PDP11_DISP_8_PCREL,
2759 BFD_RELOC_PDP11_DISP_6_PCREL,
2760
b5f79c76 2761/* Picojava relocs. Not all of these appear in object files. */
0bcb993b
ILT
2762 BFD_RELOC_PJ_CODE_HI16,
2763 BFD_RELOC_PJ_CODE_LO16,
2764 BFD_RELOC_PJ_CODE_DIR16,
2765 BFD_RELOC_PJ_CODE_DIR32,
2766 BFD_RELOC_PJ_CODE_REL16,
2767 BFD_RELOC_PJ_CODE_REL32,
2768
b5f79c76 2769/* Power(rs6000) and PowerPC relocations. */
252b5132
RH
2770 BFD_RELOC_PPC_B26,
2771 BFD_RELOC_PPC_BA26,
2772 BFD_RELOC_PPC_TOC16,
2773 BFD_RELOC_PPC_B16,
2774 BFD_RELOC_PPC_B16_BRTAKEN,
2775 BFD_RELOC_PPC_B16_BRNTAKEN,
2776 BFD_RELOC_PPC_BA16,
2777 BFD_RELOC_PPC_BA16_BRTAKEN,
2778 BFD_RELOC_PPC_BA16_BRNTAKEN,
2779 BFD_RELOC_PPC_COPY,
2780 BFD_RELOC_PPC_GLOB_DAT,
2781 BFD_RELOC_PPC_JMP_SLOT,
2782 BFD_RELOC_PPC_RELATIVE,
2783 BFD_RELOC_PPC_LOCAL24PC,
2784 BFD_RELOC_PPC_EMB_NADDR32,
2785 BFD_RELOC_PPC_EMB_NADDR16,
2786 BFD_RELOC_PPC_EMB_NADDR16_LO,
2787 BFD_RELOC_PPC_EMB_NADDR16_HI,
2788 BFD_RELOC_PPC_EMB_NADDR16_HA,
2789 BFD_RELOC_PPC_EMB_SDAI16,
2790 BFD_RELOC_PPC_EMB_SDA2I16,
2791 BFD_RELOC_PPC_EMB_SDA2REL,
2792 BFD_RELOC_PPC_EMB_SDA21,
2793 BFD_RELOC_PPC_EMB_MRKREF,
2794 BFD_RELOC_PPC_EMB_RELSEC16,
2795 BFD_RELOC_PPC_EMB_RELST_LO,
2796 BFD_RELOC_PPC_EMB_RELST_HI,
2797 BFD_RELOC_PPC_EMB_RELST_HA,
2798 BFD_RELOC_PPC_EMB_BIT_FLD,
2799 BFD_RELOC_PPC_EMB_RELSDA,
5bd4f169
AM
2800 BFD_RELOC_PPC64_HIGHER,
2801 BFD_RELOC_PPC64_HIGHER_S,
2802 BFD_RELOC_PPC64_HIGHEST,
2803 BFD_RELOC_PPC64_HIGHEST_S,
2804 BFD_RELOC_PPC64_TOC16_LO,
2805 BFD_RELOC_PPC64_TOC16_HI,
2806 BFD_RELOC_PPC64_TOC16_HA,
2807 BFD_RELOC_PPC64_TOC,
dc810e39 2808 BFD_RELOC_PPC64_PLTGOT16,
5bd4f169
AM
2809 BFD_RELOC_PPC64_PLTGOT16_LO,
2810 BFD_RELOC_PPC64_PLTGOT16_HI,
2811 BFD_RELOC_PPC64_PLTGOT16_HA,
2812 BFD_RELOC_PPC64_ADDR16_DS,
2813 BFD_RELOC_PPC64_ADDR16_LO_DS,
2814 BFD_RELOC_PPC64_GOT16_DS,
2815 BFD_RELOC_PPC64_GOT16_LO_DS,
2816 BFD_RELOC_PPC64_PLT16_LO_DS,
2817 BFD_RELOC_PPC64_SECTOFF_DS,
2818 BFD_RELOC_PPC64_SECTOFF_LO_DS,
2819 BFD_RELOC_PPC64_TOC16_DS,
2820 BFD_RELOC_PPC64_TOC16_LO_DS,
2821 BFD_RELOC_PPC64_PLTGOT16_DS,
2822 BFD_RELOC_PPC64_PLTGOT16_LO_DS,
252b5132 2823
411e1bfb
AM
2824/* PowerPC and PowerPC64 thread-local storage relocations. */
2825 BFD_RELOC_PPC_TLS,
2826 BFD_RELOC_PPC_DTPMOD,
2827 BFD_RELOC_PPC_TPREL16,
2828 BFD_RELOC_PPC_TPREL16_LO,
2829 BFD_RELOC_PPC_TPREL16_HI,
2830 BFD_RELOC_PPC_TPREL16_HA,
2831 BFD_RELOC_PPC_TPREL,
2832 BFD_RELOC_PPC_DTPREL16,
2833 BFD_RELOC_PPC_DTPREL16_LO,
2834 BFD_RELOC_PPC_DTPREL16_HI,
2835 BFD_RELOC_PPC_DTPREL16_HA,
2836 BFD_RELOC_PPC_DTPREL,
2837 BFD_RELOC_PPC_GOT_TLSGD16,
2838 BFD_RELOC_PPC_GOT_TLSGD16_LO,
2839 BFD_RELOC_PPC_GOT_TLSGD16_HI,
2840 BFD_RELOC_PPC_GOT_TLSGD16_HA,
2841 BFD_RELOC_PPC_GOT_TLSLD16,
2842 BFD_RELOC_PPC_GOT_TLSLD16_LO,
2843 BFD_RELOC_PPC_GOT_TLSLD16_HI,
2844 BFD_RELOC_PPC_GOT_TLSLD16_HA,
2845 BFD_RELOC_PPC_GOT_TPREL16,
2846 BFD_RELOC_PPC_GOT_TPREL16_LO,
2847 BFD_RELOC_PPC_GOT_TPREL16_HI,
2848 BFD_RELOC_PPC_GOT_TPREL16_HA,
2849 BFD_RELOC_PPC_GOT_DTPREL16,
2850 BFD_RELOC_PPC_GOT_DTPREL16_LO,
2851 BFD_RELOC_PPC_GOT_DTPREL16_HI,
2852 BFD_RELOC_PPC_GOT_DTPREL16_HA,
2853 BFD_RELOC_PPC64_TPREL16_DS,
2854 BFD_RELOC_PPC64_TPREL16_LO_DS,
2855 BFD_RELOC_PPC64_TPREL16_HIGHER,
2856 BFD_RELOC_PPC64_TPREL16_HIGHERA,
2857 BFD_RELOC_PPC64_TPREL16_HIGHEST,
2858 BFD_RELOC_PPC64_TPREL16_HIGHESTA,
2859 BFD_RELOC_PPC64_DTPREL16_DS,
2860 BFD_RELOC_PPC64_DTPREL16_LO_DS,
2861 BFD_RELOC_PPC64_DTPREL16_HIGHER,
2862 BFD_RELOC_PPC64_DTPREL16_HIGHERA,
2863 BFD_RELOC_PPC64_DTPREL16_HIGHEST,
2864 BFD_RELOC_PPC64_DTPREL16_HIGHESTA,
2865
b5f79c76 2866/* IBM 370/390 relocations */
5b93d8bb
AM
2867 BFD_RELOC_I370_D12,
2868
7dee875e 2869/* The type of reloc used to build a constructor table - at the moment
252b5132 2870probably a 32 bit wide absolute relocation, but the target can choose.
b5f79c76 2871It generally does map to one of the other relocation types. */
252b5132
RH
2872 BFD_RELOC_CTOR,
2873
2874/* ARM 26 bit pc-relative branch. The lowest two bits must be zero and are
b5f79c76 2875not stored in the instruction. */
252b5132
RH
2876 BFD_RELOC_ARM_PCREL_BRANCH,
2877
dfc5f959
NC
2878/* ARM 26 bit pc-relative branch. The lowest bit must be zero and is
2879not stored in the instruction. The 2nd lowest bit comes from a 1 bit
b5f79c76 2880field in the instruction. */
dfc5f959
NC
2881 BFD_RELOC_ARM_PCREL_BLX,
2882
2883/* Thumb 22 bit pc-relative branch. The lowest bit must be zero and is
2884not stored in the instruction. The 2nd lowest bit comes from a 1 bit
b5f79c76 2885field in the instruction. */
dfc5f959
NC
2886 BFD_RELOC_THUMB_PCREL_BLX,
2887
39b41c9c
PB
2888/* ARM 26-bit pc-relative branch for an unconditional BL or BLX instruction. */
2889 BFD_RELOC_ARM_PCREL_CALL,
2890
2891/* ARM 26-bit pc-relative branch for B or conditional BL instruction. */
2892 BFD_RELOC_ARM_PCREL_JUMP,
2893
c19d1205
ZW
2894/* Thumb 7-, 9-, 12-, 20-, 23-, and 25-bit pc-relative branches.
2895The lowest bit must be zero and is not stored in the instruction.
2896Note that the corresponding ELF R_ARM_THM_JUMPnn constant has an
2897"nn" one smaller in all cases. Note further that BRANCH23
2898corresponds to R_ARM_THM_CALL. */
2899 BFD_RELOC_THUMB_PCREL_BRANCH7,
2900 BFD_RELOC_THUMB_PCREL_BRANCH9,
2901 BFD_RELOC_THUMB_PCREL_BRANCH12,
2902 BFD_RELOC_THUMB_PCREL_BRANCH20,
2903 BFD_RELOC_THUMB_PCREL_BRANCH23,
2904 BFD_RELOC_THUMB_PCREL_BRANCH25,
2905
2906/* 12-bit immediate offset, used in ARM-format ldr and str instructions. */
252b5132 2907 BFD_RELOC_ARM_OFFSET_IMM,
c19d1205
ZW
2908
2909/* 5-bit immediate offset, used in Thumb-format ldr and str instructions. */
252b5132 2910 BFD_RELOC_ARM_THUMB_OFFSET,
252b5132 2911
d003868e 2912/* Pc-relative or absolute relocation depending on target. Used for
db6579d4 2913entries in .init_array sections. */
9c504268 2914 BFD_RELOC_ARM_TARGET1,
db6579d4
PB
2915
2916/* Read-only segment base relative address. */
2917 BFD_RELOC_ARM_ROSEGREL32,
2918
2919/* Data segment base relative address. */
2920 BFD_RELOC_ARM_SBREL32,
2921
c19d1205 2922/* This reloc is used for references to RTTI data from exception handling
eb043451
PB
2923tables. The actual definition depends on the target. It may be a
2924pc-relative or some form of GOT-indirect relocation. */
2925 BFD_RELOC_ARM_TARGET2,
2926
2927/* 31-bit PC relative address. */
2928 BFD_RELOC_ARM_PREL31,
2929
b6895b4f
PB
2930/* Low and High halfword relocations for MOVW and MOVT instructions. */
2931 BFD_RELOC_ARM_MOVW,
2932 BFD_RELOC_ARM_MOVT,
2933 BFD_RELOC_ARM_MOVW_PCREL,
2934 BFD_RELOC_ARM_MOVT_PCREL,
2935 BFD_RELOC_ARM_THUMB_MOVW,
2936 BFD_RELOC_ARM_THUMB_MOVT,
2937 BFD_RELOC_ARM_THUMB_MOVW_PCREL,
2938 BFD_RELOC_ARM_THUMB_MOVT_PCREL,
2939
c19d1205
ZW
2940/* Relocations for setting up GOTs and PLTs for shared libraries. */
2941 BFD_RELOC_ARM_JUMP_SLOT,
2942 BFD_RELOC_ARM_GLOB_DAT,
2943 BFD_RELOC_ARM_GOT32,
2944 BFD_RELOC_ARM_PLT32,
2945 BFD_RELOC_ARM_RELATIVE,
2946 BFD_RELOC_ARM_GOTOFF,
2947 BFD_RELOC_ARM_GOTPC,
2948
2949/* ARM thread-local storage relocations. */
2950 BFD_RELOC_ARM_TLS_GD32,
2951 BFD_RELOC_ARM_TLS_LDO32,
2952 BFD_RELOC_ARM_TLS_LDM32,
2953 BFD_RELOC_ARM_TLS_DTPOFF32,
2954 BFD_RELOC_ARM_TLS_DTPMOD32,
2955 BFD_RELOC_ARM_TLS_TPOFF32,
2956 BFD_RELOC_ARM_TLS_IE32,
2957 BFD_RELOC_ARM_TLS_LE32,
2958
4962c51a
MS
2959/* ARM group relocations. */
2960 BFD_RELOC_ARM_ALU_PC_G0_NC,
2961 BFD_RELOC_ARM_ALU_PC_G0,
2962 BFD_RELOC_ARM_ALU_PC_G1_NC,
2963 BFD_RELOC_ARM_ALU_PC_G1,
2964 BFD_RELOC_ARM_ALU_PC_G2,
2965 BFD_RELOC_ARM_LDR_PC_G0,
2966 BFD_RELOC_ARM_LDR_PC_G1,
2967 BFD_RELOC_ARM_LDR_PC_G2,
2968 BFD_RELOC_ARM_LDRS_PC_G0,
2969 BFD_RELOC_ARM_LDRS_PC_G1,
2970 BFD_RELOC_ARM_LDRS_PC_G2,
2971 BFD_RELOC_ARM_LDC_PC_G0,
2972 BFD_RELOC_ARM_LDC_PC_G1,
2973 BFD_RELOC_ARM_LDC_PC_G2,
2974 BFD_RELOC_ARM_ALU_SB_G0_NC,
2975 BFD_RELOC_ARM_ALU_SB_G0,
2976 BFD_RELOC_ARM_ALU_SB_G1_NC,
2977 BFD_RELOC_ARM_ALU_SB_G1,
2978 BFD_RELOC_ARM_ALU_SB_G2,
2979 BFD_RELOC_ARM_LDR_SB_G0,
2980 BFD_RELOC_ARM_LDR_SB_G1,
2981 BFD_RELOC_ARM_LDR_SB_G2,
2982 BFD_RELOC_ARM_LDRS_SB_G0,
2983 BFD_RELOC_ARM_LDRS_SB_G1,
2984 BFD_RELOC_ARM_LDRS_SB_G2,
2985 BFD_RELOC_ARM_LDC_SB_G0,
2986 BFD_RELOC_ARM_LDC_SB_G1,
2987 BFD_RELOC_ARM_LDC_SB_G2,
2988
c19d1205
ZW
2989/* These relocs are only used within the ARM assembler. They are not
2990(at present) written to any object files. */
2991 BFD_RELOC_ARM_IMMEDIATE,
2992 BFD_RELOC_ARM_ADRL_IMMEDIATE,
2993 BFD_RELOC_ARM_T32_IMMEDIATE,
16805f35 2994 BFD_RELOC_ARM_T32_ADD_IMM,
92e90b6e 2995 BFD_RELOC_ARM_T32_IMM12,
e9f89963 2996 BFD_RELOC_ARM_T32_ADD_PC12,
c19d1205 2997 BFD_RELOC_ARM_SHIFT_IMM,
3eb17e6b 2998 BFD_RELOC_ARM_SMC,
c19d1205
ZW
2999 BFD_RELOC_ARM_SWI,
3000 BFD_RELOC_ARM_MULTI,
3001 BFD_RELOC_ARM_CP_OFF_IMM,
3002 BFD_RELOC_ARM_CP_OFF_IMM_S2,
8f06b2d8
PB
3003 BFD_RELOC_ARM_T32_CP_OFF_IMM,
3004 BFD_RELOC_ARM_T32_CP_OFF_IMM_S2,
c19d1205
ZW
3005 BFD_RELOC_ARM_ADR_IMM,
3006 BFD_RELOC_ARM_LDR_IMM,
3007 BFD_RELOC_ARM_LITERAL,
3008 BFD_RELOC_ARM_IN_POOL,
3009 BFD_RELOC_ARM_OFFSET_IMM8,
3010 BFD_RELOC_ARM_T32_OFFSET_U8,
3011 BFD_RELOC_ARM_T32_OFFSET_IMM,
3012 BFD_RELOC_ARM_HWLITERAL,
3013 BFD_RELOC_ARM_THUMB_ADD,
3014 BFD_RELOC_ARM_THUMB_IMM,
3015 BFD_RELOC_ARM_THUMB_SHIFT,
3016
ef230218 3017/* Renesas / SuperH SH relocs. Not all of these appear in object files. */
252b5132
RH
3018 BFD_RELOC_SH_PCDISP8BY2,
3019 BFD_RELOC_SH_PCDISP12BY2,
1d70c7fb
AO
3020 BFD_RELOC_SH_IMM3,
3021 BFD_RELOC_SH_IMM3U,
3022 BFD_RELOC_SH_DISP12,
3023 BFD_RELOC_SH_DISP12BY2,
3024 BFD_RELOC_SH_DISP12BY4,
3025 BFD_RELOC_SH_DISP12BY8,
3026 BFD_RELOC_SH_DISP20,
3027 BFD_RELOC_SH_DISP20BY8,
252b5132
RH
3028 BFD_RELOC_SH_IMM4,
3029 BFD_RELOC_SH_IMM4BY2,
3030 BFD_RELOC_SH_IMM4BY4,
3031 BFD_RELOC_SH_IMM8,
3032 BFD_RELOC_SH_IMM8BY2,
3033 BFD_RELOC_SH_IMM8BY4,
3034 BFD_RELOC_SH_PCRELIMM8BY2,
3035 BFD_RELOC_SH_PCRELIMM8BY4,
3036 BFD_RELOC_SH_SWITCH16,
3037 BFD_RELOC_SH_SWITCH32,
3038 BFD_RELOC_SH_USES,
3039 BFD_RELOC_SH_COUNT,
3040 BFD_RELOC_SH_ALIGN,
3041 BFD_RELOC_SH_CODE,
3042 BFD_RELOC_SH_DATA,
3043 BFD_RELOC_SH_LABEL,
015551fc
JR
3044 BFD_RELOC_SH_LOOP_START,
3045 BFD_RELOC_SH_LOOP_END,
1bd91689
AM
3046 BFD_RELOC_SH_COPY,
3047 BFD_RELOC_SH_GLOB_DAT,
3048 BFD_RELOC_SH_JMP_SLOT,
3049 BFD_RELOC_SH_RELATIVE,
3050 BFD_RELOC_SH_GOTPC,
54327882
AM
3051 BFD_RELOC_SH_GOT_LOW16,
3052 BFD_RELOC_SH_GOT_MEDLOW16,
3053 BFD_RELOC_SH_GOT_MEDHI16,
3054 BFD_RELOC_SH_GOT_HI16,
3055 BFD_RELOC_SH_GOTPLT_LOW16,
3056 BFD_RELOC_SH_GOTPLT_MEDLOW16,
3057 BFD_RELOC_SH_GOTPLT_MEDHI16,
3058 BFD_RELOC_SH_GOTPLT_HI16,
3059 BFD_RELOC_SH_PLT_LOW16,
3060 BFD_RELOC_SH_PLT_MEDLOW16,
3061 BFD_RELOC_SH_PLT_MEDHI16,
3062 BFD_RELOC_SH_PLT_HI16,
3063 BFD_RELOC_SH_GOTOFF_LOW16,
3064 BFD_RELOC_SH_GOTOFF_MEDLOW16,
3065 BFD_RELOC_SH_GOTOFF_MEDHI16,
3066 BFD_RELOC_SH_GOTOFF_HI16,
3067 BFD_RELOC_SH_GOTPC_LOW16,
3068 BFD_RELOC_SH_GOTPC_MEDLOW16,
3069 BFD_RELOC_SH_GOTPC_MEDHI16,
3070 BFD_RELOC_SH_GOTPC_HI16,
3071 BFD_RELOC_SH_COPY64,
3072 BFD_RELOC_SH_GLOB_DAT64,
3073 BFD_RELOC_SH_JMP_SLOT64,
3074 BFD_RELOC_SH_RELATIVE64,
3075 BFD_RELOC_SH_GOT10BY4,
3076 BFD_RELOC_SH_GOT10BY8,
3077 BFD_RELOC_SH_GOTPLT10BY4,
3078 BFD_RELOC_SH_GOTPLT10BY8,
3079 BFD_RELOC_SH_GOTPLT32,
3080 BFD_RELOC_SH_SHMEDIA_CODE,
3081 BFD_RELOC_SH_IMMU5,
3082 BFD_RELOC_SH_IMMS6,
3083 BFD_RELOC_SH_IMMS6BY32,
3084 BFD_RELOC_SH_IMMU6,
3085 BFD_RELOC_SH_IMMS10,
3086 BFD_RELOC_SH_IMMS10BY2,
3087 BFD_RELOC_SH_IMMS10BY4,
3088 BFD_RELOC_SH_IMMS10BY8,
3089 BFD_RELOC_SH_IMMS16,
3090 BFD_RELOC_SH_IMMU16,
3091 BFD_RELOC_SH_IMM_LOW16,
3092 BFD_RELOC_SH_IMM_LOW16_PCREL,
3093 BFD_RELOC_SH_IMM_MEDLOW16,
3094 BFD_RELOC_SH_IMM_MEDLOW16_PCREL,
3095 BFD_RELOC_SH_IMM_MEDHI16,
3096 BFD_RELOC_SH_IMM_MEDHI16_PCREL,
3097 BFD_RELOC_SH_IMM_HI16,
3098 BFD_RELOC_SH_IMM_HI16_PCREL,
3099 BFD_RELOC_SH_PT_16,
5dc97655
KK
3100 BFD_RELOC_SH_TLS_GD_32,
3101 BFD_RELOC_SH_TLS_LD_32,
3102 BFD_RELOC_SH_TLS_LDO_32,
3103 BFD_RELOC_SH_TLS_IE_32,
3104 BFD_RELOC_SH_TLS_LE_32,
3105 BFD_RELOC_SH_TLS_DTPMOD32,
3106 BFD_RELOC_SH_TLS_DTPOFF32,
3107 BFD_RELOC_SH_TLS_TPOFF32,
252b5132 3108
0d2bcfaf 3109/* ARC Cores relocs.
252b5132
RH
3110ARC 22 bit pc-relative branch. The lowest two bits must be zero and are
3111not stored in the instruction. The high 20 bits are installed in bits 26
b5f79c76 3112through 7 of the instruction. */
252b5132
RH
3113 BFD_RELOC_ARC_B22_PCREL,
3114
3115/* ARC 26 bit absolute branch. The lowest two bits must be zero and are not
3116stored in the instruction. The high 24 bits are installed in bits 23
b5f79c76 3117through 0. */
252b5132
RH
3118 BFD_RELOC_ARC_B26,
3119
0f64bb02
CM
3120/* ADI Blackfin 16 bit immediate absolute reloc. */
3121 BFD_RELOC_BFIN_16_IMM,
3122
3123/* ADI Blackfin 16 bit immediate absolute reloc higher 16 bits. */
3124 BFD_RELOC_BFIN_16_HIGH,
3125
3126/* ADI Blackfin 'a' part of LSETUP. */
3127 BFD_RELOC_BFIN_4_PCREL,
3128
3129/* ADI Blackfin. */
3130 BFD_RELOC_BFIN_5_PCREL,
3131
3132/* ADI Blackfin 16 bit immediate absolute reloc lower 16 bits. */
3133 BFD_RELOC_BFIN_16_LOW,
3134
3135/* ADI Blackfin. */
3136 BFD_RELOC_BFIN_10_PCREL,
3137
3138/* ADI Blackfin 'b' part of LSETUP. */
3139 BFD_RELOC_BFIN_11_PCREL,
3140
3141/* ADI Blackfin. */
3142 BFD_RELOC_BFIN_12_PCREL_JUMP,
3143
3144/* ADI Blackfin Short jump, pcrel. */
3145 BFD_RELOC_BFIN_12_PCREL_JUMP_S,
3146
3147/* ADI Blackfin Call.x not implemented. */
3148 BFD_RELOC_BFIN_24_PCREL_CALL_X,
3149
3150/* ADI Blackfin Long Jump pcrel. */
3151 BFD_RELOC_BFIN_24_PCREL_JUMP_L,
3152
48d502e1
BS
3153/* ADI Blackfin FD-PIC relocations. */
3154 BFD_RELOC_BFIN_GOT17M4,
3155 BFD_RELOC_BFIN_GOTHI,
3156 BFD_RELOC_BFIN_GOTLO,
3157 BFD_RELOC_BFIN_FUNCDESC,
3158 BFD_RELOC_BFIN_FUNCDESC_GOT17M4,
3159 BFD_RELOC_BFIN_FUNCDESC_GOTHI,
3160 BFD_RELOC_BFIN_FUNCDESC_GOTLO,
3161 BFD_RELOC_BFIN_FUNCDESC_VALUE,
3162 BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4,
3163 BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI,
3164 BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO,
3165 BFD_RELOC_BFIN_GOTOFF17M4,
3166 BFD_RELOC_BFIN_GOTOFFHI,
3167 BFD_RELOC_BFIN_GOTOFFLO,
3168
0f64bb02
CM
3169/* ADI Blackfin GOT relocation. */
3170 BFD_RELOC_BFIN_GOT,
3171
3172/* ADI Blackfin PLTPC relocation. */
3173 BFD_RELOC_BFIN_PLTPC,
3174
3175/* ADI Blackfin arithmetic relocation. */
3176 BFD_ARELOC_BFIN_PUSH,
3177
3178/* ADI Blackfin arithmetic relocation. */
3179 BFD_ARELOC_BFIN_CONST,
3180
3181/* ADI Blackfin arithmetic relocation. */
3182 BFD_ARELOC_BFIN_ADD,
3183
3184/* ADI Blackfin arithmetic relocation. */
3185 BFD_ARELOC_BFIN_SUB,
3186
3187/* ADI Blackfin arithmetic relocation. */
3188 BFD_ARELOC_BFIN_MULT,
3189
3190/* ADI Blackfin arithmetic relocation. */
3191 BFD_ARELOC_BFIN_DIV,
3192
3193/* ADI Blackfin arithmetic relocation. */
3194 BFD_ARELOC_BFIN_MOD,
3195
3196/* ADI Blackfin arithmetic relocation. */
3197 BFD_ARELOC_BFIN_LSHIFT,
3198
3199/* ADI Blackfin arithmetic relocation. */
3200 BFD_ARELOC_BFIN_RSHIFT,
3201
3202/* ADI Blackfin arithmetic relocation. */
3203 BFD_ARELOC_BFIN_AND,
3204
3205/* ADI Blackfin arithmetic relocation. */
3206 BFD_ARELOC_BFIN_OR,
3207
3208/* ADI Blackfin arithmetic relocation. */
3209 BFD_ARELOC_BFIN_XOR,
3210
3211/* ADI Blackfin arithmetic relocation. */
3212 BFD_ARELOC_BFIN_LAND,
3213
3214/* ADI Blackfin arithmetic relocation. */
3215 BFD_ARELOC_BFIN_LOR,
3216
3217/* ADI Blackfin arithmetic relocation. */
3218 BFD_ARELOC_BFIN_LEN,
3219
3220/* ADI Blackfin arithmetic relocation. */
3221 BFD_ARELOC_BFIN_NEG,
3222
3223/* ADI Blackfin arithmetic relocation. */
3224 BFD_ARELOC_BFIN_COMP,
3225
3226/* ADI Blackfin arithmetic relocation. */
3227 BFD_ARELOC_BFIN_PAGE,
3228
3229/* ADI Blackfin arithmetic relocation. */
3230 BFD_ARELOC_BFIN_HWPAGE,
3231
3232/* ADI Blackfin arithmetic relocation. */
3233 BFD_ARELOC_BFIN_ADDR,
3234
252b5132
RH
3235/* Mitsubishi D10V relocs.
3236This is a 10-bit reloc with the right 2 bits
b5f79c76 3237assumed to be 0. */
252b5132
RH
3238 BFD_RELOC_D10V_10_PCREL_R,
3239
3240/* Mitsubishi D10V relocs.
3241This is a 10-bit reloc with the right 2 bits
3242assumed to be 0. This is the same as the previous reloc
3243except it is in the left container, i.e.,
b5f79c76 3244shifted left 15 bits. */
252b5132
RH
3245 BFD_RELOC_D10V_10_PCREL_L,
3246
3247/* This is an 18-bit reloc with the right 2 bits
b5f79c76 3248assumed to be 0. */
252b5132
RH
3249 BFD_RELOC_D10V_18,
3250
3251/* This is an 18-bit reloc with the right 2 bits
b5f79c76 3252assumed to be 0. */
252b5132
RH
3253 BFD_RELOC_D10V_18_PCREL,
3254
3255/* Mitsubishi D30V relocs.
b5f79c76 3256This is a 6-bit absolute reloc. */
252b5132
RH
3257 BFD_RELOC_D30V_6,
3258
adde6300 3259/* This is a 6-bit pc-relative reloc with
b5f79c76 3260the right 3 bits assumed to be 0. */
252b5132
RH
3261 BFD_RELOC_D30V_9_PCREL,
3262
adde6300 3263/* This is a 6-bit pc-relative reloc with
252b5132
RH
3264the right 3 bits assumed to be 0. Same
3265as the previous reloc but on the right side
b5f79c76 3266of the container. */
252b5132
RH
3267 BFD_RELOC_D30V_9_PCREL_R,
3268
adde6300 3269/* This is a 12-bit absolute reloc with the
b5f79c76 3270right 3 bitsassumed to be 0. */
252b5132
RH
3271 BFD_RELOC_D30V_15,
3272
adde6300 3273/* This is a 12-bit pc-relative reloc with
b5f79c76 3274the right 3 bits assumed to be 0. */
252b5132
RH
3275 BFD_RELOC_D30V_15_PCREL,
3276
adde6300 3277/* This is a 12-bit pc-relative reloc with
252b5132
RH
3278the right 3 bits assumed to be 0. Same
3279as the previous reloc but on the right side
b5f79c76 3280of the container. */
252b5132
RH
3281 BFD_RELOC_D30V_15_PCREL_R,
3282
adde6300 3283/* This is an 18-bit absolute reloc with
b5f79c76 3284the right 3 bits assumed to be 0. */
252b5132
RH
3285 BFD_RELOC_D30V_21,
3286
adde6300 3287/* This is an 18-bit pc-relative reloc with
b5f79c76 3288the right 3 bits assumed to be 0. */
252b5132
RH
3289 BFD_RELOC_D30V_21_PCREL,
3290
adde6300 3291/* This is an 18-bit pc-relative reloc with
252b5132
RH
3292the right 3 bits assumed to be 0. Same
3293as the previous reloc but on the right side
b5f79c76 3294of the container. */
252b5132
RH
3295 BFD_RELOC_D30V_21_PCREL_R,
3296
b5f79c76 3297/* This is a 32-bit absolute reloc. */
252b5132
RH
3298 BFD_RELOC_D30V_32,
3299
b5f79c76 3300/* This is a 32-bit pc-relative reloc. */
252b5132
RH
3301 BFD_RELOC_D30V_32_PCREL,
3302
d172d4ba
NC
3303/* DLX relocs */
3304 BFD_RELOC_DLX_HI16_S,
3305
3306/* DLX relocs */
3307 BFD_RELOC_DLX_LO16,
3308
3309/* DLX relocs */
3310 BFD_RELOC_DLX_JMP26,
3311
e729279b 3312/* Renesas M16C/M32C Relocations. */
fd54057a 3313 BFD_RELOC_M32C_HI8,
6772dd07
DD
3314 BFD_RELOC_M32C_RL_JUMP,
3315 BFD_RELOC_M32C_RL_1ADDR,
3316 BFD_RELOC_M32C_RL_2ADDR,
e729279b 3317
26597c86 3318/* Renesas M32R (formerly Mitsubishi M32R) relocs.
b5f79c76 3319This is a 24 bit absolute address. */
252b5132
RH
3320 BFD_RELOC_M32R_24,
3321
b5f79c76 3322/* This is a 10-bit pc-relative reloc with the right 2 bits assumed to be 0. */
252b5132
RH
3323 BFD_RELOC_M32R_10_PCREL,
3324
b5f79c76 3325/* This is an 18-bit reloc with the right 2 bits assumed to be 0. */
252b5132
RH
3326 BFD_RELOC_M32R_18_PCREL,
3327
b5f79c76 3328/* This is a 26-bit reloc with the right 2 bits assumed to be 0. */
252b5132
RH
3329 BFD_RELOC_M32R_26_PCREL,
3330
3331/* This is a 16-bit reloc containing the high 16 bits of an address
b5f79c76 3332used when the lower 16 bits are treated as unsigned. */
252b5132
RH
3333 BFD_RELOC_M32R_HI16_ULO,
3334
3335/* This is a 16-bit reloc containing the high 16 bits of an address
b5f79c76 3336used when the lower 16 bits are treated as signed. */
252b5132
RH
3337 BFD_RELOC_M32R_HI16_SLO,
3338
b5f79c76 3339/* This is a 16-bit reloc containing the lower 16 bits of an address. */
252b5132
RH
3340 BFD_RELOC_M32R_LO16,
3341
3342/* This is a 16-bit reloc containing the small data area offset for use in
b5f79c76 3343add3, load, and store instructions. */
252b5132
RH
3344 BFD_RELOC_M32R_SDA16,
3345
6edf0760
NC
3346/* For PIC. */
3347 BFD_RELOC_M32R_GOT24,
3348 BFD_RELOC_M32R_26_PLTREL,
3349 BFD_RELOC_M32R_COPY,
3350 BFD_RELOC_M32R_GLOB_DAT,
3351 BFD_RELOC_M32R_JMP_SLOT,
3352 BFD_RELOC_M32R_RELATIVE,
3353 BFD_RELOC_M32R_GOTOFF,
097f809a
NC
3354 BFD_RELOC_M32R_GOTOFF_HI_ULO,
3355 BFD_RELOC_M32R_GOTOFF_HI_SLO,
3356 BFD_RELOC_M32R_GOTOFF_LO,
6edf0760
NC
3357 BFD_RELOC_M32R_GOTPC24,
3358 BFD_RELOC_M32R_GOT16_HI_ULO,
3359 BFD_RELOC_M32R_GOT16_HI_SLO,
3360 BFD_RELOC_M32R_GOT16_LO,
3361 BFD_RELOC_M32R_GOTPC_HI_ULO,
3362 BFD_RELOC_M32R_GOTPC_HI_SLO,
3363 BFD_RELOC_M32R_GOTPC_LO,
3364
b5f79c76 3365/* This is a 9-bit reloc */
252b5132
RH
3366 BFD_RELOC_V850_9_PCREL,
3367
b5f79c76 3368/* This is a 22-bit reloc */
252b5132
RH
3369 BFD_RELOC_V850_22_PCREL,
3370
b5f79c76 3371/* This is a 16 bit offset from the short data area pointer. */
252b5132
RH
3372 BFD_RELOC_V850_SDA_16_16_OFFSET,
3373
3374/* This is a 16 bit offset (of which only 15 bits are used) from the
b5f79c76 3375short data area pointer. */
252b5132
RH
3376 BFD_RELOC_V850_SDA_15_16_OFFSET,
3377
b5f79c76 3378/* This is a 16 bit offset from the zero data area pointer. */
252b5132
RH
3379 BFD_RELOC_V850_ZDA_16_16_OFFSET,
3380
3381/* This is a 16 bit offset (of which only 15 bits are used) from the
b5f79c76 3382zero data area pointer. */
252b5132
RH
3383 BFD_RELOC_V850_ZDA_15_16_OFFSET,
3384
3385/* This is an 8 bit offset (of which only 6 bits are used) from the
b5f79c76 3386tiny data area pointer. */
252b5132
RH
3387 BFD_RELOC_V850_TDA_6_8_OFFSET,
3388
3389/* This is an 8bit offset (of which only 7 bits are used) from the tiny
b5f79c76 3390data area pointer. */
252b5132
RH
3391 BFD_RELOC_V850_TDA_7_8_OFFSET,
3392
b5f79c76 3393/* This is a 7 bit offset from the tiny data area pointer. */
252b5132
RH
3394 BFD_RELOC_V850_TDA_7_7_OFFSET,
3395
b5f79c76 3396/* This is a 16 bit offset from the tiny data area pointer. */
252b5132
RH
3397 BFD_RELOC_V850_TDA_16_16_OFFSET,
3398
3399/* This is a 5 bit offset (of which only 4 bits are used) from the tiny
b5f79c76 3400data area pointer. */
252b5132
RH
3401 BFD_RELOC_V850_TDA_4_5_OFFSET,
3402
b5f79c76 3403/* This is a 4 bit offset from the tiny data area pointer. */
252b5132
RH
3404 BFD_RELOC_V850_TDA_4_4_OFFSET,
3405
3406/* This is a 16 bit offset from the short data area pointer, with the
7dee875e 3407bits placed non-contiguously in the instruction. */
252b5132
RH
3408 BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET,
3409
3410/* This is a 16 bit offset from the zero data area pointer, with the
7dee875e 3411bits placed non-contiguously in the instruction. */
252b5132
RH
3412 BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET,
3413
b5f79c76 3414/* This is a 6 bit offset from the call table base pointer. */
252b5132
RH
3415 BFD_RELOC_V850_CALLT_6_7_OFFSET,
3416
b5f79c76 3417/* This is a 16 bit offset from the call table base pointer. */
252b5132
RH
3418 BFD_RELOC_V850_CALLT_16_16_OFFSET,
3419
86aba9db
NC
3420/* Used for relaxing indirect function calls. */
3421 BFD_RELOC_V850_LONGCALL,
3422
3423/* Used for relaxing indirect jumps. */
3424 BFD_RELOC_V850_LONGJUMP,
3425
3426/* Used to maintain alignment whilst relaxing. */
3427 BFD_RELOC_V850_ALIGN,
541389e2 3428
1e50d24d
RS
3429/* This is a variation of BFD_RELOC_LO16 that can be used in v850e ld.bu
3430instructions. */
3431 BFD_RELOC_V850_LO16_SPLIT_OFFSET,
3432
252b5132 3433/* This is a 32bit pcrel reloc for the mn10300, offset by two bytes in the
b5f79c76 3434instruction. */
252b5132
RH
3435 BFD_RELOC_MN10300_32_PCREL,
3436
3437/* This is a 16bit pcrel reloc for the mn10300, offset by two bytes in the
b5f79c76 3438instruction. */
252b5132
RH
3439 BFD_RELOC_MN10300_16_PCREL,
3440
3441/* This is a 8bit DP reloc for the tms320c30, where the most
3442significant 8 bits of a 24 bit word are placed into the least
b5f79c76 3443significant 8 bits of the opcode. */
252b5132
RH
3444 BFD_RELOC_TIC30_LDP,
3445
81635ce4
TW
3446/* This is a 7bit reloc for the tms320c54x, where the least
3447significant 7 bits of a 16 bit word are placed into the least
b5f79c76 3448significant 7 bits of the opcode. */
81635ce4
TW
3449 BFD_RELOC_TIC54X_PARTLS7,
3450
3451/* This is a 9bit DP reloc for the tms320c54x, where the most
3452significant 9 bits of a 16 bit word are placed into the least
b5f79c76 3453significant 9 bits of the opcode. */
81635ce4
TW
3454 BFD_RELOC_TIC54X_PARTMS9,
3455
b5f79c76 3456/* This is an extended address 23-bit reloc for the tms320c54x. */
81635ce4
TW
3457 BFD_RELOC_TIC54X_23,
3458
0d2bcfaf
NC
3459/* This is a 16-bit reloc for the tms320c54x, where the least
3460significant 16 bits of a 23-bit extended address are placed into
b5f79c76 3461the opcode. */
81635ce4
TW
3462 BFD_RELOC_TIC54X_16_OF_23,
3463
3464/* This is a reloc for the tms320c54x, where the most
0d2bcfaf 3465significant 7 bits of a 23-bit extended address are placed into
b5f79c76 3466the opcode. */
81635ce4
TW
3467 BFD_RELOC_TIC54X_MS7_OF_23,
3468
b5f79c76 3469/* This is a 48 bit reloc for the FR30 that stores 32 bits. */
252b5132
RH
3470 BFD_RELOC_FR30_48,
3471
3472/* This is a 32 bit reloc for the FR30 that stores 20 bits split up into
b5f79c76 3473two sections. */
252b5132
RH
3474 BFD_RELOC_FR30_20,
3475
3476/* This is a 16 bit reloc for the FR30 that stores a 6 bit word offset in
b5f79c76 34774 bits. */
252b5132
RH
3478 BFD_RELOC_FR30_6_IN_4,
3479
3480/* This is a 16 bit reloc for the FR30 that stores an 8 bit byte offset
b5f79c76 3481into 8 bits. */
252b5132
RH
3482 BFD_RELOC_FR30_8_IN_8,
3483
3484/* This is a 16 bit reloc for the FR30 that stores a 9 bit short offset
b5f79c76 3485into 8 bits. */
252b5132
RH
3486 BFD_RELOC_FR30_9_IN_8,
3487
3488/* This is a 16 bit reloc for the FR30 that stores a 10 bit word offset
b5f79c76 3489into 8 bits. */
252b5132
RH
3490 BFD_RELOC_FR30_10_IN_8,
3491
3492/* This is a 16 bit reloc for the FR30 that stores a 9 bit pc relative
b5f79c76 3493short offset into 8 bits. */
252b5132
RH
3494 BFD_RELOC_FR30_9_PCREL,
3495
3496/* This is a 16 bit reloc for the FR30 that stores a 12 bit pc relative
b5f79c76 3497short offset into 11 bits. */
252b5132
RH
3498 BFD_RELOC_FR30_12_PCREL,
3499
b5f79c76 3500/* Motorola Mcore relocations. */
252b5132
RH
3501 BFD_RELOC_MCORE_PCREL_IMM8BY4,
3502 BFD_RELOC_MCORE_PCREL_IMM11BY2,
3503 BFD_RELOC_MCORE_PCREL_IMM4BY2,
3504 BFD_RELOC_MCORE_PCREL_32,
3505 BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2,
36797d47 3506 BFD_RELOC_MCORE_RVA,
252b5132 3507
b5f79c76 3508/* These are relocations for the GETA instruction. */
3c3bdf30
NC
3509 BFD_RELOC_MMIX_GETA,
3510 BFD_RELOC_MMIX_GETA_1,
3511 BFD_RELOC_MMIX_GETA_2,
3512 BFD_RELOC_MMIX_GETA_3,
3513
b5f79c76 3514/* These are relocations for a conditional branch instruction. */
3c3bdf30
NC
3515 BFD_RELOC_MMIX_CBRANCH,
3516 BFD_RELOC_MMIX_CBRANCH_J,
3517 BFD_RELOC_MMIX_CBRANCH_1,
3518 BFD_RELOC_MMIX_CBRANCH_2,
3519 BFD_RELOC_MMIX_CBRANCH_3,
3520
b5f79c76 3521/* These are relocations for the PUSHJ instruction. */
3c3bdf30
NC
3522 BFD_RELOC_MMIX_PUSHJ,
3523 BFD_RELOC_MMIX_PUSHJ_1,
3524 BFD_RELOC_MMIX_PUSHJ_2,
3525 BFD_RELOC_MMIX_PUSHJ_3,
f60ebe14 3526 BFD_RELOC_MMIX_PUSHJ_STUBBABLE,
3c3bdf30 3527
b5f79c76 3528/* These are relocations for the JMP instruction. */
3c3bdf30
NC
3529 BFD_RELOC_MMIX_JMP,
3530 BFD_RELOC_MMIX_JMP_1,
3531 BFD_RELOC_MMIX_JMP_2,
3532 BFD_RELOC_MMIX_JMP_3,
3533
3534/* This is a relocation for a relative address as in a GETA instruction or
b5f79c76 3535a branch. */
3c3bdf30
NC
3536 BFD_RELOC_MMIX_ADDR19,
3537
b5f79c76 3538/* This is a relocation for a relative address as in a JMP instruction. */
3c3bdf30
NC
3539 BFD_RELOC_MMIX_ADDR27,
3540
3541/* This is a relocation for an instruction field that may be a general
b5f79c76 3542register or a value 0..255. */
3c3bdf30
NC
3543 BFD_RELOC_MMIX_REG_OR_BYTE,
3544
3545/* This is a relocation for an instruction field that may be a general
b5f79c76 3546register. */
3c3bdf30
NC
3547 BFD_RELOC_MMIX_REG,
3548
3549/* This is a relocation for two instruction fields holding a register and
b5f79c76 3550an offset, the equivalent of the relocation. */
3c3bdf30
NC
3551 BFD_RELOC_MMIX_BASE_PLUS_OFFSET,
3552
3553/* This relocation is an assertion that the expression is not allocated as
b5f79c76 3554a global register. It does not modify contents. */
3c3bdf30
NC
3555 BFD_RELOC_MMIX_LOCAL,
3556
adde6300 3557/* This is a 16 bit reloc for the AVR that stores 8 bit pc relative
b5f79c76 3558short offset into 7 bits. */
adde6300
AM
3559 BFD_RELOC_AVR_7_PCREL,
3560
3561/* This is a 16 bit reloc for the AVR that stores 13 bit pc relative
b5f79c76 3562short offset into 12 bits. */
adde6300
AM
3563 BFD_RELOC_AVR_13_PCREL,
3564
3565/* This is a 16 bit reloc for the AVR that stores 17 bit value (usually
b5f79c76 3566program memory address) into 16 bits. */
adde6300
AM
3567 BFD_RELOC_AVR_16_PM,
3568
3569/* This is a 16 bit reloc for the AVR that stores 8 bit value (usually
b5f79c76 3570data memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3571 BFD_RELOC_AVR_LO8_LDI,
3572
3573/* This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
b5f79c76 3574of data memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3575 BFD_RELOC_AVR_HI8_LDI,
3576
3577/* This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
b5f79c76 3578of program memory address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3579 BFD_RELOC_AVR_HH8_LDI,
3580
df406460
NC
3581/* This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
3582of 32 bit value) into 8 bit immediate value of LDI insn. */
3583 BFD_RELOC_AVR_MS8_LDI,
3584
adde6300 3585/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
b5f79c76 3586(usually data memory address) into 8 bit immediate value of SUBI insn. */
adde6300
AM
3587 BFD_RELOC_AVR_LO8_LDI_NEG,
3588
3589/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
3590(high 8 bit of data memory address) into 8 bit immediate value of
b5f79c76 3591SUBI insn. */
adde6300
AM
3592 BFD_RELOC_AVR_HI8_LDI_NEG,
3593
3594/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
3595(most high 8 bit of program memory address) into 8 bit immediate value
b5f79c76 3596of LDI or SUBI insn. */
adde6300
AM
3597 BFD_RELOC_AVR_HH8_LDI_NEG,
3598
df406460
NC
3599/* This is a 16 bit reloc for the AVR that stores negated 8 bit value (msb
3600of 32 bit value) into 8 bit immediate value of LDI insn. */
3601 BFD_RELOC_AVR_MS8_LDI_NEG,
3602
adde6300 3603/* This is a 16 bit reloc for the AVR that stores 8 bit value (usually
b5f79c76 3604command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3605 BFD_RELOC_AVR_LO8_LDI_PM,
3606
28c9d252
NC
3607/* This is a 16 bit reloc for the AVR that stores 8 bit value
3608(command address) into 8 bit immediate value of LDI insn. If the address
3609is beyond the 128k boundary, the linker inserts a jump stub for this reloc
3610in the lower 128k. */
3611 BFD_RELOC_AVR_LO8_LDI_GS,
3612
adde6300 3613/* This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
b5f79c76 3614of command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3615 BFD_RELOC_AVR_HI8_LDI_PM,
3616
28c9d252
NC
3617/* This is a 16 bit reloc for the AVR that stores 8 bit value (high 8 bit
3618of command address) into 8 bit immediate value of LDI insn. If the address
3619is beyond the 128k boundary, the linker inserts a jump stub for this reloc
3620below 128k. */
3621 BFD_RELOC_AVR_HI8_LDI_GS,
3622
adde6300 3623/* This is a 16 bit reloc for the AVR that stores 8 bit value (most high 8 bit
b5f79c76 3624of command address) into 8 bit immediate value of LDI insn. */
adde6300
AM
3625 BFD_RELOC_AVR_HH8_LDI_PM,
3626
3627/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
b5f79c76 3628(usually command address) into 8 bit immediate value of SUBI insn. */
adde6300
AM
3629 BFD_RELOC_AVR_LO8_LDI_PM_NEG,
3630
3631/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
3632(high 8 bit of 16 bit command address) into 8 bit immediate value
b5f79c76 3633of SUBI insn. */
adde6300
AM
3634 BFD_RELOC_AVR_HI8_LDI_PM_NEG,
3635
3636/* This is a 16 bit reloc for the AVR that stores negated 8 bit value
3637(high 6 bit of 22 bit command address) into 8 bit immediate
b5f79c76 3638value of SUBI insn. */
adde6300
AM
3639 BFD_RELOC_AVR_HH8_LDI_PM_NEG,
3640
3641/* This is a 32 bit reloc for the AVR that stores 23 bit value
b5f79c76 3642into 22 bits. */
adde6300
AM
3643 BFD_RELOC_AVR_CALL,
3644
750bce0e
NC
3645/* This is a 16 bit reloc for the AVR that stores all needed bits
3646for absolute addressing with ldi with overflow check to linktime */
3647 BFD_RELOC_AVR_LDI,
3648
3649/* This is a 6 bit reloc for the AVR that stores offset for ldd/std
3650instructions */
3651 BFD_RELOC_AVR_6,
3652
3653/* This is a 6 bit reloc for the AVR that stores offset for adiw/sbiw
3654instructions */
3655 BFD_RELOC_AVR_6_ADIW,
3656
b5f79c76 3657/* Direct 12 bit. */
a85d7ed0
NC
3658 BFD_RELOC_390_12,
3659
b5f79c76 3660/* 12 bit GOT offset. */
a85d7ed0
NC
3661 BFD_RELOC_390_GOT12,
3662
b5f79c76 3663/* 32 bit PC relative PLT address. */
a85d7ed0
NC
3664 BFD_RELOC_390_PLT32,
3665
b5f79c76 3666/* Copy symbol at runtime. */
a85d7ed0
NC
3667 BFD_RELOC_390_COPY,
3668
b5f79c76 3669/* Create GOT entry. */
a85d7ed0
NC
3670 BFD_RELOC_390_GLOB_DAT,
3671
b5f79c76 3672/* Create PLT entry. */
a85d7ed0
NC
3673 BFD_RELOC_390_JMP_SLOT,
3674
b5f79c76 3675/* Adjust by program base. */
a85d7ed0
NC
3676 BFD_RELOC_390_RELATIVE,
3677
b5f79c76 3678/* 32 bit PC relative offset to GOT. */
a85d7ed0
NC
3679 BFD_RELOC_390_GOTPC,
3680
b5f79c76 3681/* 16 bit GOT offset. */
a85d7ed0
NC
3682 BFD_RELOC_390_GOT16,
3683
b5f79c76 3684/* PC relative 16 bit shifted by 1. */
a85d7ed0
NC
3685 BFD_RELOC_390_PC16DBL,
3686
b5f79c76 3687/* 16 bit PC rel. PLT shifted by 1. */
a85d7ed0
NC
3688 BFD_RELOC_390_PLT16DBL,
3689
b5f79c76 3690/* PC relative 32 bit shifted by 1. */
a85d7ed0
NC
3691 BFD_RELOC_390_PC32DBL,
3692
b5f79c76 3693/* 32 bit PC rel. PLT shifted by 1. */
a85d7ed0
NC
3694 BFD_RELOC_390_PLT32DBL,
3695
b5f79c76 3696/* 32 bit PC rel. GOT shifted by 1. */
a85d7ed0
NC
3697 BFD_RELOC_390_GOTPCDBL,
3698
b5f79c76 3699/* 64 bit GOT offset. */
a85d7ed0
NC
3700 BFD_RELOC_390_GOT64,
3701
b5f79c76 3702/* 64 bit PC relative PLT address. */
a85d7ed0
NC
3703 BFD_RELOC_390_PLT64,
3704
b5f79c76 3705/* 32 bit rel. offset to GOT entry. */
a85d7ed0
NC
3706 BFD_RELOC_390_GOTENT,
3707
5236c819
MS
3708/* 64 bit offset to GOT. */
3709 BFD_RELOC_390_GOTOFF64,
3710
3711/* 12-bit offset to symbol-entry within GOT, with PLT handling. */
3712 BFD_RELOC_390_GOTPLT12,
3713
3714/* 16-bit offset to symbol-entry within GOT, with PLT handling. */
3715 BFD_RELOC_390_GOTPLT16,
3716
3717/* 32-bit offset to symbol-entry within GOT, with PLT handling. */
3718 BFD_RELOC_390_GOTPLT32,
3719
3720/* 64-bit offset to symbol-entry within GOT, with PLT handling. */
3721 BFD_RELOC_390_GOTPLT64,
3722
3723/* 32-bit rel. offset to symbol-entry within GOT, with PLT handling. */
3724 BFD_RELOC_390_GOTPLTENT,
3725
3726/* 16-bit rel. offset from the GOT to a PLT entry. */
3727 BFD_RELOC_390_PLTOFF16,
3728
3729/* 32-bit rel. offset from the GOT to a PLT entry. */
3730 BFD_RELOC_390_PLTOFF32,
3731
3732/* 64-bit rel. offset from the GOT to a PLT entry. */
3733 BFD_RELOC_390_PLTOFF64,
3734
69fc87f1
MS
3735/* s390 tls relocations. */
3736 BFD_RELOC_390_TLS_LOAD,
3737 BFD_RELOC_390_TLS_GDCALL,
3738 BFD_RELOC_390_TLS_LDCALL,
3739 BFD_RELOC_390_TLS_GD32,
3740 BFD_RELOC_390_TLS_GD64,
3741 BFD_RELOC_390_TLS_GOTIE12,
3742 BFD_RELOC_390_TLS_GOTIE32,
3743 BFD_RELOC_390_TLS_GOTIE64,
3744 BFD_RELOC_390_TLS_LDM32,
3745 BFD_RELOC_390_TLS_LDM64,
3746 BFD_RELOC_390_TLS_IE32,
3747 BFD_RELOC_390_TLS_IE64,
3748 BFD_RELOC_390_TLS_IEENT,
3749 BFD_RELOC_390_TLS_LE32,
3750 BFD_RELOC_390_TLS_LE64,
3751 BFD_RELOC_390_TLS_LDO32,
3752 BFD_RELOC_390_TLS_LDO64,
3753 BFD_RELOC_390_TLS_DTPMOD,
3754 BFD_RELOC_390_TLS_DTPOFF,
3755 BFD_RELOC_390_TLS_TPOFF,
3756
bd1ea41b
MS
3757/* Long displacement extension. */
3758 BFD_RELOC_390_20,
3759 BFD_RELOC_390_GOT20,
3760 BFD_RELOC_390_GOTPLT20,
3761 BFD_RELOC_390_TLS_GOTIE20,
3762
cf88bb9f
NC
3763/* Scenix IP2K - 9-bit register number / data address */
3764 BFD_RELOC_IP2K_FR9,
3765
3766/* Scenix IP2K - 4-bit register/data bank number */
3767 BFD_RELOC_IP2K_BANK,
3768
3769/* Scenix IP2K - low 13 bits of instruction word address */
3770 BFD_RELOC_IP2K_ADDR16CJP,
3771
3772/* Scenix IP2K - high 3 bits of instruction word address */
3773 BFD_RELOC_IP2K_PAGE3,
3774
3775/* Scenix IP2K - ext/low/high 8 bits of data address */
3776 BFD_RELOC_IP2K_LO8DATA,
3777 BFD_RELOC_IP2K_HI8DATA,
3778 BFD_RELOC_IP2K_EX8DATA,
3779
3780/* Scenix IP2K - low/high 8 bits of instruction word address */
3781 BFD_RELOC_IP2K_LO8INSN,
3782 BFD_RELOC_IP2K_HI8INSN,
3783
3784/* Scenix IP2K - even/odd PC modifier to modify snb pcl.0 */
3785 BFD_RELOC_IP2K_PC_SKIP,
3786
3787/* Scenix IP2K - 16 bit word address in text section. */
3788 BFD_RELOC_IP2K_TEXT,
3789
3790/* Scenix IP2K - 7-bit sp or dp offset */
3791 BFD_RELOC_IP2K_FR_OFFSET,
3792
3793/* Scenix VPE4K coprocessor - data/insn-space addressing */
3794 BFD_RELOC_VPE4KMATH_DATA,
3795 BFD_RELOC_VPE4KMATH_INSN,
3796
adde6300 3797/* These two relocations are used by the linker to determine which of
252b5132
RH
3798the entries in a C++ virtual function table are actually used. When
3799the --gc-sections option is given, the linker will zero out the entries
3800that are not used, so that the code for those functions need not be
3801included in the output.
3802
3803VTABLE_INHERIT is a zero-space relocation used to describe to the
7dee875e 3804linker the inheritance tree of a C++ virtual function table. The
252b5132
RH
3805relocation's symbol should be the parent class' vtable, and the
3806relocation should be located at the child vtable.
3807
3808VTABLE_ENTRY is a zero-space relocation that describes the use of a
3809virtual function table entry. The reloc's symbol should refer to the
3810table of the class mentioned in the code. Off of that base, an offset
adde6300 3811describes the entry that is being used. For Rela hosts, this offset
252b5132 3812is stored in the reloc's addend. For Rel hosts, we are forced to put
b5f79c76 3813this offset in the reloc's section offset. */
252b5132
RH
3814 BFD_RELOC_VTABLE_INHERIT,
3815 BFD_RELOC_VTABLE_ENTRY,
800eeca4 3816
b5f79c76 3817/* Intel IA64 Relocations. */
800eeca4
JW
3818 BFD_RELOC_IA64_IMM14,
3819 BFD_RELOC_IA64_IMM22,
3820 BFD_RELOC_IA64_IMM64,
3821 BFD_RELOC_IA64_DIR32MSB,
3822 BFD_RELOC_IA64_DIR32LSB,
3823 BFD_RELOC_IA64_DIR64MSB,
3824 BFD_RELOC_IA64_DIR64LSB,
3825 BFD_RELOC_IA64_GPREL22,
3826 BFD_RELOC_IA64_GPREL64I,
3827 BFD_RELOC_IA64_GPREL32MSB,
3828 BFD_RELOC_IA64_GPREL32LSB,
3829 BFD_RELOC_IA64_GPREL64MSB,
3830 BFD_RELOC_IA64_GPREL64LSB,
3831 BFD_RELOC_IA64_LTOFF22,
3832 BFD_RELOC_IA64_LTOFF64I,
3833 BFD_RELOC_IA64_PLTOFF22,
3834 BFD_RELOC_IA64_PLTOFF64I,
3835 BFD_RELOC_IA64_PLTOFF64MSB,
3836 BFD_RELOC_IA64_PLTOFF64LSB,
3837 BFD_RELOC_IA64_FPTR64I,
3838 BFD_RELOC_IA64_FPTR32MSB,
3839 BFD_RELOC_IA64_FPTR32LSB,
3840 BFD_RELOC_IA64_FPTR64MSB,
3841 BFD_RELOC_IA64_FPTR64LSB,
3842 BFD_RELOC_IA64_PCREL21B,
748abff6 3843 BFD_RELOC_IA64_PCREL21BI,
800eeca4
JW
3844 BFD_RELOC_IA64_PCREL21M,
3845 BFD_RELOC_IA64_PCREL21F,
748abff6
RH
3846 BFD_RELOC_IA64_PCREL22,
3847 BFD_RELOC_IA64_PCREL60B,
3848 BFD_RELOC_IA64_PCREL64I,
800eeca4
JW
3849 BFD_RELOC_IA64_PCREL32MSB,
3850 BFD_RELOC_IA64_PCREL32LSB,
3851 BFD_RELOC_IA64_PCREL64MSB,
3852 BFD_RELOC_IA64_PCREL64LSB,
3853 BFD_RELOC_IA64_LTOFF_FPTR22,
3854 BFD_RELOC_IA64_LTOFF_FPTR64I,
a4bd8390
JW
3855 BFD_RELOC_IA64_LTOFF_FPTR32MSB,
3856 BFD_RELOC_IA64_LTOFF_FPTR32LSB,
800eeca4
JW
3857 BFD_RELOC_IA64_LTOFF_FPTR64MSB,
3858 BFD_RELOC_IA64_LTOFF_FPTR64LSB,
800eeca4
JW
3859 BFD_RELOC_IA64_SEGREL32MSB,
3860 BFD_RELOC_IA64_SEGREL32LSB,
3861 BFD_RELOC_IA64_SEGREL64MSB,
3862 BFD_RELOC_IA64_SEGREL64LSB,
3863 BFD_RELOC_IA64_SECREL32MSB,
3864 BFD_RELOC_IA64_SECREL32LSB,
3865 BFD_RELOC_IA64_SECREL64MSB,
3866 BFD_RELOC_IA64_SECREL64LSB,
3867 BFD_RELOC_IA64_REL32MSB,
3868 BFD_RELOC_IA64_REL32LSB,
3869 BFD_RELOC_IA64_REL64MSB,
3870 BFD_RELOC_IA64_REL64LSB,
3871 BFD_RELOC_IA64_LTV32MSB,
3872 BFD_RELOC_IA64_LTV32LSB,
3873 BFD_RELOC_IA64_LTV64MSB,
3874 BFD_RELOC_IA64_LTV64LSB,
3875 BFD_RELOC_IA64_IPLTMSB,
3876 BFD_RELOC_IA64_IPLTLSB,
800eeca4 3877 BFD_RELOC_IA64_COPY,
13ae64f3
JJ
3878 BFD_RELOC_IA64_LTOFF22X,
3879 BFD_RELOC_IA64_LDXMOV,
3880 BFD_RELOC_IA64_TPREL14,
800eeca4 3881 BFD_RELOC_IA64_TPREL22,
13ae64f3 3882 BFD_RELOC_IA64_TPREL64I,
800eeca4
JW
3883 BFD_RELOC_IA64_TPREL64MSB,
3884 BFD_RELOC_IA64_TPREL64LSB,
13ae64f3
JJ
3885 BFD_RELOC_IA64_LTOFF_TPREL22,
3886 BFD_RELOC_IA64_DTPMOD64MSB,
3887 BFD_RELOC_IA64_DTPMOD64LSB,
3888 BFD_RELOC_IA64_LTOFF_DTPMOD22,
3889 BFD_RELOC_IA64_DTPREL14,
3890 BFD_RELOC_IA64_DTPREL22,
3891 BFD_RELOC_IA64_DTPREL64I,
3892 BFD_RELOC_IA64_DTPREL32MSB,
3893 BFD_RELOC_IA64_DTPREL32LSB,
3894 BFD_RELOC_IA64_DTPREL64MSB,
3895 BFD_RELOC_IA64_DTPREL64LSB,
3896 BFD_RELOC_IA64_LTOFF_DTPREL22,
60bcf0fa
NC
3897
3898/* Motorola 68HC11 reloc.
3dbfec86 3899This is the 8 bit high part of an absolute address. */
60bcf0fa
NC
3900 BFD_RELOC_M68HC11_HI8,
3901
3902/* Motorola 68HC11 reloc.
3dbfec86 3903This is the 8 bit low part of an absolute address. */
60bcf0fa
NC
3904 BFD_RELOC_M68HC11_LO8,
3905
3906/* Motorola 68HC11 reloc.
3dbfec86 3907This is the 3 bit of a value. */
60bcf0fa 3908 BFD_RELOC_M68HC11_3B,
06c15ad7 3909
3dbfec86
SC
3910/* Motorola 68HC11 reloc.
3911This reloc marks the beginning of a jump/call instruction.
3912It is used for linker relaxation to correctly identify beginning
7dee875e 3913of instruction and change some branches to use PC-relative
3dbfec86
SC
3914addressing mode. */
3915 BFD_RELOC_M68HC11_RL_JUMP,
3916
3917/* Motorola 68HC11 reloc.
3918This reloc marks a group of several instructions that gcc generates
3919and for which the linker relaxation pass can modify and/or remove
3920some of them. */
3921 BFD_RELOC_M68HC11_RL_GROUP,
3922
3923/* Motorola 68HC11 reloc.
3924This is the 16-bit lower part of an address. It is used for 'call'
3925instruction to specify the symbol address without any special
3926transformation (due to memory bank window). */
3927 BFD_RELOC_M68HC11_LO16,
3928
3929/* Motorola 68HC11 reloc.
3930This is a 8-bit reloc that specifies the page number of an address.
3931It is used by 'call' instruction to specify the page number of
3932the symbol. */
3933 BFD_RELOC_M68HC11_PAGE,
3934
3935/* Motorola 68HC11 reloc.
3936This is a 24-bit reloc that represents the address with a 16-bit
3937value and a 8-bit page number. The symbol address is transformed
3938to follow the 16K memory bank of 68HC12 (seen as mapped in the window). */
3939 BFD_RELOC_M68HC11_24,
3940
28d39d1a
NC
3941/* Motorola 68HC12 reloc.
3942This is the 5 bits of a value. */
3943 BFD_RELOC_M68HC12_5B,
3944
0949843d
NC
3945/* NS CR16C Relocations. */
3946 BFD_RELOC_16C_NUM08,
3947 BFD_RELOC_16C_NUM08_C,
3948 BFD_RELOC_16C_NUM16,
3949 BFD_RELOC_16C_NUM16_C,
3950 BFD_RELOC_16C_NUM32,
3951 BFD_RELOC_16C_NUM32_C,
3952 BFD_RELOC_16C_DISP04,
3953 BFD_RELOC_16C_DISP04_C,
3954 BFD_RELOC_16C_DISP08,
3955 BFD_RELOC_16C_DISP08_C,
3956 BFD_RELOC_16C_DISP16,
3957 BFD_RELOC_16C_DISP16_C,
3958 BFD_RELOC_16C_DISP24,
3959 BFD_RELOC_16C_DISP24_C,
3960 BFD_RELOC_16C_DISP24a,
3961 BFD_RELOC_16C_DISP24a_C,
3962 BFD_RELOC_16C_REG04,
3963 BFD_RELOC_16C_REG04_C,
3964 BFD_RELOC_16C_REG04a,
3965 BFD_RELOC_16C_REG04a_C,
3966 BFD_RELOC_16C_REG14,
3967 BFD_RELOC_16C_REG14_C,
3968 BFD_RELOC_16C_REG16,
3969 BFD_RELOC_16C_REG16_C,
3970 BFD_RELOC_16C_REG20,
3971 BFD_RELOC_16C_REG20_C,
3972 BFD_RELOC_16C_ABS20,
3973 BFD_RELOC_16C_ABS20_C,
3974 BFD_RELOC_16C_ABS24,
3975 BFD_RELOC_16C_ABS24_C,
3976 BFD_RELOC_16C_IMM04,
3977 BFD_RELOC_16C_IMM04_C,
3978 BFD_RELOC_16C_IMM16,
3979 BFD_RELOC_16C_IMM16_C,
3980 BFD_RELOC_16C_IMM20,
3981 BFD_RELOC_16C_IMM20_C,
3982 BFD_RELOC_16C_IMM24,
3983 BFD_RELOC_16C_IMM24_C,
3984 BFD_RELOC_16C_IMM32,
3985 BFD_RELOC_16C_IMM32_C,
3986
1fe1f39c
NC
3987/* NS CRX Relocations. */
3988 BFD_RELOC_CRX_REL4,
3989 BFD_RELOC_CRX_REL8,
3990 BFD_RELOC_CRX_REL8_CMP,
3991 BFD_RELOC_CRX_REL16,
3992 BFD_RELOC_CRX_REL24,
3993 BFD_RELOC_CRX_REL32,
3994 BFD_RELOC_CRX_REGREL12,
3995 BFD_RELOC_CRX_REGREL22,
3996 BFD_RELOC_CRX_REGREL28,
3997 BFD_RELOC_CRX_REGREL32,
3998 BFD_RELOC_CRX_ABS16,
3999 BFD_RELOC_CRX_ABS32,
4000 BFD_RELOC_CRX_NUM8,
4001 BFD_RELOC_CRX_NUM16,
4002 BFD_RELOC_CRX_NUM32,
4003 BFD_RELOC_CRX_IMM16,
4004 BFD_RELOC_CRX_IMM32,
670ec21d
NC
4005 BFD_RELOC_CRX_SWITCH8,
4006 BFD_RELOC_CRX_SWITCH16,
4007 BFD_RELOC_CRX_SWITCH32,
1fe1f39c 4008
06c15ad7 4009/* These relocs are only used within the CRIS assembler. They are not
b5f79c76 4010(at present) written to any object files. */
06c15ad7
HPN
4011 BFD_RELOC_CRIS_BDISP8,
4012 BFD_RELOC_CRIS_UNSIGNED_5,
4013 BFD_RELOC_CRIS_SIGNED_6,
4014 BFD_RELOC_CRIS_UNSIGNED_6,
bac23f82
HPN
4015 BFD_RELOC_CRIS_SIGNED_8,
4016 BFD_RELOC_CRIS_UNSIGNED_8,
4017 BFD_RELOC_CRIS_SIGNED_16,
4018 BFD_RELOC_CRIS_UNSIGNED_16,
4019 BFD_RELOC_CRIS_LAPCQ_OFFSET,
06c15ad7 4020 BFD_RELOC_CRIS_UNSIGNED_4,
a87fdb8d 4021
b5f79c76 4022/* Relocs used in ELF shared libraries for CRIS. */
58d29fc3
HPN
4023 BFD_RELOC_CRIS_COPY,
4024 BFD_RELOC_CRIS_GLOB_DAT,
4025 BFD_RELOC_CRIS_JUMP_SLOT,
4026 BFD_RELOC_CRIS_RELATIVE,
4027
b5f79c76 4028/* 32-bit offset to symbol-entry within GOT. */
58d29fc3
HPN
4029 BFD_RELOC_CRIS_32_GOT,
4030
b5f79c76 4031/* 16-bit offset to symbol-entry within GOT. */
58d29fc3
HPN
4032 BFD_RELOC_CRIS_16_GOT,
4033
b5f79c76 4034/* 32-bit offset to symbol-entry within GOT, with PLT handling. */
58d29fc3
HPN
4035 BFD_RELOC_CRIS_32_GOTPLT,
4036
b5f79c76 4037/* 16-bit offset to symbol-entry within GOT, with PLT handling. */
58d29fc3
HPN
4038 BFD_RELOC_CRIS_16_GOTPLT,
4039
b5f79c76 4040/* 32-bit offset to symbol, relative to GOT. */
58d29fc3
HPN
4041 BFD_RELOC_CRIS_32_GOTREL,
4042
b5f79c76 4043/* 32-bit offset to symbol with PLT entry, relative to GOT. */
58d29fc3
HPN
4044 BFD_RELOC_CRIS_32_PLT_GOTREL,
4045
b5f79c76 4046/* 32-bit offset to symbol with PLT entry, relative to this relocation. */
58d29fc3
HPN
4047 BFD_RELOC_CRIS_32_PLT_PCREL,
4048
b5f79c76 4049/* Intel i860 Relocations. */
a87fdb8d
JE
4050 BFD_RELOC_860_COPY,
4051 BFD_RELOC_860_GLOB_DAT,
4052 BFD_RELOC_860_JUMP_SLOT,
4053 BFD_RELOC_860_RELATIVE,
4054 BFD_RELOC_860_PC26,
4055 BFD_RELOC_860_PLT26,
4056 BFD_RELOC_860_PC16,
4057 BFD_RELOC_860_LOW0,
4058 BFD_RELOC_860_SPLIT0,
4059 BFD_RELOC_860_LOW1,
4060 BFD_RELOC_860_SPLIT1,
4061 BFD_RELOC_860_LOW2,
4062 BFD_RELOC_860_SPLIT2,
4063 BFD_RELOC_860_LOW3,
4064 BFD_RELOC_860_LOGOT0,
4065 BFD_RELOC_860_SPGOT0,
4066 BFD_RELOC_860_LOGOT1,
4067 BFD_RELOC_860_SPGOT1,
4068 BFD_RELOC_860_LOGOTOFF0,
4069 BFD_RELOC_860_SPGOTOFF0,
4070 BFD_RELOC_860_LOGOTOFF1,
4071 BFD_RELOC_860_SPGOTOFF1,
4072 BFD_RELOC_860_LOGOTOFF2,
4073 BFD_RELOC_860_LOGOTOFF3,
4074 BFD_RELOC_860_LOPC,
4075 BFD_RELOC_860_HIGHADJ,
4076 BFD_RELOC_860_HAGOT,
4077 BFD_RELOC_860_HAGOTOFF,
4078 BFD_RELOC_860_HAPC,
4079 BFD_RELOC_860_HIGH,
4080 BFD_RELOC_860_HIGOT,
4081 BFD_RELOC_860_HIGOTOFF,
b3baf5d0 4082
b5f79c76 4083/* OpenRISC Relocations. */
b3baf5d0
NC
4084 BFD_RELOC_OPENRISC_ABS_26,
4085 BFD_RELOC_OPENRISC_REL_26,
e01b0e69 4086
b5f79c76 4087/* H8 elf Relocations. */
e01b0e69
JR
4088 BFD_RELOC_H8_DIR16A8,
4089 BFD_RELOC_H8_DIR16R8,
4090 BFD_RELOC_H8_DIR24A8,
4091 BFD_RELOC_H8_DIR24R8,
4092 BFD_RELOC_H8_DIR32A16,
93fbbb04 4093
b5f79c76 4094/* Sony Xstormy16 Relocations. */
93fbbb04 4095 BFD_RELOC_XSTORMY16_REL_12,
5fd63999 4096 BFD_RELOC_XSTORMY16_12,
93fbbb04
GK
4097 BFD_RELOC_XSTORMY16_24,
4098 BFD_RELOC_XSTORMY16_FPTR16,
90ace9e9 4099
d70c5fc7
NC
4100/* Infineon Relocations. */
4101 BFD_RELOC_XC16X_PAG,
4102 BFD_RELOC_XC16X_POF,
4103 BFD_RELOC_XC16X_SEG,
4104 BFD_RELOC_XC16X_SOF,
4105
90ace9e9
JT
4106/* Relocations used by VAX ELF. */
4107 BFD_RELOC_VAX_GLOB_DAT,
4108 BFD_RELOC_VAX_JMP_SLOT,
4109 BFD_RELOC_VAX_RELATIVE,
2469cfa2 4110
d031aafb
NS
4111/* Morpho MT - 16 bit immediate relocation. */
4112 BFD_RELOC_MT_PC16,
e729279b 4113
d031aafb
NS
4114/* Morpho MT - Hi 16 bits of an address. */
4115 BFD_RELOC_MT_HI16,
e729279b 4116
d031aafb
NS
4117/* Morpho MT - Low 16 bits of an address. */
4118 BFD_RELOC_MT_LO16,
e729279b 4119
d031aafb
NS
4120/* Morpho MT - Used to tell the linker which vtable entries are used. */
4121 BFD_RELOC_MT_GNU_VTINHERIT,
e729279b 4122
d031aafb
NS
4123/* Morpho MT - Used to tell the linker which vtable entries are used. */
4124 BFD_RELOC_MT_GNU_VTENTRY,
e729279b 4125
d031aafb
NS
4126/* Morpho MT - 8 bit immediate relocation. */
4127 BFD_RELOC_MT_PCINSN8,
6f84a2a6 4128
2469cfa2
NC
4129/* msp430 specific relocation codes */
4130 BFD_RELOC_MSP430_10_PCREL,
4131 BFD_RELOC_MSP430_16_PCREL,
4132 BFD_RELOC_MSP430_16,
4133 BFD_RELOC_MSP430_16_PCREL_BYTE,
4134 BFD_RELOC_MSP430_16_BYTE,
b18c562e
NC
4135 BFD_RELOC_MSP430_2X_PCREL,
4136 BFD_RELOC_MSP430_RL_PCREL,
a75473eb
SC
4137
4138/* IQ2000 Relocations. */
4139 BFD_RELOC_IQ2000_OFFSET_16,
4140 BFD_RELOC_IQ2000_OFFSET_21,
4141 BFD_RELOC_IQ2000_UHI16,
e0001a05
NC
4142
4143/* Special Xtensa relocation used only by PLT entries in ELF shared
4144objects to indicate that the runtime linker should set the value
4145to one of its own internal functions or data structures. */
4146 BFD_RELOC_XTENSA_RTLD,
4147
4148/* Xtensa relocations for ELF shared objects. */
4149 BFD_RELOC_XTENSA_GLOB_DAT,
4150 BFD_RELOC_XTENSA_JMP_SLOT,
4151 BFD_RELOC_XTENSA_RELATIVE,
4152
4153/* Xtensa relocation used in ELF object files for symbols that may require
4154PLT entries. Otherwise, this is just a generic 32-bit relocation. */
4155 BFD_RELOC_XTENSA_PLT,
4156
43cd72b9
BW
4157/* Xtensa relocations to mark the difference of two local symbols.
4158These are only needed to support linker relaxation and can be ignored
4159when not relaxing. The field is set to the value of the difference
4160assuming no relaxation. The relocation encodes the position of the
4161first symbol so the linker can determine whether to adjust the field
4162value. */
4163 BFD_RELOC_XTENSA_DIFF8,
4164 BFD_RELOC_XTENSA_DIFF16,
4165 BFD_RELOC_XTENSA_DIFF32,
4166
4167/* Generic Xtensa relocations for instruction operands. Only the slot
4168number is encoded in the relocation. The relocation applies to the
4169last PC-relative immediate operand, or if there are no PC-relative
4170immediates, to the last immediate operand. */
4171 BFD_RELOC_XTENSA_SLOT0_OP,
4172 BFD_RELOC_XTENSA_SLOT1_OP,
4173 BFD_RELOC_XTENSA_SLOT2_OP,
4174 BFD_RELOC_XTENSA_SLOT3_OP,
4175 BFD_RELOC_XTENSA_SLOT4_OP,
4176 BFD_RELOC_XTENSA_SLOT5_OP,
4177 BFD_RELOC_XTENSA_SLOT6_OP,
4178 BFD_RELOC_XTENSA_SLOT7_OP,
4179 BFD_RELOC_XTENSA_SLOT8_OP,
4180 BFD_RELOC_XTENSA_SLOT9_OP,
4181 BFD_RELOC_XTENSA_SLOT10_OP,
4182 BFD_RELOC_XTENSA_SLOT11_OP,
4183 BFD_RELOC_XTENSA_SLOT12_OP,
4184 BFD_RELOC_XTENSA_SLOT13_OP,
4185 BFD_RELOC_XTENSA_SLOT14_OP,
4186
4187/* Alternate Xtensa relocations. Only the slot is encoded in the
4188relocation. The meaning of these relocations is opcode-specific. */
4189 BFD_RELOC_XTENSA_SLOT0_ALT,
4190 BFD_RELOC_XTENSA_SLOT1_ALT,
4191 BFD_RELOC_XTENSA_SLOT2_ALT,
4192 BFD_RELOC_XTENSA_SLOT3_ALT,
4193 BFD_RELOC_XTENSA_SLOT4_ALT,
4194 BFD_RELOC_XTENSA_SLOT5_ALT,
4195 BFD_RELOC_XTENSA_SLOT6_ALT,
4196 BFD_RELOC_XTENSA_SLOT7_ALT,
4197 BFD_RELOC_XTENSA_SLOT8_ALT,
4198 BFD_RELOC_XTENSA_SLOT9_ALT,
4199 BFD_RELOC_XTENSA_SLOT10_ALT,
4200 BFD_RELOC_XTENSA_SLOT11_ALT,
4201 BFD_RELOC_XTENSA_SLOT12_ALT,
4202 BFD_RELOC_XTENSA_SLOT13_ALT,
4203 BFD_RELOC_XTENSA_SLOT14_ALT,
4204
4205/* Xtensa relocations for backward compatibility. These have all been
4206replaced by BFD_RELOC_XTENSA_SLOT0_OP. */
e0001a05
NC
4207 BFD_RELOC_XTENSA_OP0,
4208 BFD_RELOC_XTENSA_OP1,
4209 BFD_RELOC_XTENSA_OP2,
4210
d70c5fc7 4211/* Xtensa relocation to mark that the assembler expanded the
e0001a05
NC
4212instructions from an original target. The expansion size is
4213encoded in the reloc size. */
4214 BFD_RELOC_XTENSA_ASM_EXPAND,
4215
d70c5fc7
NC
4216/* Xtensa relocation to mark that the linker should simplify
4217assembler-expanded instructions. This is commonly used
4218internally by the linker after analysis of a
e0001a05
NC
4219BFD_RELOC_XTENSA_ASM_EXPAND. */
4220 BFD_RELOC_XTENSA_ASM_SIMPLIFY,
c0524131 4221
3c9b82ba
NC
4222/* 8 bit signed offset in (ix+d) or (iy+d). */
4223 BFD_RELOC_Z80_DISP8,
4224
c0524131
NC
4225/* DJNZ offset. */
4226 BFD_RELOC_Z8K_DISP7,
4227
4228/* CALR offset. */
4229 BFD_RELOC_Z8K_CALLR,
4230
4231/* 4 bit value. */
4232 BFD_RELOC_Z8K_IMM4L,
252b5132
RH
4233 BFD_RELOC_UNUSED };
4234typedef enum bfd_reloc_code_real bfd_reloc_code_real_type;
c58b9523
AM
4235reloc_howto_type *bfd_reloc_type_lookup
4236 (bfd *abfd, bfd_reloc_code_real_type code);
252b5132 4237
c58b9523 4238const char *bfd_get_reloc_code_name (bfd_reloc_code_real_type code);
252b5132 4239
e61463e1 4240/* Extracted from syms.c. */
541389e2 4241
fc0a2244 4242typedef struct bfd_symbol
252b5132 4243{
b5f79c76
NC
4244 /* A pointer to the BFD which owns the symbol. This information
4245 is necessary so that a back end can work out what additional
4246 information (invisible to the application writer) is carried
4247 with the symbol.
4248
4249 This field is *almost* redundant, since you can use section->owner
4250 instead, except that some symbols point to the global sections
4251 bfd_{abs,com,und}_section. This could be fixed by making
4252 these globals be per-bfd (or per-target-flavor). FIXME. */
2ce40c65 4253 struct bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field. */
b5f79c76
NC
4254
4255 /* The text of the symbol. The name is left alone, and not copied; the
4256 application may not alter it. */
dc810e39 4257 const char *name;
252b5132 4258
b5f79c76
NC
4259 /* The value of the symbol. This really should be a union of a
4260 numeric value with a pointer, since some flags indicate that
4261 a pointer to another symbol is stored here. */
252b5132
RH
4262 symvalue value;
4263
b5f79c76 4264 /* Attributes of a symbol. */
252b5132
RH
4265#define BSF_NO_FLAGS 0x00
4266
b5f79c76
NC
4267 /* The symbol has local scope; <<static>> in <<C>>. The value
4268 is the offset into the section of the data. */
252b5132
RH
4269#define BSF_LOCAL 0x01
4270
b5f79c76
NC
4271 /* The symbol has global scope; initialized data in <<C>>. The
4272 value is the offset into the section of the data. */
252b5132
RH
4273#define BSF_GLOBAL 0x02
4274
b5f79c76
NC
4275 /* The symbol has global scope and is exported. The value is
4276 the offset into the section of the data. */
4277#define BSF_EXPORT BSF_GLOBAL /* No real difference. */
252b5132 4278
b5f79c76
NC
4279 /* A normal C symbol would be one of:
4280 <<BSF_LOCAL>>, <<BSF_FORT_COMM>>, <<BSF_UNDEFINED>> or
4281 <<BSF_GLOBAL>>. */
252b5132 4282
7dee875e 4283 /* The symbol is a debugging record. The value has an arbitrary
b5f79c76 4284 meaning, unless BSF_DEBUGGING_RELOC is also set. */
252b5132
RH
4285#define BSF_DEBUGGING 0x08
4286
b5f79c76
NC
4287 /* The symbol denotes a function entry point. Used in ELF,
4288 perhaps others someday. */
252b5132
RH
4289#define BSF_FUNCTION 0x10
4290
b5f79c76 4291 /* Used by the linker. */
252b5132
RH
4292#define BSF_KEEP 0x20
4293#define BSF_KEEP_G 0x40
4294
b5f79c76
NC
4295 /* A weak global symbol, overridable without warnings by
4296 a regular global symbol of the same name. */
252b5132
RH
4297#define BSF_WEAK 0x80
4298
b5f79c76
NC
4299 /* This symbol was created to point to a section, e.g. ELF's
4300 STT_SECTION symbols. */
252b5132
RH
4301#define BSF_SECTION_SYM 0x100
4302
b5f79c76
NC
4303 /* The symbol used to be a common symbol, but now it is
4304 allocated. */
252b5132
RH
4305#define BSF_OLD_COMMON 0x200
4306
b5f79c76 4307 /* The default value for common data. */
252b5132
RH
4308#define BFD_FORT_COMM_DEFAULT_VALUE 0
4309
b5f79c76
NC
4310 /* In some files the type of a symbol sometimes alters its
4311 location in an output file - ie in coff a <<ISFCN>> symbol
4312 which is also <<C_EXT>> symbol appears where it was
4313 declared and not at the end of a section. This bit is set
4314 by the target BFD part to convey this information. */
252b5132
RH
4315#define BSF_NOT_AT_END 0x400
4316
b5f79c76 4317 /* Signal that the symbol is the label of constructor section. */
252b5132
RH
4318#define BSF_CONSTRUCTOR 0x800
4319
b5f79c76
NC
4320 /* Signal that the symbol is a warning symbol. The name is a
4321 warning. The name of the next symbol is the one to warn about;
4322 if a reference is made to a symbol with the same name as the next
4323 symbol, a warning is issued by the linker. */
252b5132
RH
4324#define BSF_WARNING 0x1000
4325
b5f79c76
NC
4326 /* Signal that the symbol is indirect. This symbol is an indirect
4327 pointer to the symbol with the same name as the next symbol. */
252b5132
RH
4328#define BSF_INDIRECT 0x2000
4329
b5f79c76
NC
4330 /* BSF_FILE marks symbols that contain a file name. This is used
4331 for ELF STT_FILE symbols. */
252b5132
RH
4332#define BSF_FILE 0x4000
4333
b5f79c76 4334 /* Symbol is from dynamic linking information. */
252b5132
RH
4335#define BSF_DYNAMIC 0x8000
4336
b5f79c76
NC
4337 /* The symbol denotes a data object. Used in ELF, and perhaps
4338 others someday. */
252b5132
RH
4339#define BSF_OBJECT 0x10000
4340
b5f79c76
NC
4341 /* This symbol is a debugging symbol. The value is the offset
4342 into the section of the data. BSF_DEBUGGING should be set
4343 as well. */
703153b5
ILT
4344#define BSF_DEBUGGING_RELOC 0x20000
4345
13ae64f3
JJ
4346 /* This symbol is thread local. Used in ELF. */
4347#define BSF_THREAD_LOCAL 0x40000
4348
252b5132
RH
4349 flagword flags;
4350
b5f79c76
NC
4351 /* A pointer to the section to which this symbol is
4352 relative. This will always be non NULL, there are special
4353 sections for undefined and absolute symbols. */
198beae2 4354 struct bfd_section *section;
252b5132 4355
b5f79c76 4356 /* Back end special data. */
252b5132
RH
4357 union
4358 {
c58b9523 4359 void *p;
252b5132 4360 bfd_vma i;
b5f79c76
NC
4361 }
4362 udata;
4363}
4364asymbol;
252b5132 4365
252b5132
RH
4366#define bfd_get_symtab_upper_bound(abfd) \
4367 BFD_SEND (abfd, _bfd_get_symtab_upper_bound, (abfd))
b5f79c76 4368
c58b9523 4369bfd_boolean bfd_is_local_label (bfd *abfd, asymbol *sym);
252b5132 4370
c58b9523 4371bfd_boolean bfd_is_local_label_name (bfd *abfd, const char *name);
252b5132
RH
4372
4373#define bfd_is_local_label_name(abfd, name) \
c58b9523 4374 BFD_SEND (abfd, _bfd_is_local_label_name, (abfd, name))
b5f79c76 4375
3c9458e9
NC
4376bfd_boolean bfd_is_target_special_symbol (bfd *abfd, asymbol *sym);
4377
4378#define bfd_is_target_special_symbol(abfd, sym) \
4379 BFD_SEND (abfd, _bfd_is_target_special_symbol, (abfd, sym))
4380
252b5132 4381#define bfd_canonicalize_symtab(abfd, location) \
c58b9523 4382 BFD_SEND (abfd, _bfd_canonicalize_symtab, (abfd, location))
b5f79c76 4383
c58b9523
AM
4384bfd_boolean bfd_set_symtab
4385 (bfd *abfd, asymbol **location, unsigned int count);
252b5132 4386
c58b9523 4387void bfd_print_symbol_vandf (bfd *abfd, void *file, asymbol *symbol);
252b5132
RH
4388
4389#define bfd_make_empty_symbol(abfd) \
c58b9523 4390 BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
b5f79c76 4391
c58b9523 4392asymbol *_bfd_generic_make_empty_symbol (bfd *);
3f3c5c34 4393
252b5132 4394#define bfd_make_debug_symbol(abfd,ptr,size) \
c58b9523 4395 BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
b5f79c76 4396
c58b9523 4397int bfd_decode_symclass (asymbol *symbol);
252b5132 4398
c58b9523 4399bfd_boolean bfd_is_undefined_symclass (int symclass);
fad6fcbb 4400
c58b9523 4401void bfd_symbol_info (asymbol *symbol, symbol_info *ret);
252b5132 4402
c58b9523
AM
4403bfd_boolean bfd_copy_private_symbol_data
4404 (bfd *ibfd, asymbol *isym, bfd *obfd, asymbol *osym);
252b5132
RH
4405
4406#define bfd_copy_private_symbol_data(ibfd, isymbol, obfd, osymbol) \
c58b9523
AM
4407 BFD_SEND (obfd, _bfd_copy_private_symbol_data, \
4408 (ibfd, isymbol, obfd, osymbol))
b5f79c76 4409
e61463e1 4410/* Extracted from bfd.c. */
c2852e88 4411struct bfd
252b5132 4412{
52b69c9e
AO
4413 /* A unique identifier of the BFD */
4414 unsigned int id;
4415
b5f79c76
NC
4416 /* The filename the application opened the BFD with. */
4417 const char *filename;
252b5132 4418
b5f79c76
NC
4419 /* A pointer to the target jump table. */
4420 const struct bfd_target *xvec;
252b5132 4421
40838a72
AC
4422 /* The IOSTREAM, and corresponding IO vector that provide access
4423 to the file backing the BFD. */
c58b9523 4424 void *iostream;
40838a72 4425 const struct bfd_iovec *iovec;
252b5132 4426
b5f79c76
NC
4427 /* Is the file descriptor being cached? That is, can it be closed as
4428 needed, and re-opened when accessed later? */
b34976b6 4429 bfd_boolean cacheable;
252b5132 4430
b5f79c76
NC
4431 /* Marks whether there was a default target specified when the
4432 BFD was opened. This is used to select which matching algorithm
4433 to use to choose the back end. */
b34976b6 4434 bfd_boolean target_defaulted;
252b5132 4435
b5f79c76
NC
4436 /* The caching routines use these to maintain a
4437 least-recently-used list of BFDs. */
2ce40c65 4438 struct bfd *lru_prev, *lru_next;
252b5132 4439
b5f79c76
NC
4440 /* When a file is closed by the caching routines, BFD retains
4441 state information on the file here... */
4442 ufile_ptr where;
252b5132 4443
b5f79c76 4444 /* ... and here: (``once'' means at least once). */
b34976b6 4445 bfd_boolean opened_once;
252b5132 4446
b5f79c76
NC
4447 /* Set if we have a locally maintained mtime value, rather than
4448 getting it from the file each time. */
b34976b6 4449 bfd_boolean mtime_set;
252b5132 4450
b34976b6 4451 /* File modified time, if mtime_set is TRUE. */
b5f79c76 4452 long mtime;
252b5132 4453
b5f79c76
NC
4454 /* Reserved for an unimplemented file locking extension. */
4455 int ifd;
252b5132 4456
b5f79c76
NC
4457 /* The format which belongs to the BFD. (object, core, etc.) */
4458 bfd_format format;
252b5132 4459
b5f79c76
NC
4460 /* The direction with which the BFD was opened. */
4461 enum bfd_direction
4462 {
4463 no_direction = 0,
4464 read_direction = 1,
4465 write_direction = 2,
4466 both_direction = 3
4467 }
4468 direction;
4469
4470 /* Format_specific flags. */
4471 flagword flags;
252b5132 4472
b5f79c76
NC
4473 /* Currently my_archive is tested before adding origin to
4474 anything. I believe that this can become always an add of
4475 origin, with origin set to 0 for non archive files. */
4476 ufile_ptr origin;
252b5132 4477
b5f79c76
NC
4478 /* Remember when output has begun, to stop strange things
4479 from happening. */
b34976b6 4480 bfd_boolean output_has_begun;
73e87d70 4481
b5f79c76
NC
4482 /* A hash table for section names. */
4483 struct bfd_hash_table section_htab;
73e87d70 4484
b5f79c76 4485 /* Pointer to linked list of sections. */
198beae2 4486 struct bfd_section *sections;
252b5132 4487
5daa8fe7
L
4488 /* The last section on the section list. */
4489 struct bfd_section *section_last;
252b5132 4490
b5f79c76
NC
4491 /* The number of sections. */
4492 unsigned int section_count;
252b5132 4493
b5f79c76
NC
4494 /* Stuff only useful for object files:
4495 The start address. */
4496 bfd_vma start_address;
252b5132 4497
b5f79c76
NC
4498 /* Used for input and output. */
4499 unsigned int symcount;
252b5132 4500
b5f79c76 4501 /* Symbol table for output BFD (with symcount entries). */
fc0a2244 4502 struct bfd_symbol **outsymbols;
252b5132 4503
1f70368c
DJ
4504 /* Used for slurped dynamic symbol tables. */
4505 unsigned int dynsymcount;
4506
b5f79c76
NC
4507 /* Pointer to structure which contains architecture information. */
4508 const struct bfd_arch_info *arch_info;
252b5132 4509
b58f81ae
DJ
4510 /* Flag set if symbols from this BFD should not be exported. */
4511 bfd_boolean no_export;
4512
b5f79c76 4513 /* Stuff only useful for archives. */
c58b9523 4514 void *arelt_data;
2ce40c65
AM
4515 struct bfd *my_archive; /* The containing archive BFD. */
4516 struct bfd *next; /* The next BFD in the archive. */
4517 struct bfd *archive_head; /* The first BFD in the archive. */
b34976b6 4518 bfd_boolean has_armap;
252b5132 4519
b5f79c76 4520 /* A chain of BFD structures involved in a link. */
2ce40c65 4521 struct bfd *link_next;
252b5132 4522
b5f79c76
NC
4523 /* A field used by _bfd_generic_link_add_archive_symbols. This will
4524 be used only for archive elements. */
4525 int archive_pass;
252b5132 4526
b5f79c76
NC
4527 /* Used by the back end to hold private data. */
4528 union
4529 {
252b5132
RH
4530 struct aout_data_struct *aout_data;
4531 struct artdata *aout_ar_data;
4532 struct _oasys_data *oasys_obj_data;
4533 struct _oasys_ar_data *oasys_ar_data;
4534 struct coff_tdata *coff_obj_data;
4535 struct pe_tdata *pe_obj_data;
4536 struct xcoff_tdata *xcoff_obj_data;
4537 struct ecoff_tdata *ecoff_obj_data;
4538 struct ieee_data_struct *ieee_data;
4539 struct ieee_ar_data_struct *ieee_ar_data;
4540 struct srec_data_struct *srec_data;
4541 struct ihex_data_struct *ihex_data;
4542 struct tekhex_data_struct *tekhex_data;
4543 struct elf_obj_tdata *elf_obj_data;
4544 struct nlm_obj_tdata *nlm_obj_data;
4545 struct bout_data_struct *bout_data;
3c3bdf30 4546 struct mmo_data_struct *mmo_data;
252b5132
RH
4547 struct sun_core_struct *sun_core_data;
4548 struct sco5_core_struct *sco5_core_data;
4549 struct trad_core_struct *trad_core_data;
4550 struct som_data_struct *som_data;
4551 struct hpux_core_struct *hpux_core_data;
4552 struct hppabsd_core_struct *hppabsd_core_data;
4553 struct sgi_core_struct *sgi_core_data;
4554 struct lynx_core_struct *lynx_core_data;
4555 struct osf_core_struct *osf_core_data;
4556 struct cisco_core_struct *cisco_core_data;
4557 struct versados_data_struct *versados_data;
4558 struct netbsd_core_struct *netbsd_core_data;
3af9a47b
NC
4559 struct mach_o_data_struct *mach_o_data;
4560 struct mach_o_fat_data_struct *mach_o_fat_data;
4561 struct bfd_pef_data_struct *pef_data;
4562 struct bfd_pef_xlib_data_struct *pef_xlib_data;
4563 struct bfd_sym_data_struct *sym_data;
c58b9523 4564 void *any;
b5f79c76
NC
4565 }
4566 tdata;
8546af74 4567
b5f79c76 4568 /* Used by the application to hold private data. */
c58b9523 4569 void *usrdata;
252b5132 4570
52b219b5 4571 /* Where all the allocated stuff under this BFD goes. This is a
c58b9523
AM
4572 struct objalloc *, but we use void * to avoid requiring the inclusion
4573 of objalloc.h. */
4574 void *memory;
252b5132
RH
4575};
4576
4577typedef enum bfd_error
4578{
4579 bfd_error_no_error = 0,
4580 bfd_error_system_call,
4581 bfd_error_invalid_target,
4582 bfd_error_wrong_format,
3619ad04 4583 bfd_error_wrong_object_format,
252b5132
RH
4584 bfd_error_invalid_operation,
4585 bfd_error_no_memory,
4586 bfd_error_no_symbols,
4587 bfd_error_no_armap,
4588 bfd_error_no_more_archived_files,
4589 bfd_error_malformed_archive,
4590 bfd_error_file_not_recognized,
4591 bfd_error_file_ambiguously_recognized,
4592 bfd_error_no_contents,
4593 bfd_error_nonrepresentable_section,
4594 bfd_error_no_debug_section,
4595 bfd_error_bad_value,
4596 bfd_error_file_truncated,
4597 bfd_error_file_too_big,
4598 bfd_error_invalid_error_code
b5f79c76
NC
4599}
4600bfd_error_type;
252b5132 4601
c58b9523 4602bfd_error_type bfd_get_error (void);
252b5132 4603
c58b9523 4604void bfd_set_error (bfd_error_type error_tag);
252b5132 4605
c58b9523 4606const char *bfd_errmsg (bfd_error_type error_tag);
252b5132 4607
c58b9523 4608void bfd_perror (const char *message);
252b5132 4609
c58b9523 4610typedef void (*bfd_error_handler_type) (const char *, ...);
252b5132 4611
c58b9523 4612bfd_error_handler_type bfd_set_error_handler (bfd_error_handler_type);
252b5132 4613
c58b9523 4614void bfd_set_error_program_name (const char *);
252b5132 4615
c58b9523 4616bfd_error_handler_type bfd_get_error_handler (void);
252b5132 4617
c58b9523 4618long bfd_get_reloc_upper_bound (bfd *abfd, asection *sect);
252b5132 4619
c58b9523
AM
4620long bfd_canonicalize_reloc
4621 (bfd *abfd, asection *sec, arelent **loc, asymbol **syms);
252b5132 4622
c58b9523
AM
4623void bfd_set_reloc
4624 (bfd *abfd, asection *sec, arelent **rel, unsigned int count);
252b5132 4625
c58b9523 4626bfd_boolean bfd_set_file_flags (bfd *abfd, flagword flags);
252b5132 4627
c58b9523 4628int bfd_get_arch_size (bfd *abfd);
125c4a69 4629
c58b9523 4630int bfd_get_sign_extend_vma (bfd *abfd);
125c4a69 4631
c58b9523 4632bfd_boolean bfd_set_start_address (bfd *abfd, bfd_vma vma);
252b5132 4633
c58b9523 4634unsigned int bfd_get_gp_size (bfd *abfd);
252b5132 4635
c58b9523 4636void bfd_set_gp_size (bfd *abfd, unsigned int i);
252b5132 4637
c58b9523 4638bfd_vma bfd_scan_vma (const char *string, const char **end, int base);
252b5132 4639
80fccad2
BW
4640bfd_boolean bfd_copy_private_header_data (bfd *ibfd, bfd *obfd);
4641
4642#define bfd_copy_private_header_data(ibfd, obfd) \
4643 BFD_SEND (obfd, _bfd_copy_private_header_data, \
4644 (ibfd, obfd))
c58b9523 4645bfd_boolean bfd_copy_private_bfd_data (bfd *ibfd, bfd *obfd);
252b5132
RH
4646
4647#define bfd_copy_private_bfd_data(ibfd, obfd) \
4648 BFD_SEND (obfd, _bfd_copy_private_bfd_data, \
4649 (ibfd, obfd))
c58b9523 4650bfd_boolean bfd_merge_private_bfd_data (bfd *ibfd, bfd *obfd);
252b5132
RH
4651
4652#define bfd_merge_private_bfd_data(ibfd, obfd) \
4653 BFD_SEND (obfd, _bfd_merge_private_bfd_data, \
4654 (ibfd, obfd))
c58b9523 4655bfd_boolean bfd_set_private_flags (bfd *abfd, flagword flags);
252b5132
RH
4656
4657#define bfd_set_private_flags(abfd, flags) \
ed781d5d 4658 BFD_SEND (abfd, _bfd_set_private_flags, (abfd, flags))
a6b96beb
AM
4659#define bfd_sizeof_headers(abfd, info) \
4660 BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, info))
252b5132
RH
4661
4662#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
ed781d5d
NC
4663 BFD_SEND (abfd, _bfd_find_nearest_line, \
4664 (abfd, sec, syms, off, file, func, line))
252b5132 4665
5420f73d
L
4666#define bfd_find_line(abfd, syms, sym, file, line) \
4667 BFD_SEND (abfd, _bfd_find_line, \
4668 (abfd, syms, sym, file, line))
4669
4ab527b0
FF
4670#define bfd_find_inliner_info(abfd, file, func, line) \
4671 BFD_SEND (abfd, _bfd_find_inliner_info, \
4672 (abfd, file, func, line))
4673
252b5132 4674#define bfd_debug_info_start(abfd) \
ed781d5d 4675 BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
252b5132
RH
4676
4677#define bfd_debug_info_end(abfd) \
ed781d5d 4678 BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
252b5132
RH
4679
4680#define bfd_debug_info_accumulate(abfd, section) \
ed781d5d 4681 BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
541389e2 4682
252b5132 4683#define bfd_stat_arch_elt(abfd, stat) \
ed781d5d 4684 BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
252b5132
RH
4685
4686#define bfd_update_armap_timestamp(abfd) \
ed781d5d 4687 BFD_SEND (abfd, _bfd_update_armap_timestamp, (abfd))
252b5132
RH
4688
4689#define bfd_set_arch_mach(abfd, arch, mach)\
ed781d5d 4690 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
252b5132
RH
4691
4692#define bfd_relax_section(abfd, section, link_info, again) \
4693 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, link_info, again))
4694
4695#define bfd_gc_sections(abfd, link_info) \
4696 BFD_SEND (abfd, _bfd_gc_sections, (abfd, link_info))
4697
8550eb6e
JJ
4698#define bfd_merge_sections(abfd, link_info) \
4699 BFD_SEND (abfd, _bfd_merge_sections, (abfd, link_info))
4700
72adc230
AM
4701#define bfd_is_group_section(abfd, sec) \
4702 BFD_SEND (abfd, _bfd_is_group_section, (abfd, sec))
4703
e61463e1
AM
4704#define bfd_discard_group(abfd, sec) \
4705 BFD_SEND (abfd, _bfd_discard_group, (abfd, sec))
4706
252b5132
RH
4707#define bfd_link_hash_table_create(abfd) \
4708 BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
4709
e2d34d7d
DJ
4710#define bfd_link_hash_table_free(abfd, hash) \
4711 BFD_SEND (abfd, _bfd_link_hash_table_free, (hash))
4712
252b5132
RH
4713#define bfd_link_add_symbols(abfd, info) \
4714 BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
4715
1449d79b 4716#define bfd_link_just_syms(abfd, sec, info) \
2d653fc7
AM
4717 BFD_SEND (abfd, _bfd_link_just_syms, (sec, info))
4718
252b5132
RH
4719#define bfd_final_link(abfd, info) \
4720 BFD_SEND (abfd, _bfd_final_link, (abfd, info))
4721
4722#define bfd_free_cached_info(abfd) \
4723 BFD_SEND (abfd, _bfd_free_cached_info, (abfd))
4724
4725#define bfd_get_dynamic_symtab_upper_bound(abfd) \
4726 BFD_SEND (abfd, _bfd_get_dynamic_symtab_upper_bound, (abfd))
4727
4728#define bfd_print_private_bfd_data(abfd, file)\
4729 BFD_SEND (abfd, _bfd_print_private_bfd_data, (abfd, file))
4730
4731#define bfd_canonicalize_dynamic_symtab(abfd, asymbols) \
4732 BFD_SEND (abfd, _bfd_canonicalize_dynamic_symtab, (abfd, asymbols))
4733
c9727e01
AM
4734#define bfd_get_synthetic_symtab(abfd, count, syms, dyncount, dynsyms, ret) \
4735 BFD_SEND (abfd, _bfd_get_synthetic_symtab, (abfd, count, syms, \
4736 dyncount, dynsyms, ret))
4c45e5c9 4737
252b5132
RH
4738#define bfd_get_dynamic_reloc_upper_bound(abfd) \
4739 BFD_SEND (abfd, _bfd_get_dynamic_reloc_upper_bound, (abfd))
4740
4741#define bfd_canonicalize_dynamic_reloc(abfd, arels, asyms) \
4742 BFD_SEND (abfd, _bfd_canonicalize_dynamic_reloc, (abfd, arels, asyms))
4743
4744extern bfd_byte *bfd_get_relocated_section_contents
c58b9523
AM
4745 (bfd *, struct bfd_link_info *, struct bfd_link_order *, bfd_byte *,
4746 bfd_boolean, asymbol **);
252b5132 4747
c58b9523 4748bfd_boolean bfd_alt_mach_code (bfd *abfd, int alternative);
8c98ec7d 4749
e84d6fca
AM
4750struct bfd_preserve
4751{
c58b9523
AM
4752 void *marker;
4753 void *tdata;
e84d6fca
AM
4754 flagword flags;
4755 const struct bfd_arch_info *arch_info;
198beae2 4756 struct bfd_section *sections;
5daa8fe7 4757 struct bfd_section *section_last;
e84d6fca
AM
4758 unsigned int section_count;
4759 struct bfd_hash_table section_htab;
4760};
4761
c58b9523 4762bfd_boolean bfd_preserve_save (bfd *, struct bfd_preserve *);
e84d6fca 4763
c58b9523 4764void bfd_preserve_restore (bfd *, struct bfd_preserve *);
e84d6fca 4765
c58b9523 4766void bfd_preserve_finish (bfd *, struct bfd_preserve *);
e84d6fca 4767
24718e3b
L
4768bfd_vma bfd_emul_get_maxpagesize (const char *);
4769
4770void bfd_emul_set_maxpagesize (const char *, bfd_vma);
4771
4772bfd_vma bfd_emul_get_commonpagesize (const char *);
4773
4774void bfd_emul_set_commonpagesize (const char *, bfd_vma);
4775
e61463e1 4776/* Extracted from archive.c. */
c58b9523
AM
4777symindex bfd_get_next_mapent
4778 (bfd *abfd, symindex previous, carsym **sym);
252b5132 4779
c58b9523 4780bfd_boolean bfd_set_archive_head (bfd *output, bfd *new_head);
252b5132 4781
c58b9523 4782bfd *bfd_openr_next_archived_file (bfd *archive, bfd *previous);
252b5132 4783
e61463e1 4784/* Extracted from corefile.c. */
c58b9523 4785const char *bfd_core_file_failing_command (bfd *abfd);
252b5132 4786
c58b9523 4787int bfd_core_file_failing_signal (bfd *abfd);
252b5132 4788
c58b9523
AM
4789bfd_boolean core_file_matches_executable_p
4790 (bfd *core_bfd, bfd *exec_bfd);
252b5132 4791
9bf46c00
AM
4792bfd_boolean generic_core_file_matches_executable_p
4793 (bfd *core_bfd, bfd *exec_bfd);
4794
e61463e1 4795/* Extracted from targets.c. */
252b5132 4796#define BFD_SEND(bfd, message, arglist) \
c58b9523 4797 ((*((bfd)->xvec->message)) arglist)
252b5132
RH
4798
4799#ifdef DEBUG_BFD_SEND
4800#undef BFD_SEND
4801#define BFD_SEND(bfd, message, arglist) \
4802 (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
4803 ((*((bfd)->xvec->message)) arglist) : \
4804 (bfd_assert (__FILE__,__LINE__), NULL))
4805#endif
4806#define BFD_SEND_FMT(bfd, message, arglist) \
c58b9523 4807 (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist)
252b5132
RH
4808
4809#ifdef DEBUG_BFD_SEND
4810#undef BFD_SEND_FMT
4811#define BFD_SEND_FMT(bfd, message, arglist) \
4812 (((bfd) && (bfd)->xvec && (bfd)->xvec->message) ? \
8c603c85 4813 (((bfd)->xvec->message[(int) ((bfd)->format)]) arglist) : \
252b5132
RH
4814 (bfd_assert (__FILE__,__LINE__), NULL))
4815#endif
b5f79c76
NC
4816
4817enum bfd_flavour
4818{
252b5132
RH
4819 bfd_target_unknown_flavour,
4820 bfd_target_aout_flavour,
4821 bfd_target_coff_flavour,
4822 bfd_target_ecoff_flavour,
9bd09e22 4823 bfd_target_xcoff_flavour,
252b5132
RH
4824 bfd_target_elf_flavour,
4825 bfd_target_ieee_flavour,
4826 bfd_target_nlm_flavour,
4827 bfd_target_oasys_flavour,
4828 bfd_target_tekhex_flavour,
4829 bfd_target_srec_flavour,
4830 bfd_target_ihex_flavour,
4831 bfd_target_som_flavour,
4832 bfd_target_os9k_flavour,
4833 bfd_target_versados_flavour,
4834 bfd_target_msdos_flavour,
4835 bfd_target_ovax_flavour,
3c3bdf30 4836 bfd_target_evax_flavour,
3af9a47b
NC
4837 bfd_target_mmo_flavour,
4838 bfd_target_mach_o_flavour,
4839 bfd_target_pef_flavour,
4840 bfd_target_pef_xlib_flavour,
4841 bfd_target_sym_flavour
252b5132
RH
4842};
4843
4844enum bfd_endian { BFD_ENDIAN_BIG, BFD_ENDIAN_LITTLE, BFD_ENDIAN_UNKNOWN };
4845
52b219b5 4846/* Forward declaration. */
252b5132
RH
4847typedef struct bfd_link_info _bfd_link_info;
4848
4849typedef struct bfd_target
4850{
b5f79c76 4851 /* Identifies the kind of target, e.g., SunOS4, Ultrix, etc. */
252b5132 4852 char *name;
b5f79c76
NC
4853
4854 /* The "flavour" of a back end is a general indication about
4855 the contents of a file. */
252b5132 4856 enum bfd_flavour flavour;
b5f79c76
NC
4857
4858 /* The order of bytes within the data area of a file. */
252b5132 4859 enum bfd_endian byteorder;
b5f79c76
NC
4860
4861 /* The order of bytes within the header parts of a file. */
252b5132 4862 enum bfd_endian header_byteorder;
b5f79c76
NC
4863
4864 /* A mask of all the flags which an executable may have set -
4865 from the set <<BFD_NO_FLAGS>>, <<HAS_RELOC>>, ...<<D_PAGED>>. */
8c603c85 4866 flagword object_flags;
b5f79c76
NC
4867
4868 /* A mask of all the flags which a section may have set - from
4869 the set <<SEC_NO_FLAGS>>, <<SEC_ALLOC>>, ...<<SET_NEVER_LOAD>>. */
252b5132 4870 flagword section_flags;
b5f79c76
NC
4871
4872 /* The character normally found at the front of a symbol.
4873 (if any), perhaps `_'. */
252b5132 4874 char symbol_leading_char;
b5f79c76
NC
4875
4876 /* The pad character for file names within an archive header. */
8c603c85 4877 char ar_pad_char;
b5f79c76
NC
4878
4879 /* The maximum number of characters in an archive header. */
252b5132 4880 unsigned short ar_max_namelen;
b5f79c76
NC
4881
4882 /* Entries for byte swapping for data. These are different from the
a67a7b8b 4883 other entry points, since they don't take a BFD as the first argument.
b5f79c76 4884 Certain other handlers could do the same. */
8ce8c090
AM
4885 bfd_uint64_t (*bfd_getx64) (const void *);
4886 bfd_int64_t (*bfd_getx_signed_64) (const void *);
4887 void (*bfd_putx64) (bfd_uint64_t, void *);
edeb6e24
AM
4888 bfd_vma (*bfd_getx32) (const void *);
4889 bfd_signed_vma (*bfd_getx_signed_32) (const void *);
4890 void (*bfd_putx32) (bfd_vma, void *);
4891 bfd_vma (*bfd_getx16) (const void *);
4892 bfd_signed_vma (*bfd_getx_signed_16) (const void *);
4893 void (*bfd_putx16) (bfd_vma, void *);
b5f79c76
NC
4894
4895 /* Byte swapping for the headers. */
8ce8c090
AM
4896 bfd_uint64_t (*bfd_h_getx64) (const void *);
4897 bfd_int64_t (*bfd_h_getx_signed_64) (const void *);
4898 void (*bfd_h_putx64) (bfd_uint64_t, void *);
edeb6e24
AM
4899 bfd_vma (*bfd_h_getx32) (const void *);
4900 bfd_signed_vma (*bfd_h_getx_signed_32) (const void *);
4901 void (*bfd_h_putx32) (bfd_vma, void *);
4902 bfd_vma (*bfd_h_getx16) (const void *);
4903 bfd_signed_vma (*bfd_h_getx_signed_16) (const void *);
4904 void (*bfd_h_putx16) (bfd_vma, void *);
b5f79c76
NC
4905
4906 /* Format dependent routines: these are vectors of entry points
4907 within the target vector structure, one for each format to check. */
4908
4909 /* Check the format of a file being read. Return a <<bfd_target *>> or zero. */
c58b9523 4910 const struct bfd_target *(*_bfd_check_format[bfd_type_end]) (bfd *);
b5f79c76
NC
4911
4912 /* Set the format of a file being written. */
c58b9523 4913 bfd_boolean (*_bfd_set_format[bfd_type_end]) (bfd *);
b5f79c76
NC
4914
4915 /* Write cached information into a file being written, at <<bfd_close>>. */
c58b9523 4916 bfd_boolean (*_bfd_write_contents[bfd_type_end]) (bfd *);
252b5132 4917
b5f79c76 4918
52b219b5 4919 /* Generic entry points. */
e43d48cc 4920#define BFD_JUMP_TABLE_GENERIC(NAME) \
c58b9523
AM
4921 NAME##_close_and_cleanup, \
4922 NAME##_bfd_free_cached_info, \
4923 NAME##_new_section_hook, \
4924 NAME##_get_section_contents, \
4925 NAME##_get_section_contents_in_window
252b5132 4926
52b219b5 4927 /* Called when the BFD is being closed to do any necessary cleanup. */
c58b9523 4928 bfd_boolean (*_close_and_cleanup) (bfd *);
52b219b5 4929 /* Ask the BFD to free all cached information. */
c58b9523 4930 bfd_boolean (*_bfd_free_cached_info) (bfd *);
52b219b5 4931 /* Called when a new section is created. */
c58b9523 4932 bfd_boolean (*_new_section_hook) (bfd *, sec_ptr);
52b219b5 4933 /* Read the contents of a section. */
b34976b6 4934 bfd_boolean (*_bfd_get_section_contents)
c58b9523 4935 (bfd *, sec_ptr, void *, file_ptr, bfd_size_type);
b34976b6 4936 bfd_boolean (*_bfd_get_section_contents_in_window)
c58b9523 4937 (bfd *, sec_ptr, bfd_window *, file_ptr, bfd_size_type);
252b5132 4938
52b219b5 4939 /* Entry points to copy private data. */
e43d48cc 4940#define BFD_JUMP_TABLE_COPY(NAME) \
c58b9523
AM
4941 NAME##_bfd_copy_private_bfd_data, \
4942 NAME##_bfd_merge_private_bfd_data, \
ccd2ec6a 4943 _bfd_generic_init_private_section_data, \
c58b9523
AM
4944 NAME##_bfd_copy_private_section_data, \
4945 NAME##_bfd_copy_private_symbol_data, \
80fccad2 4946 NAME##_bfd_copy_private_header_data, \
c58b9523
AM
4947 NAME##_bfd_set_private_flags, \
4948 NAME##_bfd_print_private_bfd_data
4949
52b219b5 4950 /* Called to copy BFD general private data from one object file
252b5132 4951 to another. */
c58b9523 4952 bfd_boolean (*_bfd_copy_private_bfd_data) (bfd *, bfd *);
52b219b5 4953 /* Called to merge BFD general private data from one object file
252b5132 4954 to a common output file when linking. */
c58b9523 4955 bfd_boolean (*_bfd_merge_private_bfd_data) (bfd *, bfd *);
ccd2ec6a
L
4956 /* Called to initialize BFD private section data from one object file
4957 to another. */
4958#define bfd_init_private_section_data(ibfd, isec, obfd, osec, link_info) \
4959 BFD_SEND (obfd, _bfd_init_private_section_data, (ibfd, isec, obfd, osec, link_info))
4960 bfd_boolean (*_bfd_init_private_section_data)
4961 (bfd *, sec_ptr, bfd *, sec_ptr, struct bfd_link_info *);
52b219b5 4962 /* Called to copy BFD private section data from one object file
252b5132 4963 to another. */
b34976b6 4964 bfd_boolean (*_bfd_copy_private_section_data)
c58b9523 4965 (bfd *, sec_ptr, bfd *, sec_ptr);
8c603c85 4966 /* Called to copy BFD private symbol data from one symbol
252b5132 4967 to another. */
b34976b6 4968 bfd_boolean (*_bfd_copy_private_symbol_data)
c58b9523 4969 (bfd *, asymbol *, bfd *, asymbol *);
80fccad2
BW
4970 /* Called to copy BFD private header data from one object file
4971 to another. */
4972 bfd_boolean (*_bfd_copy_private_header_data)
4973 (bfd *, bfd *);
b5f79c76 4974 /* Called to set private backend flags. */
c58b9523 4975 bfd_boolean (*_bfd_set_private_flags) (bfd *, flagword);
252b5132 4976
b5f79c76 4977 /* Called to print private BFD data. */
c58b9523 4978 bfd_boolean (*_bfd_print_private_bfd_data) (bfd *, void *);
252b5132 4979
52b219b5 4980 /* Core file entry points. */
e43d48cc 4981#define BFD_JUMP_TABLE_CORE(NAME) \
c58b9523
AM
4982 NAME##_core_file_failing_command, \
4983 NAME##_core_file_failing_signal, \
4984 NAME##_core_file_matches_executable_p
4985
4986 char * (*_core_file_failing_command) (bfd *);
4987 int (*_core_file_failing_signal) (bfd *);
4988 bfd_boolean (*_core_file_matches_executable_p) (bfd *, bfd *);
252b5132 4989
52b219b5 4990 /* Archive entry points. */
e43d48cc 4991#define BFD_JUMP_TABLE_ARCHIVE(NAME) \
c58b9523
AM
4992 NAME##_slurp_armap, \
4993 NAME##_slurp_extended_name_table, \
4994 NAME##_construct_extended_name_table, \
4995 NAME##_truncate_arname, \
4996 NAME##_write_armap, \
4997 NAME##_read_ar_hdr, \
4998 NAME##_openr_next_archived_file, \
4999 NAME##_get_elt_at_index, \
5000 NAME##_generic_stat_arch_elt, \
5001 NAME##_update_armap_timestamp
5002
5003 bfd_boolean (*_bfd_slurp_armap) (bfd *);
5004 bfd_boolean (*_bfd_slurp_extended_name_table) (bfd *);
b34976b6 5005 bfd_boolean (*_bfd_construct_extended_name_table)
c58b9523
AM
5006 (bfd *, char **, bfd_size_type *, const char **);
5007 void (*_bfd_truncate_arname) (bfd *, const char *, char *);
b34976b6 5008 bfd_boolean (*write_armap)
c58b9523
AM
5009 (bfd *, unsigned int, struct orl *, unsigned int, int);
5010 void * (*_bfd_read_ar_hdr_fn) (bfd *);
5011 bfd * (*openr_next_archived_file) (bfd *, bfd *);
5012#define bfd_get_elt_at_index(b,i) BFD_SEND (b, _bfd_get_elt_at_index, (b,i))
5013 bfd * (*_bfd_get_elt_at_index) (bfd *, symindex);
5014 int (*_bfd_stat_arch_elt) (bfd *, struct stat *);
5015 bfd_boolean (*_bfd_update_armap_timestamp) (bfd *);
77fb9c28 5016
52b219b5 5017 /* Entry points used for symbols. */
e43d48cc 5018#define BFD_JUMP_TABLE_SYMBOLS(NAME) \
c58b9523 5019 NAME##_get_symtab_upper_bound, \
6cee3f79 5020 NAME##_canonicalize_symtab, \
c58b9523
AM
5021 NAME##_make_empty_symbol, \
5022 NAME##_print_symbol, \
5023 NAME##_get_symbol_info, \
5024 NAME##_bfd_is_local_label_name, \
3c9458e9 5025 NAME##_bfd_is_target_special_symbol, \
c58b9523
AM
5026 NAME##_get_lineno, \
5027 NAME##_find_nearest_line, \
5420f73d 5028 _bfd_generic_find_line, \
4ab527b0 5029 NAME##_find_inliner_info, \
c58b9523
AM
5030 NAME##_bfd_make_debug_symbol, \
5031 NAME##_read_minisymbols, \
5032 NAME##_minisymbol_to_symbol
5033
5034 long (*_bfd_get_symtab_upper_bound) (bfd *);
5035 long (*_bfd_canonicalize_symtab)
fc0a2244
AC
5036 (bfd *, struct bfd_symbol **);
5037 struct bfd_symbol *
c58b9523 5038 (*_bfd_make_empty_symbol) (bfd *);
b34976b6 5039 void (*_bfd_print_symbol)
fc0a2244 5040 (bfd *, void *, struct bfd_symbol *, bfd_print_symbol_type);
c58b9523 5041#define bfd_print_symbol(b,p,s,e) BFD_SEND (b, _bfd_print_symbol, (b,p,s,e))
b34976b6 5042 void (*_bfd_get_symbol_info)
fc0a2244 5043 (bfd *, struct bfd_symbol *, symbol_info *);
c58b9523
AM
5044#define bfd_get_symbol_info(b,p,e) BFD_SEND (b, _bfd_get_symbol_info, (b,p,e))
5045 bfd_boolean (*_bfd_is_local_label_name) (bfd *, const char *);
3c9458e9 5046 bfd_boolean (*_bfd_is_target_special_symbol) (bfd *, asymbol *);
fc0a2244 5047 alent * (*_get_lineno) (bfd *, struct bfd_symbol *);
b34976b6 5048 bfd_boolean (*_bfd_find_nearest_line)
fc0a2244 5049 (bfd *, struct bfd_section *, struct bfd_symbol **, bfd_vma,
c58b9523 5050 const char **, const char **, unsigned int *);
5420f73d
L
5051 bfd_boolean (*_bfd_find_line)
5052 (bfd *, struct bfd_symbol **, struct bfd_symbol *,
5053 const char **, unsigned int *);
4ab527b0
FF
5054 bfd_boolean (*_bfd_find_inliner_info)
5055 (bfd *, const char **, const char **, unsigned int *);
52b219b5 5056 /* Back-door to allow format-aware applications to create debug symbols
252b5132
RH
5057 while using BFD for everything else. Currently used by the assembler
5058 when creating COFF files. */
b34976b6 5059 asymbol * (*_bfd_make_debug_symbol)
c58b9523 5060 (bfd *, void *, unsigned long size);
252b5132
RH
5061#define bfd_read_minisymbols(b, d, m, s) \
5062 BFD_SEND (b, _read_minisymbols, (b, d, m, s))
b34976b6 5063 long (*_read_minisymbols)
c58b9523 5064 (bfd *, bfd_boolean, void **, unsigned int *);
252b5132
RH
5065#define bfd_minisymbol_to_symbol(b, d, m, f) \
5066 BFD_SEND (b, _minisymbol_to_symbol, (b, d, m, f))
b34976b6 5067 asymbol * (*_minisymbol_to_symbol)
c58b9523 5068 (bfd *, bfd_boolean, const void *, asymbol *);
252b5132 5069
52b219b5 5070 /* Routines for relocs. */
e43d48cc 5071#define BFD_JUMP_TABLE_RELOCS(NAME) \
c58b9523
AM
5072 NAME##_get_reloc_upper_bound, \
5073 NAME##_canonicalize_reloc, \
5074 NAME##_bfd_reloc_type_lookup
5075
5076 long (*_get_reloc_upper_bound) (bfd *, sec_ptr);
b34976b6 5077 long (*_bfd_canonicalize_reloc)
fc0a2244 5078 (bfd *, sec_ptr, arelent **, struct bfd_symbol **);
52b219b5 5079 /* See documentation on reloc types. */
252b5132 5080 reloc_howto_type *
c58b9523 5081 (*reloc_type_lookup) (bfd *, bfd_reloc_code_real_type);
252b5132 5082
52b219b5 5083 /* Routines used when writing an object file. */
e43d48cc 5084#define BFD_JUMP_TABLE_WRITE(NAME) \
c58b9523
AM
5085 NAME##_set_arch_mach, \
5086 NAME##_set_section_contents
5087
b34976b6 5088 bfd_boolean (*_bfd_set_arch_mach)
c58b9523 5089 (bfd *, enum bfd_architecture, unsigned long);
b34976b6 5090 bfd_boolean (*_bfd_set_section_contents)
0f867abe 5091 (bfd *, sec_ptr, const void *, file_ptr, bfd_size_type);
252b5132 5092
52b219b5 5093 /* Routines used by the linker. */
e43d48cc 5094#define BFD_JUMP_TABLE_LINK(NAME) \
c58b9523
AM
5095 NAME##_sizeof_headers, \
5096 NAME##_bfd_get_relocated_section_contents, \
5097 NAME##_bfd_relax_section, \
5098 NAME##_bfd_link_hash_table_create, \
5099 NAME##_bfd_link_hash_table_free, \
5100 NAME##_bfd_link_add_symbols, \
5101 NAME##_bfd_link_just_syms, \
5102 NAME##_bfd_final_link, \
5103 NAME##_bfd_link_split_section, \
5104 NAME##_bfd_gc_sections, \
5105 NAME##_bfd_merge_sections, \
72adc230 5106 NAME##_bfd_is_group_section, \
082b7297
L
5107 NAME##_bfd_discard_group, \
5108 NAME##_section_already_linked \
c58b9523 5109
a6b96beb 5110 int (*_bfd_sizeof_headers) (bfd *, struct bfd_link_info *);
b34976b6 5111 bfd_byte * (*_bfd_get_relocated_section_contents)
c58b9523 5112 (bfd *, struct bfd_link_info *, struct bfd_link_order *,
fc0a2244 5113 bfd_byte *, bfd_boolean, struct bfd_symbol **);
252b5132 5114
b34976b6 5115 bfd_boolean (*_bfd_relax_section)
198beae2 5116 (bfd *, struct bfd_section *, struct bfd_link_info *, bfd_boolean *);
252b5132 5117
52b219b5 5118 /* Create a hash table for the linker. Different backends store
252b5132 5119 different information in this table. */
b34976b6 5120 struct bfd_link_hash_table *
c58b9523 5121 (*_bfd_link_hash_table_create) (bfd *);
252b5132 5122
e2d34d7d 5123 /* Release the memory associated with the linker hash table. */
c58b9523 5124 void (*_bfd_link_hash_table_free) (struct bfd_link_hash_table *);
e2d34d7d 5125
52b219b5 5126 /* Add symbols from this object file into the hash table. */
c58b9523 5127 bfd_boolean (*_bfd_link_add_symbols) (bfd *, struct bfd_link_info *);
252b5132 5128
2d653fc7 5129 /* Indicate that we are only retrieving symbol values from this section. */
c58b9523 5130 void (*_bfd_link_just_syms) (asection *, struct bfd_link_info *);
2d653fc7 5131
52b219b5 5132 /* Do a link based on the link_order structures attached to each
252b5132 5133 section of the BFD. */
c58b9523 5134 bfd_boolean (*_bfd_final_link) (bfd *, struct bfd_link_info *);
252b5132 5135
52b219b5 5136 /* Should this section be split up into smaller pieces during linking. */
198beae2 5137 bfd_boolean (*_bfd_link_split_section) (bfd *, struct bfd_section *);
252b5132 5138
52b219b5 5139 /* Remove sections that are not referenced from the output. */
c58b9523 5140 bfd_boolean (*_bfd_gc_sections) (bfd *, struct bfd_link_info *);
252b5132 5141
8550eb6e 5142 /* Attempt to merge SEC_MERGE sections. */
c58b9523 5143 bfd_boolean (*_bfd_merge_sections) (bfd *, struct bfd_link_info *);
8550eb6e 5144
72adc230
AM
5145 /* Is this section a member of a group? */
5146 bfd_boolean (*_bfd_is_group_section) (bfd *, const struct bfd_section *);
5147
e61463e1 5148 /* Discard members of a group. */
198beae2 5149 bfd_boolean (*_bfd_discard_group) (bfd *, struct bfd_section *);
e61463e1 5150
082b7297
L
5151 /* Check if SEC has been already linked during a reloceatable or
5152 final link. */
5153 void (*_section_already_linked) (bfd *, struct bfd_section *);
5154
52b219b5 5155 /* Routines to handle dynamic symbols and relocs. */
e43d48cc 5156#define BFD_JUMP_TABLE_DYNAMIC(NAME) \
c58b9523
AM
5157 NAME##_get_dynamic_symtab_upper_bound, \
5158 NAME##_canonicalize_dynamic_symtab, \
4c45e5c9 5159 NAME##_get_synthetic_symtab, \
c58b9523
AM
5160 NAME##_get_dynamic_reloc_upper_bound, \
5161 NAME##_canonicalize_dynamic_reloc
5162
b5f79c76 5163 /* Get the amount of memory required to hold the dynamic symbols. */
c58b9523 5164 long (*_bfd_get_dynamic_symtab_upper_bound) (bfd *);
52b219b5 5165 /* Read in the dynamic symbols. */
b34976b6 5166 long (*_bfd_canonicalize_dynamic_symtab)
fc0a2244 5167 (bfd *, struct bfd_symbol **);
4c45e5c9
JJ
5168 /* Create synthetized symbols. */
5169 long (*_bfd_get_synthetic_symtab)
c9727e01
AM
5170 (bfd *, long, struct bfd_symbol **, long, struct bfd_symbol **,
5171 struct bfd_symbol **);
52b219b5 5172 /* Get the amount of memory required to hold the dynamic relocs. */
c58b9523 5173 long (*_bfd_get_dynamic_reloc_upper_bound) (bfd *);
52b219b5 5174 /* Read in the dynamic relocs. */
b34976b6 5175 long (*_bfd_canonicalize_dynamic_reloc)
fc0a2244 5176 (bfd *, arelent **, struct bfd_symbol **);
b23b8e6e 5177
b5f79c76
NC
5178 /* Opposite endian version of this target. */
5179 const struct bfd_target * alternative_target;
8c603c85 5180
b5f79c76
NC
5181 /* Data for use by back-end routines, which isn't
5182 generic enough to belong in this structure. */
9c5bfbb7 5183 const void *backend_data;
8c603c85 5184
252b5132 5185} bfd_target;
b5f79c76 5186
c58b9523 5187bfd_boolean bfd_set_default_target (const char *name);
252b5132 5188
c58b9523 5189const bfd_target *bfd_find_target (const char *target_name, bfd *abfd);
252b5132 5190
c58b9523 5191const char ** bfd_target_list (void);
252b5132 5192
c58b9523
AM
5193const bfd_target *bfd_search_for_target
5194 (int (*search_func) (const bfd_target *, void *),
5195 void *);
c3c89269 5196
e61463e1 5197/* Extracted from format.c. */
c58b9523 5198bfd_boolean bfd_check_format (bfd *abfd, bfd_format format);
252b5132 5199
c58b9523
AM
5200bfd_boolean bfd_check_format_matches
5201 (bfd *abfd, bfd_format format, char ***matching);
252b5132 5202
c58b9523 5203bfd_boolean bfd_set_format (bfd *abfd, bfd_format format);
252b5132 5204
c58b9523 5205const char *bfd_format_string (bfd_format format);
252b5132 5206
af39267e 5207/* Extracted from linker.c. */
c58b9523 5208bfd_boolean bfd_link_split_section (bfd *abfd, asection *sec);
af39267e
DJ
5209
5210#define bfd_link_split_section(abfd, sec) \
5211 BFD_SEND (abfd, _bfd_link_split_section, (abfd, sec))
5212
082b7297
L
5213void bfd_section_already_linked (bfd *abfd, asection *sec);
5214
5215#define bfd_section_already_linked(abfd, sec) \
5216 BFD_SEND (abfd, _section_already_linked, (abfd, sec))
5217
af39267e 5218/* Extracted from simple.c. */
c58b9523
AM
5219bfd_byte *bfd_simple_get_relocated_section_contents
5220 (bfd *abfd, asection *sec, bfd_byte *outbuf, asymbol **symbol_table);
af39267e 5221
252b5132
RH
5222#ifdef __cplusplus
5223}
5224#endif
5225#endif