PowerPC notoc call stub tests
[deliverable/binutils-gdb.git] / ld / testsuite / ld-shared / shared.exp
CommitLineData
252b5132 1# Expect script for ld-shared tests
82704155 2# Copyright (C) 1994-2019 Free Software Foundation, Inc.
252b5132 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
252b5132 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
252b5132 9# (at your option) any later version.
f96b4a7b 10#
252b5132
RH
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
f96b4a7b 15#
252b5132
RH
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
252b5132
RH
20#
21# Written by Ian Lance Taylor (ian@cygnus.com)
22#
23
24# Make sure that ld can generate ELF shared libraries.
25# Note that linking against ELF shared libraries is tested by the
26# bootstrap test.
27
d9816402 28# Check to see if the C compiler works
44ed8092 29if { ![check_compiler_available] } {
d9816402
AM
30 return
31}
252b5132
RH
32
33# This test can only be run on a couple of ELF platforms.
34# Square bracket expressions seem to confuse istarget.
19c7c582
AM
35if { ![istarget hppa*64*-*-hpux*] \
36 && ![istarget hppa*-*-linux*] \
37 && ![istarget i?86-*-sysv4*] \
ad995491
L
38 && ![istarget i?86-*-unixware] \
39 && ![istarget i?86-*-elf*] \
40 && ![istarget i?86-*-linux*] \
5940a93c 41 && ![istarget i?86-*-gnu*] \
5a68afcf 42 && ![istarget *-*-nacl*] \
ad995491
L
43 && ![istarget ia64-*-elf*] \
44 && ![istarget ia64-*-linux*] \
252b5132
RH
45 && ![istarget m68k-*-linux*] \
46 && ![istarget mips*-*-irix5*] \
66517a2f 47 && ![istarget mips*-*-linux*] \
24b01a74
AM
48 && ![istarget powerpc*-*-elf*] \
49 && ![istarget powerpc*-*-linux*] \
50 && ![istarget powerpc*-*-sysv4*] \
252b5132
RH
51 && ![istarget sparc*-*-elf] \
52 && ![istarget sparc*-*-solaris2*] \
b33b6e45 53 && ![istarget sparc*-*-linux*] \
4f38fc1c 54 && ![istarget arm*-*-linux*] \
2ffd68ef 55 && ![istarget alpha*-*-linux*] \
252b5132 56 && ![istarget rs6000*-*-aix*] \
9147e853
JJ
57 && ![istarget powerpc*-*-aix*] \
58 && ![istarget s390*-*-linux*] \
a06ea964 59 && ![istarget aarch64*-*-linux*] \
9147e853 60 && ![istarget x86_64-*-linux*] } {
252b5132 61 return
252b5132
RH
62}
63
64set tmpdir tmpdir
65set SHCFLAG ""
a9f844b1 66set shared_needs_pic "no"
252b5132
RH
67
68if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
69
70 # AIX shared libraries do not seem to support useful features,
71 # like overriding the shared library function or letting the
72 # shared library refer to objects defined in the main program. We
73 # avoid testing those features.
74 set SHCFLAG "-DXCOFF_TEST"
75
76 # The AIX 3.2.5 loader appears to randomly fail when loading
77 # shared libraries from NSF mounted partitions, so we avoid any
78 # potential problems by using a local directory.
79 catch {exec /bin/sh -c "echo $$"} pid
80 set tmpdir /usr/tmp/ld.$pid
81 catch "exec mkdir $tmpdir" exec_status
82
83 # On AIX, we need to explicitly export the symbols the shared
84 # library is going to provide, and need.
85 set file [open $tmpdir/xcoff.exp w]
86 puts $file shlibvar1
87 puts $file shlibvar2
88 puts $file shlib_shlibvar1
89 puts $file shlib_shlibvar2
90 puts $file shlib_shlibcall
91 puts $file shlib_shlibcalled
92 puts $file shlib_checkfunptr1
93 puts $file shlib_getfunptr1
94 puts $file shlib_check
95 close $file
96}
97
a9f844b1
NC
98if [istarget arm*-*-linux*] {
99 # On ARM section anchors can change the symbol pre-emptability for
5a68afcf 100 # non-PIC shared libraries, causing these tests to fail. Turn section
a9f844b1
NC
101 # anchors off.
102 set SHCFLAG "-fno-section-anchors"
103
5a68afcf 104 # On targets that have MOVW the compiler will emit relocations which
a9f844b1 105 # the linker doesn't support when compiling -shared without -fpic. The
5a68afcf 106 # test to find out whether we want to XFAIL the non-PIC tests requires
a9f844b1 107 # a compile - so we pre-calculate it here. We also note that this can
0085488a
WN
108 # only affect arm*-*-*eabi* targets as the old ABI doesn't support v7.
109 if [istarget arm*-*-*eabi*] {
a9f844b1
NC
110 set file [open $tmpdir/movw-detect.c w]
111 puts $file "void foo(void) { __asm (\"movw r0, #0\"); }"
112 close $file
113 if [run_host_cmd_yesno "$CC" "$CFLAGS -c $tmpdir/movw-detect.c -o $tmpdir/movw-detect.o"] {
114 set shared_needs_pic "yes"
115 }
116 }
117}
118
252b5132
RH
119# The test procedure.
120proc shared_test { progname testname main sh1 sh2 dat args } {
b765d4e3 121 global CC
252b5132
RH
122 global srcdir
123 global subdir
124 global exec_output
125 global host_triplet
126 global tmpdir
127
128 if [llength $args] { set shldflags [lindex $args 0] } else { set shldflags "" }
129
130 # Build the shared library.
131 # On AIX, we need to use an export file.
132 set shared -shared
133 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
134 set shared "-bM:SRE -bE:$tmpdir/xcoff.exp"
135 }
d9816402 136 if {![ld_link $CC $tmpdir/$progname.so "$shared $shldflags $tmpdir/$sh1 $tmpdir/$sh2"]} {
252b5132
RH
137 fail "$testname"
138 return
139 }
140
141 # Link against the shared library. Use -rpath so that the
142 # dynamic linker can locate the shared library at runtime.
143 # On AIX, we must include /lib in -rpath, as otherwise the loader
144 # can not find -lc.
145 set rpath $tmpdir
146 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
147 set rpath /lib:$tmpdir
148 }
d9816402 149 if ![ld_link $CC $tmpdir/$progname "-Wl,-rpath,$rpath $tmpdir/$main $tmpdir/$progname.so"] {
252b5132
RH
150 fail "$testname"
151 return
152 }
153
d9816402
AM
154 if ![isnative] {
155 unsupported $testname
156 return
157 }
158
252b5132
RH
159 # Run the resulting program
160 send_log "$tmpdir/$progname >$tmpdir/$progname.out\n"
161 verbose "$tmpdir/$progname >$tmpdir/$progname.out"
162 catch "exec $tmpdir/$progname >$tmpdir/$progname.out" exec_output
163 if ![string match "" $exec_output] then {
164 send_log "$exec_output\n"
165 verbose "$exec_output"
166 fail "$testname"
167 return
168 }
169
170 send_log "diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat\n"
171 verbose "diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat"
172 catch "exec diff $tmpdir/$progname.out $srcdir/$subdir/$dat.dat" exec_output
173 set exec_output [prune_warnings $exec_output]
174
175 if {![string match "" $exec_output]} then {
176 send_log "$exec_output\n"
177 verbose "$exec_output"
178 fail "$testname"
179 return
180 }
181
182 pass "$testname"
183}
184
fb35d3d8
DD
185# Old version of GCC for MIPS default to enabling -fpic
186# and get confused if it is used on the command line.
187if { [istarget mips*-*-*] && ! [at_least_gcc_version 4 3] } then {
252b5132
RH
188 set picflag ""
189} else {
190 # Unfortunately, the gcc argument is -fpic and the cc argument is
191 # -KPIC. We have to try both.
192 set picflag "-fpic"
193 send_log "$CC $picflag\n"
194 verbose "$CC $picflag"
195 catch "exec $CC $picflag" exec_output
196 send_log "$exec_output\n"
197 verbose "--" "$exec_output"
198 if { [string match "*illegal option*" $exec_output] \
199 || [string match "*option ignored*" $exec_output] \
200 || [string match "*unrecognized option*" $exec_output] \
201 || [string match "*passed to ld*" $exec_output] } {
c9098af4 202 set picflag "-KPIC"
252b5132
RH
203 }
204}
205verbose "Using $picflag to compile PIC code"
206
207# Compile the main program.
208if ![ld_compile "$CC $CFLAGS $SHCFLAG" $srcdir/$subdir/main.c $tmpdir/mainnp.o] {
209 unresolved "shared (non PIC)"
210 unresolved "shared"
211} else {
212 # The shared library is composed of two files. First compile them
213 # without using -fpic. That should work on an ELF system,
214 # although it will be less efficient because the dynamic linker
215 # will need to do more relocation work. However, note that not
216 # using -fpic will cause some of the tests to return different
cda77e9e 217 # results. Make sure that PLT is used since PLT is expected.
9d1c54ed
L
218 global PLT_CFLAGS NOPIE_CFLAGS
219 if { ![ld_compile "$CC $PLT_CFLAGS $NOPIE_CFLAGS $CFLAGS $SHCFLAG" $srcdir/$subdir/sh1.c $tmpdir/sh1np.o]
cda77e9e 220 || ![ld_compile "$CC $PLT_CFLAGS $CFLAGS $SHCFLAG" $srcdir/$subdir/sh2.c $tmpdir/sh2np.o] } {
252b5132
RH
221 unresolved "shared (non PIC)"
222 } else { if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
223 shared_test shnp "shared (nonPIC)" mainnp.o sh1np.o sh2np.o xcoff
224 } else {
225 # SunOS non PIC shared libraries don't permit some cases of
226 # overriding.
ad995491 227 setup_xfail "ia64-*-linux*"
212a6b8e 228 setup_xfail "alpha*-*-linux*"
24b01a74 229 setup_xfail "powerpc64*-*-*"
c0d48c0b
DA
230 if { ![istarget hppa*64*-*-linux*] } {
231 setup_xfail "hppa*-*-linux*"
232 }
4dc570c2
JJ
233 if { [istarget sparc*-*-linux*] && [is_elf64 $tmpdir/mainnp.o] } {
234 setup_xfail "sparc*-*-linux*"
235 }
8b778942
L
236 if { [is_elf64 $tmpdir/mainnp.o] } {
237 setup_xfail "x86_64-*-linux*"
238 }
3c995545 239 setup_xfail "x86_64-*-linux-gnux32"
4648dfcf 240 setup_xfail "s390x-*-linux*"
a9f844b1
NC
241 if [ string match $shared_needs_pic "yes" ] {
242 setup_xfail "arm*-*-linux*"
243 }
273dc279 244 setup_xfail "aarch64*-*-linux*"
252b5132
RH
245 shared_test shnp "shared (non PIC)" mainnp.o sh1np.o sh2np.o shared
246
247 # Test ELF shared library relocations with a non-zero load
248 # address for the library. Near as I can tell, the R_*_RELATIVE
249 # relocations for various targets are broken in the case where
250 # the load address is not zero (which is the default).
b7be1db6 251 setup_xfail "*-*-linux*libc1"
24b01a74 252 setup_xfail "powerpc*-*-linux*"
ad995491 253 setup_xfail "ia64-*-linux*"
212a6b8e 254 setup_xfail "alpha*-*-linux*"
66517a2f 255 setup_xfail "mips*-*-linux*"
c0d48c0b
DA
256 if { ![istarget hppa*64*-*-linux*] } {
257 setup_xfail "hppa*-*-linux*"
258 }
4dc570c2
JJ
259 if { [istarget sparc*-*-linux*] && [is_elf64 $tmpdir/mainnp.o] } {
260 setup_xfail "sparc*-*-linux*"
261 }
8b778942
L
262 if { [is_elf64 $tmpdir/mainnp.o] } {
263 setup_xfail "x86_64-*-linux*"
264 }
3c995545 265 setup_xfail "x86_64-*-linux-gnux32"
8c37241b 266 setup_xfail "s390x-*-linux*"
a9f844b1
NC
267 if [ string match $shared_needs_pic "yes" ] {
268 setup_xfail "arm*-*-linux*"
269 }
273dc279 270 setup_xfail "aarch64*-*-linux*"
252b5132
RH
271 shared_test shnp "shared (non PIC, load offset)" \
272 mainnp.o sh1np.o sh2np.o shared \
bab55c05 273 "-Wl,-T,$srcdir/$subdir/elf-offset.ld,--hash-style=sysv"
252b5132
RH
274 } }
275
276 # Now compile the code using -fpic.
277
5a68afcf 278 if { ![ld_compile "$CC $CFLAGS $SHCFLAG $picflag" $srcdir/$subdir/sh1.c $tmpdir/sh1p.o]
252b5132
RH
279 || ![ld_compile "$CC $CFLAGS $SHCFLAG $picflag" $srcdir/$subdir/sh2.c $tmpdir/sh2p.o] } {
280 unresolved "shared"
281 } else {
c9098af4 282 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
252b5132
RH
283 shared_test shp "shared" mainnp.o sh1p.o sh2p.o xcoff
284 } else {
285 shared_test shp "shared" mainnp.o sh1p.o sh2p.o shared
66517a2f
L
286 ld_compile "$CC $CFLAGS -DSYMBOLIC_TEST -DXCOFF_TEST $SHCFLAG" $srcdir/$subdir/main.c $tmpdir/mainnp.o
287 ld_compile "$CC $CFLAGS -DSYMBOLIC_TEST -DXCOFF_TEST $SHCFLAG $picflag" $srcdir/$subdir/sh1.c $tmpdir/sh1p.o
5a68afcf 288 shared_test shp "shared -Bsymbolic" mainnp.o sh1p.o sh2p.o symbolic "-Bsymbolic"
f0f077e5
L
289 ld_compile "$CC $CFLAGS $SHCFLAG" $srcdir/$subdir/main.c $tmpdir/mainnp.o
290 ld_compile "$CC $CFLAGS $SHCFLAG $picflag" $srcdir/$subdir/sh1.c $tmpdir/sh1p.o
c9098af4 291 }
252b5132
RH
292 }
293}
294
295# Now do the same tests again, but this time compile main.c PIC.
296if ![ld_compile "$CC $CFLAGS $SHCFLAG $picflag" $srcdir/$subdir/main.c $tmpdir/mainp.o] {
297 unresolved "shared (PIC main, non PIC so)"
298 unresolved "shared (PIC main)"
299} else {
300 if { [file exists $tmpdir/sh1np.o ] && [ file exists $tmpdir/sh2np.o ] } {
301 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
302 shared_test shmpnp "shared (PIC main, non PIC so)" mainp.o sh1np.o sh2np.o xcoff
303 } else {
304 # SunOS non PIC shared libraries don't permit some cases of
305 # overriding.
ad995491 306 setup_xfail "ia64-*-linux*"
212a6b8e 307 setup_xfail "alpha*-*-linux*"
24b01a74 308 setup_xfail "powerpc64*-*-*"
c0d48c0b
DA
309 if { ![istarget hppa*64*-*-linux*] } {
310 setup_xfail "hppa*-*-linux*"
311 }
4dc570c2
JJ
312 if { [istarget sparc*-*-linux*] && [is_elf64 $tmpdir/mainp.o] } {
313 setup_xfail "sparc*-*-linux*"
314 }
8b778942
L
315 if { [is_elf64 $tmpdir/mainp.o] } {
316 setup_xfail "x86_64-*-linux*"
317 }
3c995545 318 setup_xfail "x86_64-*-linux-gnux32"
4648dfcf 319 setup_xfail "s390x-*-linux*"
a9f844b1
NC
320 if [ string match $shared_needs_pic "yes" ] {
321 setup_xfail "arm*-*-linux*"
322 }
273dc279 323 setup_xfail "aarch64*-*-linux*"
252b5132
RH
324 shared_test shmpnp "shared (PIC main, non PIC so)" mainp.o sh1np.o sh2np.o shared
325 }
326 } else {
327 unresolved "shared (PIC main, non PIC so)"
328 }
329
330 if { [file exists $tmpdir/sh1p.o ] && [ file exists $tmpdir/sh2p.o ] } {
331 if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
332 shared_test shmpp "shared (PIC main)" mainp.o sh1p.o sh2p.o xcoff
333 } else {
334 shared_test shmpp "shared (PIC main)" mainp.o sh1p.o sh2p.o shared
335 }
336 } else {
337 unresolved "shared (PIC main)"
338 }
339}
340
341if { [istarget rs6000*-*-aix*] || [istarget powerpc*-*-aix*] } {
342 # Remove the temporary directory.
343 catch "exec rm -rf $tmpdir" exec_status
344}
This page took 0.83398 seconds and 4 git commands to generate.