1 # Expect script for ld-i386 tests
2 # Copyright (C) 2002-2024 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
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.
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.
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,
22 set saved_ASFLAGS "$ASFLAGS"
23 if { [is_elf_format] \
24 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
25 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
28 # Test i386 linking; all types of relocs. This tests the assembler and
29 # tools like objdump as well as the linker.
31 if {[istarget "i?86-*-vxworks"]} {
33 {"VxWorks shared library test 1"
34 "-shared -Tvxworks1.ld --hash-style=sysv" ""
36 {{readelf --relocs vxworks1-lib.rd} {objdump -dr vxworks1-lib.dd}
37 {readelf --symbols vxworks1-lib.nd} {readelf -d vxworks1-lib.td}}
39 {"VxWorks executable test 1 (dynamic)" \
40 "tmpdir/libvxworks1.so -Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
42 {{readelf {--relocs --wide} vxworks1.rd} {objdump -dr vxworks1.dd}}
44 {"VxWorks executable test 2 (dynamic)" \
45 "-Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
47 {{readelf --segments vxworks2.sd}}
49 {"VxWorks executable test 2 (static)"
50 "-Tvxworks1.ld --hash-style=sysv" ""
52 {{readelf --segments vxworks2-static.sd}}
55 run_ld_link_tests $i386tests
56 run_dump_test "vxworks1-static"
59 if [istarget "*-*-go32*"] {
60 run_ld_link_tests {{"go32 stub" "" "" "" {zero.s} {} "go32stub"}}
62 set src "tmpdir/go32stub"
63 set dest "tmpdir/go32stub-copy"
65 set test "go32 stub patch the source"
67 fconfigure $fi -translation binary
68 if {[read $fi 2] != "MZ"} {
73 puts -nonewline $fi "objcopy-test-go32stub"
77 set test "go32 stub objcopy"
78 set status [remote_exec build $OBJCOPY "$OBJCOPYFLAGS $src $dest"]
79 set exec_output [lindex $status 1]
80 set exec_output [prune_warnings $exec_output]
81 if [string match "" $exec_output] then {
84 send_log "$exec_output\n"
85 verbose "$exec_output" 1
89 # cmp would compare the whole files and some data after the initial exe
91 set test "go32 stub comparison after objcopy"
93 fconfigure $fi -translation binary
94 set src_stub [read $fi 2048]
97 fconfigure $fi -translation binary
98 set dest_stub [read $fi 2048]
100 if {$src_stub == $dest_stub} {
107 if { !([istarget "i?86-*-elf*"]
108 || [istarget "i?86-*-linux*"]
109 || [istarget "i?86-*-gnu*"]
110 || [istarget "x86_64-*-elf*"]
111 || [istarget "x86_64-*-linux*"]
112 || [istarget "amd64-*-linux*"]) } {
116 # List contains test-items with 3 items followed by 2 lists:
117 # 0:name 1:ld early options 2:ld late options 3:assembler options
118 # 4:filenames of assembler files 5: action and options. 6: name of output file
121 # objdump: Apply objdump options on result. Compare with regex (last arg).
122 # nm: Apply nm options on result. Compare with regex (last arg).
123 # readelf: Apply readelf options on result. Compare with regex (last arg).
126 {"Helper shared library (basic PLT test)"
127 "-shared -melf_i386" "" "--32" {pltlib.s} {} "libpltlib.so"}
128 {"basic PLT generation (non-PIC)"
129 "-melf_i386 tmpdir/libpltlib.so" "" "--32" {plt.s}
130 {{objdump -drj.plt plt.pd}} "plt"}
131 {"basic PLT generation (PIC)"
132 "-shared -melf_i386 tmpdir/libpltlib.so" "" "--32" {plt-pic.s}
133 {{objdump -drj.plt plt-pic.pd}} "libplt-pic.so"}
134 {"TLS -fpic -shared transitions"
135 "-shared -melf_i386 --no-ld-generated-unwind-info \
136 -z noseparate-code --hash-style=sysv" ""
137 "--32" {tlspic1.s tlspic2.s}
138 {{readelf -Ssrl tlspic.rd} {objdump -drj.text tlspic.dd}
139 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
141 {"TLS -fpic -shared transitions without PLT"
142 "-shared -melf_i386 --no-ld-generated-unwind-info \
143 -z noseparate-code --hash-style=sysv" ""
144 "-mrelax-relocations=yes --32"
145 {tlspic3.s tlspic2.s}
146 {{readelf -Ssrl tlspic2.rd} {objdump -drj.text tlspic2.dd}
147 {objdump -sj.got tlspic2.sd} {objdump -sj.tdata tlspic2.td}}
149 {"TLS descriptor -fpic -shared transitions"
150 "-shared -melf_i386 --no-ld-generated-unwind-info \
151 -z noseparate-code --hash-style=sysv" ""
152 "--32" {tlsdesc.s tlspic2.s}
153 {{readelf -Ssrl tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
154 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}}
156 {"Helper shared library" "-shared -melf_i386" ""
157 "--32" {tlslib.s} {} "libtlslib.so"}
158 {"TLS -fpic and -fno-pic exec transitions"
159 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
160 -z noseparate-code --hash-style=sysv" ""
161 "--32" {tlsbinpic.s tlsbin.s}
162 {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
163 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
165 {"TLS -fpic and -fno-pic exec transitions without PLT"
166 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
167 -z noseparate-code --hash-style=sysv" ""
168 "-mrelax-relocations=yes --32"
169 {tlsbinpic2.s tlsbin.s}
170 {{readelf -Ssrl tlsbin2.rd} {objdump -drj.text tlsbin2.dd}
171 {objdump -sj.got tlsbin2.sd} {objdump -sj.tdata tlsbin2.td}}
173 {"TLS descriptor -fpic and -fno-pic exec transitions"
174 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
175 -z noseparate-code --hash-style=sysv" ""
176 "--32" {tlsbindesc.s tlsbin.s}
177 {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
178 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
180 {"TLS with global dynamic and descriptors"
181 "-shared -melf_i386 --no-ld-generated-unwind-info \
182 -z noseparate-code --hash-style=sysv" ""
184 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
186 {"TLS in debug sections" "-melf_i386" ""
188 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
189 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
190 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
191 {"Reloc section order"
192 "-shared -melf_i386 -z nocombreloc -z notext" "" "--32"
193 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
194 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs --no-rosegment" "" "--32"
195 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
196 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
197 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
198 {"TLS GD->LE transition" "-melf_i386" ""
200 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
201 {"TLS GD->LE transition without PLT" "-melf_i386" ""
202 "-mrelax-relocations=yes --32"
204 {{objdump -dwr tlsgd3.dd}} "tlsgd3"}
205 {"TLS LD->LE transition" "-melf_i386" ""
207 {{objdump -dwr tlsld1.dd}} "tlsld1"}
208 {"TLS LD->LE transition without PLT" "-melf_i386" ""
209 "-mrelax-relocations=yes --32"
211 {{objdump -dwr tlsld2.dd}} "tlsld2"}
212 {"TLS IE->LE transition" "-melf_i386" ""
214 {{objdump -dwr tlsie1.dd}} "tlsie1"}
215 {"PR ld/17313 (1)" "-melf_i386" ""
216 "--32 -mx86-used-note=yes" {zero.s} {} ""}
217 {"PR ld/17313 (2)" "-melf_i386 -shared --just-symbols=tmpdir/zero.o" ""
218 "--32 -mx86-used-note=yes" {lea1.s} {} "libpr17313.so"}
219 {"PR ld/17306 (1)" "-melf_i386" ""
220 "--32 -mx86-used-note=yes" {pr17306b.s} {} ""}
221 {"PR ld/17306 (2)" "-melf_i386 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
222 "--32 -mx86-used-note=yes" {pr17306a.s} {} "libpr17306.so"}
223 {"PR ld/17709 (1)" "-melf_i386 -shared" ""
224 "--32 -mx86-used-note=yes" {pr17709a.s} {} "libpr17709.so"}
225 {"PR ld/17709 (2)" "-melf_i386 tmpdir/libpr17709.so" ""
226 "--32 -mx86-used-note=yes"
227 {pr17709b.s} {{ld "pr17709.err"}} "pr17709"}
228 {"Build pr19827a.o" "" ""
229 "--32 -mx86-used-note=yes" { pr19827a.S }}
230 {"Build pr19827b.so" "-melf_i386 -shared" ""
231 "--32 -mx86-used-note=yes"
232 { pr19827b.S } {} "pr19827b.so"}
234 "-melf_i386 -pie -z notext tmpdir/pr19827a.o tmpdir/pr19827b.so"
236 "--32 -mx86-used-note=yes"
237 { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
239 "-melf_i386 -shared -Bsymbolic -z notext" ""
240 "--32 -mx86-used-note=yes"
241 { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
243 "-melf_i386 -shared -z noexecstack" ""
245 { pr27193a.o.bz2 pr27193b.s }
246 {{objdump {-dw} pr27193.dd}} "pr27193a.so"}
248 "-melf_i386 -shared --reduce-memory-overheads -z noexecstack" ""
250 { pr27193a.o.bz2 pr27193b.s }
251 {{objdump {-dw} pr27193.dd}} "pr27193b.so"}
254 proc iamcu_tests {} {
259 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
260 fail "Build Intel MCU start.o"
264 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
265 fail "Build ia32 start.o"
269 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
270 fail "Build Intel MCU foo.o"
274 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
275 fail "Build ia32 foo.o"
279 run_dump_test "abs-iamcu"
280 run_dump_test "iamcu-1"
281 run_dump_test "iamcu-2"
282 run_dump_test "iamcu-3"
283 run_dump_test "iamcu-4"
288 run_ld_link_tests $i386tests
290 run_ld_link_tests [list \
292 "TLS -fno-pic -shared" \
293 "-shared -melf_i386 --no-ld-generated-unwind-info -z notext \
294 -z noseparate-code --hash-style=sysv $NO_DT_RELR_LDFLAGS" \
296 {tlsnopic1.s tlsnopic2.s} \
297 {{readelf -Ssrl tlsnopic.rd} \
298 {objdump -drj.text tlsnopic.dd} \
299 {objdump -sj.got tlsnopic.sd}} \
305 run_dump_test "pcrel8"
306 run_dump_test "pcrel16"
307 run_dump_test "pcrel16abs"
308 run_dump_test "pcrel16-2"
309 run_dump_test "alloc"
310 run_dump_test "warn1"
311 run_dump_test "tlsgd2"
312 run_dump_test "tlsgd4"
313 run_dump_test "tlsie2"
314 run_dump_test "tlsie3"
315 run_dump_test "tlsie4"
316 run_dump_test "tlsie5"
317 run_dump_test "hidden1"
318 run_dump_test "hidden2"
319 run_dump_test "hidden3"
320 run_dump_test "protected1"
321 run_dump_test "protected2"
322 run_dump_test "protected3"
323 run_dump_test "protected4"
324 run_dump_test "protected5"
325 run_dump_test "protected6a"
326 run_dump_test "protected6b"
327 run_dump_test "protected7"
328 run_dump_test "tlspie1"
329 run_dump_test "tlspie2"
330 run_dump_test "tlspie3a"
331 run_dump_test "tlspie3b"
332 run_dump_test "tlspie3c"
333 run_dump_test "nogot1"
334 run_dump_test "nogot2"
335 run_dump_test "discarded1"
336 run_dump_test "pr12718"
337 run_dump_test "pr12921"
338 run_dump_test "pr12570a"
339 run_dump_test "pr12570b"
340 run_dump_test "lea1a"
341 run_dump_test "lea1b"
342 run_dump_test "lea1c"
343 run_dump_test "lea1d"
344 run_dump_test "lea1e"
345 run_dump_test "lea1f"
346 run_dump_test "mov1a"
347 run_dump_test "mov1b"
348 run_dump_test "mov2a"
349 run_dump_test "mov2b"
351 run_dump_test "branch1"
352 run_dump_test "call1"
353 run_dump_test "call2"
354 run_dump_test "call3a"
355 run_dump_test "call3b"
356 run_dump_test "call3c"
357 run_dump_test "call3d"
358 run_dump_test "call3e"
359 run_dump_test "call3f"
360 run_dump_test "call3g"
361 run_dump_test "call3h"
364 run_dump_test "ljmp1"
365 run_dump_test "ljmp2"
366 run_dump_test "load1"
367 run_dump_test "load2"
368 run_dump_test "load3"
369 run_dump_test "load4a"
370 run_dump_test "load4b"
371 run_dump_test "load5a"
372 run_dump_test "load5b"
373 run_dump_test "load6"
374 run_dump_test "load7"
375 run_dump_test "pr19175"
376 run_dump_test "pr19615"
377 run_dump_test "pr19636-1a"
378 run_dump_test "pr19636-1b"
379 run_dump_test "pr19636-1c"
380 run_dump_test "pr19636-1d"
381 run_dump_test "pr19636-1e"
382 run_dump_test "pr19636-1f"
383 run_dump_test "pr19636-1g"
384 run_dump_test "pr19636-1h"
385 run_dump_test "pr19636-1i"
386 run_dump_test "pr19636-1j"
387 run_dump_test "pr19636-1k"
388 run_dump_test "pr19636-1l"
389 run_dump_test "pr19636-2a"
390 run_dump_test "pr19636-2b"
391 run_dump_test "pr19636-2c"
392 run_dump_test "pr19636-2d"
393 run_dump_test "pr19636-2e"
394 run_dump_test "pr19636-3a"
395 run_dump_test "pr19636-3b"
396 run_dump_test "pr19636-3c"
397 run_dump_test "pr19636-3d"
398 run_dump_test "pr19636-3e"
399 run_dump_test "pr19636-3f"
400 run_dump_test "pr19636-3g"
401 run_dump_test "pr19636-3h"
402 run_dump_test "pr19636-3i"
403 run_dump_test "pr19636-4a"
404 run_dump_test "pr19636-4b"
405 run_dump_test "pr19636-4c"
406 run_dump_test "pr19636-4d"
407 run_dump_test "pr19645"
408 run_dump_test "pr19609-1a"
409 run_dump_test "pr19609-1b"
410 run_dump_test "pr19609-1c"
411 run_dump_test "pr19609-1d"
412 run_dump_test "pr19609-1e"
413 run_dump_test "pr19609-1f"
414 run_dump_test "pr19609-1g"
415 run_dump_test "pr19609-1h"
416 run_dump_test "pr19609-1i"
417 run_dump_test "pr19609-2a"
418 run_dump_test "pr19609-2b"
419 run_dump_test "pr19609-2c"
420 run_dump_test "undefweaka"
421 run_dump_test "undefweakb"
422 run_dump_test "pr19539"
423 run_dump_test "pr20117"
424 run_dump_test "pr20244-1a"
425 run_dump_test "pr20244-1b"
426 run_dump_test "pr20244-1c"
427 run_dump_test "pr20244-2a"
428 run_dump_test "pr20244-2b"
429 run_dump_test "pr20244-2c"
430 run_dump_test "pr20244-2d"
431 run_dump_test "pr20244-4a"
432 run_dump_test "pr20244-4b"
433 run_dump_test "pr20244-4c"
434 run_dump_test "pr20253-3"
435 run_dump_test "pr20253-4a"
436 run_dump_test "pr20253-4b"
437 run_dump_test "pr20253-4c"
438 run_dump_test "pr20253-5"
439 run_dump_test "pr20515"
440 run_dump_test "property-x86-3"
441 run_dump_test "property-x86-4a"
442 run_dump_test "property-x86-4b"
443 run_dump_test "property-x86-5"
444 run_dump_test "property-x86-6"
445 run_dump_test "property-x86-ibt1a"
446 run_dump_test "property-x86-ibt1b"
447 run_dump_test "property-x86-ibt2"
448 run_dump_test "property-x86-ibt3a"
449 run_dump_test "property-x86-ibt3b"
450 run_dump_test "property-x86-ibt4"
451 run_dump_test "property-x86-ibt5"
452 run_dump_test "property-x86-shstk1a"
453 run_dump_test "property-x86-shstk1b"
454 run_dump_test "property-x86-shstk2"
455 run_dump_test "property-x86-shstk3a"
456 run_dump_test "property-x86-shstk3b"
457 run_dump_test "property-x86-shstk4"
458 run_dump_test "property-x86-shstk5"
459 run_dump_test "property-x86-cet1"
460 run_dump_test "property-x86-cet2a"
461 run_dump_test "property-x86-cet2b"
462 run_dump_test "property-x86-cet3a"
463 run_dump_test "property-x86-cet3b"
464 run_dump_test "property-x86-cet4a"
465 run_dump_test "property-x86-cet4b"
466 run_dump_test "property-x86-cet5a"
467 run_dump_test "property-x86-cet5b"
468 run_dump_test "property-x86-cet6"
470 run_dump_test "pr21884"
471 run_dump_test "pr22115-1a"
472 run_dump_test "pr22115-1b"
473 run_dump_test "pr22115-1c"
474 run_dump_test "pr22115-1d"
475 run_dump_test "pr22135"
476 run_dump_test "pr22782"
477 run_dump_test "pr22929"
478 run_dump_test "pr23189"
479 run_dump_test "pr23194"
480 run_dump_test "pr23372a"
481 run_dump_test "pr23372b"
482 run_dump_test "pr23372c"
483 run_dump_test "pr23372d"
484 run_dump_test "pr23486a"
485 run_dump_test "pr23486b"
486 run_dump_test "pr23486c"
487 run_dump_test "pr23486d"
488 run_dump_test "pr23854"
489 run_dump_test "pr23930"
490 run_dump_test "pr24322a"
491 run_dump_test "pr24322b"
492 run_dump_test "align-branch-1"
493 run_dump_test "pr26018"
494 run_dump_test "pr26263"
495 run_dump_test "pr26711-1"
496 run_dump_test "pr26711-2"
497 run_dump_test "pr26711-3"
498 run_dump_test "property-x86-isa1"
499 run_dump_test "property-x86-isa2"
500 run_dump_test "property-x86-isa3"
501 run_dump_test "property-x86-isa4"
502 run_dump_test "pr26869"
503 run_dump_test "code16"
504 run_dump_test "pr27491-1a"
505 run_dump_test "pr27491-1b"
506 run_dump_test "pr27491-1c"
507 run_dump_test "pr27491-2"
508 run_dump_test "pr27491-3"
509 run_dump_test "pr27491-4"
510 run_dump_test "dt-relr-1a"
511 run_dump_test "dt-relr-1b"
512 run_dump_test "pr28870"
513 run_dump_test "pr28894"
514 run_dump_test "pr30787"
515 run_dump_test "pr31047"
517 if { !([istarget "i?86-*-linux*"]
518 || [istarget "i?86-*-gnu*"]
519 || [istarget "x86_64-*-linux*"]) } {
520 set ASFLAGS "$saved_ASFLAGS"
524 run_dump_test "compressed1"
525 run_dump_test "pr12627"
526 run_dump_test "pr13302"
527 run_dump_test "pr14215"
528 run_dump_test "pr17057"
529 run_dump_test "pr17935-1"
530 run_dump_test "pr17935-2"
531 run_dump_test "pr18801a"
532 run_dump_test "pr18801b"
533 run_dump_test "ifunc-textrel-1a"
534 run_dump_test "ifunc-textrel-1b"
535 run_dump_test "ifunc-textrel-2a"
536 run_dump_test "ifunc-textrel-2b"
537 run_dump_test "pr18815"
538 run_dump_test "pr19939a"
539 run_dump_test "pr19939b"
540 run_dump_test "tlsdesc2"
541 run_dump_test "report-reloc-1"
542 run_dump_test "pr27998a"
543 run_dump_test "pr27998b"
544 run_dump_test "pr31868a"
545 run_dump_test "pr31868b"
546 run_dump_test "pr31868c"
547 run_dump_test "tlsgdesc1"
548 run_dump_test "tlsgdesc2"
550 proc undefined_weak {cflags ldflags} {
551 set testname "Undefined weak symbol"
552 if { ![ string match "" $cflags$ldflags] } {
553 set testname "$testname ($cflags $ldflags)"
556 if { [string match "*-fPIE*" $cflags]
557 && ![string match "*-z nodynamic-undefined-weak*" $ldflags] } {
558 set weak_symbol "Weak defined\n"
560 set weak_symbol "Weak undefined\n"
563 run_cc_link_tests [list \
565 "Build libpr19704a.so" \
566 "-shared -Wl,-soname,libpr19704.so" \
567 "-Wa,-mrelax-relocations=yes" \
573 "Build libpr19704b.so" \
574 "-shared -Wl,-soname,libpr19704.so" \
575 "-fPIC -Wa,-mrelax-relocations=yes" \
582 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
584 run_ld_link_exec_tests [list \
587 "$ldflags -Wl,--no-as-needed tmpdir/libpr19704.so \
589 "-Wa,-mrelax-relocations=yes" \
597 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
599 set exec_output [run_host_cmd tmpdir/pr19704 ""]
600 if {![string match $weak_symbol $exec_output]} {
607 # Must be Linux native with the C compiler
609 && [istarget "i?86-*-linux*"]
610 && [check_compiler_available] } {
611 run_cc_link_tests [list \
615 "-fPIC -Wa,-mrelax-relocations=yes" \
621 "Build libplt-main1.a" \
623 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes" \
625 {{readelf {-Wr} plt-main1.rd}} \
629 "Build libplt-main2.a" \
631 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes" \
633 {{readelf {-Wr} plt-main2.rd}} \
637 "Build libplt-main3.a" \
639 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes $PLT_CFLAGS" \
641 {{readelf {-Wr} plt-main3.rd}} \
645 "Build libplt-main4.a" \
647 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes $PLT_CFLAGS" \
649 {{readelf {-Wr} plt-main4.rd}} \
654 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
655 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
656 "-Wa,-mrelax-relocations=yes" \
658 {{readelf {-Wr} plt-main.rd}} \
662 "Build plt-main with PIE" \
663 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
664 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
665 "-fPIC -Wa,-mrelax-relocations=yes" \
667 {{readelf {-Wr} plt-main.rd}} \
671 "Build copyreloc-lib.so" \
673 "-fPIC -Wa,-mrelax-relocations=yes" \
674 { copyreloc-lib.c } \
679 "Build libcopyreloc-main.a" \
681 "-Wa,-mrelax-relocations=yes" \
682 { copyreloc-main.S } \
684 "libcopyreloc-main.a" \
687 "Build copyreloc-main with PIE and GOTOFF (1)" \
688 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
689 "-Wa,-mrelax-relocations=yes" \
691 {{readelf {-Wr} copyreloc-main1.rd}} \
695 "Build copyreloc-main with PIE and GOTOFF (2)" \
696 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
697 "-Wa,-mrelax-relocations=yes" \
699 {{readelf {-Wr} copyreloc-main2.rd}} \
705 "-fPIC -Wa,-mrelax-relocations=yes" \
711 "Build pr17689.so with -z now" \
712 "-shared -Wl,-z,now" \
713 "-fPIC -Wa,-mrelax-relocations=yes" \
715 {{readelf {-Wr} pr17689now.rd}} \
719 "Build pr17689ver.so" \
720 "-shared -Wl,--version-script,pr17689a.t" \
721 "-fPIC -Wa,-mrelax-relocations=yes" \
729 "-Wa,-mrelax-relocations=yes" \
735 "Build pr17689 with PIE and GOTOFF" \
736 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
737 "-Wa,-mrelax-relocations=yes" \
739 {{readelf {-Wr} pr17689.rd}} \
743 "Build pr17689 with PIE, -z now and GOTOFF" \
744 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
745 "-Wa,-mrelax-relocations=yes" \
747 {{readelf {-Wr} pr17689now.rd}} \
751 "Build pr17689ver with PIE and GOTOFF" \
752 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
753 "-Wa,-mrelax-relocations=yes" \
755 {{readelf {-Wr} pr17689ver.rd}} \
759 "Build pr17827 with PIE and GOTOFF" \
760 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
761 "-Wa,-mrelax-relocations=yes" \
763 {{readelf {-Wr} pr17827.rd}} \
769 "-fPIC -Wa,-mrelax-relocations=yes" \
777 "-Wa,-mrelax-relocations=yes" \
778 { pr18900b.c pr18900c.c } \
784 "tmpdir/pr18900.o tmpdir/pr18900.so" \
785 "-Wa,-mrelax-relocations=yes" \
787 {{readelf {-Wrd} pr18900a.rd}} \
792 "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
793 "-Wa,-mrelax-relocations=yes" \
795 {{readelf {-Wrd} pr18900b.rd}} \
801 "-fPIC -Wa,-mrelax-relocations=yes" \
809 "-Wa,-mrelax-relocations=yes" \
817 "-Wa,-mrelax-relocations=yes" \
818 { got1a.S got1b.c got1c.c } \
824 "$NOPIE_LDFLAGS -Wl,--as-needed,-z,noexecstack \
825 tmpdir/gotpc1.o tmpdir/got1d.so" \
826 "-Wa,-mx86-used-note=no" \
828 {{objdump {-dw} got1.dd}} \
834 "-Wa,-mx86-used-note=no" \
841 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
842 "-Wa,-mrelax-relocations=yes" \
844 {{objdump {-dw} pr19319.dd}} \
849 "-shared -nostdlib -nostartfiles \
850 -Ltmpdir $srcdir/$subdir/pr24276.dso" \
851 "-Wa,-mx86-used-note=yes" \
853 {{warning_output pr24276.warn}} \
859 "-Wa,-mx86-used-note=no" \
860 {pass.c property-no-copy.S} \
861 {{readelf {-n} property-1.r}} \
865 "Build property 1 (.o)" \
867 "-Wa,-mx86-used-note=yes" \
868 {pass.c property-no-copy.S} \
869 {{readelf {-n} property-1a.r}} \
873 "Build property 1 (.so)" \
875 "-fPIC -Wa,-mx86-used-note=no" \
876 {pass.c property-no-copy.S} \
877 {{readelf {-n} property-1.r}} \
883 "-Wa,-mx86-used-note=no" \
884 {pass.c property-stack.S} \
885 {{readelf {-n} property-2.r}} \
889 "Build property 2 (.o)" \
891 "-Wa,-mx86-used-note=yes" \
892 {pass.c property-stack.S} \
893 {{readelf {-n} property-2a.r}} \
897 "Build property 2 (.so)" \
899 "-fPIC -Wa,-mx86-used-note=no" \
900 {pass.c property-stack.S} \
901 {{readelf {-n} property-2.r}} \
907 "-Wa,-mx86-used-note=no" \
908 {pass.c property-stack.S property-x86-1.S} \
909 {{readelf {-n} property-3.r}} \
913 "Build property 3 (.o)" \
915 "-Wa,-mx86-used-note=yes" \
916 {pass.c property-x86-1.S property-stack.S} \
917 {{readelf {-n} property-3a.r}} \
921 "Build property 3 (.so)" \
923 "-fPIC -Wa,-mx86-used-note=no" \
924 {property-x86-1.S pass.c property-stack.S} \
925 {{readelf {-n} property-3.r}} \
931 "-Wa,-mx86-used-note=no" \
932 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
933 {{readelf {-n} property-4.r}} \
937 "Build property 4 (.o)" \
939 "-Wa,-mx86-used-note=yes" \
940 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
941 {{readelf {-n} property-4a.r}} \
945 "Build property 4 (.so)" \
947 "-fPIC -Wa,-mx86-used-note=no" \
948 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
949 {{readelf {-n} property-4.r}} \
953 "Build property 4 (-Wl,-z,stack-size=0)" \
954 "-Wl,-z,stack-size=0" \
955 "-Wa,-mx86-used-note=no" \
956 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
957 {{readelf {-n} property-4.r}} \
962 "-Wl,-z,stack-size=0x900000" \
963 "-Wa,-mx86-used-note=no" \
964 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
965 {{readelf {-n} property-5.r}} \
969 "Build property 5 (.o)" \
970 "-r -nostdlib -Wl,-z,stack-size=0x900000" \
971 "-Wa,-mx86-used-note=yes" \
972 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
973 {{readelf {-n} property-5a.r}} \
977 "Build property 5 (.so)" \
978 "-shared -Wl,-z,stack-size=0x900000" \
979 "-fPIC -Wa,-mx86-used-note=no" \
980 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
981 {{readelf {-n} property-5.r}} \
985 "Build property-6.so" \
987 "-fPIC -Wa,-mx86-used-note=no" \
988 {property-6a.c property-6c.S} \
989 {{readelf {-n} property-6.r}} \
993 "Build property-6.o" \
995 "-Wa,-mx86-used-note=yes" \
996 {property-6b.c property-stack.S} \
997 {{readelf {-n} property-2a.r}} \
1001 "Build property-6" \
1002 "-Wl,--as-needed,-z,noexecstack \
1003 tmpdir/property-6.o tmpdir/property-6.so" \
1004 "-Wa,-mx86-used-note=no" \
1006 {{readelf {-n} property-2.r}} \
1010 "Build property 7a (.o)" \
1012 "-Wa,-mx86-used-note=yes" \
1013 {property-unsorted-1.S} \
1014 {{readelf {-n} property-7a.r}} \
1018 "Build property 7b (.o)" \
1020 "-Wa,-mx86-used-note=yes" \
1021 {property-unsorted-2.S} \
1022 {{readelf {-n} property-7a.r}} \
1027 run_ld_link_exec_tests [list \
1030 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1031 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
1032 "-Wa,-mx86-used-note=yes" \
1038 "Run plt-main with PIE" \
1039 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
1040 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
1041 "-Wa,-mx86-used-note=yes" \
1048 "Run copyreloc-main with PIE and GOTOFF" \
1049 "-Wl,--as-needed tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
1050 "-Wa,-mx86-used-note=yes" \
1053 "copyreloc-main.out" \
1056 "Run pr17689 with PIE and GOTOFF" \
1057 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
1058 "-Wa,-mx86-used-note=yes" \
1064 "Run pr17689 with PIE, -z now and GOTOFF" \
1065 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
1066 "-Wa,-mx86-used-note=yes" \
1072 "Run pr17689ver with PIE and GOTOFF" \
1073 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
1074 "-Wa,-mx86-used-note=yes" \
1081 "tmpdir/pr18900.o tmpdir/pr18900.so" \
1082 "-Wa,-mx86-used-note=yes" \
1089 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr19031.so" \
1090 "-Wa,-mx86-used-note=yes" \
1091 { pr19031b.S pr19031c.c } \
1098 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/got1d.so" \
1099 "-Wa,-mx86-used-note=yes" \
1100 { got1a.S got1b.c got1c.c } \
1107 "-Wa,-mx86-used-note=yes" \
1108 {pass.c property-no-copy.S} \
1109 "property-1" "pass.out" \
1112 "Run property 1 (PIE)" \
1114 "-Wa,-mx86-used-note=yes" \
1115 {pass.c property-no-copy.S} \
1116 "property-1-pie" "pass.out" "-fPIE" \
1119 "Run property 1 (static)" \
1121 "-Wa,-mx86-used-note=yes" \
1122 {pass.c property-no-copy.S} \
1123 "property-1-static" "pass.out" \
1128 "-Wa,-mx86-used-note=yes" \
1129 {pass.c property-stack.S} \
1130 "property-2" "pass.out" \
1133 "Run property 2 (PIE)" \
1135 "-Wa,-mx86-used-note=yes" \
1136 {pass.c property-stack.S} \
1137 "property-2-pie" "pass.out" "-fPIE" \
1140 "Run property 2 (static)" \
1142 "-Wa,-mx86-used-note=yes" \
1143 {pass.c property-stack.S} \
1144 "property-3-static" "pass.out" \
1148 undefined_weak "$NOPIE_CFLAGS" "$NOPIE_LDFLAGS"
1149 undefined_weak "-fPIE" "$NOPIE_LDFLAGS"
1150 undefined_weak "-fPIE" "-pie"
1151 undefined_weak "-fPIE" "-z nodynamic-undefined-weak $NOPIE_LDFLAGS"
1152 undefined_weak "-fPIE" "-pie -z nodynamic-undefined-weak"
1155 # Must be native with the C compiler and working IFUNC support,
1157 && [check_ifunc_available]
1158 && [istarget "i?86-*-*"]
1159 && [check_compiler_available] } {
1160 run_cc_link_tests [list \
1162 "Build ifunc-1a.o ifunc-1b.o ifunc-1c.o ifunc-1d.o" \
1164 "-fPIC -O2 -g -Wa,-mx86-used-note=yes" \
1165 { ifunc-1a.c ifunc-1b.S ifunc-1c.S ifunc-1d.S } \
1168 "Build pr21168a.o" \
1170 "-Wa,-mx86-used-note=yes" \
1174 "Build pr21168.so" \
1176 "-Wa,-mx86-used-note=yes" \
1183 run_ld_link_exec_tests [list \
1186 "tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1187 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1188 "-Wa,-mx86-used-note=yes" \
1195 "--static tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1196 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1197 "-Wa,-mx86-used-note=yes" \
1204 "tmpdir/pr21168a.o tmpdir/pr21168.so" \
1205 "-Wa,-mx86-used-note=yes" \
1212 if { [istarget "i?86-*-linux*"] } {
1213 run_cc_link_tests [list \
1215 "Build pr21168.so with -z ibtplt" \
1216 "-shared -Wl,-z,ibtplt" \
1217 "-Wa,-mx86-used-note=yes" \
1223 "Build ifunc-1a with -z ibtplt" \
1224 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1225 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1226 "-Wa,-mx86-used-note=yes" \
1228 {{objdump {-dw} plt-main-ibt.dd}} \
1232 "Build ifunc-1a with PIE -z ibtplt" \
1233 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1234 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1235 "-Wa,-mx86-used-note=yes" \
1237 {{objdump {-dw} plt-pie-ibt.dd}} \
1238 "ifunc-1a-pie-ibt" \
1242 run_ld_link_exec_tests [list \
1244 "Run ifunc-1a with -z ibtplt" \
1245 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1246 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1247 "-Wa,-mx86-used-note=yes" \
1253 "Run ifunc-1a with PIE -z ibtplt" \
1254 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1255 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1256 "-Wa,-mx86-used-note=yes" \
1258 "ifunc-1a-pie-ibt" \
1262 "Run pr21168 with -z ibtplt" \
1263 "tmpdir/pr21168a.o tmpdir/pr21168-ibt.so" \
1264 "-Wa,-mx86-used-note=yes" \
1273 # Must be native with the C compiler.
1275 && [istarget "i?86-*-*"]
1276 && [check_compiler_available] } {
1277 run_cc_link_tests [list \
1279 "Build pr22001-1.so" \
1280 "-shared -Wl,-z,notext" \
1281 "-Wa,-mx86-used-note=yes" \
1287 "Build pr21997-1.so" \
1289 "-Wa,-mx86-used-note=yes" \
1290 { property-stack.S property-no-copy.S pr21997-1a.S } \
1295 "Build pr22842.so" \
1297 "-fPIC -Wa,-mx86-used-note=yes" \
1303 "Build pr28875.so" \
1304 "-shared -Wl,-z,indirect-extern-access" \
1312 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr28875.so" \
1315 {{error_output "pr28875.err"}} \
1320 "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
1321 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
1323 {{error_output "pr21997-1.err"}} \
1328 "-Wl,--oformat,binary -nostdlib -nostartfiles" \
1330 { start.s ../ld-x86-64/pr32067.s } \
1336 # The musl C library does not support TEXTRELs.
1337 if { ![istarget i?86-*-musl] } {
1338 run_ld_link_exec_tests [list \
1341 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed,-z,notext tmpdir/pr22001-1.so" \
1342 "-Wa,-mx86-used-note=yes" \
1351 run_ld_link_exec_tests [list \
1353 "Run weakundef1 without PIE" \
1355 "-Wa,-mx86-used-note=yes" \
1362 "Run pr22001-1 (PIE 1)" \
1363 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1364 "-Wa,-mx86-used-note=yes" \
1370 "Run pr22001-1 (PIE 2)" \
1371 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1372 "-Wa,-mx86-used-note=yes" \
1378 "Run pr22001-1 (PIC 1)" \
1379 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1380 "-Wa,-mx86-used-note=yes" \
1387 "Run pr22001-1 (PIC 2)" \
1388 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1389 "-Wa,-mx86-used-note=yes" \
1396 "Run pr21997-1 (PIC 1)" \
1397 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1398 "-Wa,-mx86-used-note=yes" \
1405 "Run pr21997-1 (PIC 2)" \
1406 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1407 "-Wa,-mx86-used-note=yes" \
1414 "Run pr21997-1 (PIE 1)" \
1415 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1416 "-Wa,-mx86-used-note=yes" \
1422 "Run pr21997-1 (PIE 2)" \
1423 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1424 "-Wa,-mx86-used-note=yes" \
1431 "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \
1432 "-Wa,-mx86-used-note=yes" \
1441 { ../ld-x86-64/pr23997a.s ../ld-x86-64/pr23997b.c \
1442 ../ld-x86-64/pr23997c.c } \
1448 if { [at_least_gcc_version 5 0] } {
1449 run_ld_link_exec_tests [list \
1451 "Run weakundef1 with PIE" \
1453 "-Wa,-mx86-used-note=yes" \
1463 if { !([istarget "i?86-*-linux*"]
1464 || [istarget "x86_64-*-linux*"]) } {
1465 set ASFLAGS "$saved_ASFLAGS"
1469 run_ld_link_tests [list \
1471 "basic PLT generation (non-PIC, -z now)" \
1472 "-z now -melf_i386 --hash-style=sysv \
1473 -z noseparate-code tmpdir/libpltlib.so" \
1477 {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1481 "basic PLT generation (PIC, -z now)" \
1482 "-z now -shared -melf_i386 tmpdir/libpltlib.so" \
1484 "--32 -mx86-used-note=yes" \
1486 {{objdump -dwr plt-pic2.dd}} \
1490 "Build pr21626.so" \
1491 "-shared -melf_i386" \
1493 "--32 -mx86-used-note=yes" \
1494 {property-x86-3.s} \
1500 "-melf_i386 tmpdir/pr21626.so" \
1502 "--32 -mx86-used-note=yes" \
1510 run_dump_test "pltgot-1"
1511 run_dump_test "pltgot-2"
1512 run_dump_test "pr20830"
1513 run_dump_test "ibt-plt-1"
1514 run_dump_test "ibt-plt-2a"
1515 run_dump_test "ibt-plt-2b"
1516 run_dump_test "ibt-plt-2c"
1517 run_dump_test "ibt-plt-2d"
1518 run_dump_test "ibt-plt-3a"
1519 run_dump_test "ibt-plt-3b"
1520 run_dump_test "ibt-plt-3c"
1521 run_dump_test "ibt-plt-3d"
1523 set ASFLAGS "$saved_ASFLAGS"