1999-05-03 07:29:11 +00:00
|
|
|
# Test that the linker reports undefined symbol errors correctly.
|
|
|
|
# By Ian Lance Taylor, Cygnus Support
|
|
|
|
#
|
2005-03-03 11:52:12 +00:00
|
|
|
# Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
|
2001-03-13 06:14:29 +00:00
|
|
|
# Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
#
|
|
|
|
# This file 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 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
set testund "undefined"
|
|
|
|
set testfn "undefined function"
|
|
|
|
set testline "undefined line"
|
|
|
|
|
|
|
|
if { [which $CC] == 0 } {
|
|
|
|
verbose "Could not find C compiler!" 1
|
|
|
|
untested $testund
|
|
|
|
untested $testfn
|
|
|
|
untested $testline
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ![ld_compile "$CC -g" $srcdir/$subdir/undefined.c tmpdir/undefined.o] {
|
|
|
|
verbose "Unable to compile test file!" 1
|
|
|
|
unresolved $testund
|
|
|
|
unresolved $testfn
|
|
|
|
unresolved $testline
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
catch "exec rm -f tmpdir/undefined" exec_output
|
|
|
|
|
2001-03-01 19:13:27 +00:00
|
|
|
set flags [big_or_little_endian]
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
# Using -e start prevents the SunOS linker from trying to build a
|
|
|
|
# shared library.
|
2001-03-01 19:13:27 +00:00
|
|
|
send_log "$ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o\n"
|
|
|
|
verbose "$ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o"
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-03-01 19:13:27 +00:00
|
|
|
catch "exec $ld -e start $flags -o tmpdir/undefined tmpdir/undefined.o" exec_output
|
1999-05-03 07:29:11 +00:00
|
|
|
send_log "$exec_output\n"
|
|
|
|
verbose "$exec_output"
|
|
|
|
|
|
|
|
proc checkund { string testname } {
|
|
|
|
global exec_output
|
|
|
|
|
|
|
|
if [string match "*$string*" $exec_output] {
|
|
|
|
pass $testname
|
|
|
|
} else {
|
|
|
|
fail $testname
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-31 03:57:52 +00:00
|
|
|
set mu "undefined reference to `*this_function_is_not_defined'"
|
1999-05-03 07:29:11 +00:00
|
|
|
checkund $mu $testund
|
|
|
|
|
|
|
|
# ARM PE defaults to using stabs debugging, which we can't handle for
|
|
|
|
# a COFF file.
|
|
|
|
#setup_xfail "arm*-*-pe*"
|
|
|
|
#setup_xfail "thumb*-*-pe*"
|
|
|
|
|
|
|
|
# Just doesn't work for PA ELF. No clue why.
|
|
|
|
setup_xfail "hppa*-*-*elf*"
|
|
|
|
|
2002-09-21 14:14:00 +00:00
|
|
|
set mf "tmpdir/undefined.o* In function `function':"
|
1999-05-03 07:29:11 +00:00
|
|
|
checkund $mf $testfn
|
|
|
|
|
2004-10-01 10:49:08 +00:00
|
|
|
if [is_elf_format] {
|
|
|
|
|
|
|
|
# Just doesn't work for PA ELF. No clue why.
|
|
|
|
setup_xfail "hppa*-*-*"
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
# COFF SH gets this test wrong--it reports line 10, because although
|
|
|
|
# the jump is at line 9, the function address, and the reloc, is
|
|
|
|
# stored at the end of the function.
|
|
|
|
setup_xfail "sh-*-*"
|
|
|
|
|
|
|
|
# ARM PE defaults to using stabs debugging, which we can't handle for
|
|
|
|
# a COFF file.
|
|
|
|
#setup_xfail "arm*-*-pe*"
|
|
|
|
#setup_xfail "thumb*-*-pe*"
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-01-31 03:57:52 +00:00
|
|
|
set ml "undefined.c:9: undefined reference to `*this_function_is_not_defined'"
|
1999-05-03 07:29:11 +00:00
|
|
|
# With targets that use elf/dwarf2, such as the arm-elf and thumb-elf
|
|
|
|
# toolchains, the code in bfd/elf.c:_bfd_elf_find_nearest_line() is called
|
|
|
|
# in order to locate the file name/line number where the undefined
|
|
|
|
# reference occurs. Unfortunately this tries to use the dwarf2 debug
|
|
|
|
# information held in the .debug_info section. This section contains a series
|
|
|
|
# of comp_unit structures, each of which has a low/high address range
|
|
|
|
# representing the span of memory locations covered by that structure. The
|
|
|
|
# structures also index into other structures held in the .debug_line section
|
|
|
|
# and together they can translate memory locations back into file/function/line
|
|
|
|
# number addresses in the source code. Since the information about the memory
|
|
|
|
# region covered by a comp_unit is only determined at link time, the low/high
|
|
|
|
# addresses in the .debug_info section and the line addresses in the .debug_line
|
|
|
|
# section are computed by generating relocs against known symbols in the object
|
|
|
|
# code.
|
|
|
|
#
|
|
|
|
# When the undefined reference is detected, the relocs in the dwarf2
|
|
|
|
# debug sections have not yet been resolved, so the low/high addresses and the
|
|
|
|
# line number address are all set at zero. Thus when _bfd_elf_find_nearest_line()
|
|
|
|
# calls _bfd_dwarf2_find_nearest_line() no comp_unit can be found which
|
|
|
|
# actually covers the address where the reference occured, and so
|
|
|
|
# _bfd_elf_find_nearest_line() fails.
|
|
|
|
#
|
|
|
|
# The upshot of all of this, is that the error message reported by the
|
|
|
|
# linker, instead of having a source file name & line number as in:
|
|
|
|
#
|
|
|
|
# undefined.c:9: undefined reference to `this_function_is_not_defined'
|
|
|
|
#
|
|
|
|
# has an object file & section address instead:
|
|
|
|
#
|
|
|
|
# undefined.0(.text+0xc): undefined reference to `this_function_is_not_defined'
|
|
|
|
#
|
|
|
|
# hence the xfails below.
|
|
|
|
|
1999-05-17 09:46:52 +00:00
|
|
|
setup_xfail mcore-*-elf
|
1999-07-15 17:02:34 +00:00
|
|
|
setup_xfail mips-sgi-irix6*
|
Contribute sh64-elf.
2002-02-02 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/crange3-cmpct.rd: Adjust offsets.
* ld-sh/sh64/crange3-media.rd: Likewise.
* ld-sh/sh64/crange3.rd: Likewise.
* ld-sh/sh64/crangerel1.rd: Likewise.
* ld-sh/sh64/crangerel2.rd: Likewise.
* ld-sh/sh64/reldl32.rd: Likewise.
* ld-sh/sh64/reldl64.rd: Likewise.
2002-01-28 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/abi32.xd: Formatting changes to match the current
output of objdump.
* ld-sh/sh64/cmpct1.xd: Likewise.
* ld-sh/sh64/crange1.rd: Likewise.
* ld-sh/sh64/crange2.rd: Likewise.
* ld-sh/sh64/crange3-cmpct.rd: Likewise.
* ld-sh/sh64/crange3-media.rd: Likewise.
* ld-sh/sh64/crange3.rd: Likewise.
* ld-sh/sh64/crangerel1.rd: Likewise.
* ld-sh/sh64/crangerel2.rd: Likewise.
* ld-sh/sh64/mix1.xd: Likewise.
* ld-sh/sh64/mix2.xd: Likewise.
* ld-sh/sh64/rel32.xd: Likewise.
* ld-sh/sh64/reldl32.rd: Likewise.
* ld-sh/sh64/reldl64.rd: Likewise.
* ld-sh/sh64/sh64.exp: Likewise. Reordered cranges and stack
sessions, to match changes in the linker script.
2001-06-14 Alexandre Oliva <aoliva@redhat.com>
* ld-sh/sh64/reldl32.rd, ld-sh/sh64/reldl64.rd: Adjust relocation
info to reflect renumbering of relocation types.
2001-03-14 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/endian.dbd: New file, endian tests.
* ld-sh/sh64/endian.dld: Ditto.
* ld-sh/sh64/endian.ld: Ditto.
* ld-sh/sh64/endian.s: Ditto.
* ld-sh/sh64/endian.sbd: Ditto.
* ld-sh/sh64/endian.sld: Ditto.
* ld-sh/sh64/sh64.exp: Add above tests. Add -L option to ld.
2001-03-12 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/relax.exp: New file, test disabling relaxing.
* ld-sh/sh64/relax1.s: Ditto.
* ld-sh/sh64/relax2.s: Ditto.
* ld-sh/sh64/relax3.s: Ditto.
* ld-sh/sh64/relax4.s: Ditto.
* ld-sh/sh64/relfail.exp: New file, test for bogus relocs.
* ld-sh/sh64/relfail.s: Ditto.
2001-03-12 DJ Delorie <dj@redhat.com>
* ld-sh/sh.exp: This test isn't appropriate for SH64 since it
uses SH32 assembler files.
2001-03-07 DJ Delorie <dj@redhat.com>
* ld-selective/selective.exp: Pass "-e _start" for sh64 to
accomodate expected start symbol in test.
2001-03-06 DJ Delorie <dj@redhat.com>
* ld-scripts/crossref.exp: Pass -mshelf32 to the linker for sh64,
to match what gcc passes to the linker by default.
* ld-selective/selective.exp: Ditto.
* ld-srec/srec.exp: Ditto, plus XFAIL for sh64.
* ld-undefined/undefined.exp: Add XFAIL for sh64 (it's dwarf2).
2001-03-06 DJ Delorie <dj@redhat.com>
* ld-sh/sh64/abi32.xd (stack): Adjust for new default stack layout.
* ld-sh/sh64/abi64.xd (stack): Ditto.
* ld-sh/sh64/cmpct1.xd (stack): Ditto.
* ld-sh/sh64/crange1.rd (stack): Ditto.
* ld-sh/sh64/crange2.rd (stack): Ditto.
* ld-sh/sh64/crange3-cmpct.rd (stack): Ditto.
* ld-sh/sh64/crange3-media.rd (stack): Ditto.
* ld-sh/sh64/crange3.rd (stack): Ditto.
* ld-sh/sh64/mix1.xd (stack): Ditto.
* ld-sh/sh64/mix2.xd (stack): Ditto.
* ld-sh/sh64/shdl32.xd (stack): Ditto.
* ld-sh/sh64/shdl64.xd (stack): Ditto.
2001-01-14 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/mix1.xd: Add SORT_ENTRIES for .cranges section.
* ld-sh/sh64/mix2.xd: Ditto.
2001-01-08 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.xd: Adjust for bit 0 set on an entry address
being SHmedia.
* ld-sh/sh64/shdl64.xd: Ditto.
* ld-sh/sh64/shdl32.xd: Ditto.
* ld-sh/sh64/mix2.xd: Ditto.
* ld-sh/sh64/crange3-media.rd: Ditto.
* ld-sh/sh64/abi64.xd: Ditto.
2001-01-06 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-2a.s (diversion2): New global symbol.
* ld-sh/sh64/crange1.rd: Adjust to presence of new symbol.
Adjust section type for .cranges; expect sorted contents.
* ld-sh/sh64/crange2.rd: Ditto.
* ld-sh/sh64/crange3.dd, ld-sh/sh64/crange3.rd: Ditto.
* ld-sh/sh64/crangerel1.rd: Adjust to presence of new symbol.
* ld-sh/sh64/crangerel2.rd: Ditto.
* ld-sh/sh64/mix1.xd: Adjust to DEBUGGING being set for .cranges.
* ld-sh/sh64/mix2.xd: Ditto.
* ld-sh/sh64/crange3-cmpct.rd, ld-sh/sh64/crange3-media.rd: New
tests.
* ld-sh/sh64/sh64.exp: Tweak test message. Run new tests.
2001-01-05 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/shmix-1.s (start2): Add a NOP to provide a valid
target for (unexpanded) PTB. Add an .align 2 to SHmedia code to
keep properly aligned.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd: Adjust accordingly.
* ld-sh/sh64/mix1-noexp.sd, ld-sh/sh64/mix2-noexp.sd,
ld-sh/sh64/abixx-noexp.sd: New tests for GAS -no-expand and
R_SH_PT_16 relocation.
* ld-sh/sh64/sh64.exp: Run new tests.
2000-12-30 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-2f.s, ld-sh/sh64/crange-2g.s,
ld-sh/sh64/crange-2h.s, ld-sh/sh64/crange-2i.s,
ld-sh/sh64/crange3.dd, ld-sh/sh64/crange3.rd: New tests.
* ld-sh/sh64/sh64.exp: Run new tests.
* ld-sh/sh64/crange1.rd: Correct section flags.
* ld-sh/sh64/crange2.rd: Ditto.
* ld-sh/sh64/crangerel1.rd: Ditto.
2000-12-18 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/crange-1.s, ld-sh/sh64/crange-2a.s,
ld-sh/sh64/crange-2b.s, ld-sh/sh64/crange-2c.s,
ld-sh/sh64/crange-2d.s, ld-sh/sh64/crange-2e.s,
ld-sh/sh64/crange1.rd, ld-sh/sh64/crange2.rd,
ld-sh/sh64/crangerel1.rd, ld-sh/sh64/crangerel2.rd: New tests for
handling .cranges section.
* ld-sh/sh64/sh64.exp: Run new tests.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd, ld-sh/sh64/mix2.sd,
ld-sh/sh64/mix2.xd: Adjust for .cranges section.
2000-12-15 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.sd, ld-sh/sh64/abi32.xd, ld-sh/sh64/abi64.sd,
ld-sh/sh64/abi64.xd, ld-sh/sh64/cmpct1.xd, ld-sh/sh64/mix1.sd,
ld-sh/sh64/mix1.xd, ld-sh/sh64/mix2.sd, ld-sh/sh64/mix2.xd,
ld-sh/sh64/shdl32.xd, ld-sh/sh64/shdl64.xd: Adjust to .bss and
.data individually 8-byte aligned.
2000-12-09 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/rel-1.s, ld-sh/sh64/rel-2.s, ld-sh/sh64/rel32.xd,
ld-sh/sh64/rel64.xd, ld-sh/sh64/reldl-1.s, ld-sh/sh64/reldl-2.s,
ld-sh/sh64/reldl32.rd, ld-sh/sh64/reldl64.rd: New tests.
* ld-sh/sh64/sh64.exp: Make it possible to use readelf as
inspection tool. Run new tests.
2000-12-07 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi64.sd, ld-sh/sh64/abi32.sd, ld-sh/sh64/mix1.sd,
ld-sh/sh64/mix2.sd: Correct offsets in PT/PTA/PTB expansions.
* ld-sh/sh64/shdl-1.s, ld-sh/sh64/shdl-2.s, ld-sh/sh64/shdl64.sd,
ld-sh/sh64/shdl64.xd, ld-sh/sh64/shdl32.xd: New tests.
* ld-sh/sh64/sh64.exp: Run new tests.
2000-12-01 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/cmpct1.sd, ld-sh/sh64/cmpct1.xd,
ld-sh/sh64/shcmp-1.s: New test.
* ld-sh/sh64/sh64.exp: Add new test to sh64tests. Reformat.
2000-11-30 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/sh64.exp: Use linker option -mshelf64 for 64-bit ABI
test.
* ld-sh/sh64/abi64.xd: Tweak for 64-bit ELF.
2000-11-29 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/sh64.exp (sh64tests): Use linker option -mshelf32 for
tests.
2000-11-27 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64/abi32.sd, ld-sh/sh64/abi64.sd: Correct MOVI
registers.
* ld-sh/sh64/mix1.sd, ld-sh/sh64/mix1.xd, ld-sh/sh64/shmix-1.s:
New test.
* ld-sh/sh64/mix2.sd, ld-sh/sh64/mix2.xd, ld-sh/sh64/shmix-2.s,
ld-sh/sh64/shmix-3.s: New test.
* ld-sh/sh64/sh64.exp: Add new tests to sh64tests.
2000-11-26 Hans-Peter Nilsson <hpn@cygnus.com>
* ld-sh/sh64: New testsuite.
2002-02-08 06:50:02 +00:00
|
|
|
setup_xfail "sh64-*-*"
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-06-06 12:11:53 +00:00
|
|
|
# The undefined test fails on 31 bit s/390 because the address of the
|
|
|
|
# function `this_function_is_not_defined' is stored in the literal pool of
|
|
|
|
# the function. Therefore the line number in the error message is 8 instead
|
|
|
|
# of 9. On 64 bit s/390 this works because of the new brasl instruction that
|
|
|
|
# doesn't need a literal pool entry.
|
2001-06-12 16:02:13 +00:00
|
|
|
setup_xfail s390-*-*
|
2001-06-06 12:11:53 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
checkund $ml $testline
|