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