x86-64: Generate branch with PLT32 relocation
[external/binutils.git] / ld / testsuite / ld-x86-64 / x86-64.exp
1 # Expect script for ld-x86_64 tests
2 #   Copyright (C) 2002-2018 Free Software Foundation, Inc.
3 #
4 # This file is part of the GNU Binutils.
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
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.
15 #
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
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
20 #
21
22 # Test x86_64 linking; all types of relocs.  This tests the assembler and
23 # tools like objdump as well as the linker.
24
25 if { !([istarget "x86_64-*-elf*"]
26        || [istarget "x86_64-*-nacl*"]
27        || [istarget "x86_64-*-linux*"]) } {
28     return
29 }
30
31 if [istarget "*-*-nacl*"] {
32     set emul "elf_x86_64_nacl"
33 } else {
34     set emul "elf_x86_64"
35 }
36
37 # List contains test-items with 3 items followed by 2 lists:
38 # 0:name 1:ld early options 2:ld late options 3:assembler options
39 # 4:filenames of assembler files 5: action and options. 6: name of output file
40
41 # Actions:
42 # objdump: Apply objdump options on result.  Compare with regex (last arg).
43 # nm: Apply nm options on result.  Compare with regex (last arg).
44 # readelf: Apply readelf options on result.  Compare with regex (last arg).
45
46 set x86_64tests {
47     {"Helper shared library (basic PLT test)"
48       "-shared -melf_x86_64" "" "--64" {pltlib.s} {} "libpltlib.so"}
49     {"basic PLT generation"
50      "-melf_x86_64 tmpdir/libpltlib.so" "" "--64" {plt.s}
51      {{objdump -drj.plt plt.pd}} "plt"}
52     {"TLS -fpic -shared transitions"
53      "-shared -melf_x86_64 --no-ld-generated-unwind-info --hash-style=sysv" ""
54      "--64" {tlspic1.s tlspic2.s}
55      {{readelf -WSsrl tlspic.rd} {objdump -drj.text\ -Mintel64 tlspic.dd}
56       {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
57       "libtlspic.so"}
58     {"TLS -fpic -shared transitions with r15 as GOT base"
59      "-shared -melf_x86_64 --no-ld-generated-unwind-info --hash-style=sysv" ""
60      "--64 -mrelax-relocations=yes"
61      {tlspic3.s tlspic2.s}
62      {{readelf -WSsrl tlspic2.rd} {objdump -drj.text\ -Mintel64 tlspic2.dd}
63       {objdump -sj.got tlspic2.sd} {objdump -sj.tdata tlspic2.td}}
64       "libtlspic2.so"}
65     {"TLS descriptor -fpic -shared transitions"
66      "-shared -melf_x86_64 --no-ld-generated-unwind-info --hash-style=sysv" ""
67      "--64" {tlsdesc.s tlspic2.s}
68      {{readelf -WSsrld tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
69       {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}
70       {objdump -drj.plt tlsdesc.pd}} "libtlsdesc.so"}
71     {"Helper shared library" "-shared -melf_x86_64" ""
72      "--64" {tlslib.s} {} "libtlslib.so"}
73     {"TLS -fpic and -fno-pic exec transitions"
74      "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
75      "--64" {tlsbinpic.s tlsbin.s}
76      {{readelf -WSsrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
77       {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
78       "tlsbin"}
79     {"TLS -fpic and -fno-pic exec transitions without PLT"
80      "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
81      "-mrelax-relocations=yes --64" {tlsbinpic2.s tlsbin.s}
82      {{readelf -WSsrl tlsbin2.rd} {objdump -drj.text tlsbin2.dd}
83       {objdump -sj.got tlsbin2.sd} {objdump -sj.tdata tlsbin2.td}}
84       "tlsbin2"}
85     {"TLS descriptor -fpic and -fno-pic exec transitions"
86      "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info --hash-style=sysv" ""
87      "--64" {tlsbindesc.s tlsbin.s}
88      {{readelf -WSsrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
89       {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
90       "tlsbindesc"}
91     {"TLS with global dynamic and descriptors"
92      "-shared -melf_x86_64 --no-ld-generated-unwind-info --hash-style=sysv" ""
93      "--64" {tlsgdesc.s}
94      {{readelf -WSsrl tlsgdesc.rd} {objdump -drj.text\ -Mintel64 tlsgdesc.dd}}
95       "libtlsgdesc.so"}
96     {"TLS in debug sections" "-melf_x86_64" ""
97      "--64" {tlsg.s}
98      {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
99     {"TLS GD->LE transition" "-melf_x86_64" ""
100      "--64" {tlsgd1.s}
101      {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
102     {"TLS LD->LE transition" "-melf_x86_64" ""
103      "--64" {tlsld1.s}
104      {{objdump -dwr tlsld1.dd}} "tlsld1"}
105     {"TLS IE->LE transition" "-melf_x86_64" ""
106      "--64" {tlsie1.s}
107      {{objdump -dwr tlsie1.dd}} "tlsie1"}
108     {"Helper 64bit object 1" "-r -melf_x86_64" ""
109      "--64" {mixed1a.s} {} "libmixe1a.o"}
110     {"Helper 32bit object 1" "-r -melf_i386" ""
111      "--32" {mixed1b.s} {} "libmixe1b.o"}
112     {"Helper 64bit object 2" "-r -melf_x86_64" ""
113      "--64" {mixed2a.s} {} "libmixe2a.o"}
114     {"Helper 32bit object 2" "-r -melf_i386" ""
115      "--32" {mixed2b.s} {} "libmixe2b.o"}
116     {"Split by file with 'l' flag on section."
117      "-split-by-file -r -melf_x86_64" ""
118      "--64" {split-by-file1.s split-by-file2.s}
119      {{readelf -SW split-by-file.rd}} "split-by-file.o"}
120     {"TLS X32 IE->LE transition" "-melf32_x86_64" ""
121      "--x32" {tlsie4.s}
122      {{objdump -dwr tlsie4.dd}} "tlsie4"}
123     {"TLS X32 GD->LE transition" "-melf32_x86_64" ""
124      "--x32" {tlsgd4.s}
125      {{objdump -dwr tlsgd4.dd}} "tlsgd4"}
126     {"Helper TLS GD->IE transition DSO" "-shared -melf_x86_64" ""
127      "--64" {tlsgd5b.s} {} "libtlsgd5.so"}
128     {"TLS GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
129      "--64" {tlsgd5a.s}
130      {{objdump -dwr tlsgd5.dd}} "tlsgd5a"}
131     {"TLS GD->IE transition without PLT"
132      "-melf_x86_64 tmpdir/libtlsgd5.so" ""
133      "-mrelax-relocations=yes --64" {tlsgd5c.s}
134      {{objdump -dwr tlsgd5.dd}} "tlsgd5b"}
135     {"Helper TLS X32 GD->IE transition DSO" "-shared -melf32_x86_64" ""
136      "--x32" {tlsgd6b.s} {} "libtlsgd6.so"}
137     {"TLS X32 GD->IE transition" "-melf32_x86_64 tmpdir/libtlsgd6.so" ""
138      "--x32" {tlsgd6a.s}
139      {{objdump -dwr tlsgd6.dd}} "tlsgd6a"}
140     {"TLS X32 GD->IE transition without PLT"
141      "-melf32_x86_64 tmpdir/libtlsgd6.so" ""
142      "-mrelax-relocations=yes --x32" {tlsgd6c.s}
143      {{objdump -dwr tlsgd6.dd}} "tlsgd6b"}
144     {"TLS X32 LD->LE transition" "-melf32_x86_64" ""
145      "--x32" {tlsld2.s}
146      {{objdump -dwr tlsld2.dd}} "tlsld2"}
147     {"TLS -mcmodel=large GD->LE transition" "-melf_x86_64" ""
148      "--64" {tlsgd7.s}
149      {{objdump -dwr tlsgd7.dd}} "tlsgd7"}
150     {"TLS -mcmodel=large LD->LE transition" "-melf_x86_64" ""
151      "--64" {tlsld3.s}
152      {{objdump -dwr tlsld3.dd}} "tlsld3"}
153     {"TLS -mcmodel=large LD->LE transition with r15 as GOT base"
154      "-melf_x86_64" ""
155      "--64" {tlsld4.s}
156      {{objdump -dwr tlsld4.dd}} "tlsld4"}
157     {"TLS LD->LE transition without PLT"
158      "-melf_x86_64" ""
159      "--64 -mrelax-relocations=yes"
160      {tlsld5.s}
161      {{objdump -dwr tlsld5.dd}} "tlsld5"}
162     {"TLS X32 LD->LE transition without PLT" "-melf32_x86_64" ""
163      "--x32 -mrelax-relocations=yes"
164      {tlsld6.s}
165      {{objdump -dwr tlsld6.dd}} "tlsld6"}
166     {"TLS -mcmodel=large GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
167      "--64" {tlsgd8.s}
168      {{objdump -dwrj.text tlsgd8.dd}} "tlsgd8"}
169     {"TLS -mcmodel=large GD->LE transition with r15 as GOT base"
170      "-melf_x86_64" ""
171      "--64" {tlsgd9.s}
172      {{objdump -dwr tlsgd9.dd}} "tlsgd9"}
173     {"TLS -mcmodel=large GD->IE transition with r15 as GOT base"
174      "-melf_x86_64 tmpdir/libtlsgd5.so" ""
175      "--64" {tlsgd10.s}
176      {{objdump -dwrj.text tlsgd10.dd}} "tlsgd10"}
177     {"TLS GD->LE transition without PLT"
178      "-melf_x86_64" ""
179      "--64" {tlsgd11.s}
180      {{objdump -dwr tlsgd11.dd}} "tlsgd11"}
181     {"TLS X32 GD->LE transition without PLT"
182      "-melf32_x86_64" ""
183      "--x32" {tlsgd14.s}
184      {{objdump -dwr tlsgd14.dd}} "tlsgd14"}
185      {"build 32-bit object with 33 locals" "-melf_x86_64 -e 0" "" "--32" {32bit.s} {{ ld incompatible.l }} "dummy" }
186      {"build 64-bit object" "-melf_x86_64 -e 0 --defsym foo=1" "" "--64" {64bit.s} {} "dummy" }
187      {"link mixed objects"  "-melf_x86_64 -e 0 tmpdir/32bit.o tmpdir/64bit.o" "" "" {} { { ld incompatible.l } } "mixed"}
188     {"PR ld/17313 (1)" "-melf_x86_64" ""
189      "--64" {dummy.s} {} ""}
190     {"PR ld/17313 (2)" "-melf_x86_64 -shared --just-symbols=tmpdir/dummy.o" ""
191      "--64" {lea1.s} {} "libpr17313.so"}
192     {"PR ld/17306 (1)" "-melf_x86_64" ""
193      "--64" {pr17306b.s} {} ""}
194     {"PR ld/17306 (2)" "-melf_x86_64 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
195      "--64" {pr17306a.s} {} "libpr17306.so"}
196     {"PR ld/17709 (1)" "-melf_x86_64 -shared" ""
197      "--64" {pr17709a.s} {} "libpr17709.so"}
198     {"PR ld/17709 (2)" "-melf_x86_64 tmpdir/libpr17709.so" ""
199      "--64" {pr17709b.s} {{readelf -rW pr17709.rd}} "pr17709"}
200     {"Build pr19827a.o" "" ""
201      "--64" { pr19827a.S }}
202     {"Build pr19827b.so" "-melf_x86_64 -shared" ""
203      "--64" { pr19827b.S } {} "pr19827b.so"}
204     {"Build pr19827" "-melf_x86_64 -pie tmpdir/pr19827a.o tmpdir/pr19827b.so" ""
205      "--64" { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
206     {"Build pr19827.so" "-melf_x86_64 -shared -Bsymbolic" ""
207      "--64" { pr19827a.S }  {{readelf {-rW} pr19827.rd}} "pr19827.so"}
208     {"Build pr19969.so" "-melf_x86_64 -shared" ""
209      "--64" { pr19969a.S } {} "pr19969.so"}
210     {"Build pr20550a.o" "" ""
211      "--64" { pr20550a.s }}
212     {"Build pr20550b.so" "-melf_x86_64 -shared" ""
213      "--64" { pr20550b.s } {} "pr20550b.so"}
214     {"Build pr20550" "-melf_x86_64 -pie tmpdir/pr20550a.o tmpdir/pr20550b.so" ""
215      "--64" { dummy.s } {} "pr20550"}
216 }
217
218 # So as to avoid rewriting every last test case here in a nacl variant,
219 # we use black magic to massage the generic cases into nacl-variant cases.
220 if [istarget "*-*-nacl*"] {
221     set emul elf_x86_64_nacl
222
223     set lhs {elf(32)?_(i386|x86_64)[[:>:]]}
224     set rhs {&_nacl}
225
226     # Change all the -melf_x86_64 to -melf_x86_64_nacl so linking can succeed.
227     regsub -all -- $lhs $x86_64tests $rhs x86_64tests
228
229     # Same, applied to all the run_dump_test cases.
230     set options_regsub(ld) [list $lhs $rhs]
231
232     # The section/segment layout differs too much for the vanilla
233     # readelf output files to match.  So massage the cases so that
234     # they refer to a foo-nacl.rd file instead of a foo.rd file.
235     regsub -all -- {([a-z0-9]+)\.rd} $x86_64tests {\1-nacl.rd} x86_64tests
236
237     # Likewise for PLTs.
238     regsub -all -- {([a-z0-9]+)\.pd} $x86_64tests {\1-nacl.pd} x86_64tests
239 } else {
240     set emul elf_x86_64
241 }
242
243 run_ld_link_tests $x86_64tests
244
245 global link_output
246 global ld
247
248 set test_name "Mixed x86_64 and i386 input test 1"
249 set test mixed1
250 if { ![ld_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
251     if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
252         pass "$test_name"
253     } {
254         fail "$test_name"
255     }
256 }
257
258 set test_name "Mixed x86_64 and i386 input test 2"
259 set test mixed2
260 if { ![ld_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
261     if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
262         pass "$test_name"
263     } {
264         fail "$test_name"
265     }
266 }
267
268 run_dump_test "abs"
269 run_dump_test "abs-l1om"
270 run_dump_test "apic"
271 run_dump_test "pcrel8"
272 run_dump_test "pcrel16"
273 run_dump_test "tlsgd2"
274 run_dump_test "tlsgd3"
275 run_dump_test "tlsgd12"
276 run_dump_test "tlsgd13"
277 run_dump_test "tlsie2"
278 run_dump_test "tlsie3"
279 run_dump_test "hidden1"
280 run_dump_test "hidden2"
281 run_dump_test "hidden3"
282 run_dump_test "hidden4"
283 run_dump_test "hidden5"
284 run_dump_test "protected1"
285 run_dump_test "protected2"
286 run_dump_test "protected2-l1om"
287 run_dump_test "protected3"
288 run_dump_test "protected3-l1om"
289 run_dump_test "protected4"
290 run_dump_test "protected5"
291 run_dump_test "protected6a"
292 run_dump_test "protected6b"
293 run_dump_test "protected7a"
294 run_dump_test "protected7b"
295 run_dump_test "protected8"
296 run_dump_test "tlsle1"
297 run_dump_test "tlspie1"
298 run_dump_test "tlspie2a"
299 run_dump_test "tlspie2b"
300 run_dump_test "tlspie2c"
301 run_dump_test "unique1"
302 run_dump_test "nogot1"
303 run_dump_test "nogot2"
304 run_dump_test "discarded1"
305 run_dump_test "pr12718"
306 run_dump_test "pr12921"
307 run_dump_test "pr13947"
308 run_dump_test "pr12570a"
309 run_dump_test "pr12570b"
310 run_dump_test "pr14215"
311 run_dump_test "pr14207"
312 run_dump_test "gotplt1"
313 run_dump_test "pie1"
314 run_dump_test "pie2"
315 run_dump_test "pie3"
316 run_dump_test "pie3-nacl"
317 run_dump_test "pic1"
318 run_dump_test "largecomm-1a"
319 run_dump_test "largecomm-1b"
320 run_dump_test "largecomm-1c"
321 run_dump_test "largecomm-1d"
322 run_dump_test "largecomm-1e"
323 run_dump_test "largecomm-1f"
324 run_dump_test "pr19539a"
325 run_dump_test "pr19539b"
326 run_dump_test "pr19807-1a"
327 run_dump_test "pr19807-1b"
328 run_dump_test "pr19807-2a"
329 run_dump_test "pr19807-2b"
330 run_dump_test "pr19807-2c"
331 run_dump_test "pr19807-2d"
332 run_dump_test "pr19807-2e"
333 run_dump_test "pr19969"
334 run_dump_test "pr20093-1"
335 run_dump_test "pr20093-2"
336 run_dump_test "property-x86-3"
337 run_dump_test "property-x86-4a"
338 run_dump_test "property-x86-4b"
339 run_dump_test "property-x86-3-x32"
340 run_dump_test "property-x86-4a-x32"
341 run_dump_test "property-x86-4b-x32"
342 run_dump_test "property-x86-ibt1a"
343 run_dump_test "property-x86-ibt1b"
344 run_dump_test "property-x86-ibt1a-x32"
345 run_dump_test "property-x86-ibt1b-x32"
346 run_dump_test "property-x86-ibt2"
347 run_dump_test "property-x86-ibt2-x32"
348 run_dump_test "property-x86-ibt3a"
349 run_dump_test "property-x86-ibt3b"
350 run_dump_test "property-x86-ibt3a-x32"
351 run_dump_test "property-x86-ibt3b-x32"
352 run_dump_test "property-x86-ibt4"
353 run_dump_test "property-x86-ibt4-x32"
354 run_dump_test "property-x86-ibt5"
355 run_dump_test "property-x86-ibt5-x32"
356 run_dump_test "property-x86-shstk1a"
357 run_dump_test "property-x86-shstk1b"
358 run_dump_test "property-x86-shstk1a-x32"
359 run_dump_test "property-x86-shstk1b-x32"
360 run_dump_test "property-x86-shstk2"
361 run_dump_test "property-x86-shstk2-x32"
362 run_dump_test "property-x86-shstk3a"
363 run_dump_test "property-x86-shstk3b"
364 run_dump_test "property-x86-shstk3a-x32"
365 run_dump_test "property-x86-shstk3b-x32"
366 run_dump_test "property-x86-shstk4"
367 run_dump_test "property-x86-shstk4-x32"
368 run_dump_test "property-x86-shstk5"
369 run_dump_test "property-x86-shstk5-x32"
370 run_dump_test "pr21884"
371 run_dump_test "pr21884-nacl"
372 run_dump_test "pr22071"
373 run_dump_test "pr22115-1a"
374 run_dump_test "pr22115-1a-x32"
375 run_dump_test "pr22115-1b"
376 run_dump_test "pr22115-1b-x32"
377 run_dump_test "pr22115-1c"
378 run_dump_test "pr22115-1c-x32"
379 run_dump_test "pr22115-1d"
380 run_dump_test "pr22115-1d-x32"
381 run_dump_test "pr22135"
382 run_dump_test "pr22782a"
383 run_dump_test "pr22782b"
384
385 if { ![istarget "x86_64-*-linux*"] && ![istarget "x86_64-*-nacl*"]} {
386     return
387 }
388
389 if ![ld_assemble $as "--x32 $srcdir/$subdir/start.s" tmpdir/startx32.o] {
390     unresolved "Build ILP32 start.o"
391     return
392 }
393
394 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
395     unresolved "Build ia32 start.o"
396     return
397 }
398
399 if ![ld_assemble $as "--64 $srcdir/$subdir/start.s" tmpdir/start64.o] {
400     unresolved "Build LP64 start.o"
401     return
402 }
403
404 if ![ld_assemble $as "--x32 $srcdir/$subdir/foo.s" tmpdir/foox32.o] {
405     unresolved "Build ILP32 foo.o"
406     return
407 }
408
409 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
410     unresolved "Build ia32 foo.o"
411     return
412 }
413
414 if ![ld_assemble $as "--64 $srcdir/$subdir/foo.s" tmpdir/foo64.o] {
415     unresolved "Build LP64 foo.o"
416     return
417 }
418
419 run_dump_test "compressed1"
420 run_dump_test "ilp32-1"
421 run_dump_test "ilp32-2"
422 run_dump_test "ilp32-3"
423 run_dump_test "ilp32-4"
424 run_dump_test "ilp32-4-nacl"
425 run_dump_test "ilp32-5"
426 run_dump_test "ilp32-6"
427 run_dump_test "ilp32-7"
428 run_dump_test "ilp32-8"
429 run_dump_test "ilp32-9"
430 run_dump_test "ilp32-10"
431 run_dump_test "ilp32-11"
432 run_dump_test "ia32-1"
433 run_dump_test "ia32-2"
434 run_dump_test "ia32-3"
435 run_dump_test "lp64-1"
436 run_dump_test "lp64-2"
437 run_dump_test "lp64-3"
438 run_dump_test "pr13082-1a"
439 run_dump_test "pr13082-1b"
440 run_dump_test "pr13082-2a"
441 run_dump_test "pr13082-2b"
442 run_dump_test "pr13082-3a"
443 run_dump_test "pr13082-3b"
444 run_dump_test "pr13082-3c"
445 run_dump_test "pr13082-3d"
446 run_dump_test "pr13082-4a"
447 run_dump_test "pr13082-4b"
448 run_dump_test "pr13082-5a"
449 run_dump_test "pr13082-5b"
450 run_dump_test "pr13082-6a"
451 run_dump_test "pr13082-6b"
452 run_dump_test "lea1a"
453 run_dump_test "lea1b"
454 run_dump_test "lea1c"
455 run_dump_test "lea1d"
456 run_dump_test "lea1e"
457 run_dump_test "lea1f"
458 run_dump_test "lea1g"
459 run_dump_test "lea1h"
460 run_dump_test "lea1i"
461 run_dump_test "lea1j"
462 run_dump_test "lea1k"
463 run_dump_test "lea1l"
464 run_dump_test "mov1a"
465 run_dump_test "mov1b"
466 run_dump_test "mov1c"
467 run_dump_test "mov1d"
468 run_dump_test "mov2a"
469 run_dump_test "mov2b"
470 run_dump_test "mov2c"
471 run_dump_test "mov2d"
472 run_dump_test "load1a"
473 run_dump_test "load1b"
474 run_dump_test "load1c"
475 run_dump_test "load1d"
476 run_dump_test "load1a-nacl"
477 run_dump_test "load1b-nacl"
478 run_dump_test "load1c-nacl"
479 run_dump_test "load1d-nacl"
480 run_dump_test "load2"
481 run_dump_test "call1a"
482 run_dump_test "call1b"
483 run_dump_test "call1c"
484 run_dump_test "call1d"
485 run_dump_test "call1e"
486 run_dump_test "call1f"
487 run_dump_test "call1g"
488 run_dump_test "call1h"
489 run_dump_test "call1i"
490 run_dump_test "pr17935-1"
491 run_dump_test "pr17935-2"
492 run_dump_test "pr18160"
493 run_dump_test "pr18176"
494 run_dump_test "pr18801"
495 run_dump_test "pr18815"
496 run_dump_test "pr19013"
497 run_dump_test "pr19013-x32"
498 run_dump_test "pr19013-nacl"
499 run_dump_test "pr19162"
500 run_dump_test "pr19175"
501 run_dump_test "pr18591"
502 run_dump_test "pr19615"
503 run_dump_test "pr19636-1a"
504 run_dump_test "pr19636-1b"
505 run_dump_test "pr19636-1c"
506 run_dump_test "pr19636-1d"
507 run_dump_test "pr19636-1e"
508 run_dump_test "pr19636-1f"
509 run_dump_test "pr19636-1g"
510 run_dump_test "pr19636-1h"
511 run_dump_test "pr19636-1i"
512 run_dump_test "pr19636-1j"
513 run_dump_test "pr19636-2a"
514 run_dump_test "pr19636-2b"
515 run_dump_test "pr19636-2c"
516 run_dump_test "pr19636-2d"
517 run_dump_test "pr19636-2d-nacl"
518 run_dump_test "pr19636-2e"
519 run_dump_test "pr19636-2f"
520 run_dump_test "pr19636-2g"
521 run_dump_test "pr19636-2h"
522 run_dump_test "pr19636-2i"
523 run_dump_test "pr19636-2j"
524 run_dump_test "pr19636-2k"
525 run_dump_test "pr19636-2l"
526 run_dump_test "pr19636-2m"
527 run_dump_test "pr19636-3a"
528 run_dump_test "pr19636-3b"
529 run_dump_test "pr19636-3c"
530 run_dump_test "pr19645"
531 run_dump_test "pr19609-1a"
532 run_dump_test "pr19609-1b"
533 run_dump_test "pr19609-1c"
534 run_dump_test "pr19609-1d"
535 run_dump_test "pr19609-1e"
536 run_dump_test "pr19609-1f"
537 run_dump_test "pr19609-1g"
538 run_dump_test "pr19609-1h"
539 run_dump_test "pr19609-1i"
540 run_dump_test "pr19609-1j"
541 run_dump_test "pr19609-1k"
542 run_dump_test "pr19609-1l"
543 run_dump_test "pr19609-1m"
544 run_dump_test "pr19609-2a"
545 run_dump_test "pr19609-2b"
546 run_dump_test "pr19609-2c"
547 run_dump_test "pr19609-2d"
548 run_dump_test "pr19609-3a"
549 run_dump_test "pr19609-3b"
550 run_dump_test "pr19609-4a"
551 run_dump_test "pr19609-4b"
552 run_dump_test "pr19609-4c"
553 run_dump_test "pr19609-4d"
554 run_dump_test "pr19609-4e"
555 run_dump_test "pr19609-5a"
556 run_dump_test "pr19609-5b"
557 run_dump_test "pr19609-5c"
558 run_dump_test "pr19609-5d"
559 run_dump_test "pr19609-5e"
560 run_dump_test "pr19609-6a"
561 run_dump_test "pr19609-6b"
562 run_dump_test "pr19609-6c"
563 run_dump_test "pr19609-6d"
564 run_dump_test "pr19609-7a"
565 run_dump_test "pr19609-7b"
566 run_dump_test "pr19609-7c"
567 run_dump_test "pr19609-7d"
568 run_dump_test "pr19939a"
569 run_dump_test "pr19939b"
570 run_dump_test "pr19719"
571 run_dump_test "pr20253-1a"
572 run_dump_test "pr20253-1b"
573 run_dump_test "pr20253-1c"
574 run_dump_test "pr20253-1d"
575 run_dump_test "pr20253-1e"
576 run_dump_test "pr20253-1f"
577 run_dump_test "pr20253-1g"
578 run_dump_test "pr20253-1h"
579 run_dump_test "pr20253-1i"
580 run_dump_test "pr20253-1j"
581 run_dump_test "pr20253-1k"
582 run_dump_test "pr20253-1l"
583 run_dump_test "pr20253-3"
584 run_dump_test "pr20253-4a"
585 run_dump_test "pr20253-4b"
586 run_dump_test "pr20253-4c"
587 run_dump_test "pr20253-4d"
588 run_dump_test "pr20253-4e"
589 run_dump_test "pr20253-4f"
590 run_dump_test "pr20253-5a"
591 run_dump_test "pr20253-5b"
592 run_dump_test "tlsdesc2"
593 run_dump_test "pr22048"
594
595 proc undefined_weak {cflags ldflags} {
596     set testname "Undefined weak symbol"
597     if { ![ string match "" $cflags$ldflags] } {
598         set testname "$testname ($cflags $ldflags)"
599     }
600
601     if { [string match "*-fPIE*" $cflags]
602          && ![string match "*nodynamic-undefined-weak*" $ldflags] } {
603         set weak_symbol "Weak defined"
604     } else {
605         set weak_symbol "Weak undefined"
606     }
607
608     run_cc_link_tests [list \
609         [list \
610             "Build libpr19704a.so" \
611             "-shared -Wl,-soname,libpr19704.so" \
612             "" \
613             { dummy.s } \
614             {} \
615             "libpr19704a.so" \
616         ] \
617         [list \
618             "Build libpr19704b.so" \
619             "-shared -Wl,-soname,libpr19704.so" \
620             "-fPIC" \
621             { pr19704b.c } \
622             {} \
623             "libpr19704b.so" \
624         ] \
625     ]
626
627     exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
628
629     run_ld_link_exec_tests [list \
630         [list \
631             "Run pr19704" \
632             "-Wl,--no-as-needed,-R,tmpdir $ldflags tmpdir/libpr19704.so" \
633             "" \
634             { pr19704a.c } \
635             "pr19704" \
636             "pr19704.out" \
637             "$cflags" \
638         ] \
639     ]
640
641     exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
642
643     set exec_output [run_host_cmd tmpdir/pr19704 ""]
644     if {![string match $weak_symbol $exec_output]} {
645         fail $testname
646     } else {
647         pass $testname
648     }
649 }
650
651 # Add $PLT_CFLAGS if PLT is expected.
652 global PLT_CFLAGS
653 # Add $NOPIE_CFLAGS and $NOPIE_LDFLAGS if non-PIE is required.
654 global NOPIE_CFLAGS NOPIE_LDFLAGS
655
656 # Must be native with the C compiler
657 if { [isnative] && [which $CC] != 0 } {
658     run_cc_link_tests {
659         {"Helper X32 DSO from x86-64 object" "" "-m64 -fPIC -g"
660          {simple.c} {} "libsimple.a"}
661     }
662
663     set convertx32 "$objcopy -O elf32-x86-64 tmpdir/simple.o tmpdir/simple-x32.o"
664     send_log "$convertx32\n"
665     set got [remote_exec host "$convertx32"]
666     if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
667         send_log "$got\n"
668         fail "Convert x86-64 object to x32"
669         return
670     }
671
672     run_ld_link_tests {
673         {"X32 DSO from x86-64 object"
674          "-shared -melf32_x86_64 tmpdir/simple-x32.o" "" "--x32"
675         {dummy.s} {{readelf {-s --wide} x86-64-x32.rd}} "x86-64-x32"}
676     }
677
678     run_cc_link_tests [list \
679         [list \
680             "Build plt-lib.so" \
681             "-shared" \
682             "-fPIC" \
683             { plt-lib.c } \
684             {} \
685             "libplt-lib.so" \
686         ] \
687         [list \
688             "Build libplt-main1.a" \
689             "" \
690             "-fPIC -Wa,-mrelax-relocations=yes" \
691             { plt-main1.c } \
692             {{readelf {-Wr} plt-main1.rd}} \
693             "libplt-main1.a" \
694         ] \
695         [list \
696             "Build libplt-main2.a" \
697             "" \
698             "-fPIC -Wa,-mrelax-relocations=yes" \
699             { plt-main2.c } \
700             {{readelf {-Wr} plt-main2.rd}} \
701             "libplt-main2.a" \
702         ] \
703         [list \
704             "Build libplt-main3.a" \
705             "" \
706             "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
707             { plt-main3.c } \
708             {{readelf {-Wr} plt-main3.rd}} \
709             "libplt-main3.a" \
710         ] \
711         [list \
712             "Build libplt-main4.a" \
713             "" \
714             "-fPIC -Wa,-mrelax-relocations=yes $PLT_CFLAGS" \
715             { plt-main4.c } \
716             {{readelf {-Wr} plt-main4.rd}} \
717             "libplt-main4.a" \
718         ] \
719         [list \
720             "Build plt-main" \
721             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
722              tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
723             "" \
724             { plt-main5.c } \
725             {{readelf {-Wr} plt-main.rd}} \
726             "plt-main" \
727         ] \
728         [list \
729             "Build plt-main with PIE" \
730             "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
731              tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
732             "-fPIC" \
733             { plt-main5.c } \
734             {{readelf {-Wr} plt-main.rd}} \
735             "plt-main" \
736         ] \
737         [list \
738             "Build copyreloc-lib.so" \
739             "-shared" \
740             "-fPIC" \
741             { copyreloc-lib.c } \
742             {} \
743             "copyreloc-lib.so" \
744         ] \
745         [list \
746             "Build libcopyreloc-main.a" \
747             "" \
748             "" \
749             { copyreloc-main.S } \
750             {} \
751             "libcopyreloc-main.a" \
752         ] \
753         [list \
754             "Build copyreloc-main with PIE without -fPIE (1)" \
755             "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
756             "" \
757             { dummy.s } \
758             {{readelf {-Wr} copyreloc-main1.rd}} \
759             "copyreloc-main" \
760         ] \
761         [list \
762             "Build copyreloc-main with PIE without -fPIE (2)" \
763             "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
764             "" \
765             { dummy.s } \
766             {{readelf {-Wr} copyreloc-main2.rd}} \
767             "copyreloc-main" \
768         ] \
769         [list \
770             "Build pr17689.so" \
771             "-shared" \
772             "-fPIC" \
773             { pr17689a.c } \
774             {} \
775             "pr17689.so" \
776         ] \
777         [list \
778             "Build pr17689now.so with -z now" \
779             "-shared -Wl,-z,now" \
780             "-fPIC" \
781             { pr17689a.c } \
782             {{readelf {-Wr} pr17689now.rd}} \
783             "pr17689now.so" \
784         ] \
785         [list \
786             "Build pr17689b.o" \
787             "" \
788             "" \
789             { pr17689b.S } \
790             {} \
791         ] \
792         [list \
793             "Build pr17689 with PIE without -fPIE" \
794             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
795             "" \
796             { dummy.s } \
797             {{readelf {-Wr} pr17689.rd}} \
798             "pr17689" \
799         ] \
800         [list \
801             "Build pr17689 with PIE -z now without -fPIE" \
802             "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
803             "" \
804             { dummy.s } \
805             {{readelf {-Wr} pr17689now.rd}} \
806             "pr17689now" \
807         ] \
808         [list \
809             "Build pr17827 with PIE without -fPIE" \
810             "-Wl,--as-needed tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
811             "" \
812             { dummy.s } \
813             {{readelf {-Wr} pr17827.rd}} \
814             "pr17827" \
815         ] \
816         [list \
817             "Build pr18900.so" \
818             "-shared" \
819             "-fPIC" \
820             { pr18900a.c } \
821             "" \
822             "pr18900.so" \
823         ] \
824         [list \
825             "Build pr18900.o" \
826             "-r -nostdlib" \
827             "" \
828             { pr18900b.c pr18900c.c } \
829             "" \
830             "pr18900.o" \
831         ] \
832         [list \
833             "Build pr18900a" \
834             "tmpdir/pr18900.o tmpdir/pr18900.so" \
835             "" \
836             { dummy.s } \
837             {{readelf {-Wrd} pr18900a.rd}} \
838             "pr18900a" \
839         ] \
840         [list \
841             "Build pr18900b" \
842             "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
843             "" \
844             { dummy.s } \
845             {{readelf {-Wrd} pr18900b.rd}} \
846             "pr18900b" \
847         ] \
848         [list \
849             "Build pr19031.so" \
850             "-shared" \
851             "-fPIC" \
852             { pr19031a.c } \
853             "" \
854             "pr19031.so" \
855         ] \
856         [list \
857             "Build gotpcrel1d.so" \
858             "-shared" \
859             "" \
860             { gotpcrel1d.S } \
861             "" \
862             "gotpcrel1d.so" \
863         ] \
864         [list \
865             "Build gotpcrel1a.o gotpcrel1b.o gotpcrel1c.o" \
866             "" \
867             "-Wa,-mrelax-relocations=yes" \
868             { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
869         ] \
870         [list \
871             "Build gotpcrel1" \
872             "$NOPIE_LDFLAGS -Wl,--as-needed tmpdir/gotpcrel1a.o \
873              tmpdir/gotpcrel1b.o tmpdir/gotpcrel1c.o \
874              tmpdir/gotpcrel1d.so" \
875             { dummy.s } \
876             "" \
877             {{objdump {-dw} gotpcrel1.dd}} \
878             "gotpcrel1" \
879         ] \
880         [list \
881             "Build pr19319.so" \
882             "-shared" \
883             "" \
884             { pr19319a.S } \
885             "" \
886             "pr19319.so" \
887         ] \
888         [list \
889             "Build pr19319" \
890             "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
891             "" \
892             { pr19319b.S } \
893             {{objdump {-dw} pr19319.dd}} \
894             "pr19319" \
895         ] \
896         [list \
897             "Build property 1" \
898             "" \
899             "" \
900             {pass.c property-no-copy.S} \
901             {{readelf {-n} property-1.r}} \
902             "property-1" \
903         ] \
904         [list \
905             "Build property 1 (.o)" \
906             "-r -nostdlib" \
907             "" \
908             {pass.c property-no-copy.S} \
909             {{readelf {-n} property-1.r}} \
910             "property-1.o" \
911         ] \
912         [list \
913             "Build property 1 (.so)" \
914             "-shared" \
915             "-fPIC" \
916             {pass.c property-no-copy.S} \
917             {{readelf {-n} property-1.r}} \
918             "property-1.so" \
919         ] \
920         [list \
921             "Build property 2" \
922             "" \
923             "" \
924             {pass.c property-stack.S} \
925             {{readelf {-n} property-2.r}} \
926             "property-2" \
927         ] \
928         [list \
929             "Build property 2 (.o)" \
930             "-r -nostdlib" \
931             "" \
932             {pass.c property-stack.S} \
933             {{readelf {-n} property-2.r}} \
934             "property-2.o" \
935         ] \
936         [list \
937             "Build property 2 (.so)" \
938             "-shared" \
939             "-fPIC" \
940             {pass.c property-stack.S} \
941             {{readelf {-n} property-2.r}} \
942             "property-2.so" \
943         ] \
944         [list \
945             "Build property 3" \
946             "" \
947             "" \
948             {pass.c property-stack.S property-x86-1.S} \
949             {{readelf {-n} property-3.r}} \
950             "property-3" \
951         ] \
952         [list \
953             "Build property 3 (.o)" \
954             "-r -nostdlib" \
955             "" \
956             {pass.c property-x86-1.S property-stack.S} \
957             {{readelf {-n} property-3.r}} \
958             "property-3.o" \
959         ] \
960         [list \
961             "Build property 3 (.so)" \
962             "-shared" \
963             "-fPIC" \
964             {property-x86-1.S pass.c property-stack.S} \
965             {{readelf {-n} property-3.r}} \
966             "property-3.so" \
967         ] \
968         [list \
969             "Build property 4" \
970             "" \
971             "" \
972             {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
973             {{readelf {-n} property-4.r}} \
974             "property-4" \
975         ] \
976         [list \
977             "Build property 4 (.o)" \
978             "-r -nostdlib" \
979             "" \
980             {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
981             {{readelf {-n} property-4.r}} \
982             "property-4.o" \
983         ] \
984         [list \
985             "Build property 4 (.so)" \
986             "-shared" \
987             "-fPIC" \
988             {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
989             {{readelf {-n} property-4.r}} \
990             "property-4.so" \
991         ] \
992         [list \
993             "Build property 4 (-Wl,-z,stack-size=0)" \
994             "-Wl,-z,stack-size=0" \
995             "" \
996             {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
997             {{readelf {-n} property-4.r}} \
998             "property-4" \
999         ] \
1000         [list \
1001             "Build property 5" \
1002             "-Wl,-z,stack-size=0x900000" \
1003             "" \
1004             {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1005             {{readelf {-n} property-5.r}} \
1006             "property-5" \
1007         ] \
1008         [list \
1009             "Build property 5 (.o)" \
1010             "-r -nostdlib -Wl,-z,stack-size=0x900000" \
1011             "" \
1012             {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1013             {{readelf {-n} property-5.r}} \
1014             "property-5.o" \
1015         ] \
1016         [list \
1017             "Build property 5 (.so)" \
1018             "-shared -Wl,-z,stack-size=0x900000" \
1019             "-fPIC" \
1020             {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1021             {{readelf {-n} property-5.r}} \
1022             "property-5.so" \
1023         ] \
1024         [list \
1025             "Build property-6.so" \
1026             "-shared" \
1027             "-fPIC" \
1028             {property-6a.c property-6c.S} \
1029             {{readelf {-n} property-6.r}} \
1030             "property-6.so" \
1031         ] \
1032         [list \
1033             "Build property-6.o" \
1034             "-r -nostdlib" \
1035             "" \
1036             {property-6b.c property-stack.S} \
1037             {{readelf {-n} property-2.r}} \
1038             "property-6.o" \
1039         ] \
1040         [list \
1041             "Build property-6" \
1042             "-Wl,--as-needed tmpdir/property-6.o tmpdir/property-6.so" \
1043             { dummy.s } \
1044             "" \
1045             {{readelf {-n} property-2.r}} \
1046             "property-6" \
1047         ] \
1048         [list \
1049             "Build property 7a (.o)" \
1050             "-r -nostdlib" \
1051             "" \
1052             {property-unsorted-1.S} \
1053             {{readelf {-n} property-7.r}} \
1054             "property-7a.o" \
1055         ] \
1056         [list \
1057             "Build property 7b (.o)" \
1058             "-r -nostdlib" \
1059             "" \
1060             {property-unsorted-2.S} \
1061             {{readelf {-n} property-7.r}} \
1062             "property-7b.o" \
1063         ] \
1064         [list \
1065             "Build pr22001-1.so" \
1066             "-shared" \
1067             "-fPIC" \
1068             { pr22001-1a.c } \
1069             {} \
1070             "pr22001-1.so" \
1071         ] \
1072         [list \
1073             "Build pr22001-1a" \
1074             "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1075             "$NOPIE_CFLAGS" \
1076             { pr22001-1b.c } \
1077             {{error_output "pr22001-1a.err"}} \
1078             "pr22001-1a" \
1079         ] \
1080         [list \
1081             "Build pr21997-1.so" \
1082             "-shared" \
1083             "" \
1084             { property-stack.S property-no-copy.S pr21997-1a.S } \
1085             {} \
1086             "pr21997-1.so" \
1087         ] \
1088         [list \
1089             "Build pr21997-1a" \
1090             "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1091             "$NOPIE_CFLAGS" \
1092             { pr21997-1b.c } \
1093             {{error_output "pr21997-1a.err"}} \
1094             "pr21997-1a" \
1095         ] \
1096         [list \
1097             "Build pr22064a.o" \
1098             "" \
1099             "" \
1100             { pr22064a.S } \
1101         ] \
1102         [list \
1103             "Build pr22064.so" \
1104             "-shared" \
1105             "-fPIC" \
1106             { pr22064b.c } \
1107             {} \
1108             "pr22064.so" \
1109         ] \
1110         [list \
1111             "Build pr22393-3a.so" \
1112             "-shared -Wl,-z,separate-code,-z,max-page-size=0x1000" \
1113             "-fPIC" \
1114             {pr22393-3a.c} \
1115             {{readelf -lW pr22393-3a.rd} \
1116              {readelf -lW pr22393-3b.rd}} \
1117             "pr22393-3a.so" \
1118         ] \
1119         [list \
1120             "Build pr22393-3a-now.so" \
1121             "-shared -Wl,-z,separate-code,-z,now,-z,max-page-size=0x1000" \
1122             "-fPIC" \
1123             {pr22393-3a.c} \
1124             {{readelf -lW pr22393-3a.rd} \
1125              {readelf -lW pr22393-3b.rd}} \
1126             "pr22393-3a-now.so" \
1127         ] \
1128         [list \
1129             "Build pr22393-3" \
1130             "$NOPIE_LDFLAGS -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-2a.so" \
1131             "$NOPIE_CFLAGS" \
1132             {pr22393-3b.c} \
1133             {{readelf -lW pr22393-3a.rd} \
1134              {readelf -lW pr22393-3b.rd}} \
1135             "pr22393-3" \
1136         ] \
1137         [list \
1138             "Build pr22393-3 (PIE)" \
1139             "-pie -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-2a-now.so" \
1140             "-fPIE" \
1141             {pr22393-3b.c} \
1142             {{readelf -lW pr22393-3a.rd} \
1143              {readelf -lW pr22393-3b.rd}} \
1144             "pr22393-3-pie" \
1145         ] \
1146         [list \
1147             "Build pr22393-3 (static)" \
1148             "-static -Wl,-z,separate-code,-z,max-page-size=0x1000" \
1149             "" \
1150             {pr22393-3a.c pr22393-3b.c} \
1151             {{readelf -lW pr22393-3a.rd} \
1152              {readelf -lW pr22393-3b.rd}} \
1153             "pr22393-3-static" \
1154         ] \
1155         [list \
1156             "Build pr22791-1.so" \
1157             "-shared" \
1158             "-fPIC" \
1159             { pr22791-1a.c } \
1160             {} \
1161             "pr22791-1.so" \
1162         ] \
1163         [list \
1164             "Build pr22791-1" \
1165             "-pie -Wl,--no-as-needed tmpdir/pr22791-1.so" \
1166             "$NOPIE_CFLAGS" \
1167             { pr22791-1b.s } \
1168             {{error_output "pr22791-1.err"}} \
1169             "pr22791-1" \
1170         ] \
1171         [list \
1172             "Build pr22791-2a.o" \
1173             "" \
1174             "$NOPIE_CFLAGS" \
1175             { pr22791-2a.s } \
1176         ] \
1177         [list \
1178             "Build pr22791-2.so" \
1179             "-shared tmpdir/pr22791-2a.o" \
1180             "-fPIC" \
1181             { pr22791-2b.c } \
1182             {{readelf -drW pr22791-2.rd}} \
1183             "pr22791-2.so" \
1184         ] \
1185         [list \
1186             "Build pr22791-2" \
1187             "-pie -Wl,--no-as-needed tmpdir/pr22791-2.so" \
1188             "$NOPIE_CFLAGS" \
1189             { pr22791-2c.s } \
1190             {{readelf -drW pr22791-2.rd}} \
1191             "pr22791-2" \
1192         ] \
1193     ]
1194
1195     if  {[istarget "x86_64-*-linux*-gnux32"]} {
1196         run_ld_link_exec_tests [list \
1197             [list \
1198                 "Run pr22001-1b" \
1199                 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1200                 "" \
1201                 { pr22001-1c.c } \
1202                 "pr22001-1b" \
1203                 "pass.out" \
1204                 "$NOPIE_CFLAGS" \
1205             ] \
1206             [list \
1207                 "Run pr21997-1b" \
1208                 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1209                 "" \
1210                 { pr21997-1c.c } \
1211                 "pr21997-1b" \
1212                 "pass.out" \
1213                 "$NOPIE_CFLAGS" \
1214             ] \
1215         ]
1216     } else {
1217         run_cc_link_tests [list \
1218             [list \
1219                 "Build pr22001-1b" \
1220                 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1221                 "$NOPIE_CFLAGS" \
1222                 { pr22001-1c.c } \
1223                 {{error_output "pr22001-1b.err"}} \
1224                 "pr22001-1b" \
1225             ] \
1226             [list \
1227                 "Build pr21997-1b" \
1228                 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1229                 "$NOPIE_CFLAGS" \
1230                 { pr21997-1c.c } \
1231                 {{error_output "pr21997-1b.err"}} \
1232                 "pr21997-1b" \
1233             ] \
1234         ]
1235     }
1236
1237     run_ld_link_exec_tests [list \
1238         [list \
1239             "Run plt-main" \
1240             "-Wl,--no-as-needed tmpdir/plt-main1.o tmpdir/plt-main2.o \
1241              tmpdir/plt-main3.o tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1242             "" \
1243             { plt-main5.c } \
1244             "plt-main" \
1245             "plt-main.out" \
1246         ] \
1247         [list \
1248             "Run plt-main with PIE" \
1249             "-Wl,--no-as-needed -pie tmpdir/plt-main1.o tmpdir/plt-main2.o \
1250              tmpdir/plt-main3.o tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1251             "" \
1252             { plt-main5.c } \
1253             "plt-main-pie" \
1254             "plt-main.out" \
1255             "-fPIC" \
1256         ] \
1257         [list \
1258             "Run copyreloc-main with PIE without -fPIE" \
1259             "-Wl,--as-needed -pie tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so" \
1260             "" \
1261             { dummy.s } \
1262             "copyreloc-main" \
1263             "copyreloc-main.out" \
1264         ] \
1265         [list \
1266             "Run pr17689 with PIE without -fPIE" \
1267             "-Wl,--no-as-needed -pie tmpdir/pr17689b.o tmpdir/pr17689.so" \
1268             "" \
1269             { dummy.s } \
1270             "pr17689" \
1271             "pr17689.out" \
1272         ] \
1273         [list \
1274             "Run pr17689 with PIE -z now without -fPIE" \
1275             "-Wl,--as-needed,-z,now -pie tmpdir/pr17689b.o tmpdir/pr17689.so" \
1276             "" \
1277             { dummy.s } \
1278             "pr17689now" \
1279             "pr17689.out" \
1280         ] \
1281         [list \
1282             "Run pr18900" \
1283             "-Wl,--no-as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
1284             "" \
1285             { dummy.s } \
1286             "pr18900" \
1287             "pr18900.out" \
1288         ] \
1289         [list \
1290             "Run pr19031" \
1291             "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr19031.so" \
1292             "" \
1293             { pr19031b.S pr19031c.c } \
1294             "pr19031" \
1295             "pr19031.out" \
1296             "$NOPIE_CFLAGS" \
1297         ] \
1298         [list \
1299             "Run gotpcrel1" \
1300             "-Wl,--no-as-needed tmpdir/gotpcrel1d.so" \
1301             "" \
1302             { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
1303             "gotpcrel1" \
1304             "gotpcrel1.out" \
1305         ] \
1306         [list \
1307             "Run property 1" \
1308             "" \
1309             "" \
1310             {pass.c property-no-copy.S} \
1311             "property-1" "pass.out" \
1312         ] \
1313         [list \
1314             "Run property 1 (PIE)" \
1315             "-pie" \
1316             "" \
1317             {pass.c property-no-copy.S} \
1318             "property-1-pie" "pass.out" "-fPIE" \
1319         ] \
1320         [list \
1321             "Run property 1 (static)" \
1322             "-static" \
1323             "" \
1324             {pass.c property-no-copy.S} \
1325             "property-1-static" "pass.out" \
1326         ] \
1327         [list \
1328             "Run property 2" \
1329             "" \
1330             "" \
1331             {pass.c property-stack.S} \
1332             "property-2" "pass.out" \
1333         ] \
1334         [list \
1335             "Run property 2 (PIE)" \
1336             "-pie" \
1337             "" \
1338             {pass.c property-stack.S} \
1339             "property-2-pie" "pass.out" "-fPIE" \
1340         ] \
1341         [list \
1342             "Run property 2 (static)" \
1343             "-static" \
1344             "" \
1345             {pass.c property-stack.S} \
1346             "property-3-static" "pass.out" \
1347         ] \
1348         [list \
1349             "Run property 3" \
1350             "" \
1351             "" \
1352             {pass.c property-stack.S property-x86-1.S} \
1353             "property-3" "pass.out" \
1354         ] \
1355         [list \
1356             "Run property 3 (PIE)" \
1357             "-pie" \
1358             "" \
1359             {pass.c property-x86-1.S property-stack.S} \
1360             "property-3-pie" "pass.out" "-fPIE" \
1361         ] \
1362         [list \
1363             "Run property 3 (static)" \
1364             "-static" \
1365             "" \
1366             {property-x86-1.S pass.c property-stack.S} \
1367             "property-3-static" "pass.out" \
1368         ] \
1369         [list \
1370             "Run property 4" \
1371             "" \
1372             "" \
1373             {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1374             "property-4" "pass.out" \
1375         ] \
1376         [list \
1377             "Run property 4 (PIE)" \
1378             "-pie" \
1379             "" \
1380             {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1381             "property-4-pie" "pass.out" "-fPIE" \
1382         ] \
1383         [list \
1384             "Run property 4 (static)" \
1385             "-static" \
1386             "" \
1387             {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1388             "property-4-static" "pass.out" \
1389         ] \
1390         [list \
1391             "Run property 5" \
1392             "-Wl,-z,stack-size=0x900000" \
1393             "" \
1394             {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1395             "property-5" "pass.out" \
1396         ] \
1397         [list \
1398             "Run property 5 (PIE)" \
1399             "-pie -Wl,-z,stack-size=0x900000" \
1400             "" \
1401             {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1402             "property-5-pie" "pass.out" "-fPIE" \
1403         ] \
1404         [list \
1405             "Run property 5 (static)" \
1406             "-static -Wl,-z,stack-size=0x900000" \
1407             "" \
1408             {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1409             "property-5-static" "pass.out" \
1410         ] \
1411         [list \
1412             "Run pr22001-1a (PIC 1)" \
1413             "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1414             "" \
1415             { pr22001-1b.c } \
1416             "pr22001-1a-pic-1" \
1417             "pass.out" \
1418             "-fPIC" \
1419         ] \
1420         [list \
1421             "Run pr22001-1a (PIC 2)" \
1422             "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1423             "" \
1424             { pr22001-1b.c } \
1425             "pr22001-1a-pic-2" \
1426             "pass.out" \
1427             "-fPIC" \
1428         ] \
1429         [list \
1430             "Run pr22001-1b (PIC 1)" \
1431             "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1432             "" \
1433             { pr22001-1c.c } \
1434             "pr22001-1b-pic-1" \
1435             "pass.out" \
1436             "-fPIC" \
1437         ] \
1438         [list \
1439             "Run pr22001-1b (PIC 2)" \
1440             "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1441             "" \
1442             { pr22001-1c.c } \
1443             "pr22001-1b-pic-2" \
1444             "pass.out" \
1445             "-fPIC" \
1446         ] \
1447         [list \
1448             "Run pr21997-1a (PIC 1)" \
1449             "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1450             "" \
1451             { pr21997-1b.c } \
1452             "pr21997-1a-pic-1" \
1453             "pass.out" \
1454             "-fPIC" \
1455         ] \
1456         [list \
1457             "Run pr21997-1a (PIC 2)" \
1458             "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1459             "" \
1460             { pr21997-1b.c } \
1461             "pr21997-1a-pic-2" \
1462             "pass.out" \
1463             "-fPIC" \
1464         ] \
1465         [list \
1466             "Run pr21997-1b (PIC 1)" \
1467             "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1468             "" \
1469             { pr21997-1c.c } \
1470             "pr21997-1b-pic-1" \
1471             "pass.out" \
1472             "-fPIC" \
1473         ] \
1474         [list \
1475             "Run pr21997-1b (PIC 2)" \
1476             "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1477             "" \
1478             { pr21997-1c.c } \
1479             "pr21997-1b-pic-2" \
1480             "pass.out" \
1481             "-fPIC" \
1482         ] \
1483         [list \
1484             "Run pr22064" \
1485             "-pie -Wl,--no-as-needed tmpdir/pr22064a.o tmpdir/pr22064.so" \
1486             "" \
1487             { dummy.s } \
1488             "pr22064-pie" \
1489             "pass.out" \
1490             "-fPIE" \
1491         ] \
1492         [list \
1493             "Run pr22393-3" \
1494             "$NOPIE_LDFLAGS -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a.so" \
1495             "" \
1496             {pr22393-3b.c} \
1497             "pr22393-3" \
1498             "pass.out" \
1499             "$NOPIE_CFLAGS" \
1500         ] \
1501         [list \
1502             "Run pr22393-3 (PIE)" \
1503             "-pie -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a-now.so" \
1504             "" \
1505             {pr22393-3b.c} \
1506             "pr22393-3-pie" \
1507             "pass.out" \
1508             "-fPIE" \
1509         ] \
1510         [list \
1511             "Run pr22393-3 (static)" \
1512             "-static -Wl,-z,separate-code,-z,max-page-size=0x1000" \
1513             "" \
1514             {pr22393-3a.c pr22393-3b.c} \
1515             "pr22393-3-static" \
1516             "pass.out" \
1517         ] \
1518         [list \
1519             "Run pr22791-2" \
1520             "-pie -Wl,--no-as-needed tmpdir/pr22791-2.so" \
1521             "" \
1522             { pr22791-2c.s } \
1523             "pr22791-2" \
1524             "pass.out" \
1525             "$NOPIE_CFLAGS" \
1526         ] \
1527     ]
1528
1529     # Run-time tests which require working ifunc attribute support.
1530     if { [check_ifunc_attribute_available] } {
1531         run_cc_link_tests [list \
1532             [list \
1533                 "Build libpr19784a.so" \
1534                 "-shared -Wl,-Bsymbolic-functions" \
1535                 "-fPIC -O2 -g" \
1536                 { pr19784b.c pr19784c.c } \
1537                 {} \
1538                 "libpr19784a.so" \
1539             ] \
1540             [list \
1541                 "Build libpr19784b.so" \
1542                 "-shared -Wl,-Bsymbolic-functions" \
1543                 "-fPIC -O2 -g" \
1544                 { pr19784c.c pr19784b.c } \
1545                 {} \
1546                 "libpr19784b.so" \
1547             ] \
1548             [list \
1549                 "Build pr19784a.o" \
1550                 "" \
1551                 "" \
1552                 { pr19784a.c } \
1553             ] \
1554         ]
1555
1556         run_ld_link_exec_tests [list \
1557             [list \
1558                 "Run pr19784a" \
1559                 "-Wl,--no-as-needed tmpdir/pr19784a.o tmpdir/libpr19784a.so" \
1560                 "" \
1561                 { dummy.s } \
1562                 "pr19784a" \
1563                 "pass.out" \
1564             ] \
1565             [list \
1566                 "Run pr19784b" \
1567                 "-Wl,--as-needed tmpdir/pr19784a.o tmpdir/libpr19784b.so" \
1568                 "" \
1569                 { dummy.s } \
1570                 "pr19784b" \
1571                 "pass.out" \
1572             ] \
1573         ]
1574     }
1575
1576     if { [istarget "x86_64-*-linux*"] \
1577          && ![istarget "x86_64-*-linux*-gnux32"]} {
1578
1579         run_cc_link_tests [list \
1580             [list \
1581                 "Build plt-main with -z bndplt" \
1582                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1583                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt" \
1584                 "" \
1585                 { plt-main5.c } \
1586                 {{objdump {-drw} plt-main-bnd.dd}} \
1587                 "plt-main-bnd" \
1588             ] \
1589             [list \
1590                 "Build plt-main with PIE and -z bndplt" \
1591                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1592                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -pie" \
1593                 "-fPIC" \
1594                 { plt-main5.c } \
1595                 {{objdump {-drw} plt-main-bnd.dd}} \
1596                 "plt-main-pie-bnd" \
1597             ] \
1598             [list \
1599                 "Build plt-main with -z bndplt -z now" \
1600                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1601                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -z now" \
1602                 "" \
1603                 { plt-main5.c } \
1604                 {{readelf {-SW} plt-main-bnd-now.rd} {objdump {-drw} plt-main-bnd.dd}} \
1605                 "plt-main-bnd-now" \
1606             ] \
1607             [list \
1608                 "Build plt-main with PIE and -z bndplt -z now" \
1609                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1610                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -z now -pie" \
1611                 "-fPIC" \
1612                 { plt-main5.c } \
1613                 {{readelf {-SW} plt-main-bnd-now.rd} {objdump {-drw} plt-main-bnd.dd}} \
1614                 "plt-main-pie-bnd-now" \
1615             ] \
1616         ]
1617
1618         run_ld_link_exec_tests [list \
1619             [list \
1620                 "Run plt-main with -z bndplt" \
1621                 "-Wl,--no-as-needed,-z,bndplt tmpdir/plt-main1.o \
1622                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1623                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1624                 "" \
1625                 { plt-main5.c } \
1626                 "plt-main-bnd" \
1627                 "plt-main.out" \
1628             ] \
1629             [list \
1630                 "Run plt-main with PIE and -z bndplt" \
1631                 "-Wl,--no-as-needed,-z,bndplt -pie tmpdir/plt-main1.o \
1632                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1633                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1634                 "" \
1635                 { plt-main5.c } \
1636                 "plt-main-pie-bnd" \
1637                 "plt-main.out" \
1638                 "-fPIC" \
1639             ] \
1640             [list \
1641                 "Run plt-main with -z bndplt -z now" \
1642                 "-Wl,--no-as-needed,-z,bndplt,-z,now tmpdir/plt-main1.o \
1643                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1644                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1645                 "" \
1646                 { plt-main5.c } \
1647                 "plt-main-bnd-now" \
1648                 "plt-main.out" \
1649             ] \
1650             [list \
1651                 "Run plt-main with PIE and -z bndplt -z now" \
1652                 "-Wl,--no-as-needed,-z,bndplt,-z,now -pie tmpdir/plt-main1.o \
1653                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1654                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1655                 "" \
1656                 { plt-main5.c } \
1657                 "plt-main-pie-bnd-now" \
1658                 "plt-main.out" \
1659                 "-fPIC" \
1660             ] \
1661             [list \
1662                 "Run pr20800" \
1663                 "-Wl,-z,now -pie" \
1664                 "" \
1665                 { pr20800a.S pr20800b.S } \
1666                 "pr20800" \
1667                 "pass.out" \
1668             ] \
1669         ]
1670         if { [check_ifunc_attribute_available] } {
1671             run_ld_link_exec_tests [list \
1672                 [list \
1673                     "Run pr21481a" \
1674                     "$NOPIE_LDFLAGS -Wl,-z,bndplt" \
1675                     "" \
1676                     { pr21481a.c pr21481b.S } \
1677                     "pr21481a" \
1678                     "pass.out" \
1679                      "$NOPIE_CFLAGS" \
1680                 ] \
1681                 [list \
1682                     "Run pr21481b" \
1683                     "$NOPIE_LDFLAGS -Wl,-z,bndplt,-z,now" \
1684                     "" \
1685                     { pr21481a.c pr21481b.S } \
1686                     "pr21481b" \
1687                     "pass.out" \
1688                     "$NOPIE_CFLAGS" \
1689                 ] \
1690             ]
1691         }
1692     }
1693
1694     if { [istarget "x86_64-*-linux*"] } {
1695         if { [istarget "x86_64-*-linux*-gnux32"] } {
1696             set pltdump {{objdump {-drw} plt-main-ibt-x32.dd}}
1697             set pltsecdump {{readelf {-SW} plt-main-ibt-now.rd} {objdump {-drw} plt-main-ibt-x32.dd}}
1698         } else {
1699             set pltdump {{objdump {-drw} plt-main-ibt.dd}}
1700             set pltsecdump {{readelf {-SW} plt-main-ibt-now.rd} {objdump {-drw} plt-main-ibt.dd}}
1701         }
1702         run_cc_link_tests [list \
1703             [list \
1704                 "Build plt-main with -z ibtplt" \
1705                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1706                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt" \
1707                 "" \
1708                 { plt-main5.c } \
1709                 $pltdump \
1710                 "plt-main-ibt" \
1711             ] \
1712             [list \
1713                 "Build plt-main with PIE and -z ibtplt" \
1714                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1715                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -pie" \
1716                 "-fPIC" \
1717                 { plt-main5.c } \
1718                 $pltdump \
1719                 "plt-main-pie-ibt" \
1720             ] \
1721             [list \
1722                 "Build plt-main with -z ibtplt -z now" \
1723                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1724                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -z now" \
1725                 "" \
1726                 { plt-main5.c } \
1727                 $pltsecdump \
1728                 "plt-main-ibt-now" \
1729             ] \
1730             [list \
1731                 "Build plt-main with PIE and -z ibtplt -z now" \
1732                 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1733                  tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -z now -pie" \
1734                 "-fPIC" \
1735                 { plt-main5.c } \
1736                 $pltsecdump \
1737                 "plt-main-pie-ibt-now" \
1738             ] \
1739             [list \
1740                 "Build libibtplt-lib.so with -z ibtplt" \
1741                 "-shared -z ibtplt" \
1742                 "-fPIC" \
1743                 { plt-main1.c plt-main2.c plt-main3.c plt-main4.c} \
1744                 $pltdump \
1745                 "libibtplt-lib.so" \
1746             ] \
1747             [list \
1748                 "Build libibtplt--now-lib.so with -z ibtplt -z now" \
1749                 "-shared -z ibtplt -z now" \
1750                 "-fPIC" \
1751                 { plt-main1.c plt-main2.c plt-main3.c plt-main4.c} \
1752                 $pltdump \
1753                 "libibtplt-now-lib.so" \
1754             ] \
1755         ]
1756
1757         run_ld_link_exec_tests [list \
1758             [list \
1759                 "Run plt-main with -z ibtplt" \
1760                 "-Wl,--no-as-needed,-z,ibtplt tmpdir/plt-main1.o \
1761                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1762                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1763                 "" \
1764                 { plt-main5.c } \
1765                 "plt-main-ibt" \
1766                 "plt-main.out" \
1767             ] \
1768             [list \
1769                 "Run plt-main with PIE and -z ibtplt" \
1770                 "-Wl,--no-as-needed,-z,ibtplt -pie tmpdir/plt-main1.o \
1771                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1772                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1773                 "" \
1774                 { plt-main5.c } \
1775                 "plt-main-pie-ibt" \
1776                 "plt-main.out" \
1777                 "-fPIC" \
1778             ] \
1779             [list \
1780                 "Run plt-main with -z ibtplt -z now" \
1781                 "-Wl,--no-as-needed,-z,ibtplt,-z,now tmpdir/plt-main1.o \
1782                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1783                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1784                 "" \
1785                 { plt-main5.c } \
1786                 "plt-main-ibt-now" \
1787                 "plt-main.out" \
1788             ] \
1789             [list \
1790                 "Run plt-main with PIE and -z ibtplt -z now" \
1791                 "-Wl,--no-as-needed,-z,ibtplt,-z,now -pie tmpdir/plt-main1.o \
1792                  tmpdir/plt-main2.o tmpdir/plt-main3.o \
1793                  tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1794                 "" \
1795                 { plt-main5.c } \
1796                 "plt-main-pie-ibt-now" \
1797                 "plt-main.out" \
1798                 "-fPIC" \
1799             ] \
1800             [list \
1801                 "Run plt-main with libibtplt-lib.so -z ibtplt" \
1802                 "-Wl,--no-as-needed,-z,ibtplt tmpdir/libibtplt-lib.so \
1803                  tmpdir/libplt-lib.so" \
1804                 "" \
1805                 { plt-main5.c } \
1806                 "plt-main-ibt-lib" \
1807                 "plt-main.out" \
1808             ] \
1809             [list \
1810                 "Run plt-main with libibtplt-lib.so -z ibtplt -z now" \
1811                 "-Wl,--no-as-needed,-z,ibtplt,-z,now \
1812                  tmpdir/libibtplt-now-lib.so tmpdir/libplt-lib.so" \
1813                 "" \
1814                 { plt-main5.c } \
1815                 "plt-main-ibt-now-lib" \
1816                 "plt-main.out" \
1817             ] \
1818         ]
1819
1820         if { [check_ifunc_attribute_available] } {
1821             run_ld_link_exec_tests [list \
1822                 [list \
1823                     "Run pr21481a" \
1824                     "$NOPIE_LDFLAGS -Wl,-z,ibtplt" \
1825                     "" \
1826                     { pr21481a.c pr21481b.S } \
1827                     "pr21481a" \
1828                     "pass.out" \
1829                      "$NOPIE_CFLAGS" \
1830                 ] \
1831                 [list \
1832                     "Run pr21481b" \
1833                     "$NOPIE_LDFLAGS -Wl,-z,ibtplt,-z,now" \
1834                     "" \
1835                     { pr21481a.c pr21481b.S } \
1836                     "pr21481b" \
1837                     "pass.out" \
1838                     "$NOPIE_CFLAGS" \
1839                 ] \
1840             ]
1841         }
1842     }
1843
1844     undefined_weak "$NOPIE_CFLAGS" "$NOPIE_LDFLAGS"
1845     undefined_weak "-fPIE" ""
1846     undefined_weak "-fPIE" "-pie"
1847     undefined_weak "-fPIE" "-Wl,-z,nodynamic-undefined-weak"
1848     undefined_weak "-fPIE" "-pie -Wl,-z,nodynamic-undefined-weak"
1849 }
1850
1851 if { ![istarget "x86_64-*-linux*"]} {
1852     return
1853 }
1854
1855 run_ld_link_tests [list \
1856     [list \
1857         "basic PLT generation (-z now)" \
1858         "-z now -melf_x86_64 --hash-style=sysv tmpdir/libpltlib.so" \
1859         "" \
1860         "--64" \
1861         {plt2.s} \
1862         {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1863         "plt2" \
1864     ] \
1865     [list \
1866         "Build pr21626.so" \
1867         "-shared -melf_x86_64" \
1868         "" \
1869         "--64 -defsym __64_bit__=1" \
1870         {property-x86-3.s} \
1871         "" \
1872         "pr21626.so" \
1873     ] \
1874     [list \
1875         "Build pr21626" \
1876         "-melf_x86_64 tmpdir/pr21626.so" \
1877         "" \
1878         "--64" \
1879         {start.s foo.s} \
1880         "" \
1881         "pr21626" \
1882     ] \
1883 ]
1884
1885 # Linux only tests
1886 global LD_CLASS
1887 if { "$LD_CLASS" == "64bit" } then {
1888     # This test needs 64-bit linker.
1889     run_dump_test "pr17618"
1890 }
1891 run_dump_test "pltgot-1"
1892 run_dump_test "pltgot-2"
1893 run_dump_test "pr20830a"
1894 run_dump_test "pr20830b"
1895 run_dump_test "pr21038a"
1896 run_dump_test "pr21038b"
1897 run_dump_test "pr21038c"
1898 run_dump_test "pr20830a-now"
1899 run_dump_test "pr20830b-now"
1900 run_dump_test "pr21038a-now"
1901 run_dump_test "pr21038b-now"
1902 run_dump_test "pr21038c-now"
1903 run_dump_test "ibt-plt-1"
1904 run_dump_test "ibt-plt-1-x32"
1905 run_dump_test "ibt-plt-2a"
1906 run_dump_test "ibt-plt-2b"
1907 run_dump_test "ibt-plt-2c"
1908 run_dump_test "ibt-plt-2d"
1909 run_dump_test "ibt-plt-2a-x32"
1910 run_dump_test "ibt-plt-2b-x32"
1911 run_dump_test "ibt-plt-2c-x32"
1912 run_dump_test "ibt-plt-2d-x32"
1913 run_dump_test "ibt-plt-3a"
1914 run_dump_test "ibt-plt-3b"
1915 run_dump_test "ibt-plt-3c"
1916 run_dump_test "ibt-plt-3d"
1917 run_dump_test "ibt-plt-3a-x32"
1918 run_dump_test "ibt-plt-3b-x32"
1919 run_dump_test "ibt-plt-3c-x32"
1920 run_dump_test "ibt-plt-3d-x32"