1999-05-03 09:29:11 +02:00
|
|
|
|
/* bfdlink.h -- header file for BFD link routines
|
2015-01-01 15:15:26 +01:00
|
|
|
|
Copyright (C) 1993-2015 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support.
|
|
|
|
|
|
2002-06-07 16:56:01 +02:00
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-06-07 16:56:01 +02:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-06 13:13:56 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2002-06-07 16:56:01 +02:00
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-06-07 16:56:01 +02:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-06-07 16:56:01 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-06 13:13:56 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifndef BFDLINK_H
|
|
|
|
|
#define BFDLINK_H
|
|
|
|
|
|
|
|
|
|
/* Which symbols to strip during a link. */
|
|
|
|
|
enum bfd_link_strip
|
|
|
|
|
{
|
|
|
|
|
strip_none, /* Don't strip any symbols. */
|
|
|
|
|
strip_debugger, /* Strip debugging symbols. */
|
|
|
|
|
strip_some, /* keep_hash is the list of symbols to keep. */
|
|
|
|
|
strip_all /* Strip all symbols. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Which local symbols to discard during a link. This is irrelevant
|
|
|
|
|
if strip_all is used. */
|
|
|
|
|
enum bfd_link_discard
|
|
|
|
|
{
|
2001-04-13 02:34:36 +02:00
|
|
|
|
discard_sec_merge, /* Discard local temporary symbols in SEC_MERGE
|
|
|
|
|
sections. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
discard_none, /* Don't discard any locals. */
|
|
|
|
|
discard_l, /* Discard local temporary symbols. */
|
|
|
|
|
discard_all /* Discard all locals. */
|
|
|
|
|
};
|
2001-08-24 18:36:04 +02:00
|
|
|
|
|
|
|
|
|
/* Describes the type of hash table entry structure being used.
|
|
|
|
|
Different hash table structure have different fields and so
|
|
|
|
|
support different linking features. */
|
|
|
|
|
enum bfd_link_hash_table_type
|
|
|
|
|
{
|
|
|
|
|
bfd_link_generic_hash_table,
|
|
|
|
|
bfd_link_elf_hash_table
|
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* These are the possible types of an entry in the BFD link hash
|
|
|
|
|
table. */
|
|
|
|
|
|
|
|
|
|
enum bfd_link_hash_type
|
|
|
|
|
{
|
|
|
|
|
bfd_link_hash_new, /* Symbol is new. */
|
|
|
|
|
bfd_link_hash_undefined, /* Symbol seen before, but undefined. */
|
|
|
|
|
bfd_link_hash_undefweak, /* Symbol is weak and undefined. */
|
|
|
|
|
bfd_link_hash_defined, /* Symbol is defined. */
|
|
|
|
|
bfd_link_hash_defweak, /* Symbol is weak and defined. */
|
|
|
|
|
bfd_link_hash_common, /* Symbol is common. */
|
|
|
|
|
bfd_link_hash_indirect, /* Symbol is an indirect link. */
|
|
|
|
|
bfd_link_hash_warning /* Like indirect, but warn if referenced. */
|
|
|
|
|
};
|
|
|
|
|
|
2009-10-14 07:54:29 +02:00
|
|
|
|
enum bfd_link_common_skip_ar_symbols
|
2002-07-31 14:50:09 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_link_common_skip_none,
|
|
|
|
|
bfd_link_common_skip_text,
|
|
|
|
|
bfd_link_common_skip_data,
|
|
|
|
|
bfd_link_common_skip_all
|
|
|
|
|
};
|
|
|
|
|
|
2009-09-09 23:38:59 +02:00
|
|
|
|
struct bfd_link_hash_common_entry
|
|
|
|
|
{
|
|
|
|
|
unsigned int alignment_power; /* Alignment. */
|
|
|
|
|
asection *section; /* Symbol section. */
|
|
|
|
|
};
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* The linking routines use a hash table which uses this structure for
|
|
|
|
|
its elements. */
|
|
|
|
|
|
|
|
|
|
struct bfd_link_hash_entry
|
|
|
|
|
{
|
|
|
|
|
/* Base hash table entry structure. */
|
|
|
|
|
struct bfd_hash_entry root;
|
2003-12-03 00:00:00 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Type of this entry. */
|
2011-04-24 12:02:14 +02:00
|
|
|
|
ENUM_BITFIELD (bfd_link_hash_type) type : 8;
|
|
|
|
|
|
2014-12-23 09:37:23 +01:00
|
|
|
|
/* Symbol is referenced in a normal object file, as distict from a LTO
|
|
|
|
|
IR object file. */
|
2011-04-24 12:02:14 +02:00
|
|
|
|
unsigned int non_ir_ref : 1;
|
2014-12-23 09:37:23 +01:00
|
|
|
|
|
|
|
|
|
/* Symbol is a built-in define. These will be overridden by PROVIDE
|
|
|
|
|
in a linker script. */
|
|
|
|
|
unsigned int linker_def : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* A union of information depending upon the type. */
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
/* Nothing is kept for bfd_hash_new. */
|
|
|
|
|
/* bfd_link_hash_undefined, bfd_link_hash_undefweak. */
|
|
|
|
|
struct
|
|
|
|
|
{
|
2004-09-17 09:14:33 +02:00
|
|
|
|
/* Undefined and common symbols are kept in a linked list through
|
|
|
|
|
this field. This field is present in all of the union element
|
|
|
|
|
so that we don't need to remove entries from the list when we
|
|
|
|
|
change their type. Removing entries would either require the
|
|
|
|
|
list to be doubly linked, which would waste more memory, or
|
|
|
|
|
require a traversal. When an undefined or common symbol is
|
|
|
|
|
created, it should be added to this list, the head of which is in
|
|
|
|
|
the link hash table itself. As symbols are defined, they need
|
|
|
|
|
not be removed from the list; anything which reads the list must
|
|
|
|
|
doublecheck the symbol type.
|
|
|
|
|
|
|
|
|
|
Weak symbols are not kept on this list.
|
|
|
|
|
|
|
|
|
|
Defined and defweak symbols use this field as a reference marker.
|
|
|
|
|
If the field is not NULL, or this structure is the tail of the
|
|
|
|
|
undefined symbol list, the symbol has been referenced. If the
|
|
|
|
|
symbol is undefined and becomes defined, this field will
|
|
|
|
|
automatically be non-NULL since the symbol will have been on the
|
|
|
|
|
undefined symbol list. */
|
|
|
|
|
struct bfd_link_hash_entry *next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd *abfd; /* BFD symbol was found in. */
|
|
|
|
|
} undef;
|
|
|
|
|
/* bfd_link_hash_defined, bfd_link_hash_defweak. */
|
|
|
|
|
struct
|
|
|
|
|
{
|
2004-09-17 09:14:33 +02:00
|
|
|
|
struct bfd_link_hash_entry *next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
asection *section; /* Symbol section. */
|
2004-09-17 09:14:33 +02:00
|
|
|
|
bfd_vma value; /* Symbol value. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
} def;
|
|
|
|
|
/* bfd_link_hash_indirect, bfd_link_hash_warning. */
|
|
|
|
|
struct
|
|
|
|
|
{
|
2004-09-17 09:14:33 +02:00
|
|
|
|
struct bfd_link_hash_entry *next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct bfd_link_hash_entry *link; /* Real symbol. */
|
|
|
|
|
const char *warning; /* Warning (bfd_link_hash_warning only). */
|
|
|
|
|
} i;
|
|
|
|
|
/* bfd_link_hash_common. */
|
|
|
|
|
struct
|
|
|
|
|
{
|
2004-09-17 09:14:33 +02:00
|
|
|
|
struct bfd_link_hash_entry *next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* The linker needs to know three things about common
|
2002-11-30 09:39:46 +01:00
|
|
|
|
symbols: the size, the alignment, and the section in
|
|
|
|
|
which the symbol should be placed. We store the size
|
|
|
|
|
here, and we allocate a small structure to hold the
|
|
|
|
|
section and the alignment. The alignment is stored as a
|
|
|
|
|
power of two. We don't store all the information
|
|
|
|
|
directly because we don't want to increase the size of
|
|
|
|
|
the union; this structure is a major space user in the
|
|
|
|
|
linker. */
|
2009-09-09 23:38:59 +02:00
|
|
|
|
struct bfd_link_hash_common_entry *p;
|
2004-09-17 09:14:33 +02:00
|
|
|
|
bfd_size_type size; /* Common symbol size. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
} c;
|
|
|
|
|
} u;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* This is the link hash table. It is a derived class of
|
|
|
|
|
bfd_hash_table. */
|
|
|
|
|
|
|
|
|
|
struct bfd_link_hash_table
|
|
|
|
|
{
|
|
|
|
|
/* The hash table itself. */
|
|
|
|
|
struct bfd_hash_table table;
|
|
|
|
|
/* A linked list of undefined and common symbols, linked through the
|
|
|
|
|
next field in the bfd_link_hash_entry structure. */
|
|
|
|
|
struct bfd_link_hash_entry *undefs;
|
|
|
|
|
/* Entries are added to the tail of the undefs list. */
|
|
|
|
|
struct bfd_link_hash_entry *undefs_tail;
|
Free linker hash table from bfd_close.
Also tidies numerous error exit paths in various link_hash_table_create
functions that failed to free memory.
include/
* bfdlink.h (struct bfd_link_hash_table): Add hash_table_free field.
bfd/
* archive.c: Include bfdlink.h.
(_bfd_archive_close_and_cleanup): Call linker hash_table_free.
* bfd.c (struct bfd): Add is_linker_output field.
* elf-bfd.h (_bfd_elf_link_hash_table_free): Update prototype.
* linker.c (_bfd_link_hash_table_init): Set up hash_table_free,
link.hash and is_linker_output.
(_bfd_generic_link_hash_table_free): Replace bfd_link_hash_table*
param with bfd*. Assert is_linker_output and link.hash, and
clear them before exit.
* elf-m10300.c (elf32_mn10300_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*. Hack is_linker_output
and link.hash so we can free two linker hash tables.
(elf32_mn10300_link_hash_table_create): Create static_hash_table
first. Clean up on errors. Set hash_table_free pointer.
* elf32-arm.c (elf32_arm_link_hash_table_free): Replace
bfd_link_hash_table* param with bfd*.
(elf32_arm_link_hash_table_create): Clean up on errors. Set
hash_table_free pointer.
* elf32-avr.c, * elf32-hppa.c, * elf32-i386.c, * elf32-m68hc1x.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nios2.c, * elf32-xgate.c,
* elf64-ia64-vms.c, * elf64-ppc.c, * elf64-x86-64.c, * elflink.c,
* elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-sparc.c,
* xcofflink.c: Similarly.
* simple.c (bfd_simple_get_relocated_section_contents): Save and
clear link.next before creating linker hash table. Clean up on
errors, and restore link.next on exit.
* elf32-m68hc1x.h (m68hc11_elf_bfd_link_hash_table_free): Delete.
* elf32-xgate.h (xgate_elf_bfd_link_hash_table_free): Delete.
* elfxx-sparc.h (_bfd_sparc_elf_link_hash_table_free): Delete.
* libcoff-in.h (_bfd_xcoff_bfd_link_hash_table_free): Delete.
* hash.c (bfd_hash_table_init_n): Free table on error.
* libbfd-in.h (_bfd_generic_link_hash_table_free): Update proto.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* libcoff.h: Regenerate.
2014-06-13 11:41:39 +02:00
|
|
|
|
/* Function to free the hash table on closing BFD. */
|
|
|
|
|
void (*hash_table_free) (bfd *);
|
2003-05-21 11:09:37 +02:00
|
|
|
|
/* The type of the link hash table. */
|
2001-08-24 18:36:04 +02:00
|
|
|
|
enum bfd_link_hash_table_type type;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Look up an entry in a link hash table. If FOLLOW is TRUE, this
|
1999-05-03 09:29:11 +02:00
|
|
|
|
follows bfd_link_hash_indirect and bfd_link_hash_warning links to
|
|
|
|
|
the real symbol. */
|
|
|
|
|
extern struct bfd_link_hash_entry *bfd_link_hash_lookup
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_hash_table *, const char *, bfd_boolean create,
|
|
|
|
|
bfd_boolean copy, bfd_boolean follow);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Look up an entry in the main linker hash table if the symbol might
|
|
|
|
|
be wrapped. This should only be used for references to an
|
|
|
|
|
undefined symbol, not for definitions of a symbol. */
|
|
|
|
|
|
|
|
|
|
extern struct bfd_link_hash_entry *bfd_wrapped_link_hash_lookup
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(bfd *, struct bfd_link_info *, const char *, bfd_boolean,
|
|
|
|
|
bfd_boolean, bfd_boolean);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2014-06-10 14:20:21 +02:00
|
|
|
|
/* If H is a wrapped symbol, ie. the symbol name starts with "__wrap_"
|
|
|
|
|
and the remainder is found in wrap_hash, return the real symbol. */
|
|
|
|
|
|
|
|
|
|
extern struct bfd_link_hash_entry *unwrap_hash_lookup
|
|
|
|
|
(struct bfd_link_info *, bfd *, struct bfd_link_hash_entry *);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Traverse a link hash table. */
|
|
|
|
|
extern void bfd_link_hash_traverse
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_hash_table *,
|
|
|
|
|
bfd_boolean (*) (struct bfd_link_hash_entry *, void *),
|
|
|
|
|
void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Add an entry to the undefs list. */
|
|
|
|
|
extern void bfd_link_add_undef
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_hash_table *, struct bfd_link_hash_entry *);
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2005-02-01 02:11:27 +01:00
|
|
|
|
/* Remove symbols from the undefs list that don't belong there. */
|
|
|
|
|
extern void bfd_link_repair_undef_list
|
|
|
|
|
(struct bfd_link_hash_table *table);
|
|
|
|
|
|
2008-08-17 05:12:50 +02:00
|
|
|
|
/* Read symbols and cache symbol pointer array in outsymbols. */
|
|
|
|
|
extern bfd_boolean bfd_generic_link_read_symbols (bfd *);
|
|
|
|
|
|
2002-07-01 10:04:47 +02:00
|
|
|
|
struct bfd_sym_chain
|
|
|
|
|
{
|
|
|
|
|
struct bfd_sym_chain *next;
|
|
|
|
|
const char *name;
|
|
|
|
|
};
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-08-20 10:37:19 +02:00
|
|
|
|
/* How to handle unresolved symbols.
|
|
|
|
|
There are four possibilities which are enumerated below: */
|
|
|
|
|
enum report_method
|
|
|
|
|
{
|
|
|
|
|
/* This is the initial value when then link_info structure is created.
|
|
|
|
|
It allows the various stages of the linker to determine whether they
|
|
|
|
|
allowed to set the value. */
|
|
|
|
|
RM_NOT_YET_SET = 0,
|
|
|
|
|
RM_IGNORE,
|
|
|
|
|
RM_GENERATE_WARNING,
|
|
|
|
|
RM_GENERATE_ERROR
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-11 17:03:09 +02:00
|
|
|
|
typedef enum {with_flags, without_flags} flag_type;
|
|
|
|
|
|
|
|
|
|
/* A section flag list. */
|
|
|
|
|
struct flag_info_list
|
|
|
|
|
{
|
2012-04-09 18:27:18 +02:00
|
|
|
|
flag_type with;
|
2011-07-11 17:03:09 +02:00
|
|
|
|
const char *name;
|
|
|
|
|
bfd_boolean valid;
|
|
|
|
|
struct flag_info_list *next;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Section flag info. */
|
|
|
|
|
struct flag_info
|
|
|
|
|
{
|
|
|
|
|
flagword only_with_flags;
|
|
|
|
|
flagword not_with_flags;
|
|
|
|
|
struct flag_info_list *flag_list;
|
|
|
|
|
bfd_boolean flags_initialized;
|
|
|
|
|
};
|
|
|
|
|
|
2006-09-07 19:16:34 +02:00
|
|
|
|
struct bfd_elf_dynamic_list;
|
2011-09-16 03:15:20 +02:00
|
|
|
|
struct bfd_elf_version_tree;
|
2006-09-07 19:16:34 +02:00
|
|
|
|
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
|
/* Types of output. */
|
|
|
|
|
|
|
|
|
|
enum output_type
|
|
|
|
|
{
|
2015-08-19 05:02:54 +02:00
|
|
|
|
type_pde,
|
|
|
|
|
type_pie,
|
2015-08-23 13:24:45 +02:00
|
|
|
|
type_relocatable,
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
|
type_dll,
|
|
|
|
|
};
|
|
|
|
|
|
2015-08-19 05:02:54 +02:00
|
|
|
|
#define bfd_link_pde(info) ((info)->type == type_pde)
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
|
#define bfd_link_dll(info) ((info)->type == type_dll)
|
|
|
|
|
#define bfd_link_relocatable(info) ((info)->type == type_relocatable)
|
2015-08-19 05:02:54 +02:00
|
|
|
|
#define bfd_link_pie(info) ((info)->type == type_pie)
|
|
|
|
|
#define bfd_link_executable(info) (bfd_link_pde (info) || bfd_link_pie (info))
|
|
|
|
|
#define bfd_link_pic(info) (bfd_link_dll (info) || bfd_link_pie (info))
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* This structure holds all the information needed to communicate
|
|
|
|
|
between BFD and the linker when doing a link. */
|
|
|
|
|
|
|
|
|
|
struct bfd_link_info
|
|
|
|
|
{
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 14:51:03 +02:00
|
|
|
|
/* Output type. */
|
|
|
|
|
ENUM_BITFIELD (output_type) type : 2;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* TRUE if BFD should pre-bind symbols in a shared object. */
|
2002-12-20 00:05:39 +01:00
|
|
|
|
unsigned int symbolic: 1;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if executable should not contain copy relocs.
|
|
|
|
|
Setting this true may result in a non-sharable text segment. */
|
|
|
|
|
unsigned int nocopyreloc: 1;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* TRUE if BFD should export all symbols in the dynamic symbol table
|
2001-06-15 14:57:02 +02:00
|
|
|
|
of an executable, rather than only those used. */
|
2002-12-20 00:05:39 +01:00
|
|
|
|
unsigned int export_dynamic: 1;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2004-11-16 00:21:27 +01:00
|
|
|
|
/* TRUE if a default symbol version should be created and used for
|
|
|
|
|
exported symbols. */
|
2004-10-26 15:46:05 +02:00
|
|
|
|
unsigned int create_default_symver: 1;
|
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if unreferenced sections should be removed. */
|
|
|
|
|
unsigned int gc_sections: 1;
|
2002-12-20 00:05:39 +01:00
|
|
|
|
|
|
|
|
|
/* TRUE if every symbol should be reported back via the notice
|
|
|
|
|
callback. */
|
|
|
|
|
unsigned int notice_all: 1;
|
|
|
|
|
|
2014-08-12 03:01:41 +02:00
|
|
|
|
/* TRUE if the LTO plugin is active. */
|
|
|
|
|
unsigned int lto_plugin_active: 1;
|
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if global symbols in discarded sections should be stripped. */
|
|
|
|
|
unsigned int strip_discarded: 1;
|
2002-12-20 00:05:39 +01:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if all data symbols should be dynamic. */
|
|
|
|
|
unsigned int dynamic_data: 1;
|
2002-12-20 00:05:39 +01:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* Which symbols to strip. */
|
|
|
|
|
ENUM_BITFIELD (bfd_link_strip) strip : 2;
|
2002-08-08 05:50:18 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* Which local symbols to discard. */
|
|
|
|
|
ENUM_BITFIELD (bfd_link_discard) discard : 2;
|
2002-12-23 12:53:12 +01:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* Criteria for skipping symbols when determining
|
|
|
|
|
whether to include an object from an archive. */
|
|
|
|
|
ENUM_BITFIELD (bfd_link_common_skip_ar_symbols) common_skip_ar_symbols : 2;
|
2003-05-30 17:50:12 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* What to do with unresolved symbols in an object file.
|
|
|
|
|
When producing executables the default is GENERATE_ERROR.
|
|
|
|
|
When producing shared libraries the default is IGNORE. The
|
|
|
|
|
assumption with shared libraries is that the reference will be
|
|
|
|
|
resolved at load/execution time. */
|
|
|
|
|
ENUM_BITFIELD (report_method) unresolved_syms_in_objects : 2;
|
2003-05-30 17:50:12 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* What to do with unresolved symbols in a shared library.
|
|
|
|
|
The same defaults apply. */
|
|
|
|
|
ENUM_BITFIELD (report_method) unresolved_syms_in_shared_libs : 2;
|
2003-06-04 00:27:24 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if shared objects should be linked directly, not shared. */
|
|
|
|
|
unsigned int static_link: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if symbols should be retained in memory, FALSE if they
|
|
|
|
|
should be freed and reread. */
|
|
|
|
|
unsigned int keep_memory: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if BFD should generate relocation information in the final
|
|
|
|
|
executable. */
|
|
|
|
|
unsigned int emitrelocations: 1;
|
2003-06-04 00:27:24 +02:00
|
|
|
|
|
2004-05-11 19:08:38 +02:00
|
|
|
|
/* TRUE if PT_GNU_RELRO segment should be created. */
|
|
|
|
|
unsigned int relro: 1;
|
|
|
|
|
|
Compact EH Support
The specification for the Compact EH format is available at:
https://github.com/MentorEmbedded/cxx-abi/blob/master/MIPSCompactEH.pdf
2015-05-28 Catherine Moore <clm@codesourcery.com>
Bernd Schmidt <bernds@codesourcery.com>
Paul Brook <paul@codesourcery.com>
bfd/
* bfd-in2.h: Regenerated.
* elf-bfd.h (DWARF2_EH_HDR, COMPACT_EH_HDR): Define.
(COMPACT_EH_CANT_UNWIND_OPCODE): Define.
(dwarf_eh_frame_hdr_info): Move dwarf-specific fields from
eh_frame_hdr_info.
(compact_eh_frame_hdr_info): Declare.
(eh_frame_hdr_info): Redeclare with union for dwarf-specific
fields and compact-eh fields.
(elf_backend_data): Add cant_unwind_opcode and compact_eh_encoding.
(bfd_elf_section_data): Add eh_frame_entry_field.
(elf_section_eh_frame_entry): Define.
(bfd_elf_parse_eh_frame_entries): Declare.
(_bfd_elf_parse_eh_frame_entry): Declare.
(_bfd_elf_end_eh_frame_parsing): Declare.
(_bfd_elf_write_section_eh_frame_entry): Declare.
(_bfd_elf_eh_frame_entry_present): Declare.
(_bfd_elf_section_for_symbol): Declare.
* elf-eh-frame.c (bfd_elf_discard_eh_frame_entry): New function.
(bfd_elf_record_eh_frame_entry): New function.
(_bfd_elf_parse_eh_frame_entry): New function.
(_bfd_elf_parse_eh_frame): Update hdr_info field references.
(cmp_eh_frame_hdr): New function.
(add_eh_frame_hdr_terminator): New function.
(_bfd_elf_end_eh_frame_parsing): New function.
(find_merged_cie): Update hdr_info field references.
(_bfd_elf_discard_section_eh_frame): Likewise.
(_bfd_elf_discard_section_eh_frame_hdr): Add Compact EH support.
(_bfd_elf_eh_frame_entry_present): New function.
(_bfd_elf_maybe_strip_eh_frame_hdr): Add Compact EH support.
(_bfd_elf_write_section_eh_frame_entry): New function.
(_bfd_elf_write_section_eh_frame): Update hdr_info field references.
(_bfd_elf_fixup_eh_frame_hdr): New function.
(write_compact_eh_frame_hdr): New function.
(write_dwarf_eh_frame_hdr): New function.
(_bfd_elf_write_section_eh_frame_hdr): Add Compact EH support.
* elflink.c (_bfd_elf_section_for_symbol): New function.
(elf_section_ignore_discarded_relocs): Add Compact EH support.
(elf_link_input_bfd): Likewise.
(bfd_elf_final_link): Likewise.
(_bfd_elf_gc_mark): Likewise.
(bfd_elf_parse_eh_frame_entries): New function.
(bfd_elf_gc_sections): Add Compact EH support.
(bfd_elf_discard_info): Likewise.
* elfxx-mips.c: Include dwarf2.h.
(_bfd_mips_elf_compact_eh_encoding): New function.
(_bfd_mips_elf_cant_unwind_opcode): New function.
* elfxx-mips.h (_bfd_mips_elf_compact_eh_encoding): Declare.
(_bfd_mips_elf_cant_unwind_opcode): Declare.
(elf_backend_compact_eh_encoding): Define.
(elf_backend_cant_unwind_opcode): Define.
* elfxx-target.h (elf_backend_compact_eh_encoding): Provide default.
(elf_backend_cant_unwind_opcode): Provide default.
(elf_backend_data elfNN_bed): Add elf_backend_compact_eh_encoding and
elf_backend_cant_unwind_opcode.
* section.c (SEC_INFO_TYPE_EH_FRAME_ENTRY): Add definition.
gas/
* config/tc-alpha.c (all_cfi_sections): Declare.
(s_alpha_ent): Initialize all_cfi_sections.
(alpha_elf_md_end): Invoke cfi_set_sections.
* config/tc-mips.c (md_apply_fix): Handle BFD_RELOC_NONE.
(s_ehword): Use BFD_RELOC_32_PCREL.
(mips_fix_adjustable): Handle BFD_RELOC_32_PCREL.
(mips_cfi_reloc_for_encoding): New function.
* tc-mips.h (DWARF2_FDE_RELOC_SIZE): Redefine.
(DWARF2_FDE_RELOC_ENCODING): Define.
(tc_cfi_reloc_for_encoding): Define.
(mips_cfi_reloc_for_encoding): Define.
(tc_compact_eh_opcode_stop): Define.
(tc_compact_eh_opcode_pad): Define.
* doc/as.texinfo: Document Compact EH extensions.
* doc/internals.texi: Likewise.
* dw2gencfi.c (EH_FRAME_LINKONCE): Redefine.
(tc_cfi_reloc_for_encoding): Provide default.
(compact_eh): Declare.
(emit_expr_encoded): New function.
(get_debugseg_name): Add Compact EH support.
(alloc_debugseg_item): Likewise.
(cfi_set_sections): New function.
(dot_cfi_fde_data): New function.
(dot_cfi_personality_id): New function.
(dot_cfi_inline_lsda): New function.
(cfi_pseudo_table): Add cfi_fde_data, cfi_personality_id,
and cfi_inline_lsda.
(dot_cfi_personality): Add Compact EH support.
(dot_cfi_lsda): Likewise.
(dot_cfi_sections): Likewise.
(dot_cfi_startproc): Likewise.
(get_cfi_seg): Likewise.
(output_compact_unwind_data): New function.
(output_cfi_insn): Add Compact EH support.
(output_cie): Likewise.
(output_fde): Likewise.
(cfi_finish): Likewise.
(cfi_emit_eh_header): New function.
(output_eh_header): New function.
* dw2gencfi.h (cfi_set_sections): Declare.
(SUPPORT_COMPACT_EH): Define.
(MULTIPLE_FRAME_SECTIONS): Define.
New enumeration to describe the Compact EH header format.
(fde_entry): Add new fields personality_id, eh_header_type, eh_data_size,
eh_data, eh_loc and sections.
(CFI_EMIT_eh_frame, CFI_EMIT_debug_frame, CFI_EMIT_target,
CFI_EMIT_eh_frame_compact): Define.
2015-05-22 Catherine Moore <clm@codesourcery.com>
Bernd Schmidt <bernds@codesourcery.com>
gas/testsuite/
* gas/mips/mips.exp: Run new tests.
* gas/mips/compact-eh-1.s: New file.
* gas/mips/compact-eh-2.s: New file.
* gas/mips/compact-eh-3.s: New file.
* gas/mips/compact-eh-4.s: New file.
* gas/mips/compact-eh-5.s: New file.
* gas/mips/compact-eh-6.s: New file.
* gas/mips/compact-eh-7.s: New file.
* gas/mips/compact-eh-eb-1.d: New file.
* gas/mips/compact-eh-eb-2.d: New file.
* gas/mips/compact-eh-eb-3.d: New file.
* gas/mips/compact-eh-eb-4.d: New file.
* gas/mips/compact-eh-eb-5.d: New file.
* gas/mips/compact-eh-eb-6.d: New file.
* gas/mips/compact-eh-eb-7.d: New file.
* gas/mips/compact-eh-el-1.d: New file.
* gas/mips/compact-eh-el-2.d: New file.
* gas/mips/compact-eh-el-3.d: New file.
* gas/mips/compact-eh-el-4.d: New file.
* gas/mips/compact-eh-el-5.d: New file.
* gas/mips/compact-eh-el-6.d: New file.
* gas/mips/compact-eh-el-7.d: New file.
* gas/mips/compact-eh-err1.l: New file.
* gas/mips/compact-eh-err1.s: New file.
* gas/mips/compact-eh-err2.l: New file.
* gas/mips/compact-eh-err2.s: New file.
2015-05-22 Catherine Moore <clm@codesourcery.com>
include/
* bfdlink.h: Rename eh_frame_hdr to eh_frame_hdr_type.
2015-05-22 Catherine Moore <clm@codesourcery.com>
Paul Brook <paul@codesourcery.com>
ld/
* emultempl/elf32.em (gld${EMULATION_NAME}_after_open):
Add Compact EH support.
* scripttempl/elf.sc: Handle .eh_frame_entry and .gnu_extab
sections.
2015-05-22 Catherine Moore <clm@codesourcery.com>
ld/testsuite/
* ld-mips-elf/compact-eh.ld: New linker script.
* ld-mips-elf/compact-eh1.d: New.
* ld-mips-elf/compact-eh1.s: New.
* ld-mips-elf/compact-eh1a.s: New.
* ld-mips-elf/compact-eh1b.s: New.
* ld-mips-elf/compact-eh2.d: New.
* ld-mips-elf/compact-eh2.s: New.
* ld-mips-elf/compact-eh3.d: New.
* ld-mips-elf/compact-eh3.s: New.
* ld-mips-elf/compact-eh3a.s: New.
* ld-mips-elf/compact-eh4.d: New.
* ld-mips-elf/compact-eh5.d: New.
* ld-mips-elf/compact-eh6.d: New.
* ld-mips-elf/mips-elf.exp: Run new tests.
2015-05-28 23:50:36 +02:00
|
|
|
|
/* Nonzero if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
|
|
|
|
|
should be created. 1 for DWARF2 tables, 2 for compact tables. */
|
|
|
|
|
unsigned int eh_frame_hdr_type: 2;
|
2011-07-15 04:36:36 +02:00
|
|
|
|
|
2004-10-07 16:45:24 +02:00
|
|
|
|
/* TRUE if we should warn when adding a DT_TEXTREL to a shared object. */
|
|
|
|
|
unsigned int warn_shared_textrel: 1;
|
|
|
|
|
|
2011-10-19 06:13:28 +02:00
|
|
|
|
/* TRUE if we should error when adding a DT_TEXTREL. */
|
|
|
|
|
unsigned int error_textrel: 1;
|
|
|
|
|
|
include/
* bfdlink.h (struct bfd_link_info): Add emit_hash and
emit_gnu_hash bitfields.
include/elf/
* common.h (SHT_GNU_HASH, DT_GNU_HASH): Define.
ld/
* scripttempl/elf.sc: Add .gnu.hash section.
* emultempl/elf32.em (OPTION_HASH_STYLE): Define.
(gld${EMULATION_NAME}_add_options): Register --hash-style option.
(gld${EMULATION_NAME}_handle_option): Handle it.
(gld${EMULATION_NAME}_list_options): Document it.
* ldmain.c (main): Initialize emit_hash and emit_gnu_hash.
* ld.texinfo: Document --hash-style option.
bfd/
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_GNU_HASH.
(bfd_section_from_shdr, elf_fake_sections, assign_section_numbers):
Handle SHT_GNU_HASH.
(special_sections_g): Include .gnu.hash section.
(bfd_elf_gnu_hash): New function.
* elf-bfd.h (bfd_elf_gnu_hash, _bfd_elf_hash_symbol): New prototypes.
(struct elf_backend_data): Add elf_hash_symbol method.
* elflink.c (_bfd_elf_link_create_dynamic_sections): Create .hash
only if info->emit_hash, create .gnu.hash section if
info->emit_gnu_hash.
(struct collect_gnu_hash_codes): New type.
(elf_collect_gnu_hash_codes, elf_renumber_gnu_hash_syms,
_bfd_elf_hash_symbol): New functions.
(compute_bucket_count): Don't compute HASHCODES array, instead add
that and NSYMS as arguments. Use bed->s->sizeof_hash_entry
instead of bed->s->arch_size / 8. Fix .hash size estimation.
When not optimizing, use the number of hashed symbols rather than
dynsymcount.
(bfd_elf_size_dynamic_sections): Only add DT_HASH if info->emit_hash,
and ADD DT_GNU_HASH if info->emit_gnu_hash.
(bfd_elf_size_dynsym_hash_dynstr): Size .hash only if info->emit_hash,
adjust compute_bucket_count caller. Create and populate .gnu.hash
section if info->emit_gnu_hash.
(elf_link_output_extsym): Only populate .hash section if
finfo->hash_sec != NULL.
(bfd_elf_final_link): Adjust assertion. Handle DT_GNU_HASH.
* elfxx-target.h (elf_backend_hash_symbol): Define if not yet defined.
(elfNN_bed): Add elf_backend_hash_symbol.
* elf64-x86-64.c (elf64_x86_64_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
* elf32-i386.c (elf_i386_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
binutils/
* readelf.c (get_dynamic_type): Handle DT_GNU_HASH.
(get_section_type_name): Handle SHT_GNU_HASH.
(dynamic_info_DT_GNU_HASH): New variable.
(process_dynamic_section): Handle DT_GNU_HASH.
(process_symbol_table): Print also DT_GNU_HASH histogram.
ld/testsuite/
* ld-powerpc/tlsso32.r: Adjust.
* ld-powerpc/tlsso32.d: Adjust.
* ld-powerpc/tlsso32.g: Adjust.
* ld-powerpc/tlsso.r: Adjust.
* ld-powerpc/tlsso.g: Adjust.
* ld-powerpc/tlstocso.g: Adjust.
2006-07-10 23:40:25 +02:00
|
|
|
|
/* TRUE if .hash section should be created. */
|
|
|
|
|
unsigned int emit_hash: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if .gnu.hash section should be created. */
|
|
|
|
|
unsigned int emit_gnu_hash: 1;
|
|
|
|
|
|
2006-10-31 00:25:51 +01:00
|
|
|
|
/* If TRUE reduce memory overheads, at the expense of speed. This will
|
|
|
|
|
cause map file generation to use an O(N^2) algorithm and disable
|
|
|
|
|
caching ELF symbol buffer. */
|
|
|
|
|
unsigned int reduce_memory_overheads: 1;
|
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if the output file should be in a traditional format. This
|
|
|
|
|
is equivalent to the setting of the BFD_TRADITIONAL_FORMAT flag
|
|
|
|
|
on the output file, but may be checked when reading the input
|
|
|
|
|
files. */
|
|
|
|
|
unsigned int traditional_format: 1;
|
2007-01-16 15:56:32 +01:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if non-PLT relocs should be merged into one reloc section
|
|
|
|
|
and sorted so that relocs against the same symbol come together. */
|
|
|
|
|
unsigned int combreloc: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if a default symbol version should be created and used for
|
|
|
|
|
imported symbols. */
|
|
|
|
|
unsigned int default_imported_symver: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if the new ELF dynamic tags are enabled. */
|
|
|
|
|
unsigned int new_dtags: 1;
|
2007-01-16 15:56:32 +01:00
|
|
|
|
|
2011-06-20 15:18:52 +02:00
|
|
|
|
/* FALSE if .eh_frame unwind info should be generated for PLT and other
|
|
|
|
|
linker created sections, TRUE if it should be omitted. */
|
|
|
|
|
unsigned int no_ld_generated_unwind_info: 1;
|
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if BFD should generate a "task linked" object file,
|
|
|
|
|
similar to relocatable but also with globals converted to
|
|
|
|
|
statics. */
|
|
|
|
|
unsigned int task_link: 1;
|
2011-07-09 08:20:52 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if ok to have multiple definition. */
|
|
|
|
|
unsigned int allow_multiple_definition: 1;
|
2007-07-09 23:21:42 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if ok to have version with no definition. */
|
|
|
|
|
unsigned int allow_undefined_version: 1;
|
2003-08-20 10:37:19 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if some symbols have to be dynamic, controlled by
|
|
|
|
|
--dynamic-list command line options. */
|
|
|
|
|
unsigned int dynamic: 1;
|
2003-08-20 10:37:19 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if PT_GNU_STACK segment should be created with PF_R|PF_W|PF_X
|
|
|
|
|
flags. */
|
|
|
|
|
unsigned int execstack: 1;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if PT_GNU_STACK segment should be created with PF_R|PF_W
|
|
|
|
|
flags. */
|
|
|
|
|
unsigned int noexecstack: 1;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2011-07-15 04:36:36 +02:00
|
|
|
|
/* TRUE if we want to produced optimized output files. This might
|
|
|
|
|
need much more time and therefore must be explicitly selected. */
|
|
|
|
|
unsigned int optimize: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if user should be informed of removed unreferenced sections. */
|
|
|
|
|
unsigned int print_gc_sections: 1;
|
|
|
|
|
|
|
|
|
|
/* TRUE if we should warn alternate ELF machine code. */
|
|
|
|
|
unsigned int warn_alternate_em: 1;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2012-04-09 18:27:18 +02:00
|
|
|
|
/* TRUE if the linker script contained an explicit PHDRS command. */
|
|
|
|
|
unsigned int user_phdrs: 1;
|
|
|
|
|
|
2014-11-18 08:52:36 +01:00
|
|
|
|
/* TRUE if BND prefix in PLT entries is always generated. */
|
|
|
|
|
unsigned int bndplt: 1;
|
|
|
|
|
|
2015-09-20 04:50:19 +02:00
|
|
|
|
/* TRUE if generation of .interp/PT_INTERP should be suppressed. */
|
|
|
|
|
unsigned int nointerp: 1;
|
|
|
|
|
|
2004-03-22 23:58:04 +01:00
|
|
|
|
/* Char that may appear as the first char of a symbol, but should be
|
|
|
|
|
skipped (like symbol_leading_char) when looking up symbols in
|
|
|
|
|
wrap_hash. Used by PowerPC Linux for 'dot' symbols. */
|
|
|
|
|
char wrap_char;
|
|
|
|
|
|
2008-06-06 08:02:00 +02:00
|
|
|
|
/* Separator between archive and filename in linker script filespecs. */
|
|
|
|
|
char path_separator;
|
|
|
|
|
|
2015-04-15 07:01:25 +02:00
|
|
|
|
/* Compress DWARF debug sections. */
|
|
|
|
|
enum compressed_debug_section_type compress_debug;
|
|
|
|
|
|
2012-10-23 11:33:56 +02:00
|
|
|
|
/* Default stack size. Zero means default (often zero itself), -1
|
|
|
|
|
means explicitly zero-sized. */
|
|
|
|
|
bfd_signed_vma stacksize;
|
|
|
|
|
|
2012-10-24 13:09:28 +02:00
|
|
|
|
/* Enable or disable target specific optimizations.
|
|
|
|
|
|
|
|
|
|
Not all targets have optimizations to enable.
|
|
|
|
|
|
|
|
|
|
Normally these optimizations are disabled by default but some targets
|
|
|
|
|
prefer to enable them by default. So this field is a tri-state variable.
|
|
|
|
|
The values are:
|
|
|
|
|
|
|
|
|
|
zero: Enable the optimizations (either from --relax being specified on
|
|
|
|
|
the command line or the backend's before_allocation emulation function.
|
|
|
|
|
|
|
|
|
|
positive: The user has requested that these optimizations be disabled.
|
|
|
|
|
(Via the --no-relax command line option).
|
|
|
|
|
|
|
|
|
|
negative: The optimizations are disabled. (Set when initializing the
|
|
|
|
|
args_type structure in ldmain.c:main. */
|
|
|
|
|
signed int disable_target_specific_optimizations;
|
|
|
|
|
|
2002-12-20 00:05:39 +01:00
|
|
|
|
/* Function callbacks. */
|
|
|
|
|
const struct bfd_link_callbacks *callbacks;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Hash table handled by BFD. */
|
|
|
|
|
struct bfd_link_hash_table *hash;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Hash table of symbols to keep. This is NULL unless strip is
|
|
|
|
|
strip_some. */
|
|
|
|
|
struct bfd_hash_table *keep_hash;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Hash table of symbols to report back via the notice callback. If
|
2002-11-30 09:39:46 +01:00
|
|
|
|
this is NULL, and notice_all is FALSE, then no symbols are
|
1999-05-03 09:29:11 +02:00
|
|
|
|
reported back. */
|
|
|
|
|
struct bfd_hash_table *notice_hash;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Hash table of symbols which are being wrapped (the --wrap linker
|
|
|
|
|
option). If this is NULL, no symbols are being wrapped. */
|
|
|
|
|
struct bfd_hash_table *wrap_hash;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
2012-10-22 15:33:49 +02:00
|
|
|
|
/* Hash table of symbols which may be left unresolved during
|
|
|
|
|
a link. If this is NULL, no symbols can be left unresolved. */
|
|
|
|
|
struct bfd_hash_table *ignore_hash;
|
|
|
|
|
|
2008-02-15 04:35:53 +01:00
|
|
|
|
/* The output BFD. */
|
|
|
|
|
bfd *output_bfd;
|
|
|
|
|
|
2002-12-20 00:05:39 +01:00
|
|
|
|
/* The list of input BFD's involved in the link. These are chained
|
Make bfd.link_next field a union
This field of struct bfd is currently only used to chain together
linker input files. This patch prepares to use the field to stash
the linker hash table, which is always created on the linker output
file.
bfd/
* bfd.c (struct bfd): Replace link_next with a union.
* aoutx.h, * bfd.c, * coff-ppc.c, * coff-rs6000.c, * cofflink.c,
* ecoff.c, * elf-m10300.c, * elf32-arm.c, * elf32-avr.c,
* elf32-hppa.c, * elf32-i386.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-metag.c,
* elf32-microblaze.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-ppc.c, * elf32-rl78.c, * elf32-s390.c,
* elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
* elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * linker.c, * pdp11.c, * peXXigen.c, * simple.c,
* sunos.c, * vms-alpha.c, * xcofflink.c: Update for above.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h: Update for bfd.link_next change.
ld/
* emultempl/cr16elf.em, * emultempl/elf32.em, * emultempl/genelf.em,
* emultempl/m68kcoff.em, * emultempl/m68kelf.em,
* emultempl/nds32elf.em, * emultempl/pe.em, * emultempl/pep.em,
* ldlang.c, * ldmain.c, * pe-dll.c: Update for bfd.link_next change.
2014-06-13 11:40:57 +02:00
|
|
|
|
together via the link.next field. */
|
2002-12-20 00:05:39 +01:00
|
|
|
|
bfd *input_bfds;
|
2007-05-31 17:04:52 +02:00
|
|
|
|
bfd **input_bfds_tail;
|
2002-12-20 00:05:39 +01:00
|
|
|
|
|
|
|
|
|
/* If a symbol should be created for each input BFD, this is section
|
|
|
|
|
where those symbols should be placed. It must be a section in
|
|
|
|
|
the output BFD. It may be NULL, in which case no such symbols
|
|
|
|
|
will be created. This is to support CREATE_OBJECT_SYMBOLS in the
|
|
|
|
|
linker command language. */
|
|
|
|
|
asection *create_object_symbols_section;
|
|
|
|
|
|
|
|
|
|
/* List of global symbol names that are starting points for marking
|
|
|
|
|
sections against garbage collection. */
|
|
|
|
|
struct bfd_sym_chain *gc_sym_list;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* If a base output file is wanted, then this points to it */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
void *base_file;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-06-23 13:03:45 +02:00
|
|
|
|
/* The function to call when the executable or shared object is
|
|
|
|
|
loaded. */
|
|
|
|
|
const char *init_function;
|
2002-07-01 10:04:47 +02:00
|
|
|
|
|
1999-06-23 13:03:45 +02:00
|
|
|
|
/* The function to call when the executable or shared object is
|
|
|
|
|
unloaded. */
|
|
|
|
|
const char *fini_function;
|
2000-07-20 05:23:03 +02:00
|
|
|
|
|
2006-04-06 20:52:46 +02:00
|
|
|
|
/* Number of relaxation passes. Usually only one relaxation pass
|
|
|
|
|
is needed. But a backend can have as many relaxation passes as
|
|
|
|
|
necessary. During bfd_relax_section call, it is set to the
|
|
|
|
|
current pass, starting from 0. */
|
|
|
|
|
int relax_pass;
|
|
|
|
|
|
2007-04-10 20:00:26 +02:00
|
|
|
|
/* Number of relaxation trips. This number is incremented every
|
|
|
|
|
time the relaxation pass is restarted due to a previous
|
|
|
|
|
relaxation returning true in *AGAIN. */
|
|
|
|
|
int relax_trip;
|
|
|
|
|
|
2015-04-14 13:12:55 +02:00
|
|
|
|
/* > 0 to treat protected data defined in the shared library as
|
|
|
|
|
reference external. 0 to treat it as internal. -1 to let
|
|
|
|
|
backend to decide. */
|
|
|
|
|
int extern_protected_data;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Non-zero if auto-import thunks for DATA items in pei386 DLLs
|
2002-06-07 16:56:01 +02:00
|
|
|
|
should be generated/linked against. Set to 1 if this feature
|
|
|
|
|
is explicitly requested by the user, -1 if enabled by default. */
|
|
|
|
|
int pei386_auto_import;
|
2001-08-23 17:14:18 +02:00
|
|
|
|
|
2002-11-14 19:03:17 +01:00
|
|
|
|
/* Non-zero if runtime relocs for DATA items with non-zero addends
|
|
|
|
|
in pei386 DLLs should be generated. Set to 1 if this feature
|
|
|
|
|
is explicitly requested by the user, -1 if enabled by default. */
|
|
|
|
|
int pei386_runtime_pseudo_reloc;
|
|
|
|
|
|
2001-08-23 17:14:18 +02:00
|
|
|
|
/* How many spare .dynamic DT_NULL entries should be added? */
|
2001-08-25 11:48:13 +02:00
|
|
|
|
unsigned int spare_dynamic_tags;
|
2002-07-31 14:50:09 +02:00
|
|
|
|
|
2002-12-20 00:05:39 +01:00
|
|
|
|
/* May be used to set DT_FLAGS for ELF. */
|
|
|
|
|
bfd_vma flags;
|
|
|
|
|
|
|
|
|
|
/* May be used to set DT_FLAGS_1 for ELF. */
|
|
|
|
|
bfd_vma flags_1;
|
2004-05-11 19:08:38 +02:00
|
|
|
|
|
|
|
|
|
/* Start and end of RELRO region. */
|
|
|
|
|
bfd_vma relro_start, relro_end;
|
2006-09-07 19:16:34 +02:00
|
|
|
|
|
|
|
|
|
/* List of symbols should be dynamic. */
|
2007-01-16 15:56:32 +01:00
|
|
|
|
struct bfd_elf_dynamic_list *dynamic_list;
|
2011-09-16 03:15:20 +02:00
|
|
|
|
|
|
|
|
|
/* The version information. */
|
|
|
|
|
struct bfd_elf_version_tree *version_info;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
bfd/
* elf32-spu.c (struct spu_link_hash_table): Add stack_analysis
and emit_stack_syms bitfields.
(get_sym_h): Read all symbols if stack analysis will be done.
(spu_elf_create_sections): Add stack_analysis and emit_stack_syms
params, and stash in hash table.
(is_hint): Split off from..
(is_branch): ..here. Adjust callers.
(spu_elf_size_stubs): Add stack_analysis param. Arrange to read
and keep all syms.
(write_one_stub): Fix mem leak.
(find_function_stack_adjust): New function.
(sort_syms_syms, sort_syms_psecs): New vars.
(sort_syms): New function.
(struct call_info, struct function_info): New.
(struct spu_elf_stack_info): New.
(alloc_stack_info, maybe_insert_function, func_name): New functions.
(is_nop, insns_at_end, check_function_ranges): Likewise.
(find_function, insert_callee, mark_functions_via_relocs): Likewise.
(pasted_function, interesting_section, discover_functions): Likewise.
(mark_non_root, call_graph_traverse, build_call_tree): Likewise.
(sum_stack, spu_elf_stack_analysis, spu_elf_final_link): Likewise.
(bfd_elf32_bfd_final_link): Define.
* elf32-spu.h (struct _spu_elf_section_data): Add stack_info field.
(spu_elf_create_sections, spu_elf_size_stubs): Update prototypes.
include/
* bfdlink.h (struct bfd_link_info): Add "info" and "minfo".
ld/
* ldmain.c (link_callbacks): Init info and minfo fields.
* ldmisc.c (minfo): Do nothing if no map file.
* emultempl/spuelf.em (stack_analysis, emit_stack_syms): New vars.
(spu_after_open): Adjust spu_elf_create_sections call.
(spu_before_allocation): Likewise for spu_elf_size_stubs.
(OPTION_SPU_STACK_ANALYSIS, OPTION_SPU_STACK_SYMS): Define.
(PARSE_AND_LIST_LONGOPTS): Add new entries.
(PARSE_AND_LIST_OPTIONS, PARSE_AND_LIST_ARGS_CASES): Likewise.
* gen-doc.texi: Add @set for SPU and other missing targets.
* ld.texinfo: Update man page selection to match gen-doc.texi.
Document SPU features.
2007-04-30 16:06:40 +02:00
|
|
|
|
/* This structures holds a set of callback functions. These are called
|
|
|
|
|
by the BFD linker routines. Except for the info functions, the first
|
2005-06-03 11:52:50 +02:00
|
|
|
|
argument to each callback function is the bfd_link_info structure
|
|
|
|
|
being used and each function returns a boolean value. If the
|
|
|
|
|
function returns FALSE, then the BFD function which called it should
|
|
|
|
|
return with a failure indication. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
struct bfd_link_callbacks
|
|
|
|
|
{
|
|
|
|
|
/* A function which is called when an object is added from an
|
|
|
|
|
archive. ABFD is the archive element being added. NAME is the
|
|
|
|
|
name of the symbol which caused the archive element to be pulled
|
Applied patch series for LD plugin interface (six parts).
[PATCH] Add infrastructure for plugin API; functionality to follow.
include/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* plugin-api.h (LDPT_GNU_LD_VERSION): New ld_plugin_tag enum member.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* configure.in: Add AC_CHECKs for file io and dlfcn headers and
functions and AC_SEARCH for -ldl.
(enable_plugins): New shell variable set if above tests find dlopen
functionality.
(ENABLE_PLUGINS): Add related automake conditional.
* configure: Regenerate.
* config.in: Likewise.
* Makefile.am (PLUGIN_C): Declare plugin C source file, conditional
on ENABLE_PLUGINS being defined.
(PLUGIN_H): Likewise for header file.
(PLUGIN_OBJECT): Likewise for object file.
(PLUGIN_CFLAGS): Likewise -D flag required to compile plugin support.
(AM_CPPFLAGS): Use PLUGIN_CFLAGS.
(CFILES): Use PLUGIN_C.
(HFILES): Use PLUGIN_H.
(OFILES): Use PLUGIN_OBJECT.
(ld_new_SOURCES): Use PLUGIN_C.
(noinst_LTLIBRARIES)[ENABLE_PLUGINS]: Declare test plugin.
(libldtestplug_la_SOURCES)[ENABLE_PLUGINS]: Add automake definition
for test plugin.
(libldtestplug_la_CFLAGS)[ENABLE_PLUGINS]: Likewise.
(libldtestplug_la_LDFLAGS)[ENABLE_PLUGINS]: Likewise.
* Makefile.in: Regenerate.
* sysdep.h: Include stdarg.h, unistd.h and one of fcntl.h or
sys/file.h where available. Include dlfcn.h when ENABLE_PLUGINS.
(O_RDONLY): Supply default definition likewise to bfd's sysdep.h
(O_WRONLY): Likewise.
(O_RDWR): Likewise.
(O_ACCMODE): Likewise.
(O_BINARY): Likewise.
(SEEK_SET): Likewise.
(SEEK_CUR): Likewise.
(SEEK_END): Likewise.
* ldmisc.c (vfinfo): Make non-static. Add %p format char.
* ldmisc.h (vfinfo): Declare extern prototype.
* lexsup.c (enum option_values)[ENABLE_PLUGINS]: Add new entries for
OPTION_PLUGIN and OPTION_PLUGIN_OPT.
(ld_options[])[ENABLE_PLUGINS]: Add option data for the above two.
(parse_args)[ENABLE_PLUGINS]: Handle them, and load all plugins once
option parsing is complete.
* ldmain.c (main)[ENABLE_PLUGINS]: Call plugin cleanup hooks just
after lang_finish.
* plugin.c: New source file.
* plugin.h: Likewise new header.
* testplug.c: New source file.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* ld-bootstrap/bootstrap.exp: Skip static tests also if LD plugins
are enabled.
* lib/ld-lib.exp (proc regexp_diff): Extend verbose debug output.
(proc set_file_contents): Write a file with the supplied content.
(run_ld_link_tests): Add new 'ld' action to test linker output.
(proc check_plugin_api_available): Return true if linker under test
supports the plugin API.
* ld-plugin/func.c: New test source file.
* ld-plugin/main.c: Likewise.
* ld-plugin/text.c: Likewise.
* ld-plugin/plugin-1.d: New dump test output pattern script.
* ld-plugin/plugin-2.d: Likewise.
* ld-plugin/plugin-3.d: Likewise.
* ld-plugin/plugin-4.d: Likewise.
* ld-plugin/plugin-5.d: Likewise.
* ld-plugin/plugin.exp: New test control script.
---
[PATCH] Implement claim file and all symbols read hooks and add symbols callback.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 2/6).
* ldfile.c (ldfile_try_open_bfd)[ENABLE_PLUGINS]: Don't return early
during compat checks if they pass, instead offer any successfully
opened and accepted file to the plugin claim file hooks chain. Create
a dummy bfd to accept symbols added by the plugin, if the plugin
claims the file.
* ldlang.c (lang_process)[ENABLE_PLUGINS]: Call plugin all symbols
read hook chain before ldemul_after_open.
* ldlang.h (struct lang_input_statement_struct): Add new single-bit
'claimed' flag.
* plugin.c (IRONLY_SUFFIX): New macro for dummy bfd file suffix.
(IRONLY_SUFFIX_LEN): Length of the above string.
(plugin_get_ir_dummy_bfd): New function to create the dummy bfd used
to store symbols for ir-only files.
(is_ir_dummy_bfd): New function to check if a bfd is ir-only.
(asymbol_from_plugin_symbol): New function converts symbol formats.
(add_symbols): Call it to convert plugin syms to bfd syms and add
them to the dummy bfd.
* plugin.h: Add missing include guards.
(plugin_get_ir_dummy_bfd): Add prototype.
(is_ir_dummy_bfd): Likewise.
* testplug.c (TV_MESSAGE): New helper macro.
(struct claim_file): New struct.
(claim_file_t): New typedef.
(tag_names[]): Make static and const.
(claimfiles_list): New variable.
(claimfiles_tail_chain_ptr): Likewise.
(last_claimfile): Likewise.
(record_claim_file): Record a file to claim on a singly-linked list.
(parse_symdefstr): Parse an ASCII representation of a symbol from a
plugin option into the fields of a struct ld_plugin_symbol.
(record_claimed_file_symbol): Use it to parse plugin option for
adding a symbol.
(parse_option): Parse claim file and add symbol options.
(dump_tv_tag): Use TV_MESSAGE.
(onload): Likewise.
(onclaim_file): Make static. Use TV_MESSAGE. Scan list of files to
claim and claim this file if required, adding any symbols specified.
(onall_symbols_read): Make static and use TV_MESSAGE.
(oncleanup): Likewise.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 2/6).
* ld-plugin/plugin-3.d: Enable regexes for new functionality.
* ld-plugin/plugin-5.d: Likewise.
* ld-plugin/plugin-6.d: New testcase.
* ld-plugin/plugin-7.d: Likewise.
* ld-plugin/plugin.exp: Use 'nm' on compiled test objects to determine
whether symbols in plugin arguments need an underscore prefix. Add
new plugin-6.d and plugin-7.d testcases.
---
[PATCH] Implement get symbols callback.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 3/6).
* ldmain.c (notice)[ENABLE_PLUGINS]: Call plugin_notice.
* plugin.c (non_ironly_hash): Add new bfd hash table.
(plugin_load_plugins): Exit early if no plugins to load. If plugins
do load successfully, set notice_all flag in link info.
(get_symbols): Implement.
(plugin_load_plugins): Exit early if no plugins to load, else after
loading plugins successfully enable notice_all mode.
(init_non_ironly_hash): Lazily init non_ironly_hash table.
(plugin_notice): Record symbols referenced from non-IR files in the
non_ironly_hash. Suppress tracing, cref generation and nocrossrefs
tracking for symbols from dummy IR bfds.
* plugin.h: Fix formatting.
(plugin_notice): Add prototype.
* testplug.c (dumpresolutions): New global var.
(parse_options): Accept "dumpresolutions".
(onall_symbols_read): Get syms and dump resolutions if it was given.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 3/6).
* ld-plugin/plugin-8.d: New testcase.
* ld-plugin/plugin.exp: Invoke it.
---
[PATCH] Implement add input file, add input lib and set extra lib path callbacks.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 4/6).
* ldlang.c (lang_process)[ENABLE_PLUGINS]: Move invocation of
plugin_call_all_symbols_read to before setting of gc_sym_list, and
open any new input files that may have been added during it.
* ldmain.c (multiple_definition)[ENABLE_PLUGINS]: Call out to
plugin_multiple_definition and let it have first say over what to do
with the clashing definitions.
* plugin.c (no_more_claiming): New boolean variable.
(plugin_cached_allow_multiple_defs): Likewise.
(add_input_file): Implement.
(add_input_library): Likewise.
(set_extra_library_path): Likewise.
(plugin_call_claim_file): Don't do anything when no_more_claiming set.
(plugin_call_all_symbols_read): Set it. Disable link info
"allow_multiple_definition" flag, but cache its value.
(plugin_multiple_definition): New function.
* plugin.h (plugin_multiple_definition): Add prototype.
* testplug.c (addfile_enum_t): New enumerated typedef.
(add_file_t): New struct typedef.
(addfiles_list): New variable.
(addfiles_tail_chain_ptr): Likewise.
(record_add_file): New function.
(parse_option): Parse "add:", "lib:" and "dir:" options and call it.
(onall_symbols_read): Iterate the list of new files, libs and dirs,
adding them.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 4/6).
* ld-plugin/plugin-9.d: New testcase.
* ld-plugin/plugin.exp: Invoke it.
---
[PATCH] Add ELF symbol visibility support to plugin interface.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 5/6).
* plugin.c (asymbol_from_plugin_symbol): If the bfd is an ELF bfd,
find the elf symbol data and set the visibility in the st_other field.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 5/6).
* ld-plugin/plugin-ignore.d: New dump test control script.
* ld-plugin/plugin-vis-1.d: Likewise.
* ld-plugin/plugin.exp: Add list of ELF-only tests and run them if
testing on an ELF target.
---
[PATCH] Add archive support to plugin interface.
bfd/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* aoutx.h (aout_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(aout_link_check_archive_element): Handle substitute bfd if it
was set during add_archive_element callback in the above.
* cofflink.c (coff_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(coff_link_check_archive_element): Handle substitute bfd if it
was set during add_archive_element callback in the above.
* ecoff.c (read_ext_syms_and_strs): New function holds symbol-reading
code factored-out from ecoff_link_check_archive_element.
(reread_ext_syms_and_strs): Clear old symbols and call it.
(ecoff_link_check_archive_element): Use the above. Handle substitute
BFD if one is set by add_archive_element callback.
(ecoff_link_add_archive_symbols): Likewise allow bfd substitution.
* elflink.c (elf_link_add_archive_symbols): Likewise.
* linker.c (generic_link_check_archive_element): Likewise.
* pdp11.c (aout_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(aout_link_check_archive_element): Handle substitute bfd if it was
set during add_archive_element callback in the above.
* vms-alpha.c (alpha_vms_link_add_archive_symbols): Handle substitute
BFD if one is set by add_archive_element callback.
* xcofflink.c (xcoff_link_check_dynamic_ar_symbols): Take new "subsbfd"
reference parameter and pass it when invoking add_archive_element
callback.
(xcoff_link_check_ar_symbols): Likewise.
(xcoff_link_check_archive_element): Handle bfd substitution if it was
set by callback in the above.
include/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* bfdlink.h (struct_bfd_link_callbacks): Document new argument
to add_archive_element callback used to return a replacement bfd which
is to be added to the hash table in place of the original element.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* ldlang.c (load_symbols): Handle bfd subsitution when calling the
add_archive_element callback.
* ldmain.c (add_archive_element)[ENABLE_PLUGINS]: Offer the archive
member to the plugins and if claimed set "subsbfd" output parameter to
point to the dummy IR-only BFD.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* ld-plugin/plugin-10.d: New dump test control script.
* ld-plugin/plugin-11.d: Likewise.
* ld-plugin/plugin.exp: Run them.
---
2010-10-14 03:31:33 +02:00
|
|
|
|
in. This function may set *SUBSBFD to point to an alternative
|
|
|
|
|
BFD from which symbols should in fact be added in place of the
|
|
|
|
|
original BFD's symbols. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*add_archive_element)
|
Applied patch series for LD plugin interface (six parts).
[PATCH] Add infrastructure for plugin API; functionality to follow.
include/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* plugin-api.h (LDPT_GNU_LD_VERSION): New ld_plugin_tag enum member.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* configure.in: Add AC_CHECKs for file io and dlfcn headers and
functions and AC_SEARCH for -ldl.
(enable_plugins): New shell variable set if above tests find dlopen
functionality.
(ENABLE_PLUGINS): Add related automake conditional.
* configure: Regenerate.
* config.in: Likewise.
* Makefile.am (PLUGIN_C): Declare plugin C source file, conditional
on ENABLE_PLUGINS being defined.
(PLUGIN_H): Likewise for header file.
(PLUGIN_OBJECT): Likewise for object file.
(PLUGIN_CFLAGS): Likewise -D flag required to compile plugin support.
(AM_CPPFLAGS): Use PLUGIN_CFLAGS.
(CFILES): Use PLUGIN_C.
(HFILES): Use PLUGIN_H.
(OFILES): Use PLUGIN_OBJECT.
(ld_new_SOURCES): Use PLUGIN_C.
(noinst_LTLIBRARIES)[ENABLE_PLUGINS]: Declare test plugin.
(libldtestplug_la_SOURCES)[ENABLE_PLUGINS]: Add automake definition
for test plugin.
(libldtestplug_la_CFLAGS)[ENABLE_PLUGINS]: Likewise.
(libldtestplug_la_LDFLAGS)[ENABLE_PLUGINS]: Likewise.
* Makefile.in: Regenerate.
* sysdep.h: Include stdarg.h, unistd.h and one of fcntl.h or
sys/file.h where available. Include dlfcn.h when ENABLE_PLUGINS.
(O_RDONLY): Supply default definition likewise to bfd's sysdep.h
(O_WRONLY): Likewise.
(O_RDWR): Likewise.
(O_ACCMODE): Likewise.
(O_BINARY): Likewise.
(SEEK_SET): Likewise.
(SEEK_CUR): Likewise.
(SEEK_END): Likewise.
* ldmisc.c (vfinfo): Make non-static. Add %p format char.
* ldmisc.h (vfinfo): Declare extern prototype.
* lexsup.c (enum option_values)[ENABLE_PLUGINS]: Add new entries for
OPTION_PLUGIN and OPTION_PLUGIN_OPT.
(ld_options[])[ENABLE_PLUGINS]: Add option data for the above two.
(parse_args)[ENABLE_PLUGINS]: Handle them, and load all plugins once
option parsing is complete.
* ldmain.c (main)[ENABLE_PLUGINS]: Call plugin cleanup hooks just
after lang_finish.
* plugin.c: New source file.
* plugin.h: Likewise new header.
* testplug.c: New source file.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 1/6).
* ld-bootstrap/bootstrap.exp: Skip static tests also if LD plugins
are enabled.
* lib/ld-lib.exp (proc regexp_diff): Extend verbose debug output.
(proc set_file_contents): Write a file with the supplied content.
(run_ld_link_tests): Add new 'ld' action to test linker output.
(proc check_plugin_api_available): Return true if linker under test
supports the plugin API.
* ld-plugin/func.c: New test source file.
* ld-plugin/main.c: Likewise.
* ld-plugin/text.c: Likewise.
* ld-plugin/plugin-1.d: New dump test output pattern script.
* ld-plugin/plugin-2.d: Likewise.
* ld-plugin/plugin-3.d: Likewise.
* ld-plugin/plugin-4.d: Likewise.
* ld-plugin/plugin-5.d: Likewise.
* ld-plugin/plugin.exp: New test control script.
---
[PATCH] Implement claim file and all symbols read hooks and add symbols callback.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 2/6).
* ldfile.c (ldfile_try_open_bfd)[ENABLE_PLUGINS]: Don't return early
during compat checks if they pass, instead offer any successfully
opened and accepted file to the plugin claim file hooks chain. Create
a dummy bfd to accept symbols added by the plugin, if the plugin
claims the file.
* ldlang.c (lang_process)[ENABLE_PLUGINS]: Call plugin all symbols
read hook chain before ldemul_after_open.
* ldlang.h (struct lang_input_statement_struct): Add new single-bit
'claimed' flag.
* plugin.c (IRONLY_SUFFIX): New macro for dummy bfd file suffix.
(IRONLY_SUFFIX_LEN): Length of the above string.
(plugin_get_ir_dummy_bfd): New function to create the dummy bfd used
to store symbols for ir-only files.
(is_ir_dummy_bfd): New function to check if a bfd is ir-only.
(asymbol_from_plugin_symbol): New function converts symbol formats.
(add_symbols): Call it to convert plugin syms to bfd syms and add
them to the dummy bfd.
* plugin.h: Add missing include guards.
(plugin_get_ir_dummy_bfd): Add prototype.
(is_ir_dummy_bfd): Likewise.
* testplug.c (TV_MESSAGE): New helper macro.
(struct claim_file): New struct.
(claim_file_t): New typedef.
(tag_names[]): Make static and const.
(claimfiles_list): New variable.
(claimfiles_tail_chain_ptr): Likewise.
(last_claimfile): Likewise.
(record_claim_file): Record a file to claim on a singly-linked list.
(parse_symdefstr): Parse an ASCII representation of a symbol from a
plugin option into the fields of a struct ld_plugin_symbol.
(record_claimed_file_symbol): Use it to parse plugin option for
adding a symbol.
(parse_option): Parse claim file and add symbol options.
(dump_tv_tag): Use TV_MESSAGE.
(onload): Likewise.
(onclaim_file): Make static. Use TV_MESSAGE. Scan list of files to
claim and claim this file if required, adding any symbols specified.
(onall_symbols_read): Make static and use TV_MESSAGE.
(oncleanup): Likewise.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 2/6).
* ld-plugin/plugin-3.d: Enable regexes for new functionality.
* ld-plugin/plugin-5.d: Likewise.
* ld-plugin/plugin-6.d: New testcase.
* ld-plugin/plugin-7.d: Likewise.
* ld-plugin/plugin.exp: Use 'nm' on compiled test objects to determine
whether symbols in plugin arguments need an underscore prefix. Add
new plugin-6.d and plugin-7.d testcases.
---
[PATCH] Implement get symbols callback.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 3/6).
* ldmain.c (notice)[ENABLE_PLUGINS]: Call plugin_notice.
* plugin.c (non_ironly_hash): Add new bfd hash table.
(plugin_load_plugins): Exit early if no plugins to load. If plugins
do load successfully, set notice_all flag in link info.
(get_symbols): Implement.
(plugin_load_plugins): Exit early if no plugins to load, else after
loading plugins successfully enable notice_all mode.
(init_non_ironly_hash): Lazily init non_ironly_hash table.
(plugin_notice): Record symbols referenced from non-IR files in the
non_ironly_hash. Suppress tracing, cref generation and nocrossrefs
tracking for symbols from dummy IR bfds.
* plugin.h: Fix formatting.
(plugin_notice): Add prototype.
* testplug.c (dumpresolutions): New global var.
(parse_options): Accept "dumpresolutions".
(onall_symbols_read): Get syms and dump resolutions if it was given.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 3/6).
* ld-plugin/plugin-8.d: New testcase.
* ld-plugin/plugin.exp: Invoke it.
---
[PATCH] Implement add input file, add input lib and set extra lib path callbacks.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 4/6).
* ldlang.c (lang_process)[ENABLE_PLUGINS]: Move invocation of
plugin_call_all_symbols_read to before setting of gc_sym_list, and
open any new input files that may have been added during it.
* ldmain.c (multiple_definition)[ENABLE_PLUGINS]: Call out to
plugin_multiple_definition and let it have first say over what to do
with the clashing definitions.
* plugin.c (no_more_claiming): New boolean variable.
(plugin_cached_allow_multiple_defs): Likewise.
(add_input_file): Implement.
(add_input_library): Likewise.
(set_extra_library_path): Likewise.
(plugin_call_claim_file): Don't do anything when no_more_claiming set.
(plugin_call_all_symbols_read): Set it. Disable link info
"allow_multiple_definition" flag, but cache its value.
(plugin_multiple_definition): New function.
* plugin.h (plugin_multiple_definition): Add prototype.
* testplug.c (addfile_enum_t): New enumerated typedef.
(add_file_t): New struct typedef.
(addfiles_list): New variable.
(addfiles_tail_chain_ptr): Likewise.
(record_add_file): New function.
(parse_option): Parse "add:", "lib:" and "dir:" options and call it.
(onall_symbols_read): Iterate the list of new files, libs and dirs,
adding them.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 4/6).
* ld-plugin/plugin-9.d: New testcase.
* ld-plugin/plugin.exp: Invoke it.
---
[PATCH] Add ELF symbol visibility support to plugin interface.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 5/6).
* plugin.c (asymbol_from_plugin_symbol): If the bfd is an ELF bfd,
find the elf symbol data and set the visibility in the st_other field.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 5/6).
* ld-plugin/plugin-ignore.d: New dump test control script.
* ld-plugin/plugin-vis-1.d: Likewise.
* ld-plugin/plugin.exp: Add list of ELF-only tests and run them if
testing on an ELF target.
---
[PATCH] Add archive support to plugin interface.
bfd/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* aoutx.h (aout_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(aout_link_check_archive_element): Handle substitute bfd if it
was set during add_archive_element callback in the above.
* cofflink.c (coff_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(coff_link_check_archive_element): Handle substitute bfd if it
was set during add_archive_element callback in the above.
* ecoff.c (read_ext_syms_and_strs): New function holds symbol-reading
code factored-out from ecoff_link_check_archive_element.
(reread_ext_syms_and_strs): Clear old symbols and call it.
(ecoff_link_check_archive_element): Use the above. Handle substitute
BFD if one is set by add_archive_element callback.
(ecoff_link_add_archive_symbols): Likewise allow bfd substitution.
* elflink.c (elf_link_add_archive_symbols): Likewise.
* linker.c (generic_link_check_archive_element): Likewise.
* pdp11.c (aout_link_check_ar_symbols): Take new "subsbfd" reference
parameter and pass it when invoking add_archive_element callback.
(aout_link_check_archive_element): Handle substitute bfd if it was
set during add_archive_element callback in the above.
* vms-alpha.c (alpha_vms_link_add_archive_symbols): Handle substitute
BFD if one is set by add_archive_element callback.
* xcofflink.c (xcoff_link_check_dynamic_ar_symbols): Take new "subsbfd"
reference parameter and pass it when invoking add_archive_element
callback.
(xcoff_link_check_ar_symbols): Likewise.
(xcoff_link_check_archive_element): Handle bfd substitution if it was
set by callback in the above.
include/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* bfdlink.h (struct_bfd_link_callbacks): Document new argument
to add_archive_element callback used to return a replacement bfd which
is to be added to the hash table in place of the original element.
ld/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* ldlang.c (load_symbols): Handle bfd subsitution when calling the
add_archive_element callback.
* ldmain.c (add_archive_element)[ENABLE_PLUGINS]: Offer the archive
member to the plugins and if claimed set "subsbfd" output parameter to
point to the dummy IR-only BFD.
ld/testsuite/ChangeLog:
2010-10-14 Dave Korn <dave.korn.cygwin@gmail.com>
Apply LD plugin patch series (part 6/6).
* ld-plugin/plugin-10.d: New dump test control script.
* ld-plugin/plugin-11.d: Likewise.
* ld-plugin/plugin.exp: Run them.
---
2010-10-14 03:31:33 +02:00
|
|
|
|
(struct bfd_link_info *, bfd *abfd, const char *name, bfd **subsbfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a symbol is found with multiple
|
2011-04-20 02:11:33 +02:00
|
|
|
|
definitions. H is the symbol which is defined multiple times.
|
|
|
|
|
NBFD is the new BFD, NSEC is the new section, and NVAL is the new
|
|
|
|
|
value. NSEC may be bfd_com_section or bfd_ind_section. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*multiple_definition)
|
2011-04-20 02:11:33 +02:00
|
|
|
|
(struct bfd_link_info *, struct bfd_link_hash_entry *h,
|
2003-08-07 04:25:50 +02:00
|
|
|
|
bfd *nbfd, asection *nsec, bfd_vma nval);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a common symbol is defined
|
2011-04-20 02:11:33 +02:00
|
|
|
|
multiple times. H is the symbol appearing multiple times.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
NBFD is the BFD of the new symbol. NTYPE is the type of the new
|
|
|
|
|
symbol, one of bfd_link_hash_defined, bfd_link_hash_common, or
|
|
|
|
|
bfd_link_hash_indirect. If NTYPE is bfd_link_hash_common, NSIZE
|
|
|
|
|
is the size of the new symbol. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*multiple_common)
|
2011-04-20 02:11:33 +02:00
|
|
|
|
(struct bfd_link_info *, struct bfd_link_hash_entry *h,
|
2003-08-07 04:25:50 +02:00
|
|
|
|
bfd *nbfd, enum bfd_link_hash_type ntype, bfd_vma nsize);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called to add a symbol to a set. ENTRY is
|
|
|
|
|
the link hash table entry for the set itself (e.g.,
|
|
|
|
|
__CTOR_LIST__). RELOC is the relocation to use for an entry in
|
2003-06-25 08:40:27 +02:00
|
|
|
|
the set when generating a relocatable file, and is also used to
|
1999-05-03 09:29:11 +02:00
|
|
|
|
get the size of the entry when generating an executable file.
|
|
|
|
|
ABFD, SEC and VALUE identify the value to add to the set. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*add_to_set)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, struct bfd_link_hash_entry *entry,
|
|
|
|
|
bfd_reloc_code_real_type reloc, bfd *abfd, asection *sec, bfd_vma value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when the name of a g++ constructor or
|
|
|
|
|
destructor is found. This is only called by some object file
|
2002-11-30 09:39:46 +01:00
|
|
|
|
formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
|
1999-05-03 09:29:11 +02:00
|
|
|
|
destructor. This will use BFD_RELOC_CTOR when generating a
|
2003-06-25 08:40:27 +02:00
|
|
|
|
relocatable file. NAME is the name of the symbol found. ABFD,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
SECTION and VALUE are the value of the symbol. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*constructor)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, bfd_boolean constructor, const char *name,
|
|
|
|
|
bfd *abfd, asection *sec, bfd_vma value);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called to issue a linker warning. For
|
|
|
|
|
example, this is called when there is a reference to a warning
|
|
|
|
|
symbol. WARNING is the warning to be issued. SYMBOL is the name
|
|
|
|
|
of the symbol which triggered the warning; it may be NULL if
|
|
|
|
|
there is none. ABFD, SECTION and ADDRESS identify the location
|
|
|
|
|
which trigerred the warning; either ABFD or SECTION or both may
|
|
|
|
|
be NULL if the location is not known. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*warning)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, const char *warning, const char *symbol,
|
|
|
|
|
bfd *abfd, asection *section, bfd_vma address);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a relocation is attempted against
|
|
|
|
|
an undefined symbol. NAME is the symbol which is undefined.
|
|
|
|
|
ABFD, SECTION and ADDRESS identify the location from which the
|
2009-12-15 03:02:39 +01:00
|
|
|
|
reference is made. IS_FATAL indicates whether an undefined symbol is
|
2000-03-01 20:38:01 +01:00
|
|
|
|
a fatal error or not. In some cases SECTION may be NULL. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*undefined_symbol)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, const char *name, bfd *abfd,
|
2009-12-15 03:02:39 +01:00
|
|
|
|
asection *section, bfd_vma address, bfd_boolean is_fatal);
|
2004-10-21 17:28:33 +02:00
|
|
|
|
/* A function which is called when a reloc overflow occurs. ENTRY is
|
|
|
|
|
the link hash table entry for the symbol the reloc is against.
|
|
|
|
|
NAME is the name of the local symbol or section the reloc is
|
|
|
|
|
against, RELOC_NAME is the name of the relocation, and ADDEND is
|
|
|
|
|
any addend that is used. ABFD, SECTION and ADDRESS identify the
|
1999-05-03 09:29:11 +02:00
|
|
|
|
location at which the overflow occurs; if this is the result of a
|
|
|
|
|
bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
|
|
|
|
|
ABFD will be NULL. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*reloc_overflow)
|
2004-10-21 17:28:33 +02:00
|
|
|
|
(struct bfd_link_info *, struct bfd_link_hash_entry *entry,
|
|
|
|
|
const char *name, const char *reloc_name, bfd_vma addend,
|
|
|
|
|
bfd *abfd, asection *section, bfd_vma address);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a dangerous reloc is performed.
|
2005-08-18 05:51:51 +02:00
|
|
|
|
MESSAGE is an appropriate message.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
ABFD, SECTION and ADDRESS identify the location at which the
|
|
|
|
|
problem occurred; if this is the result of a
|
|
|
|
|
bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
|
|
|
|
|
ABFD will be NULL. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*reloc_dangerous)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, const char *message,
|
|
|
|
|
bfd *abfd, asection *section, bfd_vma address);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a reloc is found to be attached
|
|
|
|
|
to a symbol which is not being written out. NAME is the name of
|
|
|
|
|
the symbol. ABFD, SECTION and ADDRESS identify the location of
|
|
|
|
|
the reloc; if this is the result of a
|
|
|
|
|
bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
|
|
|
|
|
ABFD will be NULL. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*unattached_reloc)
|
2003-08-07 04:25:50 +02:00
|
|
|
|
(struct bfd_link_info *, const char *name,
|
|
|
|
|
bfd *abfd, asection *section, bfd_vma address);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* A function which is called when a symbol in notice_hash is
|
2014-08-12 03:13:33 +02:00
|
|
|
|
defined or referenced. H is the symbol, INH the indirect symbol
|
|
|
|
|
if applicable. ABFD, SECTION and ADDRESS are the (new) value of
|
|
|
|
|
the symbol. If SECTION is bfd_und_section, this is a reference.
|
|
|
|
|
FLAGS are the symbol BSF_* flags. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean (*notice)
|
2011-04-24 12:02:14 +02:00
|
|
|
|
(struct bfd_link_info *, struct bfd_link_hash_entry *h,
|
2014-08-12 03:13:33 +02:00
|
|
|
|
struct bfd_link_hash_entry *inh,
|
|
|
|
|
bfd *abfd, asection *section, bfd_vma address, flagword flags);
|
bfd/
* elf32-spu.c (struct spu_link_hash_table): Add stack_analysis
and emit_stack_syms bitfields.
(get_sym_h): Read all symbols if stack analysis will be done.
(spu_elf_create_sections): Add stack_analysis and emit_stack_syms
params, and stash in hash table.
(is_hint): Split off from..
(is_branch): ..here. Adjust callers.
(spu_elf_size_stubs): Add stack_analysis param. Arrange to read
and keep all syms.
(write_one_stub): Fix mem leak.
(find_function_stack_adjust): New function.
(sort_syms_syms, sort_syms_psecs): New vars.
(sort_syms): New function.
(struct call_info, struct function_info): New.
(struct spu_elf_stack_info): New.
(alloc_stack_info, maybe_insert_function, func_name): New functions.
(is_nop, insns_at_end, check_function_ranges): Likewise.
(find_function, insert_callee, mark_functions_via_relocs): Likewise.
(pasted_function, interesting_section, discover_functions): Likewise.
(mark_non_root, call_graph_traverse, build_call_tree): Likewise.
(sum_stack, spu_elf_stack_analysis, spu_elf_final_link): Likewise.
(bfd_elf32_bfd_final_link): Define.
* elf32-spu.h (struct _spu_elf_section_data): Add stack_info field.
(spu_elf_create_sections, spu_elf_size_stubs): Update prototypes.
include/
* bfdlink.h (struct bfd_link_info): Add "info" and "minfo".
ld/
* ldmain.c (link_callbacks): Init info and minfo fields.
* ldmisc.c (minfo): Do nothing if no map file.
* emultempl/spuelf.em (stack_analysis, emit_stack_syms): New vars.
(spu_after_open): Adjust spu_elf_create_sections call.
(spu_before_allocation): Likewise for spu_elf_size_stubs.
(OPTION_SPU_STACK_ANALYSIS, OPTION_SPU_STACK_SYMS): Define.
(PARSE_AND_LIST_LONGOPTS): Add new entries.
(PARSE_AND_LIST_OPTIONS, PARSE_AND_LIST_ARGS_CASES): Likewise.
* gen-doc.texi: Add @set for SPU and other missing targets.
* ld.texinfo: Update man page selection to match gen-doc.texi.
Document SPU features.
2007-04-30 16:06:40 +02:00
|
|
|
|
/* Error or warning link info message. */
|
2005-06-03 11:52:50 +02:00
|
|
|
|
void (*einfo)
|
|
|
|
|
(const char *fmt, ...);
|
bfd/
* elf32-spu.c (struct spu_link_hash_table): Add stack_analysis
and emit_stack_syms bitfields.
(get_sym_h): Read all symbols if stack analysis will be done.
(spu_elf_create_sections): Add stack_analysis and emit_stack_syms
params, and stash in hash table.
(is_hint): Split off from..
(is_branch): ..here. Adjust callers.
(spu_elf_size_stubs): Add stack_analysis param. Arrange to read
and keep all syms.
(write_one_stub): Fix mem leak.
(find_function_stack_adjust): New function.
(sort_syms_syms, sort_syms_psecs): New vars.
(sort_syms): New function.
(struct call_info, struct function_info): New.
(struct spu_elf_stack_info): New.
(alloc_stack_info, maybe_insert_function, func_name): New functions.
(is_nop, insns_at_end, check_function_ranges): Likewise.
(find_function, insert_callee, mark_functions_via_relocs): Likewise.
(pasted_function, interesting_section, discover_functions): Likewise.
(mark_non_root, call_graph_traverse, build_call_tree): Likewise.
(sum_stack, spu_elf_stack_analysis, spu_elf_final_link): Likewise.
(bfd_elf32_bfd_final_link): Define.
* elf32-spu.h (struct _spu_elf_section_data): Add stack_info field.
(spu_elf_create_sections, spu_elf_size_stubs): Update prototypes.
include/
* bfdlink.h (struct bfd_link_info): Add "info" and "minfo".
ld/
* ldmain.c (link_callbacks): Init info and minfo fields.
* ldmisc.c (minfo): Do nothing if no map file.
* emultempl/spuelf.em (stack_analysis, emit_stack_syms): New vars.
(spu_after_open): Adjust spu_elf_create_sections call.
(spu_before_allocation): Likewise for spu_elf_size_stubs.
(OPTION_SPU_STACK_ANALYSIS, OPTION_SPU_STACK_SYMS): Define.
(PARSE_AND_LIST_LONGOPTS): Add new entries.
(PARSE_AND_LIST_OPTIONS, PARSE_AND_LIST_ARGS_CASES): Likewise.
* gen-doc.texi: Add @set for SPU and other missing targets.
* ld.texinfo: Update man page selection to match gen-doc.texi.
Document SPU features.
2007-04-30 16:06:40 +02:00
|
|
|
|
/* General link info message. */
|
|
|
|
|
void (*info)
|
|
|
|
|
(const char *fmt, ...);
|
|
|
|
|
/* Message to be printed in linker map file. */
|
|
|
|
|
void (*minfo)
|
|
|
|
|
(const char *fmt, ...);
|
2007-02-21 17:43:50 +01:00
|
|
|
|
/* This callback provides a chance for users of the BFD library to
|
|
|
|
|
override its decision about whether to place two adjacent sections
|
|
|
|
|
into the same segment. */
|
|
|
|
|
bfd_boolean (*override_segment_assignment)
|
|
|
|
|
(struct bfd_link_info *, bfd * abfd,
|
|
|
|
|
asection * current_section, asection * previous_section,
|
|
|
|
|
bfd_boolean new_segment);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* The linker builds link_order structures which tell the code how to
|
|
|
|
|
include input data in the output file. */
|
|
|
|
|
|
|
|
|
|
/* These are the types of link_order structures. */
|
|
|
|
|
|
|
|
|
|
enum bfd_link_order_type
|
|
|
|
|
{
|
|
|
|
|
bfd_undefined_link_order, /* Undefined. */
|
|
|
|
|
bfd_indirect_link_order, /* Built from a section. */
|
|
|
|
|
bfd_data_link_order, /* Set to explicit data. */
|
|
|
|
|
bfd_section_reloc_link_order, /* Relocate against a section. */
|
|
|
|
|
bfd_symbol_reloc_link_order /* Relocate against a symbol. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* This is the link_order structure itself. These form a chain
|
2005-11-03 03:52:51 +01:00
|
|
|
|
attached to the output section whose contents they are describing. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
struct bfd_link_order
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* Next link_order in chain. */
|
|
|
|
|
struct bfd_link_order *next;
|
|
|
|
|
/* Type of link_order. */
|
|
|
|
|
enum bfd_link_order_type type;
|
|
|
|
|
/* Offset within output section. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_vma offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Size within output section. */
|
|
|
|
|
bfd_size_type size;
|
|
|
|
|
/* Type specific information. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
union
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
struct
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* Section to include. If this is used, then
|
|
|
|
|
section->output_section must be the section the
|
|
|
|
|
link_order is attached to, section->output_offset must
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
equal the link_order offset field, and section->size
|
1999-05-03 09:29:11 +02:00
|
|
|
|
must equal the link_order size field. Maybe these
|
|
|
|
|
restrictions should be relaxed someday. */
|
|
|
|
|
asection *section;
|
|
|
|
|
} indirect;
|
|
|
|
|
struct
|
|
|
|
|
{
|
2012-04-09 18:27:18 +02:00
|
|
|
|
/* Size of contents, or zero when contents should be filled by
|
2012-01-31 18:54:39 +01:00
|
|
|
|
the architecture-dependent fill function.
|
2002-02-15 03:10:03 +01:00
|
|
|
|
A non-zero value allows filling of the output section
|
|
|
|
|
with an arbitrary repeated pattern. */
|
|
|
|
|
unsigned int size;
|
|
|
|
|
/* Data to put into file. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_byte *contents;
|
|
|
|
|
} data;
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
/* Description of reloc to generate. Used for
|
|
|
|
|
bfd_section_reloc_link_order and
|
|
|
|
|
bfd_symbol_reloc_link_order. */
|
|
|
|
|
struct bfd_link_order_reloc *p;
|
|
|
|
|
} reloc;
|
|
|
|
|
} u;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A linker order of type bfd_section_reloc_link_order or
|
|
|
|
|
bfd_symbol_reloc_link_order means to create a reloc against a
|
|
|
|
|
section or symbol, respectively. This is used to implement -Ur to
|
|
|
|
|
generate relocs for the constructor tables. The
|
|
|
|
|
bfd_link_order_reloc structure describes the reloc that BFD should
|
|
|
|
|
create. It is similar to a arelent, but I didn't use arelent
|
|
|
|
|
because the linker does not know anything about most symbols, and
|
|
|
|
|
any asymbol structure it creates will be partially meaningless.
|
|
|
|
|
This information could logically be in the bfd_link_order struct,
|
|
|
|
|
but I didn't want to waste the space since these types of relocs
|
|
|
|
|
are relatively rare. */
|
|
|
|
|
|
|
|
|
|
struct bfd_link_order_reloc
|
|
|
|
|
{
|
|
|
|
|
/* Reloc type. */
|
|
|
|
|
bfd_reloc_code_real_type reloc;
|
|
|
|
|
|
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
/* For type bfd_section_reloc_link_order, this is the section
|
|
|
|
|
the reloc should be against. This must be a section in the
|
|
|
|
|
output BFD, not any of the input BFDs. */
|
|
|
|
|
asection *section;
|
|
|
|
|
/* For type bfd_symbol_reloc_link_order, this is the name of the
|
|
|
|
|
symbol the reloc should be against. */
|
|
|
|
|
const char *name;
|
|
|
|
|
} u;
|
|
|
|
|
|
|
|
|
|
/* Addend to use. The object file should contain zero. The BFD
|
|
|
|
|
backend is responsible for filling in the contents of the object
|
|
|
|
|
file correctly. For some object file formats (e.g., COFF) the
|
|
|
|
|
addend must be stored into in the object file, and for some
|
|
|
|
|
(e.g., SPARC a.out) it is kept in the reloc. */
|
|
|
|
|
bfd_vma addend;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Allocate a new link_order for a section. */
|
2003-08-07 04:25:50 +02:00
|
|
|
|
extern struct bfd_link_order *bfd_new_link_order (bfd *, asection *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* These structures are used to describe version information for the
|
|
|
|
|
ELF linker. These structures could be manipulated entirely inside
|
|
|
|
|
BFD, but it would be a pain. Instead, the regular linker sets up
|
|
|
|
|
these structures, and then passes them into BFD. */
|
|
|
|
|
|
2003-10-22 08:58:17 +02:00
|
|
|
|
/* Glob pattern for a version. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_expr
|
|
|
|
|
{
|
2003-10-22 08:58:17 +02:00
|
|
|
|
/* Next glob pattern for this version. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct bfd_elf_version_expr *next;
|
2003-10-22 08:58:17 +02:00
|
|
|
|
/* Glob pattern. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char *pattern;
|
2008-11-26 02:04:17 +01:00
|
|
|
|
/* Set if pattern is not a glob. */
|
|
|
|
|
unsigned int literal : 1;
|
2002-08-08 05:50:18 +02:00
|
|
|
|
/* Defined by ".symver". */
|
2003-10-22 08:58:17 +02:00
|
|
|
|
unsigned int symver : 1;
|
2002-08-08 05:50:18 +02:00
|
|
|
|
/* Defined by version script. */
|
|
|
|
|
unsigned int script : 1;
|
2003-10-22 08:58:17 +02:00
|
|
|
|
/* Pattern type. */
|
|
|
|
|
#define BFD_ELF_VERSION_C_TYPE 1
|
|
|
|
|
#define BFD_ELF_VERSION_CXX_TYPE 2
|
|
|
|
|
#define BFD_ELF_VERSION_JAVA_TYPE 4
|
|
|
|
|
unsigned int mask : 3;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_expr_head
|
|
|
|
|
{
|
|
|
|
|
/* List of all patterns, both wildcards and non-wildcards. */
|
|
|
|
|
struct bfd_elf_version_expr *list;
|
|
|
|
|
/* Hash table for non-wildcards. */
|
|
|
|
|
void *htab;
|
|
|
|
|
/* Remaining patterns. */
|
|
|
|
|
struct bfd_elf_version_expr *remaining;
|
|
|
|
|
/* What kind of pattern types are present in list (bitmask). */
|
|
|
|
|
unsigned int mask;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Version dependencies. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_deps
|
|
|
|
|
{
|
|
|
|
|
/* Next dependency for this version. */
|
|
|
|
|
struct bfd_elf_version_deps *next;
|
|
|
|
|
/* The version which this version depends upon. */
|
|
|
|
|
struct bfd_elf_version_tree *version_needed;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* A node in the version tree. */
|
|
|
|
|
|
|
|
|
|
struct bfd_elf_version_tree
|
|
|
|
|
{
|
|
|
|
|
/* Next version. */
|
|
|
|
|
struct bfd_elf_version_tree *next;
|
|
|
|
|
/* Name of this version. */
|
|
|
|
|
const char *name;
|
|
|
|
|
/* Version number. */
|
|
|
|
|
unsigned int vernum;
|
|
|
|
|
/* Regular expressions for global symbols in this version. */
|
2003-10-22 08:58:17 +02:00
|
|
|
|
struct bfd_elf_version_expr_head globals;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Regular expressions for local symbols in this version. */
|
2003-10-22 08:58:17 +02:00
|
|
|
|
struct bfd_elf_version_expr_head locals;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* List of versions which this version depends upon. */
|
|
|
|
|
struct bfd_elf_version_deps *deps;
|
|
|
|
|
/* Index of the version name. This is used within BFD. */
|
|
|
|
|
unsigned int name_indx;
|
|
|
|
|
/* Whether this version tree was used. This is used within BFD. */
|
|
|
|
|
int used;
|
2003-10-22 08:58:17 +02:00
|
|
|
|
/* Matching hook. */
|
|
|
|
|
struct bfd_elf_version_expr *(*match)
|
|
|
|
|
(struct bfd_elf_version_expr_head *head,
|
|
|
|
|
struct bfd_elf_version_expr *prev, const char *sym);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
2006-09-07 19:16:34 +02:00
|
|
|
|
struct bfd_elf_dynamic_list
|
|
|
|
|
{
|
|
|
|
|
struct bfd_elf_version_expr_head head;
|
|
|
|
|
struct bfd_elf_version_expr *(*match)
|
|
|
|
|
(struct bfd_elf_version_expr_head *head,
|
|
|
|
|
struct bfd_elf_version_expr *prev, const char *sym);
|
|
|
|
|
};
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|