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