ld: Pass -z notext to linker for tests with DT_TEXTREL
[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
22global ASFLAGS
23set saved_ASFLAGS "$ASFLAGS"
24if { [is_elf_format] \
25 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
26 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
27}
28
37e55690
JJ
29# Test i386 linking; all types of relocs. This tests the assembler and
30# tools like objdump as well as the linker.
31
b9201bb3
RS
32if {[istarget "i?86-*-vxworks"]} {
33 set i386tests {
bab55c05
AM
34 {"VxWorks shared library test 1"
35 "-shared -Tvxworks1.ld --hash-style=sysv" ""
b9201bb3 36 "" {vxworks1-lib.s}
711de32c 37 {{readelf --relocs vxworks1-lib.rd} {objdump -dr vxworks1-lib.dd}
e68ed250 38 {readelf --symbols vxworks1-lib.nd} {readelf -d vxworks1-lib.td}}
b9201bb3 39 "libvxworks1.so"}
4f471f39 40 {"VxWorks executable test 1 (dynamic)" \
bab55c05 41 "tmpdir/libvxworks1.so -Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
4f471f39 42 "" {vxworks1.s}
b9201bb3
RS
43 {{readelf --relocs vxworks1.rd} {objdump -dr vxworks1.dd}}
44 "vxworks1"}
4f471f39 45 {"VxWorks executable test 2 (dynamic)" \
bab55c05 46 "-Tvxworks1.ld --hash-style=sysv -q --force-dynamic" ""
4f471f39
RS
47 "" {vxworks2.s}
48 {{readelf --segments vxworks2.sd}}
49 "vxworks2"}
50 {"VxWorks executable test 2 (static)"
bab55c05 51 "-Tvxworks1.ld --hash-style=sysv" ""
4f471f39
RS
52 "" {vxworks2.s}
53 {{readelf --segments vxworks2-static.sd}}
54 "vxworks2"}
b9201bb3
RS
55 }
56 run_ld_link_tests $i386tests
4f471f39 57 run_dump_test "vxworks1-static"
b9201bb3
RS
58}
59
e39e47bd 60if [istarget "*-*-go32*"] {
897aea50 61 run_ld_link_tests {{"go32 stub" "" "" "" {zero.s} {} "go32stub"}}
e39e47bd
JK
62
63 set src "tmpdir/go32stub"
64 set dest "tmpdir/go32stub-copy"
65
66 set test "go32 stub patch the source"
67 set fi [open $src r+]
68 fconfigure $fi -translation binary
69 if {[read $fi 2] != "MZ"} {
70 fail $test
71 } else {
72 pass $test
73 seek $fi 0x40
74 puts -nonewline $fi "objcopy-test-go32stub"
75 }
76 close $fi
77
78 set test "go32 stub objcopy"
79 set status [remote_exec build $OBJCOPY "$OBJCOPYFLAGS $src $dest"]
80 set exec_output [lindex $status 1]
81 set exec_output [prune_warnings $exec_output]
82 if [string match "" $exec_output] then {
83 pass $test
84 } else {
85 send_log "$exec_output\n"
86 verbose "$exec_output" 1
87 fail $test
88 }
89
90 # cmp would compare the whole files and some data after the initial exe
91 # stub could differ.
92 set test "go32 stub comparison after objcopy"
93 set fi [open $src]
94 fconfigure $fi -translation binary
95 set src_stub [read $fi 2048]
96 close $fi
97 set fi [open $dest]
98 fconfigure $fi -translation binary
99 set dest_stub [read $fi 2048]
100 close $fi
101 if {$src_stub == $dest_stub} {
102 pass $test
103 } else {
104 fail $test
105 }
106}
107
5a68afcf 108if { !([istarget "i?86-*-elf*"]
c65c21e1
AM
109 || [istarget "i?86-*-linux*"]
110 || [istarget "i?86-*-gnu*"]
5a68afcf 111 || [istarget "i?86-*-nacl*"]
4bb3c591 112 || [istarget "x86_64-*-elf*"]
5a68afcf 113 || [istarget "x86_64-*-nacl*"]
67a4f2b7
AO
114 || [istarget "x86_64-*-linux*"]
115 || [istarget "amd64-*-linux*"]) } {
37e55690
JJ
116 return
117}
118
37e55690 119# List contains test-items with 3 items followed by 2 lists:
897aea50
MR
120# 0:name 1:ld early options 2:ld late options 3:assembler options
121# 4:filenames of assembler files 5: action and options. 6: name of output file
37e55690
JJ
122
123# Actions:
124# objdump: Apply objdump options on result. Compare with regex (last arg).
125# nm: Apply nm options on result. Compare with regex (last arg).
126# readelf: Apply readelf options on result. Compare with regex (last arg).
127
128set i386tests {
5a68afcf 129 {"Helper shared library (basic PLT test)"
897aea50 130 "-shared -melf_i386" "" "--32" {pltlib.s} {} "libpltlib.so"}
5a68afcf 131 {"basic PLT generation (non-PIC)"
897aea50 132 "-melf_i386 tmpdir/libpltlib.so" "" "--32" {plt.s}
5a68afcf
RM
133 {{objdump -drj.plt plt.pd}} "plt"}
134 {"basic PLT generation (PIC)"
897aea50 135 "-shared -melf_i386 tmpdir/libpltlib.so" "" "--32" {plt-pic.s}
5a68afcf 136 {{objdump -drj.plt plt-pic.pd}} "libplt-pic.so"}
e41b3a13 137 {"TLS -fpic -shared transitions"
760b2893
L
138 "-shared -melf_i386 --no-ld-generated-unwind-info \
139 -z noseparate-code --hash-style=sysv" ""
37e55690
JJ
140 "--32" {tlspic1.s tlspic2.s}
141 {{readelf -Ssrl tlspic.rd} {objdump -drj.text tlspic.dd}
142 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
143 "libtlspic.so"}
6eaa7fb5 144 {"TLS -fpic -shared transitions without PLT"
760b2893
L
145 "-shared -melf_i386 --no-ld-generated-unwind-info \
146 -z noseparate-code --hash-style=sysv" ""
6eaa7fb5
L
147 "-mrelax-relocations=yes --32"
148 {tlspic3.s tlspic2.s}
149 {{readelf -Ssrl tlspic2.rd} {objdump -drj.text tlspic2.dd}
150 {objdump -sj.got tlspic2.sd} {objdump -sj.tdata tlspic2.td}}
151 "libtlspic2.so"}
e41b3a13 152 {"TLS descriptor -fpic -shared transitions"
760b2893
L
153 "-shared -melf_i386 --no-ld-generated-unwind-info \
154 -z noseparate-code --hash-style=sysv" ""
67a4f2b7
AO
155 "--32" {tlsdesc.s tlspic2.s}
156 {{readelf -Ssrl tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
157 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}}
158 "libtlsdesc.so"}
897aea50 159 {"Helper shared library" "-shared -melf_i386" ""
37e55690
JJ
160 "--32" {tlslib.s} {} "libtlslib.so"}
161 {"TLS -fpic and -fno-pic exec transitions"
760b2893
L
162 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
163 -z noseparate-code --hash-style=sysv" ""
e41b3a13 164 "--32" {tlsbinpic.s tlsbin.s}
37e55690
JJ
165 {{readelf -Ssrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
166 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
167 "tlsbin"}
6eaa7fb5 168 {"TLS -fpic and -fno-pic exec transitions without PLT"
760b2893
L
169 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
170 -z noseparate-code --hash-style=sysv" ""
6eaa7fb5
L
171 "-mrelax-relocations=yes --32"
172 {tlsbinpic2.s tlsbin.s}
173 {{readelf -Ssrl tlsbin2.rd} {objdump -drj.text tlsbin2.dd}
174 {objdump -sj.got tlsbin2.sd} {objdump -sj.tdata tlsbin2.td}}
175 "tlsbin2"}
67a4f2b7 176 {"TLS descriptor -fpic and -fno-pic exec transitions"
760b2893
L
177 "-melf_i386 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
178 -z noseparate-code --hash-style=sysv" ""
e41b3a13 179 "--32" {tlsbindesc.s tlsbin.s}
67a4f2b7
AO
180 {{readelf -Ssrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
181 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
182 "tlsbindesc"}
897aea50 183 {"TLS -fno-pic -shared"
af2c48d8 184 "-shared -melf_i386 --no-ld-generated-unwind-info -z notext \
760b2893 185 -z noseparate-code --hash-style=sysv" ""
37e55690
JJ
186 "--32" {tlsnopic1.s tlsnopic2.s}
187 {{readelf -Ssrl tlsnopic.rd} {objdump -drj.text tlsnopic.dd}
188 {objdump -sj.got tlsnopic.sd}} "libtlsnopic.so"}
67a4f2b7 189 {"TLS with global dynamic and descriptors"
760b2893
L
190 "-shared -melf_i386 --no-ld-generated-unwind-info \
191 -z noseparate-code --hash-style=sysv" ""
e41b3a13 192 "--32" {tlsgdesc.s}
67a4f2b7
AO
193 {{readelf -Ssrl tlsgdesc.rd} {objdump -drj.text tlsgdesc.dd}}
194 "libtlsgdesc.so"}
897aea50 195 {"TLS in debug sections" "-melf_i386" ""
a45bb67d
JJ
196 "--32" {tlsg.s}
197 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
897aea50 198 {"TLS @indntpoff with %eax" "-melf_i386" "" "--32" {tlsindntpoff.s}
7c445aa3 199 {{objdump -drj.text tlsindntpoff.dd}} "tlsindntpoff"}
af2c48d8
L
200 {"Reloc section order"
201 "-shared -melf_i386 -z nocombreloc -z notext" "" "--32"
4565652e 202 {reloc.s} {{objdump -hw reloc.d}} "reloc.so"}
897aea50 203 {"Basic --emit-relocs support" "-shared -melf_i386 --emit-relocs" "" "--32"
5a68afcf 204 {emit-relocs.s} {{readelf --relocs emit-relocs.rd}} "emit-relocs.so"}
897aea50 205 {"-z combreloc relocation sections" "-shared -melf_i386 -z combreloc" ""
2030e6d7 206 "--32" {combreloc.s} {{readelf -r combreloc.d}} "combreloc.so"}
897aea50 207 {"TLS GD->LE transition" "-melf_i386" ""
a3fadc9a
L
208 "--32" {tlsgd1.s}
209 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
6eaa7fb5
L
210 {"TLS GD->LE transition without PLT" "-melf_i386" ""
211 "-mrelax-relocations=yes --32"
212 {tlsgd3.s}
213 {{objdump -dwr tlsgd3.dd}} "tlsgd3"}
897aea50 214 {"TLS LD->LE transition" "-melf_i386" ""
a3fadc9a
L
215 "--32" {tlsld1.s}
216 {{objdump -dwr tlsld1.dd}} "tlsld1"}
6eaa7fb5
L
217 {"TLS LD->LE transition without PLT" "-melf_i386" ""
218 "-mrelax-relocations=yes --32"
219 {tlsld2.s}
220 {{objdump -dwr tlsld2.dd}} "tlsld2"}
897aea50 221 {"TLS IE->LE transition" "-melf_i386" ""
dd1093aa
L
222 "--32" {tlsie1.s}
223 {{objdump -dwr tlsie1.dd}} "tlsie1"}
29a9f53e 224 {"PR ld/17313 (1)" "-melf_i386" ""
6c0d3bde 225 "--32 -mx86-used-note=yes" {zero.s} {} ""}
29a9f53e 226 {"PR ld/17313 (2)" "-melf_i386 -shared --just-symbols=tmpdir/zero.o" ""
6c0d3bde 227 "--32 -mx86-used-note=yes" {lea1.s} {} "libpr17313.so"}
c8831961 228 {"PR ld/17306 (1)" "-melf_i386" ""
6c0d3bde 229 "--32 -mx86-used-note=yes" {pr17306b.s} {} ""}
c8831961 230 {"PR ld/17306 (2)" "-melf_i386 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
6c0d3bde 231 "--32 -mx86-used-note=yes" {pr17306a.s} {} "libpr17306.so"}
f7483970 232 {"PR ld/17709 (1)" "-melf_i386 -shared" ""
6c0d3bde 233 "--32 -mx86-used-note=yes" {pr17709a.s} {} "libpr17709.so"}
f7483970 234 {"PR ld/17709 (2)" "-melf_i386 tmpdir/libpr17709.so" ""
6c0d3bde
L
235 "--32 -mx86-used-note=yes"
236 {pr17709b.s} {{readelf -r pr17709.rd}} "pr17709"}
4e0c91e4 237 {"Build pr19827a.o" "" ""
6c0d3bde 238 "--32 -mx86-used-note=yes" { pr19827a.S }}
4e0c91e4 239 {"Build pr19827b.so" "-melf_i386 -shared" ""
6c0d3bde
L
240 "--32 -mx86-used-note=yes"
241 { pr19827b.S } {} "pr19827b.so"}
af2c48d8
L
242 {"Build pr19827"
243 "-melf_i386 -pie -z notext tmpdir/pr19827a.o tmpdir/pr19827b.so"
244 ""
6c0d3bde
L
245 "--32 -mx86-used-note=yes"
246 { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
af2c48d8
L
247 {"Build pr19827.so"
248 "-melf_i386 -shared -Bsymbolic -z notext" ""
6c0d3bde
L
249 "--32 -mx86-used-note=yes"
250 { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
37e55690
JJ
251}
252
5a68afcf
RM
253# So as to avoid rewriting every last test case here in a nacl variant,
254# we use black magic to massage the generic cases into nacl-variant cases.
255if [istarget "*-*-nacl*"] {
256 # Change all the -melf_i386 to -melf_i386_nacl so linking can succeed.
257 regsub -all elf_i386 $i386tests elf_i386_nacl i386tests
258
259 # Same, applied to all the run_dump_test cases.
761e2bd4 260 set options_regsub(ld) {elf_i386 elf_i386_nacl}
5a68afcf
RM
261
262 # The section/segment layout differs too much for the vanilla
263 # readelf output files to match. So massage the cases so that
264 # they refer to a foo-nacl.rd file instead of a foo.rd file.
265 regsub -all {([a-z0-9]+)\.rd} $i386tests {\1-nacl.rd} i386tests
266
267 # Likewise for PLTs.
268 regsub -all -- {([a-z0-9]+)\.pd} $i386tests {\1-nacl.pd} i386tests
269}
270
7e0a8112
L
271proc iamcu_tests {} {
272 if {[istarget "*-*-nacl*"]} then {
273 return
274 }
275
276 global as
277 global srcdir
278 global subdir
279
280 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/start.s" tmpdir/startiamcu.o] {
281 unresolved "Build Intel MCU start.o"
282 return
283 }
284
285 if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
286 unresolved "Build ia32 start.o"
287 return
288 }
289
290 if ![ld_assemble $as "--32 -march=iamcu $srcdir/$subdir/foo.s" tmpdir/fooiamcu.o] {
291 unresolved "Build Intel MCU foo.o"
292 return
293 }
294
295 if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
296 unresolved "Build ia32 foo.o"
297 return
298 }
299
300 run_dump_test "abs-iamcu"
301 run_dump_test "iamcu-1"
302 run_dump_test "iamcu-2"
303 run_dump_test "iamcu-3"
5197d474 304 run_dump_test "iamcu-4"
7e0a8112
L
305}
306
307iamcu_tests
308
37e55690 309run_ld_link_tests $i386tests
ac2aa337
JB
310
311run_dump_test "abs"
312run_dump_test "pcrel8"
313run_dump_test "pcrel16"
ab96bf03 314run_dump_test "pcrel16abs"
0920dee7 315run_dump_test "alloc"
9267588c 316run_dump_test "warn1"
4c544807 317run_dump_test "tlsgd2"
6eaa7fb5 318run_dump_test "tlsgd4"
dd1093aa
L
319run_dump_test "tlsie2"
320run_dump_test "tlsie3"
321run_dump_test "tlsie4"
322run_dump_test "tlsie5"
41bed6dd
L
323run_dump_test "hidden1"
324run_dump_test "hidden2"
325run_dump_test "hidden3"
326run_dump_test "protected1"
327run_dump_test "protected2"
328run_dump_test "protected3"
bdb892b9
L
329run_dump_test "protected4"
330run_dump_test "protected5"
e3c0e327 331run_dump_test "protected6a"
889c2a67 332run_dump_test "protected6b"
73784fa5 333run_dump_test "protected7"
1d85728f 334run_dump_test "tlspie1"
959b0961 335run_dump_test "tlspie2"
6eaa7fb5
L
336run_dump_test "tlspie3a"
337run_dump_test "tlspie3b"
338run_dump_test "tlspie3c"
a7b16ceb 339run_dump_test "nogot1"
0629d0af 340run_dump_test "nogot2"
56d4289c 341run_dump_test "discarded1"
2abca860 342run_dump_test "pr12718"
a81aeffc 343run_dump_test "pr12921"
2fe0fd06
L
344run_dump_test "pr12570a"
345run_dump_test "pr12570b"
80d87326
L
346run_dump_test "lea1a"
347run_dump_test "lea1b"
348run_dump_test "lea1c"
daa67607
L
349run_dump_test "lea1d"
350run_dump_test "lea1e"
351run_dump_test "lea1f"
3f65f599
L
352run_dump_test "mov1a"
353run_dump_test "mov1b"
02e2aef8
L
354run_dump_test "mov2a"
355run_dump_test "mov2b"
356run_dump_test "mov3"
02a86693
L
357run_dump_test "branch1"
358run_dump_test "call1"
359run_dump_test "call2"
caa65211
L
360run_dump_test "call3a"
361run_dump_test "call3b"
362run_dump_test "call3c"
363run_dump_test "call3d"
364run_dump_test "call3e"
365run_dump_test "call3f"
366run_dump_test "call3g"
367run_dump_test "call3h"
02a86693
L
368run_dump_test "jmp1"
369run_dump_test "jmp2"
370run_dump_test "load1"
caa65211 371run_dump_test "load1-nacl"
02a86693
L
372run_dump_test "load2"
373run_dump_test "load3"
374run_dump_test "load4a"
375run_dump_test "load4b"
376run_dump_test "load5a"
377run_dump_test "load5b"
378run_dump_test "load6"
2856a627 379run_dump_test "load7"
7b7e7f1d 380run_dump_test "pr19175"
e20365c5 381run_dump_test "pr19615"
aec6b87e
L
382run_dump_test "pr19636-1a"
383run_dump_test "pr19636-1b"
384run_dump_test "pr19636-1c"
385run_dump_test "pr19636-1d"
386run_dump_test "pr19636-1d-nacl"
387run_dump_test "pr19636-1e"
388run_dump_test "pr19636-1f"
389run_dump_test "pr19636-1g"
390run_dump_test "pr19636-1h"
391run_dump_test "pr19636-1i"
853ee16f
L
392run_dump_test "pr19636-1j"
393run_dump_test "pr19636-1k"
394run_dump_test "pr19636-1l"
aec6b87e
L
395run_dump_test "pr19636-2a"
396run_dump_test "pr19636-2b"
397run_dump_test "pr19636-2c"
398run_dump_test "pr19636-2c-nacl"
399run_dump_test "pr19636-2d"
400run_dump_test "pr19636-2d-nacl"
401run_dump_test "pr19636-2e"
bf52d7c7 402run_dump_test "pr19636-2e-nacl"
aec6b87e
L
403run_dump_test "pr19636-3a"
404run_dump_test "pr19636-3b"
405run_dump_test "pr19636-3c"
406run_dump_test "pr19636-3d"
407run_dump_test "pr19636-3e"
408run_dump_test "pr19636-3f"
409run_dump_test "pr19636-3g"
853ee16f
L
410run_dump_test "pr19636-3h"
411run_dump_test "pr19636-3i"
aec6b87e
L
412run_dump_test "pr19636-4a"
413run_dump_test "pr19636-4b"
414run_dump_test "pr19636-4c"
415run_dump_test "pr19636-4d"
b8871f35 416run_dump_test "pr19645"
bae420ef
L
417run_dump_test "pr19609-1a"
418run_dump_test "pr19609-1b"
419run_dump_test "pr19609-1c"
420run_dump_test "pr19609-1d"
421run_dump_test "pr19609-1e"
422run_dump_test "pr19609-1f"
423run_dump_test "pr19609-1g"
424run_dump_test "pr19609-1h"
425run_dump_test "pr19609-1i"
426run_dump_test "pr19609-2a"
427run_dump_test "pr19609-2b"
428run_dump_test "pr19609-2c"
429run_dump_test "undefweaka"
430run_dump_test "undefweakb"
3ab94f96 431run_dump_test "pr19539"
7d4d9709 432run_dump_test "pr20117"
74d7f0aa
L
433run_dump_test "pr20244-1a"
434run_dump_test "pr20244-1b"
435run_dump_test "pr20244-1c"
712ec279
L
436run_dump_test "pr20244-2a"
437run_dump_test "pr20244-2b"
438run_dump_test "pr20244-2c"
439run_dump_test "pr20244-2d"
a5def14f
L
440run_dump_test "pr20244-4a"
441run_dump_test "pr20244-4b"
442run_dump_test "pr20244-4c"
233cc9c1
L
443run_dump_test "pr20253-3"
444run_dump_test "pr20253-4a"
445run_dump_test "pr20253-4b"
446run_dump_test "pr20253-4c"
447run_dump_test "pr20253-5"
74437ea2 448run_dump_test "pr20515"
73caa85d 449run_dump_test "property-x86-3"
92f7d783
L
450run_dump_test "property-x86-4a"
451run_dump_test "property-x86-4b"
90c745dc 452run_dump_test "property-x86-5"
ee2fdd6f
L
453run_dump_test "property-x86-ibt1a"
454run_dump_test "property-x86-ibt1b"
455run_dump_test "property-x86-ibt2"
456run_dump_test "property-x86-ibt3a"
457run_dump_test "property-x86-ibt3b"
458run_dump_test "property-x86-ibt4"
459run_dump_test "property-x86-ibt5"
48580982
L
460run_dump_test "property-x86-shstk1a"
461run_dump_test "property-x86-shstk1b"
462run_dump_test "property-x86-shstk2"
463run_dump_test "property-x86-shstk3a"
464run_dump_test "property-x86-shstk3b"
465run_dump_test "property-x86-shstk4"
466run_dump_test "property-x86-shstk5"
233a0083
L
467run_dump_test "property-x86-cet1"
468run_dump_test "property-x86-cet2a"
469run_dump_test "property-x86-cet2b"
470run_dump_test "property-x86-cet3a"
471run_dump_test "property-x86-cet3b"
472run_dump_test "property-x86-cet4a"
473run_dump_test "property-x86-cet4b"
474run_dump_test "property-x86-cet5a"
475run_dump_test "property-x86-cet5b"
476run_dump_test "property-x86-cet6"
89d249d2
L
477run_dump_test "pie1"
478run_dump_test "pie1-nacl"
9593aade 479run_dump_test "pr21884"
34c4758c 480run_dump_test "pr21884-nacl"
0a27fed7
L
481run_dump_test "pr22115-1a"
482run_dump_test "pr22115-1b"
483run_dump_test "pr22115-1c"
484run_dump_test "pr22115-1d"
5e5e02ae 485run_dump_test "pr22135"
cd048363 486run_dump_test "pr22782"
347a8774 487run_dump_test "pr22929"
941036f4 488run_dump_test "pr23189"
97373b2e 489run_dump_test "pr23194"
56ad703d
L
490run_dump_test "pr23372a"
491run_dump_test "pr23372b"
a9eafb08
L
492run_dump_test "pr23372c"
493run_dump_test "pr23372d"
f7309df2
L
494run_dump_test "pr23486a"
495run_dump_test "pr23486b"
a9eafb08
L
496run_dump_test "pr23486c"
497run_dump_test "pr23486d"
e60f4d3b 498run_dump_test "pr23854"
b44ee3a8 499run_dump_test "pr23930"
44b27f95
L
500run_dump_test "pr24322a"
501run_dump_test "pr24322b"
8493b665 502run_dump_test "align-branch-1"
309cae1f 503run_dump_test "pr26018"
25d17eb4
L
504
505if { !([istarget "i?86-*-linux*"]
5940a93c 506 || [istarget "i?86-*-gnu*"]
5a68afcf
RM
507 || [istarget "i?86-*-nacl*"]
508 || [istarget "x86_64-*-nacl*"]
25d17eb4 509 || [istarget "x86_64-*-linux*"]) } {
6c0d3bde 510 set ASFLAGS "$saved_ASFLAGS"
25d17eb4
L
511 return
512}
513
514run_dump_test "compressed1"
a3293649 515run_dump_test "pr12627"
98920172 516run_dump_test "pr13302"
17d6eea5 517run_dump_test "pr14215"
998d811a 518run_dump_test "pr17057"
1952c5cd
L
519run_dump_test "pr17935-1"
520run_dump_test "pr17935-2"
9a7f0679
L
521run_dump_test "pr18801a"
522run_dump_test "pr18801b"
13a2df29 523run_dump_test "pr18815"
2df3368d
L
524run_dump_test "pr19939a"
525run_dump_test "pr19939b"
97d343d4 526run_dump_test "tlsdesc2"
4a7a7923 527
aec6b87e
L
528proc undefined_weak {cflags ldflags} {
529 set testname "Undefined weak symbol"
530 if { ![ string match "" $cflags$ldflags] } {
531 set testname "$testname ($cflags $ldflags)"
532 }
533
074f6066
L
534 if { [string match "*-fPIE*" $cflags]
535 && ![string match "*-z nodynamic-undefined-weak*" $ldflags] } {
aec6b87e
L
536 set weak_symbol "Weak defined"
537 } else {
538 set weak_symbol "Weak undefined"
539 }
540
541 run_cc_link_tests [list \
542 [list \
543 "Build libpr19704a.so" \
544 "-shared -Wl,-soname,libpr19704.so" \
6c0d3bde 545 "-Wa,-mrelax-relocations=yes" \
aec6b87e
L
546 { dummy.s } \
547 {} \
548 "libpr19704a.so" \
549 ] \
550 [list \
551 "Build libpr19704b.so" \
552 "-shared -Wl,-soname,libpr19704.so" \
6c0d3bde 553 "-fPIC -Wa,-mrelax-relocations=yes" \
aec6b87e
L
554 { pr19704b.c } \
555 {} \
556 "libpr19704b.so" \
557 ] \
558 ]
559
560 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
561
982c6f26 562 run_ld_link_exec_tests [list \
aec6b87e
L
563 [list \
564 "Run pr19704" \
e9237227 565 "$ldflags tmpdir/libpr19704.so -Wl,-R,tmpdir" \
6c0d3bde 566 "-Wa,-mrelax-relocations=yes" \
aec6b87e
L
567 { pr19704a.c } \
568 "pr19704" \
569 "pr19704.out" \
570 "$cflags" \
571 ] \
572 ]
573
574 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
575
576 set exec_output [run_host_cmd tmpdir/pr19704 ""]
577 if {![string match $weak_symbol $exec_output]} {
578 fail $testname
579 } else {
580 pass $testname
581 }
582}
583
ea9fb8b3
L
584# Add $PLT_CFLAGS if PLT is expected.
585global PLT_CFLAGS
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
9d1c54ed 1196global NOPIE_CFLAGS NOPIE_LDFLAGS
ee2fdd6f 1197
ca8c86ef
L
1198# Must be native with the C compiler and working IFUNC support,
1199if { [isnative]
1200 && [check_ifunc_available]
1201 && [istarget "i?86-*-*"]
44ed8092 1202 && [check_compiler_available] } {
ca8c86ef
L
1203 run_cc_link_tests [list \
1204 [list \
1205 "Build ifunc-1a.o ifunc-1b.o ifunc-1c.o ifunc-1d.o" \
1206 "" \
6c0d3bde 1207 "-fPIC -O2 -g -Wa,-mx86-used-note=yes" \
ca8c86ef
L
1208 { ifunc-1a.c ifunc-1b.S ifunc-1c.S ifunc-1d.S } \
1209 ] \
2a568401
L
1210 [list \
1211 "Build pr21168a.o" \
1212 "" \
6c0d3bde 1213 "-Wa,-mx86-used-note=yes" \
2a568401
L
1214 { pr21168a.c } \
1215 ] \
1216 [list \
1217 "Build pr21168.so" \
1218 "-shared" \
6c0d3bde 1219 "-Wa,-mx86-used-note=yes" \
2a568401
L
1220 { pr21168b.S } \
1221 "" \
1222 "pr21168.so" \
1223 ] \
ca8c86ef
L
1224 ]
1225
982c6f26 1226 run_ld_link_exec_tests [list \
ca8c86ef
L
1227 [list \
1228 "Run ifunc-1a" \
1229 "tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1230 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1231 "-Wa,-mx86-used-note=yes" \
ca8c86ef
L
1232 { dummy.c } \
1233 "ifunc-1a" \
1234 "pass.out" \
1235 ] \
1236 [list \
1237 "Run ifunc-1b" \
1238 "--static tmpdir/ifunc-1a.o tmpdir/ifunc-1b.o \
1239 tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1240 "-Wa,-mx86-used-note=yes" \
ca8c86ef
L
1241 { dummy.c } \
1242 "ifunc-1b" \
1243 "pass.out" \
1244 ] \
2a568401
L
1245 [list \
1246 "Run pr21168" \
1247 "tmpdir/pr21168a.o tmpdir/pr21168.so" \
6c0d3bde 1248 "-Wa,-mx86-used-note=yes" \
2a568401
L
1249 { dummy.c } \
1250 "pr21168" \
1251 "pass.out" \
1252 ] \
ca8c86ef 1253 ]
ee2fdd6f
L
1254
1255 if { [istarget "i?86-*-linux*"] } {
1256 run_cc_link_tests [list \
1257 [list \
1258 "Build pr21168.so with -z ibtplt" \
1259 "-shared -Wl,-z,ibtplt" \
6c0d3bde 1260 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1261 { pr21168b.S } \
1262 "" \
1263 "pr21168-ibt.so" \
1264 ] \
1265 [list \
1266 "Build ifunc-1a with -z ibtplt" \
1267 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1268 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1269 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1270 { dummy.c } \
1271 {{objdump {-dw} plt-main-ibt.dd}} \
1272 "ifunc-1a-ibt" \
1273 ] \
1274 [list \
1275 "Build ifunc-1a with PIE -z ibtplt" \
1276 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1277 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1278 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1279 { dummy.c } \
1280 {{objdump {-dw} plt-pie-ibt.dd}} \
1281 "ifunc-1a-pie-ibt" \
1282 ] \
1283 ]
1284
1285 run_ld_link_exec_tests [list \
1286 [list \
1287 "Run ifunc-1a with -z ibtplt" \
1288 "-Wl,-z,ibtplt $NOPIE_LDFLAGS tmpdir/ifunc-1a.o \
1289 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1290 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1291 { dummy.c } \
1292 "ifunc-1a-ibt" \
1293 "pass.out" \
1294 ] \
1295 [list \
1296 "Run ifunc-1a with PIE -z ibtplt" \
1297 "-Wl,-z,ibtplt -pie tmpdir/ifunc-1a.o \
1298 tmpdir/ifunc-1b.o tmpdir/ifunc-1c.o tmpdir/ifunc-1d.o" \
6c0d3bde 1299 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1300 { dummy.c } \
1301 "ifunc-1a-pie-ibt" \
1302 "pass.out" \
1303 ] \
1304 [list \
1305 "Run pr21168 with -z ibtplt" \
1306 "tmpdir/pr21168a.o tmpdir/pr21168-ibt.so" \
6c0d3bde 1307 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1308 { dummy.c } \
1309 "pr21168-ibt" \
1310 "pass.out" \
1311 ] \
1312 ]
1313 }
ca8c86ef
L
1314}
1315
00564418
L
1316# Must be native with the C compiler.
1317if { [isnative]
1318 && [istarget "i?86-*-*"]
44ed8092 1319 && [check_compiler_available] } {
7073b5b9
L
1320 run_cc_link_tests [list \
1321 [list \
1322 "Build pr22001-1.so" \
af2c48d8 1323 "-shared -Wl,-z,notext" \
6c0d3bde 1324 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1325 { pr22001-1a.c } \
1326 {} \
1327 "pr22001-1.so" \
1328 ] \
a5b4ee94
L
1329 [list \
1330 "Build pr21997-1.so" \
1331 "-shared" \
6c0d3bde 1332 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1333 { property-stack.S property-no-copy.S pr21997-1a.S } \
1334 {} \
1335 "pr21997-1.so" \
1336 ] \
451875b4
L
1337 [list \
1338 "Build pr22842.so" \
1339 "-shared" \
6c0d3bde 1340 "-fPIC -Wa,-mx86-used-note=yes" \
451875b4
L
1341 { pr22842a.c } \
1342 {} \
1343 "pr22842.so" \
1344 ] \
7073b5b9
L
1345 ]
1346
00564418
L
1347 run_ld_link_exec_tests [list \
1348 [list \
1349 "Run weakundef1 without PIE" \
1350 "$NOPIE_LDFLAGS" \
6c0d3bde 1351 "-Wa,-mx86-used-note=yes" \
00564418
L
1352 { weakundef1.c } \
1353 "weakundef1pie" \
1354 "pass.out" \
1355 "$NOPIE_CFLAGS" \
1356 ] \
7073b5b9
L
1357 [list \
1358 "Run pr22001-1" \
af2c48d8 1359 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed,-z,notext tmpdir/pr22001-1.so" \
6c0d3bde 1360 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1361 { pr22001-1b.c } \
1362 "pr22001-1" \
1363 "pass.out" \
1364 "$NOPIE_CFLAGS" \
1365 ] \
1366 [list \
1367 "Run pr22001-1 (PIE 1)" \
1368 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1369 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1370 { pr22001-1c.S } \
1371 "pr22001-1-pie-1" \
1372 "pass.out" \
1373 ] \
1374 [list \
1375 "Run pr22001-1 (PIE 2)" \
1376 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1377 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1378 { pr22001-1c.S } \
1379 "pr22001-1-pie-2" \
1380 "pass.out" \
1381 ] \
1382 [list \
1383 "Run pr22001-1 (PIC 1)" \
1384 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1385 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1386 { pr22001-1b.c } \
1387 "pr22001-1-pic-1" \
1388 "pass.out" \
1389 "-fPIC" \
1390 ] \
1391 [list \
1392 "Run pr22001-1 (PIC 2)" \
1393 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1394 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1395 { pr22001-1b.c } \
1396 "pr22001-1-pic-2" \
1397 "pass.out" \
1398 "-fPIC" \
1399 ] \
a5b4ee94
L
1400 [list \
1401 "Run pr21997-1" \
af2c48d8 1402 "$NOPIE_LDFLAGS -Wl,--no-as-needed,-z,notext tmpdir/pr21997-1.so" \
6c0d3bde 1403 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1404 { pr21997-1b.c } \
1405 "pr21997-1" \
1406 "pass.out" \
1407 "$NOPIE_CFLAGS" \
1408 ] \
1409 [list \
1410 "Run pr21997-1 (PIC 1)" \
1411 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1412 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1413 { pr21997-1b.c } \
1414 "pr21997-1-pic-1" \
1415 "pass.out" \
1416 "-fPIC" \
1417 ] \
1418 [list \
1419 "Run pr21997-1 (PIC 2)" \
1420 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1421 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1422 { pr21997-1b.c } \
1423 "pr21997-1-pic-2" \
1424 "pass.out" \
1425 "-fPIC" \
1426 ] \
1427 [list \
1428 "Run pr21997-1 (PIE 1)" \
1429 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1430 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1431 { pr21997-1c.S } \
1432 "pr21997-1-pie-1" \
1433 "pass.out" \
1434 ] \
1435 [list \
1436 "Run pr21997-1 (PIE 2)" \
1437 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1438 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1439 { pr21997-1c.S } \
1440 "pr21997-1-pie-2" \
1441 "pass.out" \
1442 ] \
451875b4
L
1443 [list \
1444 "Build pr22842" \
1445 "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \
6c0d3bde 1446 "-Wa,-mx86-used-note=yes" \
451875b4
L
1447 { pr22842b.S } \
1448 "pr22842" \
1449 "pass.out" \
1450 ] \
b9519cfe
L
1451 [list \
1452 "Run pr23997" \
1453 "" \
1454 "" \
1455 { ../ld-x86-64/pr23997a.s ../ld-x86-64/pr23997b.c \
1456 ../ld-x86-64/pr23997c.c } \
1457 "pr23997" \
1458 "pass.out" \
1459 ] \
00564418 1460 ]
7073b5b9 1461
25d28c91
L
1462 if { [at_least_gcc_version 5 0] } {
1463 run_ld_link_exec_tests [list \
1464 [list \
1465 "Run weakundef1 with PIE" \
1466 "-pie" \
6c0d3bde 1467 "-Wa,-mx86-used-note=yes" \
25d28c91
L
1468 { weakundef1.c } \
1469 "weakundef1pie" \
1470 "pass.out" \
1471 "-fPIE" \
1472 ] \
1473 ]
1474 }
00564418
L
1475}
1476
a3747075
L
1477if { !([istarget "i?86-*-linux*"]
1478 || [istarget "x86_64-*-linux*"]) } {
6c0d3bde 1479 set ASFLAGS "$saved_ASFLAGS"
a3747075
L
1480 return
1481}
1482
f604c2a2
L
1483run_ld_link_tests [list \
1484 [list \
1485 "basic PLT generation (non-PIC, -z now)" \
760b2893
L
1486 "-z now -melf_i386 --hash-style=sysv \
1487 -z noseparate-code tmpdir/libpltlib.so" \
f604c2a2
L
1488 "" \
1489 "--32" \
1490 {plt2.s} \
1491 {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1492 "plt2" \
1493 ] \
1494 [list \
1495 "basic PLT generation (PIC, -z now)" \
1496 "-z now -shared -melf_i386 tmpdir/libpltlib.so" \
1497 "" \
6c0d3bde 1498 "--32 -mx86-used-note=yes" \
f604c2a2
L
1499 {plt-pic.s} \
1500 {{objdump -dwr plt-pic2.dd}} \
1501 "plt-pic2.so" \
1502 ] \
abfa390d
L
1503 [list \
1504 "Build pr21626.so" \
1505 "-shared -melf_i386" \
1506 "" \
6c0d3bde 1507 "--32 -mx86-used-note=yes" \
abfa390d
L
1508 {property-x86-3.s} \
1509 "" \
1510 "pr21626.so" \
1511 ] \
1512 [list \
1513 "Build pr21626" \
1514 "-melf_i386 tmpdir/pr21626.so" \
1515 "" \
6c0d3bde 1516 "--32 -mx86-used-note=yes" \
abfa390d
L
1517 {start.s foo.s} \
1518 "" \
1519 "pr21626" \
1520 ] \
f604c2a2
L
1521]
1522
a3747075
L
1523# Linux only tests
1524run_dump_test "pltgot-1"
7c1e8d3e 1525run_dump_test "pltgot-2"
fff53dae 1526run_dump_test "pr20830"
ee2fdd6f
L
1527run_dump_test "ibt-plt-1"
1528run_dump_test "ibt-plt-2a"
1529run_dump_test "ibt-plt-2b"
1530run_dump_test "ibt-plt-2c"
1531run_dump_test "ibt-plt-2d"
1532run_dump_test "ibt-plt-3a"
1533run_dump_test "ibt-plt-3b"
1534run_dump_test "ibt-plt-3c"
1535run_dump_test "ibt-plt-3d"
6c0d3bde
L
1536
1537set ASFLAGS "$saved_ASFLAGS"
This page took 0.847998 seconds and 4 git commands to generate.