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