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