x86: Change PLT32 reloc against section to PC32
[deliverable/binutils-gdb.git] / ld / testsuite / ld-i386 / i386.exp
1 # Expect script for ld-i386 tests
2 # Copyright (C) 2002-2020 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 set saved_ASFLAGS "$ASFLAGS"
23 if { [is_elf_format] \
24 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
25 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
26 }
27
28 # Test i386 linking; all types of relocs. This tests the assembler and
29 # tools like objdump as well as the linker.
30
31 if {[istarget "i?86-*-vxworks"]} {
32 set i386tests {
33 {"VxWorks shared library test 1"
34 "-shared -Tvxworks1.ld --hash-style=sysv" ""
35 "" {vxworks1-lib.s}
36 {{readelf --relocs vxworks1-lib.rd} {objdump -dr vxworks1-lib.dd}
37 {readelf --symbols vxworks1-lib.nd} {readelf -d vxworks1-lib.td}}
38 "libvxworks1.so"}
39 {"VxWorks executable test 1 (dynamic)" \
40 "tmpdir/libvxworks1.so -Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
41 "" {vxworks1.s}
42 {{readelf {--relocs --wide} vxworks1.rd} {objdump -dr vxworks1.dd}}
43 "vxworks1"}
44 {"VxWorks executable test 2 (dynamic)" \
45 "-Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
46 "" {vxworks2.s}
47 {{readelf --segments vxworks2.sd}}
48 "vxworks2"}
49 {"VxWorks executable test 2 (static)"
50 "-Tvxworks1.ld --hash-style=sysv" ""
51 "" {vxworks2.s}
52 {{readelf --segments vxworks2-static.sd}}
53 "vxworks2"}
54 }
55 run_ld_link_tests $i386tests
56 run_dump_test "vxworks1-static"
57 }
58
59 if [istarget "*-*-go32*"] {
60 run_ld_link_tests {{"go32 stub" "" "" "" {zero.s} {} "go32stub"}}
61
62 set src "tmpdir/go32stub"
63 set dest "tmpdir/go32stub-copy"
64
65 set test "go32 stub patch the source"
66 set fi [open $src r+]
67 fconfigure $fi -translation binary
68 if {[read $fi 2] != "MZ"} {
69 fail $test
70 } else {
71 pass $test
72 seek $fi 0x40
73 puts -nonewline $fi "objcopy-test-go32stub"
74 }
75 close $fi
76
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 {
82 pass $test
83 } else {
84 send_log "$exec_output\n"
85 verbose "$exec_output" 1
86 fail $test
87 }
88
89 # cmp would compare the whole files and some data after the initial exe
90 # stub could differ.
91 set test "go32 stub comparison after objcopy"
92 set fi [open $src]
93 fconfigure $fi -translation binary
94 set src_stub [read $fi 2048]
95 close $fi
96 set fi [open $dest]
97 fconfigure $fi -translation binary
98 set dest_stub [read $fi 2048]
99 close $fi
100 if {$src_stub == $dest_stub} {
101 pass $test
102 } else {
103 fail $test
104 }
105 }
106
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*"]) } {
113 return
114 }
115
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
119
120 # Actions:
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).
124
125 set i386tests {
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}}
140 "libtlspic.so"}
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}}
148 "libtlspic2.so"}
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}}
155 "libtlsdesc.so"}
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}}
164 "tlsbin"}
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}}
172 "tlsbin2"}
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}}
179 "tlsbindesc"}
180 {"TLS -fno-pic -shared"
181 "-shared -melf_i386 --no-ld-generated-unwind-info -z notext \
182 -z noseparate-code --hash-style=sysv" ""
183 "--32" {tlsnopic1.s tlsnopic2.s}
184 {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
185 {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
186 {"TLS with global dynamic and descriptors"
187 "-shared -melf_i386 --no-ld-generated-unwind-info \
188 -z noseparate-code --hash-style=sysv" ""
189 "--32" {tlsgdesc.s}
190 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
191 "libtlsgdesc.so"}
192 {"TLS in debug sections" "-melf_i386" ""
193 "--32" {tlsg.s}
194 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
195 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
196 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
197 {"Reloc section order"
198 "-shared -melf_i386 -z nocombreloc -z notext" "" "--32"
199 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
200 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
201 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
202 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
203 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
204 {"TLS GD->LE transition" "-melf_i386" ""
205 "--32" {tlsgd1.s}
206 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
207 {"TLS GD->LE transition without PLT" "-melf_i386" ""
208 "-mrelax-relocations=yes --32"
209 {tlsgd3.s}
210 {{objdump -dwr tlsgd3.dd}} "tlsgd3"}
211 {"TLS LD->LE transition" "-melf_i386" ""
212 "--32" {tlsld1.s}
213 {{objdump -dwr tlsld1.dd}} "tlsld1"}
214 {"TLS LD->LE transition without PLT" "-melf_i386" ""
215 "-mrelax-relocations=yes --32"
216 {tlsld2.s}
217 {{objdump -dwr tlsld2.dd}} "tlsld2"}
218 {"TLS IE->LE transition" "-melf_i386" ""
219 "--32" {tlsie1.s}
220 {{objdump -dwr tlsie1.dd}} "tlsie1"}
221 {"PR ld/17313 (1)" "-melf_i386" ""
222 "--32 -mx86-used-note=yes" {zero.s} {} ""}
223 {"PR ld/17313 (2)" "-melf_i386 -shared --just-symbols=tmpdir/zero.o" ""
224 "--32 -mx86-used-note=yes" {lea1.s} {} "libpr17313.so"}
225 {"PR ld/17306 (1)" "-melf_i386" ""
226 "--32 -mx86-used-note=yes" {pr17306b.s} {} ""}
227 {"PR ld/17306 (2)" "-melf_i386 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
228 "--32 -mx86-used-note=yes" {pr17306a.s} {} "libpr17306.so"}
229 {"PR ld/17709 (1)" "-melf_i386 -shared" ""
230 "--32 -mx86-used-note=yes" {pr17709a.s} {} "libpr17709.so"}
231 {"PR ld/17709 (2)" "-melf_i386 tmpdir/libpr17709.so" ""
232 "--32 -mx86-used-note=yes"
233 {pr17709b.s} {{readelf -r pr17709.rd}} "pr17709"}
234 {"Build pr19827a.o" "" ""
235 "--32 -mx86-used-note=yes" { pr19827a.S }}
236 {"Build pr19827b.so" "-melf_i386 -shared" ""
237 "--32 -mx86-used-note=yes"
238 { pr19827b.S } {} "pr19827b.so"}
239 {"Build pr19827"
240 "-melf_i386 -pie -z notext tmpdir/pr19827a.o tmpdir/pr19827b.so"
241 ""
242 "--32 -mx86-used-note=yes"
243 { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
244 {"Build pr19827.so"
245 "-melf_i386 -shared -Bsymbolic -z notext" ""
246 "--32 -mx86-used-note=yes"
247 { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
248 }
249
250 proc iamcu_tests {} {
251 global as
252 global srcdir
253 global subdir
254
255 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
256 fail "Build Intel MCU start.o"
257 return
258 }
259
260 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
261 fail "Build ia32 start.o"
262 return
263 }
264
265 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
266 fail "Build Intel MCU foo.o"
267 return
268 }
269
270 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
271 fail "Build ia32 foo.o"
272 return
273 }
274
275 run_dump_test "abs-iamcu"
276 run_dump_test "iamcu-1"
277 run_dump_test "iamcu-2"
278 run_dump_test "iamcu-3"
279 run_dump_test "iamcu-4"
280 }
281
282 iamcu_tests
283
284 run_ld_link_tests $i386tests
285
286 run_dump_test "abs"
287 run_dump_test "pcrel8"
288 run_dump_test "pcrel16"
289 run_dump_test "pcrel16abs"
290 run_dump_test "alloc"
291 run_dump_test "warn1"
292 run_dump_test "tlsgd2"
293 run_dump_test "tlsgd4"
294 run_dump_test "tlsie2"
295 run_dump_test "tlsie3"
296 run_dump_test "tlsie4"
297 run_dump_test "tlsie5"
298 run_dump_test "hidden1"
299 run_dump_test "hidden2"
300 run_dump_test "hidden3"
301 run_dump_test "protected1"
302 run_dump_test "protected2"
303 run_dump_test "protected3"
304 run_dump_test "protected4"
305 run_dump_test "protected5"
306 run_dump_test "protected6a"
307 run_dump_test "protected6b"
308 run_dump_test "protected7"
309 run_dump_test "tlspie1"
310 run_dump_test "tlspie2"
311 run_dump_test "tlspie3a"
312 run_dump_test "tlspie3b"
313 run_dump_test "tlspie3c"
314 run_dump_test "nogot1"
315 run_dump_test "nogot2"
316 run_dump_test "discarded1"
317 run_dump_test "pr12718"
318 run_dump_test "pr12921"
319 run_dump_test "pr12570a"
320 run_dump_test "pr12570b"
321 run_dump_test "lea1a"
322 run_dump_test "lea1b"
323 run_dump_test "lea1c"
324 run_dump_test "lea1d"
325 run_dump_test "lea1e"
326 run_dump_test "lea1f"
327 run_dump_test "mov1a"
328 run_dump_test "mov1b"
329 run_dump_test "mov2a"
330 run_dump_test "mov2b"
331 run_dump_test "mov3"
332 run_dump_test "branch1"
333 run_dump_test "call1"
334 run_dump_test "call2"
335 run_dump_test "call3a"
336 run_dump_test "call3b"
337 run_dump_test "call3c"
338 run_dump_test "call3d"
339 run_dump_test "call3e"
340 run_dump_test "call3f"
341 run_dump_test "call3g"
342 run_dump_test "call3h"
343 run_dump_test "jmp1"
344 run_dump_test "jmp2"
345 run_dump_test "load1"
346 run_dump_test "load2"
347 run_dump_test "load3"
348 run_dump_test "load4a"
349 run_dump_test "load4b"
350 run_dump_test "load5a"
351 run_dump_test "load5b"
352 run_dump_test "load6"
353 run_dump_test "load7"
354 run_dump_test "pr19175"
355 run_dump_test "pr19615"
356 run_dump_test "pr19636-1a"
357 run_dump_test "pr19636-1b"
358 run_dump_test "pr19636-1c"
359 run_dump_test "pr19636-1d"
360 run_dump_test "pr19636-1e"
361 run_dump_test "pr19636-1f"
362 run_dump_test "pr19636-1g"
363 run_dump_test "pr19636-1h"
364 run_dump_test "pr19636-1i"
365 run_dump_test "pr19636-1j"
366 run_dump_test "pr19636-1k"
367 run_dump_test "pr19636-1l"
368 run_dump_test "pr19636-2a"
369 run_dump_test "pr19636-2b"
370 run_dump_test "pr19636-2c"
371 run_dump_test "pr19636-2d"
372 run_dump_test "pr19636-2e"
373 run_dump_test "pr19636-3a"
374 run_dump_test "pr19636-3b"
375 run_dump_test "pr19636-3c"
376 run_dump_test "pr19636-3d"
377 run_dump_test "pr19636-3e"
378 run_dump_test "pr19636-3f"
379 run_dump_test "pr19636-3g"
380 run_dump_test "pr19636-3h"
381 run_dump_test "pr19636-3i"
382 run_dump_test "pr19636-4a"
383 run_dump_test "pr19636-4b"
384 run_dump_test "pr19636-4c"
385 run_dump_test "pr19636-4d"
386 run_dump_test "pr19645"
387 run_dump_test "pr19609-1a"
388 run_dump_test "pr19609-1b"
389 run_dump_test "pr19609-1c"
390 run_dump_test "pr19609-1d"
391 run_dump_test "pr19609-1e"
392 run_dump_test "pr19609-1f"
393 run_dump_test "pr19609-1g"
394 run_dump_test "pr19609-1h"
395 run_dump_test "pr19609-1i"
396 run_dump_test "pr19609-2a"
397 run_dump_test "pr19609-2b"
398 run_dump_test "pr19609-2c"
399 run_dump_test "undefweaka"
400 run_dump_test "undefweakb"
401 run_dump_test "pr19539"
402 run_dump_test "pr20117"
403 run_dump_test "pr20244-1a"
404 run_dump_test "pr20244-1b"
405 run_dump_test "pr20244-1c"
406 run_dump_test "pr20244-2a"
407 run_dump_test "pr20244-2b"
408 run_dump_test "pr20244-2c"
409 run_dump_test "pr20244-2d"
410 run_dump_test "pr20244-4a"
411 run_dump_test "pr20244-4b"
412 run_dump_test "pr20244-4c"
413 run_dump_test "pr20253-3"
414 run_dump_test "pr20253-4a"
415 run_dump_test "pr20253-4b"
416 run_dump_test "pr20253-4c"
417 run_dump_test "pr20253-5"
418 run_dump_test "pr20515"
419 run_dump_test "property-x86-3"
420 run_dump_test "property-x86-4a"
421 run_dump_test "property-x86-4b"
422 run_dump_test "property-x86-5"
423 run_dump_test "property-x86-ibt1a"
424 run_dump_test "property-x86-ibt1b"
425 run_dump_test "property-x86-ibt2"
426 run_dump_test "property-x86-ibt3a"
427 run_dump_test "property-x86-ibt3b"
428 run_dump_test "property-x86-ibt4"
429 run_dump_test "property-x86-ibt5"
430 run_dump_test "property-x86-shstk1a"
431 run_dump_test "property-x86-shstk1b"
432 run_dump_test "property-x86-shstk2"
433 run_dump_test "property-x86-shstk3a"
434 run_dump_test "property-x86-shstk3b"
435 run_dump_test "property-x86-shstk4"
436 run_dump_test "property-x86-shstk5"
437 run_dump_test "property-x86-cet1"
438 run_dump_test "property-x86-cet2a"
439 run_dump_test "property-x86-cet2b"
440 run_dump_test "property-x86-cet3a"
441 run_dump_test "property-x86-cet3b"
442 run_dump_test "property-x86-cet4a"
443 run_dump_test "property-x86-cet4b"
444 run_dump_test "property-x86-cet5a"
445 run_dump_test "property-x86-cet5b"
446 run_dump_test "property-x86-cet6"
447 run_dump_test "pie1"
448 run_dump_test "pr21884"
449 run_dump_test "pr22115-1a"
450 run_dump_test "pr22115-1b"
451 run_dump_test "pr22115-1c"
452 run_dump_test "pr22115-1d"
453 run_dump_test "pr22135"
454 run_dump_test "pr22782"
455 run_dump_test "pr22929"
456 run_dump_test "pr23189"
457 run_dump_test "pr23194"
458 run_dump_test "pr23372a"
459 run_dump_test "pr23372b"
460 run_dump_test "pr23372c"
461 run_dump_test "pr23372d"
462 run_dump_test "pr23486a"
463 run_dump_test "pr23486b"
464 run_dump_test "pr23486c"
465 run_dump_test "pr23486d"
466 run_dump_test "pr23854"
467 run_dump_test "pr23930"
468 run_dump_test "pr24322a"
469 run_dump_test "pr24322b"
470 run_dump_test "align-branch-1"
471 run_dump_test "pr26018"
472 run_dump_test "pr26263"
473
474 if { !([istarget "i?86-*-linux*"]
475 || [istarget "i?86-*-gnu*"]
476 || [istarget "x86_64-*-linux*"]) } {
477 set ASFLAGS "$saved_ASFLAGS"
478 return
479 }
480
481 run_dump_test "compressed1"
482 run_dump_test "pr12627"
483 run_dump_test "pr13302"
484 run_dump_test "pr14215"
485 run_dump_test "pr17057"
486 run_dump_test "pr17935-1"
487 run_dump_test "pr17935-2"
488 run_dump_test "pr18801a"
489 run_dump_test "pr18801b"
490 run_dump_test "ifunc-textrel-1a"
491 run_dump_test "ifunc-textrel-1b"
492 run_dump_test "ifunc-textrel-2a"
493 run_dump_test "ifunc-textrel-2b"
494 run_dump_test "pr18815"
495 run_dump_test "pr19939a"
496 run_dump_test "pr19939b"
497 run_dump_test "tlsdesc2"
498
499 proc undefined_weak {cflags ldflags} {
500 set testname "Undefined weak symbol"
501 if { ![ string match "" $cflags$ldflags] } {
502 set testname "$testname ($cflags $ldflags)"
503 }
504
505 if { [string match "*-fPIE*" $cflags]
506 && ![string match "*-z nodynamic-undefined-weak*" $ldflags] } {
507 set weak_symbol "Weak defined"
508 } else {
509 set weak_symbol "Weak undefined"
510 }
511
512 run_cc_link_tests [list \
513 [list \
514 "Build libpr19704a.so" \
515 "-shared -Wl,-soname,libpr19704.so" \
516 "-Wa,-mrelax-relocations=yes" \
517 { dummy.s } \
518 {} \
519 "libpr19704a.so" \
520 ] \
521 [list \
522 "Build libpr19704b.so" \
523 "-shared -Wl,-soname,libpr19704.so" \
524 "-fPIC -Wa,-mrelax-relocations=yes" \
525 { pr19704b.c } \
526 {} \
527 "libpr19704b.so" \
528 ] \
529 ]
530
531 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
532
533 run_ld_link_exec_tests [list \
534 [list \
535 "Run pr19704" \
536 "$ldflags tmpdir/libpr19704.so -Wl,-R,tmpdir" \
537 "-Wa,-mrelax-relocations=yes" \
538 { pr19704a.c } \
539 "pr19704" \
540 "pr19704.out" \
541 "$cflags" \
542 ] \
543 ]
544
545 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
546
547 set exec_output [run_host_cmd tmpdir/pr19704 ""]
548 if {![string match $weak_symbol $exec_output]} {
549 fail $testname
550 } else {
551 pass $testname
552 }
553 }
554
555 # Must be Linux native with the C compiler
556 if { [isnative]
557 && [istarget "i?86-*-linux*"]
558 && [check_compiler_available] } {
559 run_cc_link_tests [list \
560 [list \
561 "Build plt-lib.so" \
562 "-shared" \
563 "-fPIC -Wa,-mrelax-relocations=yes" \
564 { plt-lib.c } \
565 {} \
566 "libplt-lib.so" \
567 ] \
568 [list \
569 "Build libplt-main1.a" \
570 "" \
571 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes" \
572 { plt-main1.c } \
573 {{readelf {-Wr} plt-main1.rd}} \
574 "libplt-main1.a" \
575 ] \
576 [list \
577 "Build libplt-main2.a" \
578 "" \
579 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes" \
580 { plt-main2.c } \
581 {{readelf {-Wr} plt-main2.rd}} \
582 "libplt-main2.a" \
583 ] \
584 [list \
585 "Build libplt-main3.a" \
586 "" \
587 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes $PLT_CFLAGS" \
588 { plt-main3.c } \
589 {{readelf {-Wr} plt-main3.rd}} \
590 "libplt-main3.a" \
591 ] \
592 [list \
593 "Build libplt-main4.a" \
594 "" \
595 "-fPIC -Wa,-mrelax-relocations=yes,-mrelax-relocations=yes $PLT_CFLAGS" \
596 { plt-main4.c } \
597 {{readelf {-Wr} plt-main4.rd}} \
598 "libplt-main4.a" \
599 ] \
600 [list \
601 "Build plt-main" \
602 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
603 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
604 "-Wa,-mrelax-relocations=yes" \
605 { plt-main5.c } \
606 {{readelf {-Wr} plt-main.rd}} \
607 "plt-main" \
608 ] \
609 [list \
610 "Build plt-main with PIE" \
611 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
612 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
613 "-fPIC -Wa,-mrelax-relocations=yes" \
614 { plt-main5.c } \
615 {{readelf {-Wr} plt-main.rd}} \
616 "plt-main" \
617 ] \
618 [list \
619 "Build copyreloc-lib.so" \
620 "-shared" \
621 "-fPIC -Wa,-mrelax-relocations=yes" \
622 { copyreloc-lib.c } \
623 {} \
624 "copyreloc-lib.so" \
625 ] \
626 [list \
627 "Build libcopyreloc-main.a" \
628 "" \
629 "-Wa,-mrelax-relocations=yes" \
630 { copyreloc-main.S } \
631 {} \
632 "libcopyreloc-main.a" \
633 ] \
634 [list \
635 "Build copyreloc-main with PIE and GOTOFF (1)" \
636 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
637 "-Wa,-mrelax-relocations=yes" \
638 { dummy.s } \
639 {{readelf {-Wr} copyreloc-main1.rd}} \
640 "copyreloc-main" \
641 ] \
642 [list \
643 "Build copyreloc-main with PIE and GOTOFF (2)" \
644 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
645 "-Wa,-mrelax-relocations=yes" \
646 { dummy.s } \
647 {{readelf {-Wr} copyreloc-main2.rd}} \
648 "copyreloc-main" \
649 ] \
650 [list \
651 "Build pr17689.so" \
652 "-shared" \
653 "-fPIC -Wa,-mrelax-relocations=yes" \
654 { pr17689a.c } \
655 {} \
656 "pr17689.so" \
657 ] \
658 [list \
659 "Build pr17689.so with -z now" \
660 "-shared -Wl,-z,now" \
661 "-fPIC -Wa,-mrelax-relocations=yes" \
662 { pr17689a.c } \
663 {{readelf {-Wr} pr17689now.rd}} \
664 "pr17689now.so" \
665 ] \
666 [list \
667 "Build pr17689ver.so" \
668 "-shared -Wl,--version-script,pr17689a.t" \
669 "-fPIC -Wa,-mrelax-relocations=yes" \
670 { pr17689a.c } \
671 {} \
672 "pr17689ver.so" \
673 ] \
674 [list \
675 "Build pr17689.a" \
676 "" \
677 "-Wa,-mrelax-relocations=yes" \
678 { pr17689b.S } \
679 {} \
680 "pr17689.a" \
681 ] \
682 [list \
683 "Build pr17689 with PIE and GOTOFF" \
684 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
685 "-Wa,-mrelax-relocations=yes" \
686 { dummy.c } \
687 {{readelf {-Wr} pr17689.rd}} \
688 "pr17689" \
689 ] \
690 [list \
691 "Build pr17689 with PIE, -z now and GOTOFF" \
692 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
693 "-Wa,-mrelax-relocations=yes" \
694 { dummy.c } \
695 {{readelf {-Wr} pr17689now.rd}} \
696 "pr17689now" \
697 ] \
698 [list \
699 "Build pr17689ver with PIE and GOTOFF" \
700 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
701 "-Wa,-mrelax-relocations=yes" \
702 { dummy.c } \
703 {{readelf {-Wr} pr17689ver.rd}} \
704 "pr17689ver" \
705 ] \
706 [list \
707 "Build pr17827 with PIE and GOTOFF" \
708 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
709 "-Wa,-mrelax-relocations=yes" \
710 { dummy.c } \
711 {{readelf {-Wr} pr17827.rd}} \
712 "pr17827" \
713 ] \
714 [list \
715 "Build pr18900.so" \
716 "-shared" \
717 "-fPIC -Wa,-mrelax-relocations=yes" \
718 { pr18900a.c } \
719 "" \
720 "pr18900.so" \
721 ] \
722 [list \
723 "Build pr18900.o" \
724 "-r -nostdlib" \
725 "-Wa,-mrelax-relocations=yes" \
726 { pr18900b.c pr18900c.c } \
727 "" \
728 "pr18900.o" \
729 ] \
730 [list \
731 "Build pr18900a" \
732 "tmpdir/pr18900.o tmpdir/pr18900.so" \
733 "-Wa,-mrelax-relocations=yes" \
734 { dummy.s } \
735 {{readelf {-Wrd} pr18900a.rd}} \
736 "pr18900a" \
737 ] \
738 [list \
739 "Build pr18900b" \
740 "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
741 "-Wa,-mrelax-relocations=yes" \
742 { dummy.s } \
743 {{readelf {-Wrd} pr18900b.rd}} \
744 "pr18900b" \
745 ] \
746 [list \
747 "Build pr19031.so" \
748 "-shared" \
749 "-fPIC -Wa,-mrelax-relocations=yes" \
750 { pr19031a.c } \
751 "" \
752 "pr19031.so" \
753 ] \
754 [list \
755 "Build got1d.so" \
756 "-shared" \
757 "-Wa,-mrelax-relocations=yes" \
758 { got1d.S } \
759 "" \
760 "got1d.so" \
761 ] \
762 [list \
763 "Build gotpc1.o" \
764 "-r -nostdlib" \
765 "-Wa,-mrelax-relocations=yes" \
766 { got1a.S got1b.c got1c.c } \
767 "" \
768 "gotpc1.o" \
769 ] \
770 [list \
771 "Build gotpc1" \
772 "$NOPIE_LDFLAGS -Wl,--as-needed tmpdir/gotpc1.o tmpdir/got1d.so" \
773 "-Wa,-mx86-used-note=no" \
774 { dummy.s } \
775 {{objdump {-dw} got1.dd}} \
776 "got1" \
777 ] \
778 [list \
779 "Build pr19319.so" \
780 "-shared" \
781 "-Wa,-mx86-used-note=no" \
782 { pr19319a.S } \
783 "" \
784 "pr19319.so" \
785 ] \
786 [list \
787 "Build pr19319" \
788 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
789 "-Wa,-mrelax-relocations=yes" \
790 { pr19319b.S } \
791 {{objdump {-dw} pr19319.dd}} \
792 "pr19319" \
793 ] \
794 [list \
795 "Build pr24276.so" \
796 "-shared -nostdlib -nostartfiles \
797 -Ltmpdir $srcdir/$subdir/pr24276.dso" \
798 "-Wa,-mx86-used-note=yes" \
799 { pr19319b.S } \
800 {{warning_output pr24276.warn}} \
801 "pr24276.so" \
802 ] \
803 [list \
804 "Build property 1" \
805 "" \
806 "-Wa,-mx86-used-note=no" \
807 {pass.c property-no-copy.S} \
808 {{readelf {-n} property-1.r}} \
809 "property-1" \
810 ] \
811 [list \
812 "Build property 1 (.o)" \
813 "-r -nostdlib" \
814 "-Wa,-mx86-used-note=yes" \
815 {pass.c property-no-copy.S} \
816 {{readelf {-n} property-1a.r}} \
817 "property-1.o" \
818 ] \
819 [list \
820 "Build property 1 (.so)" \
821 "-shared" \
822 "-fPIC -Wa,-mx86-used-note=no" \
823 {pass.c property-no-copy.S} \
824 {{readelf {-n} property-1.r}} \
825 "property-1.so" \
826 ] \
827 [list \
828 "Build property 2" \
829 "" \
830 "-Wa,-mx86-used-note=no" \
831 {pass.c property-stack.S} \
832 {{readelf {-n} property-2.r}} \
833 "property-2" \
834 ] \
835 [list \
836 "Build property 2 (.o)" \
837 "-r -nostdlib" \
838 "-Wa,-mx86-used-note=yes" \
839 {pass.c property-stack.S} \
840 {{readelf {-n} property-2a.r}} \
841 "property-2.o" \
842 ] \
843 [list \
844 "Build property 2 (.so)" \
845 "-shared" \
846 "-fPIC -Wa,-mx86-used-note=no" \
847 {pass.c property-stack.S} \
848 {{readelf {-n} property-2.r}} \
849 "property-2.so" \
850 ] \
851 [list \
852 "Build property 3" \
853 "" \
854 "-Wa,-mx86-used-note=no" \
855 {pass.c property-stack.S property-x86-1.S} \
856 {{readelf {-n} property-3.r}} \
857 "property-3" \
858 ] \
859 [list \
860 "Build property 3 (.o)" \
861 "-r -nostdlib" \
862 "-Wa,-mx86-used-note=yes" \
863 {pass.c property-x86-1.S property-stack.S} \
864 {{readelf {-n} property-3a.r}} \
865 "property-3.o" \
866 ] \
867 [list \
868 "Build property 3 (.so)" \
869 "-shared" \
870 "-fPIC -Wa,-mx86-used-note=no" \
871 {property-x86-1.S pass.c property-stack.S} \
872 {{readelf {-n} property-3.r}} \
873 "property-3.so" \
874 ] \
875 [list \
876 "Build property 4" \
877 "" \
878 "-Wa,-mx86-used-note=no" \
879 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
880 {{readelf {-n} property-4.r}} \
881 "property-4" \
882 ] \
883 [list \
884 "Build property 4 (.o)" \
885 "-r -nostdlib" \
886 "-Wa,-mx86-used-note=yes" \
887 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
888 {{readelf {-n} property-4a.r}} \
889 "property-4.o" \
890 ] \
891 [list \
892 "Build property 4 (.so)" \
893 "-shared" \
894 "-fPIC -Wa,-mx86-used-note=no" \
895 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
896 {{readelf {-n} property-4.r}} \
897 "property-4.so" \
898 ] \
899 [list \
900 "Build property 4 (-Wl,-z,stack-size=0)" \
901 "-Wl,-z,stack-size=0" \
902 "-Wa,-mx86-used-note=no" \
903 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
904 {{readelf {-n} property-4.r}} \
905 "property-4" \
906 ] \
907 [list \
908 "Build property 5" \
909 "-Wl,-z,stack-size=0x900000" \
910 "-Wa,-mx86-used-note=no" \
911 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
912 {{readelf {-n} property-5.r}} \
913 "property-5" \
914 ] \
915 [list \
916 "Build property 5 (.o)" \
917 "-r -nostdlib -Wl,-z,stack-size=0x900000" \
918 "-Wa,-mx86-used-note=yes" \
919 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
920 {{readelf {-n} property-5a.r}} \
921 "property-5.o" \
922 ] \
923 [list \
924 "Build property 5 (.so)" \
925 "-shared -Wl,-z,stack-size=0x900000" \
926 "-fPIC -Wa,-mx86-used-note=no" \
927 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
928 {{readelf {-n} property-5.r}} \
929 "property-5.so" \
930 ] \
931 [list \
932 "Build property-6.so" \
933 "-shared" \
934 "-fPIC -Wa,-mx86-used-note=no" \
935 {property-6a.c property-6c.S} \
936 {{readelf {-n} property-6.r}} \
937 "property-6.so" \
938 ] \
939 [list \
940 "Build property-6.o" \
941 "-r -nostdlib" \
942 "-Wa,-mx86-used-note=yes" \
943 {property-6b.c property-stack.S} \
944 {{readelf {-n} property-2a.r}} \
945 "property-6.o" \
946 ] \
947 [list \
948 "Build property-6" \
949 "-Wl,--as-needed tmpdir/property-6.o tmpdir/property-6.so" \
950 "-Wa,-mx86-used-note=no" \
951 { dummy.s } \
952 {{readelf {-n} property-2.r}} \
953 "property-6" \
954 ] \
955 [list \
956 "Build property 7a (.o)" \
957 "-r -nostdlib" \
958 "-Wa,-mx86-used-note=yes" \
959 {property-unsorted-1.S} \
960 {{readelf {-n} property-7a.r}} \
961 "property-7a.o" \
962 ] \
963 [list \
964 "Build property 7b (.o)" \
965 "-r -nostdlib" \
966 "-Wa,-mx86-used-note=yes" \
967 {property-unsorted-2.S} \
968 {{readelf {-n} property-7a.r}} \
969 "property-7b.o" \
970 ] \
971 ]
972
973 run_ld_link_exec_tests [list \
974 [list \
975 "Run plt-main" \
976 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
977 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
978 "-Wa,-mx86-used-note=yes" \
979 { plt-main5.c } \
980 "plt-main" \
981 "plt-main.out" \
982 ] \
983 [list \
984 "Run plt-main with PIE" \
985 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
986 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
987 "-Wa,-mx86-used-note=yes" \
988 { plt-main5.c } \
989 "plt-main-pie" \
990 "plt-main.out" \
991 "-fPIC" \
992 ] \
993 [list \
994 "Run copyreloc-main with PIE and GOTOFF" \
995 "-Wl,--as-needed tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
996 "-Wa,-mx86-used-note=yes" \
997 { dummy.s } \
998 "copyreloc-main" \
999 "copyreloc-main.out" \
1000 ] \
1001 [list \
1002 "Run pr17689 with PIE and GOTOFF" \
1003 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
1004 "-Wa,-mx86-used-note=yes" \
1005 { dummy.c } \
1006 "pr17689" \
1007 "pr17689.out" \
1008 ] \
1009 [list \
1010 "Run pr17689 with PIE, -z now and GOTOFF" \
1011 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -z now" \
1012 "-Wa,-mx86-used-note=yes" \
1013 { dummy.c } \
1014 "pr17689now" \
1015 "pr17689.out" \
1016 ] \
1017 [list \
1018 "Run pr17689ver with PIE and GOTOFF" \
1019 "tmpdir/pr17689b.o tmpdir/pr17689ver.so -pie" \
1020 "-Wa,-mx86-used-note=yes" \
1021 { dummy.c } \
1022 "pr17689ver" \
1023 "pr17689.out" \
1024 ] \
1025 [list \
1026 "Run pr18900" \
1027 "tmpdir/pr18900.o tmpdir/pr18900.so" \
1028 "-Wa,-mx86-used-note=yes" \
1029 { dummy.s } \
1030 "pr18900" \
1031 "pr18900.out" \
1032 ] \
1033 [list \
1034 "Run pr19031" \
1035 "$NOPIE_LDFLAGS tmpdir/pr19031.so" \
1036 "-Wa,-mx86-used-note=yes" \
1037 { pr19031b.S pr19031c.c } \
1038 "pr19031" \
1039 "pr19031.out" \
1040 "$NOPIE_CFLAGS" \
1041 ] \
1042 [list \
1043 "Run got1" \
1044 "$NOPIE_LDFLAGS tmpdir/got1d.so" \
1045 "-Wa,-mx86-used-note=yes" \
1046 { got1a.S got1b.c got1c.c } \
1047 "got1" \
1048 "got1.out" \
1049 ] \
1050 [list \
1051 "Run property 1" \
1052 "" \
1053 "-Wa,-mx86-used-note=yes" \
1054 {pass.c property-no-copy.S} \
1055 "property-1" "pass.out" \
1056 ] \
1057 [list \
1058 "Run property 1 (PIE)" \
1059 "-pie" \
1060 "-Wa,-mx86-used-note=yes" \
1061 {pass.c property-no-copy.S} \
1062 "property-1-pie" "pass.out" "-fPIE" \
1063 ] \
1064 [list \
1065 "Run property 1 (static)" \
1066 "-static" \
1067 "-Wa,-mx86-used-note=yes" \
1068 {pass.c property-no-copy.S} \
1069 "property-1-static" "pass.out" \
1070 ] \
1071 [list \
1072 "Run property 2" \
1073 "" \
1074 "-Wa,-mx86-used-note=yes" \
1075 {pass.c property-stack.S} \
1076 "property-2" "pass.out" \
1077 ] \
1078 [list \
1079 "Run property 2 (PIE)" \
1080 "-pie" \
1081 "-Wa,-mx86-used-note=yes" \
1082 {pass.c property-stack.S} \
1083 "property-2-pie" "pass.out" "-fPIE" \
1084 ] \
1085 [list \
1086 "Run property 2 (static)" \
1087 "-static" \
1088 "-Wa,-mx86-used-note=yes" \
1089 {pass.c property-stack.S} \
1090 "property-3-static" "pass.out" \
1091 ] \
1092 [list \
1093 "Run property 3" \
1094 "" \
1095 "-Wa,-mx86-used-note=yes" \
1096 {pass.c property-stack.S property-x86-1.S} \
1097 "property-3" "pass.out" \
1098 ] \
1099 [list \
1100 "Run property 3 (PIE)" \
1101 "-pie" \
1102 "-Wa,-mx86-used-note=yes" \
1103 {pass.c property-x86-1.S property-stack.S} \
1104 "property-3-pie" "pass.out" "-fPIE" \
1105 ] \
1106 [list \
1107 "Run property 3 (static)" \
1108 "-static" \
1109 "-Wa,-mx86-used-note=yes" \
1110 {property-x86-1.S pass.c property-stack.S} \
1111 "property-3-static" "pass.out" \
1112 ] \
1113 [list \
1114 "Run property 4" \
1115 "" \
1116 "-Wa,-mx86-used-note=yes" \
1117 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1118 "property-4" "pass.out" \
1119 ] \
1120 [list \
1121 "Run property 4 (PIE)" \
1122 "-pie" \
1123 "-Wa,-mx86-used-note=yes" \
1124 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1125 "property-4-pie" "pass.out" "-fPIE" \
1126 ] \
1127 [list \
1128 "Run property 4 (static)" \
1129 "-static" \
1130 "-Wa,-mx86-used-note=yes" \
1131 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1132 "property-4-static" "pass.out" \
1133 ] \
1134 [list \
1135 "Run property 5" \
1136 "-Wl,-z,stack-size=0x900000" \
1137 "-Wa,-mx86-used-note=yes" \
1138 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1139 "property-5" "pass.out" \
1140 ] \
1141 [list \
1142 "Run property 5 (PIE)" \
1143 "-pie -Wl,-z,stack-size=0x900000" \
1144 "-Wa,-mx86-used-note=yes" \
1145 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1146 "property-5-pie" "pass.out" "-fPIE" \
1147 ] \
1148 [list \
1149 "Run property 5 (static)" \
1150 "-static -Wl,-z,stack-size=0x900000" \
1151 "-Wa,-mx86-used-note=yes" \
1152 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1153 "property-5-static" "pass.out" \
1154 ] \
1155 ]
1156
1157 undefined_weak "$NOPIE_CFLAGS" "$NOPIE_LDFLAGS"
1158 undefined_weak "-fPIE" "$NOPIE_LDFLAGS"
1159 undefined_weak "-fPIE" "-pie"
1160 undefined_weak "-fPIE" "-z nodynamic-undefined-weak $NOPIE_LDFLAGS"
1161 undefined_weak "-fPIE" "-pie -z nodynamic-undefined-weak"
1162 }
1163
1164 # Must be native with the C compiler and working IFUNC support,
1165 if { [isnative]
1166 && [check_ifunc_available]
1167 && [istarget "i?86-*-*"]
1168 && [check_compiler_available] } {
1169 run_cc_link_tests [list \
1170 [list \
1171 "Build ifunc-1a.o ifunc-1b.o ifunc-1c.o ifunc-1d.o" \
1172 "" \
1173 "-fPIC -O2 -g -Wa,-mx86-used-note=yes" \
1174 { ifunc-1a.c ifunc-1b.S ifunc-1c.S ifunc-1d.S } \
1175 ] \
1176 [list \
1177 "Build pr21168a.o" \
1178 "" \
1179 "-Wa,-mx86-used-note=yes" \
1180 { pr21168a.c } \
1181 ] \
1182 [list \
1183 "Build pr21168.so" \
1184 "-shared" \
1185 "-Wa,-mx86-used-note=yes" \
1186 { pr21168b.S } \
1187 "" \
1188 "pr21168.so" \
1189 ] \
1190 ]
1191
1192 run_ld_link_exec_tests [list \
1193 [list \
1194 "Run ifunc-1a" \
1195 "tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1196 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1197 "-Wa,-mx86-used-note=yes" \
1198 { dummy.c } \
1199 "ifunc-1a" \
1200 "pass.out" \
1201 ] \
1202 [list \
1203 "Run ifunc-1b" \
1204 "--static tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1205 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1206 "-Wa,-mx86-used-note=yes" \
1207 { dummy.c } \
1208 "ifunc-1b" \
1209 "pass.out" \
1210 ] \
1211 [list \
1212 "Run pr21168" \
1213 "tmpdir/pr21168a.o tmpdir/pr21168.so" \
1214 "-Wa,-mx86-used-note=yes" \
1215 { dummy.c } \
1216 "pr21168" \
1217 "pass.out" \
1218 ] \
1219 ]
1220
1221 if { [istarget "i?86-*-linux*"] } {
1222 run_cc_link_tests [list \
1223 [list \
1224 "Build pr21168.so with -z ibtplt" \
1225 "-shared -Wl,-z,ibtplt" \
1226 "-Wa,-mx86-used-note=yes" \
1227 { pr21168b.S } \
1228 "" \
1229 "pr21168-ibt.so" \
1230 ] \
1231 [list \
1232 "Build ifunc-1a with -z ibtplt" \
1233 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1234 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1235 "-Wa,-mx86-used-note=yes" \
1236 { dummy.c } \
1237 {{objdump {-dw} plt-main-ibt.dd}} \
1238 "ifunc-1a-ibt" \
1239 ] \
1240 [list \
1241 "Build ifunc-1a with PIE -z ibtplt" \
1242 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1243 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1244 "-Wa,-mx86-used-note=yes" \
1245 { dummy.c } \
1246 {{objdump {-dw} plt-pie-ibt.dd}} \
1247 "ifunc-1a-pie-ibt" \
1248 ] \
1249 ]
1250
1251 run_ld_link_exec_tests [list \
1252 [list \
1253 "Run ifunc-1a with -z ibtplt" \
1254 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1255 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1256 "-Wa,-mx86-used-note=yes" \
1257 { dummy.c } \
1258 "ifunc-1a-ibt" \
1259 "pass.out" \
1260 ] \
1261 [list \
1262 "Run ifunc-1a with PIE -z ibtplt" \
1263 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1264 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
1265 "-Wa,-mx86-used-note=yes" \
1266 { dummy.c } \
1267 "ifunc-1a-pie-ibt" \
1268 "pass.out" \
1269 ] \
1270 [list \
1271 "Run pr21168 with -z ibtplt" \
1272 "tmpdir/pr21168a.o tmpdir/pr21168-ibt.so" \
1273 "-Wa,-mx86-used-note=yes" \
1274 { dummy.c } \
1275 "pr21168-ibt" \
1276 "pass.out" \
1277 ] \
1278 ]
1279 }
1280 }
1281
1282 # Must be native with the C compiler.
1283 if { [isnative]
1284 && [istarget "i?86-*-*"]
1285 && [check_compiler_available] } {
1286 run_cc_link_tests [list \
1287 [list \
1288 "Build pr22001-1.so" \
1289 "-shared -Wl,-z,notext" \
1290 "-Wa,-mx86-used-note=yes" \
1291 { pr22001-1a.c } \
1292 {} \
1293 "pr22001-1.so" \
1294 ] \
1295 [list \
1296 "Build pr21997-1.so" \
1297 "-shared" \
1298 "-Wa,-mx86-used-note=yes" \
1299 { property-stack.S property-no-copy.S pr21997-1a.S } \
1300 {} \
1301 "pr21997-1.so" \
1302 ] \
1303 [list \
1304 "Build pr22842.so" \
1305 "-shared" \
1306 "-fPIC -Wa,-mx86-used-note=yes" \
1307 { pr22842a.c } \
1308 {} \
1309 "pr22842.so" \
1310 ] \
1311 ]
1312
1313 run_ld_link_exec_tests [list \
1314 [list \
1315 "Run weakundef1 without PIE" \
1316 "$NOPIE_LDFLAGS" \
1317 "-Wa,-mx86-used-note=yes" \
1318 { weakundef1.c } \
1319 "weakundef1pie" \
1320 "pass.out" \
1321 "$NOPIE_CFLAGS" \
1322 ] \
1323 [list \
1324 "Run pr22001-1" \
1325 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed,-z,notext tmpdir/pr22001-1.so" \
1326 "-Wa,-mx86-used-note=yes" \
1327 { pr22001-1b.c } \
1328 "pr22001-1" \
1329 "pass.out" \
1330 "$NOPIE_CFLAGS" \
1331 ] \
1332 [list \
1333 "Run pr22001-1 (PIE 1)" \
1334 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1335 "-Wa,-mx86-used-note=yes" \
1336 { pr22001-1c.S } \
1337 "pr22001-1-pie-1" \
1338 "pass.out" \
1339 ] \
1340 [list \
1341 "Run pr22001-1 (PIE 2)" \
1342 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1343 "-Wa,-mx86-used-note=yes" \
1344 { pr22001-1c.S } \
1345 "pr22001-1-pie-2" \
1346 "pass.out" \
1347 ] \
1348 [list \
1349 "Run pr22001-1 (PIC 1)" \
1350 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1351 "-Wa,-mx86-used-note=yes" \
1352 { pr22001-1b.c } \
1353 "pr22001-1-pic-1" \
1354 "pass.out" \
1355 "-fPIC" \
1356 ] \
1357 [list \
1358 "Run pr22001-1 (PIC 2)" \
1359 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
1360 "-Wa,-mx86-used-note=yes" \
1361 { pr22001-1b.c } \
1362 "pr22001-1-pic-2" \
1363 "pass.out" \
1364 "-fPIC" \
1365 ] \
1366 [list \
1367 "Run pr21997-1" \
1368 "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
1369 "-Wa,-mx86-used-note=yes" \
1370 { pr21997-1b.c } \
1371 "pr21997-1" \
1372 "pass.out" \
1373 "$NOPIE_CFLAGS" \
1374 ] \
1375 [list \
1376 "Run pr21997-1 (PIC 1)" \
1377 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1378 "-Wa,-mx86-used-note=yes" \
1379 { pr21997-1b.c } \
1380 "pr21997-1-pic-1" \
1381 "pass.out" \
1382 "-fPIC" \
1383 ] \
1384 [list \
1385 "Run pr21997-1 (PIC 2)" \
1386 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1387 "-Wa,-mx86-used-note=yes" \
1388 { pr21997-1b.c } \
1389 "pr21997-1-pic-2" \
1390 "pass.out" \
1391 "-fPIC" \
1392 ] \
1393 [list \
1394 "Run pr21997-1 (PIE 1)" \
1395 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1396 "-Wa,-mx86-used-note=yes" \
1397 { pr21997-1c.S } \
1398 "pr21997-1-pie-1" \
1399 "pass.out" \
1400 ] \
1401 [list \
1402 "Run pr21997-1 (PIE 2)" \
1403 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
1404 "-Wa,-mx86-used-note=yes" \
1405 { pr21997-1c.S } \
1406 "pr21997-1-pie-2" \
1407 "pass.out" \
1408 ] \
1409 [list \
1410 "Build pr22842" \
1411 "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \
1412 "-Wa,-mx86-used-note=yes" \
1413 { pr22842b.S } \
1414 "pr22842" \
1415 "pass.out" \
1416 ] \
1417 [list \
1418 "Run pr23997" \
1419 "" \
1420 "" \
1421 { ../ld-x86-64/pr23997a.s ../ld-x86-64/pr23997b.c \
1422 ../ld-x86-64/pr23997c.c } \
1423 "pr23997" \
1424 "pass.out" \
1425 ] \
1426 ]
1427
1428 if { [at_least_gcc_version 5 0] } {
1429 run_ld_link_exec_tests [list \
1430 [list \
1431 "Run weakundef1 with PIE" \
1432 "-pie" \
1433 "-Wa,-mx86-used-note=yes" \
1434 { weakundef1.c } \
1435 "weakundef1pie" \
1436 "pass.out" \
1437 "-fPIE" \
1438 ] \
1439 ]
1440 }
1441 }
1442
1443 if { !([istarget "i?86-*-linux*"]
1444 || [istarget "x86_64-*-linux*"]) } {
1445 set ASFLAGS "$saved_ASFLAGS"
1446 return
1447 }
1448
1449 run_ld_link_tests [list \
1450 [list \
1451 "basic PLT generation (non-PIC, -z now)" \
1452 "-z now -melf_i386 --hash-style=sysv \
1453 -z noseparate-code tmpdir/libpltlib.so" \
1454 "" \
1455 "--32" \
1456 {plt2.s} \
1457 {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1458 "plt2" \
1459 ] \
1460 [list \
1461 "basic PLT generation (PIC, -z now)" \
1462 "-z now -shared -melf_i386 tmpdir/libpltlib.so" \
1463 "" \
1464 "--32 -mx86-used-note=yes" \
1465 {plt-pic.s} \
1466 {{objdump -dwr plt-pic2.dd}} \
1467 "plt-pic2.so" \
1468 ] \
1469 [list \
1470 "Build pr21626.so" \
1471 "-shared -melf_i386" \
1472 "" \
1473 "--32 -mx86-used-note=yes" \
1474 {property-x86-3.s} \
1475 "" \
1476 "pr21626.so" \
1477 ] \
1478 [list \
1479 "Build pr21626" \
1480 "-melf_i386 tmpdir/pr21626.so" \
1481 "" \
1482 "--32 -mx86-used-note=yes" \
1483 {start.s foo.s} \
1484 "" \
1485 "pr21626" \
1486 ] \
1487 ]
1488
1489 # Linux only tests
1490 run_dump_test "pltgot-1"
1491 run_dump_test "pltgot-2"
1492 run_dump_test "pr20830"
1493 run_dump_test "ibt-plt-1"
1494 run_dump_test "ibt-plt-2a"
1495 run_dump_test "ibt-plt-2b"
1496 run_dump_test "ibt-plt-2c"
1497 run_dump_test "ibt-plt-2d"
1498 run_dump_test "ibt-plt-3a"
1499 run_dump_test "ibt-plt-3b"
1500 run_dump_test "ibt-plt-3c"
1501 run_dump_test "ibt-plt-3d"
1502
1503 set ASFLAGS "$saved_ASFLAGS"
This page took 0.060601 seconds and 5 git commands to generate.