mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* elf32-i386.c (struct elf_i386_pcrel_relocs_copied): Define.
(struct elf_i386_link_hash_entry): Define. (struct elf_i386_link_hash_table): Define. (elf_i386_link_hash_traverse): Define. (elf_i386_hash_table): Define. (elf_i386_link_hash_newfunc): New static function. (elf_i386_link_hash_table_create): New static function. (elf_i386_check_relocs): If linking with -Bsymbolic, don't copy PC relative relocs for a global symbol defined in a regular object, and count the number of PC relative relocs copied for any global symbol. (elf_i386_size_dynamic_sections): If linking with -Bsymbolic, traverse with elf_i386_discard_copies. (elf_i386_discard_copies): New static function. (bfd_elf32_bfd_link_hash_table_create): Define.
This commit is contained in:
@ -1,5 +1,21 @@
|
|||||||
Thu Apr 17 11:10:54 1997 Ian Lance Taylor <ian@cygnus.com>
|
Thu Apr 17 11:10:54 1997 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* elf32-i386.c (struct elf_i386_pcrel_relocs_copied): Define.
|
||||||
|
(struct elf_i386_link_hash_entry): Define.
|
||||||
|
(struct elf_i386_link_hash_table): Define.
|
||||||
|
(elf_i386_link_hash_traverse): Define.
|
||||||
|
(elf_i386_hash_table): Define.
|
||||||
|
(elf_i386_link_hash_newfunc): New static function.
|
||||||
|
(elf_i386_link_hash_table_create): New static function.
|
||||||
|
(elf_i386_check_relocs): If linking with -Bsymbolic, don't copy
|
||||||
|
PC relative relocs for a global symbol defined in a regular
|
||||||
|
object, and count the number of PC relative relocs copied for any
|
||||||
|
global symbol.
|
||||||
|
(elf_i386_size_dynamic_sections): If linking with -Bsymbolic,
|
||||||
|
traverse with elf_i386_discard_copies.
|
||||||
|
(elf_i386_discard_copies): New static function.
|
||||||
|
(bfd_elf32_bfd_link_hash_table_create): Define.
|
||||||
|
|
||||||
From Gordon W. Ross <gwr@mc.com>:
|
From Gordon W. Ross <gwr@mc.com>:
|
||||||
* aoutf1.h (MY_entry_is_text_address): Define if not defined.
|
* aoutf1.h (MY_entry_is_text_address): Define if not defined.
|
||||||
(sunos4_aout_backend): Use MY_entry_is_text_address.
|
(sunos4_aout_backend): Use MY_entry_is_text_address.
|
||||||
|
281
bfd/elf32-i386.c
281
bfd/elf32-i386.c
@ -1,5 +1,5 @@
|
|||||||
/* Intel 80386/80486-specific support for 32-bit ELF
|
/* Intel 80386/80486-specific support for 32-bit ELF
|
||||||
Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
|
Copyright 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
||||||
|
|
||||||
@ -29,6 +29,11 @@ static void elf_i386_info_to_howto
|
|||||||
PARAMS ((bfd *, arelent *, Elf32_Internal_Rela *));
|
PARAMS ((bfd *, arelent *, Elf32_Internal_Rela *));
|
||||||
static void elf_i386_info_to_howto_rel
|
static void elf_i386_info_to_howto_rel
|
||||||
PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
|
PARAMS ((bfd *, arelent *, Elf32_Internal_Rel *));
|
||||||
|
static boolean elf_i386_is_local_label_name PARAMS ((bfd *, const char *));
|
||||||
|
static struct bfd_hash_entry *elf_i386_link_hash_newfunc
|
||||||
|
PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
|
||||||
|
static struct bfd_link_hash_table *elf_i386_link_hash_table_create
|
||||||
|
PARAMS ((bfd *));
|
||||||
static boolean elf_i386_check_relocs
|
static boolean elf_i386_check_relocs
|
||||||
PARAMS ((bfd *, struct bfd_link_info *, asection *,
|
PARAMS ((bfd *, struct bfd_link_info *, asection *,
|
||||||
const Elf_Internal_Rela *));
|
const Elf_Internal_Rela *));
|
||||||
@ -221,6 +226,23 @@ elf_i386_info_to_howto_rel (abfd, cache_ptr, dst)
|
|||||||
|
|
||||||
cache_ptr->howto = &elf_howto_table[(int) type];
|
cache_ptr->howto = &elf_howto_table[(int) type];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Return whether a symbol name implies a local label. The UnixWare
|
||||||
|
2.1 cc generates temporary symbols that start with .X, so we
|
||||||
|
recognize them here. FIXME: do other SVR4 compilers also use .X?.
|
||||||
|
If so, we should move the .X recognition into
|
||||||
|
_bfd_elf_is_local_label_name. */
|
||||||
|
|
||||||
|
static boolean
|
||||||
|
elf_i386_is_local_label_name (abfd, name)
|
||||||
|
bfd *abfd;
|
||||||
|
const char *name;
|
||||||
|
{
|
||||||
|
if (name[0] == '.' && name[1] == 'X')
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return _bfd_elf_is_local_label_name (abfd, name);
|
||||||
|
}
|
||||||
|
|
||||||
/* Functions for the i386 ELF linker. */
|
/* Functions for the i386 ELF linker. */
|
||||||
|
|
||||||
@ -279,6 +301,115 @@ static const bfd_byte elf_i386_pic_plt_entry[PLT_ENTRY_SIZE] =
|
|||||||
0, 0, 0, 0 /* replaced with offset to start of .plt. */
|
0, 0, 0, 0 /* replaced with offset to start of .plt. */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* The i386 linker needs to keep track of the number of relocs that it
|
||||||
|
decides to copy in check_relocs for each symbol. This is so that
|
||||||
|
it can discard PC relative relocs if it doesn't need them when
|
||||||
|
linking with -Bsymbolic. We store the information in a field
|
||||||
|
extending the regular ELF linker hash table. */
|
||||||
|
|
||||||
|
/* This structure keeps track of the number of PC relative relocs we
|
||||||
|
have copied for a given symbol. */
|
||||||
|
|
||||||
|
struct elf_i386_pcrel_relocs_copied
|
||||||
|
{
|
||||||
|
/* Next section. */
|
||||||
|
struct elf_i386_pcrel_relocs_copied *next;
|
||||||
|
/* A section in dynobj. */
|
||||||
|
asection *section;
|
||||||
|
/* Number of relocs copied in this section. */
|
||||||
|
bfd_size_type count;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* i386 ELF linker hash entry. */
|
||||||
|
|
||||||
|
struct elf_i386_link_hash_entry
|
||||||
|
{
|
||||||
|
struct elf_link_hash_entry root;
|
||||||
|
|
||||||
|
/* Number of PC relative relocs copied for this symbol. */
|
||||||
|
struct elf_i386_pcrel_relocs_copied *pcrel_relocs_copied;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* i386 ELF linker hash table. */
|
||||||
|
|
||||||
|
struct elf_i386_link_hash_table
|
||||||
|
{
|
||||||
|
struct elf_link_hash_table root;
|
||||||
|
};
|
||||||
|
|
||||||
|
/* Declare this now that the above structures are defined. */
|
||||||
|
|
||||||
|
static boolean elf_i386_discard_copies
|
||||||
|
PARAMS ((struct elf_i386_link_hash_entry *, PTR));
|
||||||
|
|
||||||
|
/* Traverse an i386 ELF linker hash table. */
|
||||||
|
|
||||||
|
#define elf_i386_link_hash_traverse(table, func, info) \
|
||||||
|
(elf_link_hash_traverse \
|
||||||
|
(&(table)->root, \
|
||||||
|
(boolean (*) PARAMS ((struct elf_link_hash_entry *, PTR))) (func), \
|
||||||
|
(info)))
|
||||||
|
|
||||||
|
/* Get the i386 ELF linker hash table from a link_info structure. */
|
||||||
|
|
||||||
|
#define elf_i386_hash_table(p) \
|
||||||
|
((struct elf_i386_link_hash_table *) ((p)->hash))
|
||||||
|
|
||||||
|
/* Create an entry in an i386 ELF linker hash table. */
|
||||||
|
|
||||||
|
static struct bfd_hash_entry *
|
||||||
|
elf_i386_link_hash_newfunc (entry, table, string)
|
||||||
|
struct bfd_hash_entry *entry;
|
||||||
|
struct bfd_hash_table *table;
|
||||||
|
const char *string;
|
||||||
|
{
|
||||||
|
struct elf_i386_link_hash_entry *ret =
|
||||||
|
(struct elf_i386_link_hash_entry *) entry;
|
||||||
|
|
||||||
|
/* Allocate the structure if it has not already been allocated by a
|
||||||
|
subclass. */
|
||||||
|
if (ret == (struct elf_i386_link_hash_entry *) NULL)
|
||||||
|
ret = ((struct elf_i386_link_hash_entry *)
|
||||||
|
bfd_hash_allocate (table,
|
||||||
|
sizeof (struct elf_i386_link_hash_entry)));
|
||||||
|
if (ret == (struct elf_i386_link_hash_entry *) NULL)
|
||||||
|
return (struct bfd_hash_entry *) ret;
|
||||||
|
|
||||||
|
/* Call the allocation method of the superclass. */
|
||||||
|
ret = ((struct elf_i386_link_hash_entry *)
|
||||||
|
_bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
|
||||||
|
table, string));
|
||||||
|
if (ret != (struct elf_i386_link_hash_entry *) NULL)
|
||||||
|
{
|
||||||
|
ret->pcrel_relocs_copied = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (struct bfd_hash_entry *) ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Create an i386 ELF linker hash table. */
|
||||||
|
|
||||||
|
static struct bfd_link_hash_table *
|
||||||
|
elf_i386_link_hash_table_create (abfd)
|
||||||
|
bfd *abfd;
|
||||||
|
{
|
||||||
|
struct elf_i386_link_hash_table *ret;
|
||||||
|
|
||||||
|
ret = ((struct elf_i386_link_hash_table *)
|
||||||
|
bfd_alloc (abfd, sizeof (struct elf_i386_link_hash_table)));
|
||||||
|
if (ret == (struct elf_i386_link_hash_table *) NULL)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (! _bfd_elf_link_hash_table_init (&ret->root, abfd,
|
||||||
|
elf_i386_link_hash_newfunc))
|
||||||
|
{
|
||||||
|
bfd_release (abfd, ret);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
return &ret->root.root;
|
||||||
|
}
|
||||||
|
|
||||||
/* Look through the relocs for a section during the first phase, and
|
/* Look through the relocs for a section during the first phase, and
|
||||||
allocate space in the global offset table or procedure linkage
|
allocate space in the global offset table or procedure linkage
|
||||||
table. */
|
table. */
|
||||||
@ -448,8 +579,24 @@ elf_i386_check_relocs (abfd, info, sec, relocs)
|
|||||||
|
|
||||||
case R_386_32:
|
case R_386_32:
|
||||||
case R_386_PC32:
|
case R_386_PC32:
|
||||||
|
/* If we are creating a shared library, and this is a reloc
|
||||||
|
against a global symbol, or a non PC relative reloc
|
||||||
|
against a local symbol, then we need to copy the reloc
|
||||||
|
into the shared library. However, if we are linking with
|
||||||
|
-Bsymbolic, we do not need to copy a reloc against a
|
||||||
|
global symbol which is defined in an object we are
|
||||||
|
including in the link (i.e., DEF_REGULAR is set). At
|
||||||
|
this point we have not seen all the input files, so it is
|
||||||
|
possible that DEF_REGULAR is not set now but will be set
|
||||||
|
later (it is never cleared). We account for that
|
||||||
|
possibility below by storing information in the
|
||||||
|
pcrel_relocs_copied field of the hash table entry. */
|
||||||
if (info->shared
|
if (info->shared
|
||||||
&& (ELF32_R_TYPE (rel->r_info) != R_386_PC32 || h != NULL))
|
&& (ELF32_R_TYPE (rel->r_info) != R_386_PC32
|
||||||
|
|| (h != NULL
|
||||||
|
&& (! info->symbolic
|
||||||
|
|| (h->elf_link_hash_flags
|
||||||
|
& ELF_LINK_HASH_DEF_REGULAR) == 0))))
|
||||||
{
|
{
|
||||||
/* When creating a shared object, we must copy these
|
/* When creating a shared object, we must copy these
|
||||||
reloc types into the output file. We create a reloc
|
reloc types into the output file. We create a reloc
|
||||||
@ -487,6 +634,40 @@ elf_i386_check_relocs (abfd, info, sec, relocs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
sreloc->_raw_size += sizeof (Elf32_External_Rel);
|
sreloc->_raw_size += sizeof (Elf32_External_Rel);
|
||||||
|
|
||||||
|
/* If we are linking with -Bsymbolic, and this is a
|
||||||
|
global symbol, we count the number of PC relative
|
||||||
|
relocations we have entered for this symbol, so that
|
||||||
|
we can discard them again if the symbol is later
|
||||||
|
defined by a regular object. Note that this function
|
||||||
|
is only called if we are using an elf_i386 linker
|
||||||
|
hash table, which means that h is really a pointer to
|
||||||
|
an elf_i386_link_hash_entry. */
|
||||||
|
if (h != NULL && info->symbolic)
|
||||||
|
{
|
||||||
|
struct elf_i386_link_hash_entry *eh;
|
||||||
|
struct elf_i386_pcrel_relocs_copied *p;
|
||||||
|
|
||||||
|
eh = (struct elf_i386_link_hash_entry *) h;
|
||||||
|
|
||||||
|
for (p = eh->pcrel_relocs_copied; p != NULL; p = p->next)
|
||||||
|
if (p->section == sreloc)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (p == NULL)
|
||||||
|
{
|
||||||
|
p = ((struct elf_i386_pcrel_relocs_copied *)
|
||||||
|
bfd_alloc (dynobj, sizeof *p));
|
||||||
|
if (p == NULL)
|
||||||
|
return false;
|
||||||
|
p->next = eh->pcrel_relocs_copied;
|
||||||
|
eh->pcrel_relocs_copied = p;
|
||||||
|
p->section = sreloc;
|
||||||
|
p->count = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
++p->count;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@ -629,14 +810,11 @@ elf_i386_adjust_dynamic_symbol (info, h)
|
|||||||
s = bfd_get_section_by_name (dynobj, ".dynbss");
|
s = bfd_get_section_by_name (dynobj, ".dynbss");
|
||||||
BFD_ASSERT (s != NULL);
|
BFD_ASSERT (s != NULL);
|
||||||
|
|
||||||
/* If the symbol is currently defined in the .bss section of the
|
/* We must generate a R_386_COPY reloc to tell the dynamic linker to
|
||||||
dynamic object, then it is OK to simply initialize it to zero.
|
copy the initial value out of the dynamic object and into the
|
||||||
If the symbol is in some other section, we must generate a
|
runtime process image. We need to remember the offset into the
|
||||||
R_386_COPY reloc to tell the dynamic linker to copy the initial
|
.rel.bss section we are going to use. */
|
||||||
value out of the dynamic object and into the runtime process
|
if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
|
||||||
image. We need to remember the offset into the .rel.bss section
|
|
||||||
we are going to use. */
|
|
||||||
if ((h->root.u.def.section->flags & SEC_LOAD) != 0)
|
|
||||||
{
|
{
|
||||||
asection *srel;
|
asection *srel;
|
||||||
|
|
||||||
@ -710,6 +888,15 @@ elf_i386_size_dynamic_sections (output_bfd, info)
|
|||||||
s->_raw_size = 0;
|
s->_raw_size = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If this is a -Bsymbolic shared link, then we need to discard all
|
||||||
|
PC relative relocs against symbols defined in a regular object.
|
||||||
|
We allocated space for them in the check_relocs routine, but we
|
||||||
|
will not fill them in in the relocate_section routine. */
|
||||||
|
if (info->shared && info->symbolic)
|
||||||
|
elf_i386_link_hash_traverse (elf_i386_hash_table (info),
|
||||||
|
elf_i386_discard_copies,
|
||||||
|
(PTR) NULL);
|
||||||
|
|
||||||
/* The check_relocs and adjust_dynamic_symbol entry points have
|
/* The check_relocs and adjust_dynamic_symbol entry points have
|
||||||
determined the sizes of the various dynamic sections. Allocate
|
determined the sizes of the various dynamic sections. Allocate
|
||||||
memory for them. */
|
memory for them. */
|
||||||
@ -767,6 +954,8 @@ elf_i386_size_dynamic_sections (output_bfd, info)
|
|||||||
than .rel.plt. */
|
than .rel.plt. */
|
||||||
if (strcmp (name, ".rel.plt") != 0)
|
if (strcmp (name, ".rel.plt") != 0)
|
||||||
{
|
{
|
||||||
|
const char *outname;
|
||||||
|
|
||||||
relocs = true;
|
relocs = true;
|
||||||
|
|
||||||
/* If this relocation section applies to a read only
|
/* If this relocation section applies to a read only
|
||||||
@ -774,7 +963,9 @@ elf_i386_size_dynamic_sections (output_bfd, info)
|
|||||||
entry. The entries in the .rel.plt section
|
entry. The entries in the .rel.plt section
|
||||||
really apply to the .got section, which we
|
really apply to the .got section, which we
|
||||||
created ourselves and so know is not readonly. */
|
created ourselves and so know is not readonly. */
|
||||||
target = bfd_get_section_by_name (output_bfd, name + 4);
|
outname = bfd_get_section_name (output_bfd,
|
||||||
|
s->output_section);
|
||||||
|
target = bfd_get_section_by_name (output_bfd, outname + 4);
|
||||||
if (target != NULL
|
if (target != NULL
|
||||||
&& (target->flags & SEC_READONLY) != 0)
|
&& (target->flags & SEC_READONLY) != 0)
|
||||||
reltext = true;
|
reltext = true;
|
||||||
@ -852,6 +1043,31 @@ elf_i386_size_dynamic_sections (output_bfd, info)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* This function is called via elf_i386_link_hash_traverse if we are
|
||||||
|
creating a shared object with -Bsymbolic. It discards the space
|
||||||
|
allocated to copy PC relative relocs against symbols which are
|
||||||
|
defined in regular objects. We allocated space for them in the
|
||||||
|
check_relocs routine, but we won't fill them in in the
|
||||||
|
relocate_section routine. */
|
||||||
|
|
||||||
|
/*ARGSUSED*/
|
||||||
|
static boolean
|
||||||
|
elf_i386_discard_copies (h, ignore)
|
||||||
|
struct elf_i386_link_hash_entry *h;
|
||||||
|
PTR ignore;
|
||||||
|
{
|
||||||
|
struct elf_i386_pcrel_relocs_copied *s;
|
||||||
|
|
||||||
|
/* We only discard relocs for symbols defined in a regular object. */
|
||||||
|
if ((h->root.elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
for (s = h->pcrel_relocs_copied; s != NULL; s = s->next)
|
||||||
|
s->section->_raw_size -= s->count * sizeof (Elf32_External_Rel);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/* Relocate an i386 ELF section. */
|
/* Relocate an i386 ELF section. */
|
||||||
|
|
||||||
static boolean
|
static boolean
|
||||||
@ -1166,7 +1382,7 @@ elf_i386_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
& ELF_LINK_HASH_DEF_REGULAR) == 0))))
|
& ELF_LINK_HASH_DEF_REGULAR) == 0))))
|
||||||
{
|
{
|
||||||
Elf_Internal_Rel outrel;
|
Elf_Internal_Rel outrel;
|
||||||
boolean relocate;
|
boolean skip, relocate;
|
||||||
|
|
||||||
/* When generating a shared object, these relocations
|
/* When generating a shared object, these relocations
|
||||||
are copied into the output file to be resolved at run
|
are copied into the output file to be resolved at run
|
||||||
@ -1192,10 +1408,33 @@ elf_i386_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
BFD_ASSERT (sreloc != NULL);
|
BFD_ASSERT (sreloc != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
outrel.r_offset = (rel->r_offset
|
skip = false;
|
||||||
+ input_section->output_section->vma
|
|
||||||
+ input_section->output_offset);
|
if (elf_section_data (input_section)->stab_info == NULL)
|
||||||
if (r_type == R_386_PC32)
|
outrel.r_offset = rel->r_offset;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
bfd_vma off;
|
||||||
|
|
||||||
|
off = (_bfd_stab_section_offset
|
||||||
|
(output_bfd, &elf_hash_table (info)->stab_info,
|
||||||
|
input_section,
|
||||||
|
&elf_section_data (input_section)->stab_info,
|
||||||
|
rel->r_offset));
|
||||||
|
if (off == (bfd_vma) -1)
|
||||||
|
skip = true;
|
||||||
|
outrel.r_offset = off;
|
||||||
|
}
|
||||||
|
|
||||||
|
outrel.r_offset += (input_section->output_section->vma
|
||||||
|
+ input_section->output_offset);
|
||||||
|
|
||||||
|
if (skip)
|
||||||
|
{
|
||||||
|
memset (&outrel, 0, sizeof outrel);
|
||||||
|
relocate = false;
|
||||||
|
}
|
||||||
|
else if (r_type == R_386_PC32)
|
||||||
{
|
{
|
||||||
BFD_ASSERT (h != NULL && h->dynindx != -1);
|
BFD_ASSERT (h != NULL && h->dynindx != -1);
|
||||||
relocate = false;
|
relocate = false;
|
||||||
@ -1203,8 +1442,10 @@ elf_i386_relocate_section (output_bfd, info, input_bfd, input_section,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
/* h->dynindx may be -1 if this symbol was marked to
|
||||||
|
become local. */
|
||||||
if (h == NULL
|
if (h == NULL
|
||||||
|| (info->symbolic
|
|| ((info->symbolic || h->dynindx == -1)
|
||||||
&& (h->elf_link_hash_flags
|
&& (h->elf_link_hash_flags
|
||||||
& ELF_LINK_HASH_DEF_REGULAR) != 0))
|
& ELF_LINK_HASH_DEF_REGULAR) != 0))
|
||||||
{
|
{
|
||||||
@ -1573,12 +1814,16 @@ elf_i386_finish_dynamic_sections (output_bfd, info)
|
|||||||
#define TARGET_LITTLE_NAME "elf32-i386"
|
#define TARGET_LITTLE_NAME "elf32-i386"
|
||||||
#define ELF_ARCH bfd_arch_i386
|
#define ELF_ARCH bfd_arch_i386
|
||||||
#define ELF_MACHINE_CODE EM_386
|
#define ELF_MACHINE_CODE EM_386
|
||||||
|
#define ELF_MAXPAGESIZE 0x1000
|
||||||
#define elf_info_to_howto elf_i386_info_to_howto
|
#define elf_info_to_howto elf_i386_info_to_howto
|
||||||
#define elf_info_to_howto_rel elf_i386_info_to_howto_rel
|
#define elf_info_to_howto_rel elf_i386_info_to_howto_rel
|
||||||
#define bfd_elf32_bfd_reloc_type_lookup elf_i386_reloc_type_lookup
|
#define bfd_elf32_bfd_reloc_type_lookup elf_i386_reloc_type_lookup
|
||||||
#define ELF_MAXPAGESIZE 0x1000
|
#define bfd_elf32_bfd_is_local_label_name \
|
||||||
|
elf_i386_is_local_label_name
|
||||||
#define elf_backend_create_dynamic_sections \
|
#define elf_backend_create_dynamic_sections \
|
||||||
_bfd_elf_create_dynamic_sections
|
_bfd_elf_create_dynamic_sections
|
||||||
|
#define bfd_elf32_bfd_link_hash_table_create \
|
||||||
|
elf_i386_link_hash_table_create
|
||||||
#define elf_backend_check_relocs elf_i386_check_relocs
|
#define elf_backend_check_relocs elf_i386_check_relocs
|
||||||
#define elf_backend_adjust_dynamic_symbol \
|
#define elf_backend_adjust_dynamic_symbol \
|
||||||
elf_i386_adjust_dynamic_symbol
|
elf_i386_adjust_dynamic_symbol
|
||||||
|
Reference in New Issue
Block a user