1993-03-30 19:49:00 +02:00
|
|
|
|
1991-08-02 01:29:03 +02:00
|
|
|
/* ldindr.c
|
|
|
|
Handle indirect symbols.
|
|
|
|
|
1993-03-30 19:49:00 +02:00
|
|
|
Copyright (C) 1991 Free Software Foundation, Inc.
|
|
|
|
Written by Steve Chamberlain steve@cygnus.com
|
|
|
|
|
|
|
|
This file is part of GLD, the Gnu Linker.
|
|
|
|
|
|
|
|
GLD is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
GLD 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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with GLD; see the file COPYING. If not, write to
|
|
|
|
the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1992-05-06 22:31:01 +02:00
|
|
|
An indirect symbol is where a global symbol in one file say's that
|
|
|
|
all refs like it should be turned into refs of the symbol pointed
|
|
|
|
at by the value of the indirect symbol.
|
|
|
|
|
1991-08-02 01:29:03 +02:00
|
|
|
BFD supplies symbols to be indirected with the BFD_INDIRECT bit
|
|
|
|
set. Whenever the linker gets one of these, it calls add_indirect
|
1991-08-06 23:28:21 +02:00
|
|
|
with the symbol. We look up the symbol which this one dereferneces,
|
|
|
|
and stop if they are the same. If they are not the same, copy all
|
|
|
|
the information from the current to the dereffed symbol. Set the
|
|
|
|
indirect bit in the flag. From now on the ldsym_get stuff will
|
|
|
|
perform the indirection for us, at no charge.
|
1991-08-02 01:29:03 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "bfd.h"
|
1991-10-11 12:28:27 +01:00
|
|
|
#include "sysdep.h"
|
1991-08-02 01:29:03 +02:00
|
|
|
#include "ld.h"
|
|
|
|
#include "ldsym.h"
|
1991-08-06 23:28:21 +02:00
|
|
|
#include "ldmisc.h"
|
1991-08-02 01:29:03 +02:00
|
|
|
|
1991-08-06 23:28:21 +02:00
|
|
|
|
|
|
|
|
|
|
|
static asymbol **
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
move_it (a_list, b_list)
|
|
|
|
asymbol **a_list;
|
|
|
|
asymbol **b_list;
|
1991-08-02 01:29:03 +02:00
|
|
|
{
|
1991-08-06 23:28:21 +02:00
|
|
|
asymbol **head = a_list;
|
|
|
|
asymbol **cursor = head;
|
|
|
|
|
|
|
|
if (a_list == 0) return b_list;
|
|
|
|
if (b_list == 0) return a_list;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
asymbol *ptr = cursor[0];
|
|
|
|
asymbol **next = (asymbol **)(ptr->udata);
|
|
|
|
if (next == 0) {
|
|
|
|
ptr->udata = (PTR) b_list;
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
cursor = next;
|
1991-08-02 01:29:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1992-05-06 22:31:01 +02:00
|
|
|
#if 0
|
|
|
|
void
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
copy_over (ldsym, bfdsym)
|
|
|
|
ldsym_type *ldsym;
|
|
|
|
asymbol **bfdsym;
|
1992-05-06 22:31:01 +02:00
|
|
|
{
|
|
|
|
while (list && *list)
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
{
|
1993-07-15 23:49:24 +02:00
|
|
|
refize(enter_global_ref(list, name));
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
list = (asymbol **)((*list)->udata);
|
|
|
|
}
|
1992-05-06 22:31:01 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This call allows us to change the symbol table so that all future
|
|
|
|
refs to the symbol are patched to know the alias - but we still
|
|
|
|
have to fix all the old ones */
|
1991-08-02 01:29:03 +02:00
|
|
|
void
|
* ldfile.c (ldfile_open_command): Don't try .ld extension.
It wasn't documented (or likely used) and wastes time.
(try_open): If EXTEN is empty, don't try it.
* ldctor.c, lderror.c, ldexp.c, ldfile.c, ldindr.c, ldlang.c,
ldlex.l, ldmain.c, ldmisc.c, ldsym.c, ldver.c, ldwarn.c,
ldwrite.c, lexsup.c, mri.c, relax.c: Replace DEFUN macro calls
with normal function declarations.
* Move *.em to emultempl/*.em. Move *.sh to emulparams/*.sh.
Move *.sc-sh to scripttempl/*.sc.
* {emultempl,emulparams,scripttempl}/README: New files.
* sh.em, st2000.em, z8ksim.em, h8300hms.em, h8500hms.em: Files
removed, replaced with generic.em.
* h8300.sh, h8500.sh, h8300.sc, h8500.sc: Renamed from
h8[35]00hms.s[ch]. Change their contents to omit the "hms".
* *.em (*_get_script): Return script name instead of script contents.
* ldlang.c (lang_process): Change caller.
* ldlex.l, ldgram.y: Recognize -m option.
Check for input files after *all* options in grammar.
* ldmain.c (main): Check for -m options. Add default directory
for -m.
* mkscript.c: File removed.
* genscripts.sh: Take two more parameters, tooldirlib and libdir,
to add to the default LIB_PATH.
Look for input files in the new subdirectories.
Create the scripts in emulations subdirectory and don't filter
them through mkscript.
* configure.in: Make the emulations subdirectory.
* Makefile.in: Account for all of the above changes.
Remove unused .SUFFIXES. Get libgcc.a path with gcc
-print-libgcc-file-name instead of $(libdir)/libgcc.a.
Put CFLAGS last in the compilation rules.
Add -I../bfd to INCLUDES so sysdep.h is found.
* ldfile.c (try_open): If opening without the extension fails,
try with the extension even if -v or -V was given.
had_script is imported (from ldgram.y), not exported.
1993-06-17 22:55:43 +02:00
|
|
|
add_indirect (ptr)
|
|
|
|
asymbol **ptr;
|
1991-08-02 01:29:03 +02:00
|
|
|
{
|
1992-05-06 22:31:01 +02:00
|
|
|
asymbol **p;
|
1991-08-06 23:28:21 +02:00
|
|
|
ldsym_type *lgs = ldsym_get((*ptr)->name);
|
|
|
|
ldsym_type *new = ldsym_get(((asymbol *)((*ptr)->value))->name);
|
1991-08-02 01:29:03 +02:00
|
|
|
|
1991-08-06 23:28:21 +02:00
|
|
|
/* If the mapping has already been done, stop now */
|
|
|
|
if (lgs == new) return;
|
1992-05-06 22:31:01 +02:00
|
|
|
|
1991-08-06 23:28:21 +02:00
|
|
|
lgs->flags |= SYM_INDIRECT;
|
1991-08-02 01:29:03 +02:00
|
|
|
|
1992-05-06 22:31:01 +02:00
|
|
|
if (lgs->sdefs_chain && lgs->sdefs_chain[0])
|
|
|
|
{
|
|
|
|
einfo("indirect symbol already has definition %s", lgs->sdefs_chain[0]);
|
|
|
|
}
|
1991-08-06 23:28:21 +02:00
|
|
|
new->scoms_chain = move_it(new->scoms_chain, lgs->scoms_chain);
|
|
|
|
lgs->scoms_chain = 0;
|
|
|
|
new->srefs_chain = move_it(new->srefs_chain, lgs->srefs_chain);
|
|
|
|
lgs->srefs_chain = 0;
|
|
|
|
new->sdefs_chain = move_it(new->sdefs_chain, lgs->sdefs_chain);
|
|
|
|
lgs->sdefs_chain = 0;
|
1991-08-02 01:29:03 +02:00
|
|
|
|
1992-05-06 22:31:01 +02:00
|
|
|
/* If the result has any commons they should be turned into refs */
|
|
|
|
|
|
|
|
if (new->sdefs_chain && new->scoms_chain)
|
|
|
|
{
|
|
|
|
refize(new, new->scoms_chain);
|
|
|
|
}
|
1993-03-30 19:49:00 +02:00
|
|
|
lgs->sdefs_chain = (asymbol **)new;
|
|
|
|
lgs->srefs_chain = ptr;
|
1991-08-06 23:28:21 +02:00
|
|
|
}
|
1991-08-02 01:29:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|