x86: Add -z cet-report=[none|warning|error]
[deliverable/binutils-gdb.git] / ld / testsuite / ld-x86-64 / x86-64.exp
CommitLineData
bffbf940 1# Expect script for ld-x86_64 tests
82704155 2# Copyright (C) 2002-2019 Free Software Foundation, Inc.
bffbf940 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
bffbf940 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
bffbf940
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.
bffbf940
JJ
20#
21
22# Test x86_64 linking; all types of relocs. This tests the assembler and
23# tools like objdump as well as the linker.
24
25if { !([istarget "x86_64-*-elf*"]
5a68afcf 26 || [istarget "x86_64-*-nacl*"]
bffbf940
JJ
27 || [istarget "x86_64-*-linux*"]) } {
28 return
29}
30
5a68afcf
RM
31if [istarget "*-*-nacl*"] {
32 set emul "elf_x86_64_nacl"
33} else {
34 set emul "elf_x86_64"
35}
36
6c0d3bde
L
37global ASFLAGS
38set saved_ASFLAGS "$ASFLAGS"
39set ASFLAGS "$ASFLAGS -mx86-used-note=no"
40
bffbf940 41# List contains test-items with 3 items followed by 2 lists:
897aea50
MR
42# 0:name 1:ld early options 2:ld late options 3:assembler options
43# 4:filenames of assembler files 5: action and options. 6: name of output file
bffbf940
JJ
44
45# Actions:
46# objdump: Apply objdump options on result. Compare with regex (last arg).
47# nm: Apply nm options on result. Compare with regex (last arg).
48# readelf: Apply readelf options on result. Compare with regex (last arg).
49
50set x86_64tests {
5a68afcf 51 {"Helper shared library (basic PLT test)"
897aea50 52 "-shared -melf_x86_64" "" "--64" {pltlib.s} {} "libpltlib.so"}
5a68afcf 53 {"basic PLT generation"
897aea50 54 "-melf_x86_64 tmpdir/libpltlib.so" "" "--64" {plt.s}
5a68afcf 55 {{objdump -drj.plt plt.pd}} "plt"}
e41b3a13 56 {"TLS -fpic -shared transitions"
7c9f387a
L
57 "-shared -melf_x86_64 --no-ld-generated-unwind-info \
58 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
bffbf940 59 "--64" {tlspic1.s tlspic2.s}
5db04b09 60 {{readelf -WSsrl tlspic.rd} {objdump -drj.text\ -Mintel64 tlspic.dd}
bffbf940
JJ
61 {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}}
62 "libtlspic.so"}
e2cbcd91 63 {"TLS -fpic -shared transitions with r15 as GOT base"
7c9f387a
L
64 "-shared -melf_x86_64 --no-ld-generated-unwind-info \
65 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
e2cbcd91
L
66 "--64 -mrelax-relocations=yes"
67 {tlspic3.s tlspic2.s}
68 {{readelf -WSsrl tlspic2.rd} {objdump -drj.text\ -Mintel64 tlspic2.dd}
69 {objdump -sj.got tlspic2.sd} {objdump -sj.tdata tlspic2.td}}
70 "libtlspic2.so"}
e41b3a13 71 {"TLS descriptor -fpic -shared transitions"
7c9f387a
L
72 "-shared -melf_x86_64 --no-ld-generated-unwind-info \
73 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
67a4f2b7
AO
74 "--64" {tlsdesc.s tlspic2.s}
75 {{readelf -WSsrld tlsdesc.rd} {objdump -drj.text tlsdesc.dd}
76 {objdump "-s -j.got -j.got.plt" tlsdesc.sd} {objdump -sj.tdata tlsdesc.td}
77 {objdump -drj.plt tlsdesc.pd}} "libtlsdesc.so"}
897aea50 78 {"Helper shared library" "-shared -melf_x86_64" ""
bffbf940
JJ
79 "--64" {tlslib.s} {} "libtlslib.so"}
80 {"TLS -fpic and -fno-pic exec transitions"
7c9f387a
L
81 "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
82 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
e41b3a13 83 "--64" {tlsbinpic.s tlsbin.s}
bffbf940
JJ
84 {{readelf -WSsrl tlsbin.rd} {objdump -drj.text tlsbin.dd}
85 {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}}
86 "tlsbin"}
e2cbcd91 87 {"TLS -fpic and -fno-pic exec transitions without PLT"
7c9f387a
L
88 "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
89 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
e2cbcd91
L
90 "-mrelax-relocations=yes --64" {tlsbinpic2.s tlsbin.s}
91 {{readelf -WSsrl tlsbin2.rd} {objdump -drj.text tlsbin2.dd}
92 {objdump -sj.got tlsbin2.sd} {objdump -sj.tdata tlsbin2.td}}
93 "tlsbin2"}
67a4f2b7 94 {"TLS descriptor -fpic and -fno-pic exec transitions"
7c9f387a
L
95 "-melf_x86_64 tmpdir/libtlslib.so --no-ld-generated-unwind-info \
96 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
e41b3a13 97 "--64" {tlsbindesc.s tlsbin.s}
67a4f2b7
AO
98 {{readelf -WSsrl tlsbindesc.rd} {objdump -drj.text tlsbindesc.dd}
99 {objdump -sj.got tlsbindesc.sd} {objdump -sj.tdata tlsbindesc.td}}
100 "tlsbindesc"}
101 {"TLS with global dynamic and descriptors"
7c9f387a
L
102 "-shared -melf_x86_64 --no-ld-generated-unwind-info \
103 -z noseparate-code -z max-page-size=0x200000 --hash-style=sysv" ""
e41b3a13 104 "--64" {tlsgdesc.s}
5db04b09 105 {{readelf -WSsrl tlsgdesc.rd} {objdump -drj.text\ -Mintel64 tlsgdesc.dd}}
67a4f2b7 106 "libtlsgdesc.so"}
897aea50 107 {"TLS in debug sections" "-melf_x86_64" ""
a45bb67d
JJ
108 "--64" {tlsg.s}
109 {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"}
897aea50 110 {"TLS GD->LE transition" "-melf_x86_64" ""
a3fadc9a
L
111 "--64" {tlsgd1.s}
112 {{objdump -dwr tlsgd1.dd}} "tlsgd1"}
897aea50 113 {"TLS LD->LE transition" "-melf_x86_64" ""
a3fadc9a
L
114 "--64" {tlsld1.s}
115 {{objdump -dwr tlsld1.dd}} "tlsld1"}
897aea50 116 {"TLS IE->LE transition" "-melf_x86_64" ""
dd1093aa
L
117 "--64" {tlsie1.s}
118 {{objdump -dwr tlsie1.dd}} "tlsie1"}
897aea50 119 {"Helper 64bit object 1" "-r -melf_x86_64" ""
39334f3a 120 "--64" {mixed1a.s} {} "libmixe1a.o"}
897aea50 121 {"Helper 32bit object 1" "-r -melf_i386" ""
39334f3a 122 "--32" {mixed1b.s} {} "libmixe1b.o"}
897aea50 123 {"Helper 64bit object 2" "-r -melf_x86_64" ""
39334f3a 124 "--64" {mixed2a.s} {} "libmixe2a.o"}
897aea50 125 {"Helper 32bit object 2" "-r -melf_i386" ""
39334f3a 126 "--32" {mixed2b.s} {} "libmixe2b.o"}
897aea50
MR
127 {"Split by file with 'l' flag on section."
128 "-split-by-file -r -melf_x86_64" ""
3dbcc61d
NC
129 "--64" {split-by-file1.s split-by-file2.s}
130 {{readelf -SW split-by-file.rd}} "split-by-file.o"}
897aea50 131 {"TLS X32 IE->LE transition" "-melf32_x86_64" ""
4a4c5f25
L
132 "--x32" {tlsie4.s}
133 {{objdump -dwr tlsie4.dd}} "tlsie4"}
897aea50 134 {"TLS X32 GD->LE transition" "-melf32_x86_64" ""
52bc799a
L
135 "--x32" {tlsgd4.s}
136 {{objdump -dwr tlsgd4.dd}} "tlsgd4"}
897aea50 137 {"Helper TLS GD->IE transition DSO" "-shared -melf_x86_64" ""
52bc799a 138 "--64" {tlsgd5b.s} {} "libtlsgd5.so"}
897aea50 139 {"TLS GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
52bc799a 140 "--64" {tlsgd5a.s}
e2cbcd91
L
141 {{objdump -dwr tlsgd5.dd}} "tlsgd5a"}
142 {"TLS GD->IE transition without PLT"
143 "-melf_x86_64 tmpdir/libtlsgd5.so" ""
144 "-mrelax-relocations=yes --64" {tlsgd5c.s}
145 {{objdump -dwr tlsgd5.dd}} "tlsgd5b"}
897aea50 146 {"Helper TLS X32 GD->IE transition DSO" "-shared -melf32_x86_64" ""
52bc799a 147 "--x32" {tlsgd6b.s} {} "libtlsgd6.so"}
897aea50 148 {"TLS X32 GD->IE transition" "-melf32_x86_64 tmpdir/libtlsgd6.so" ""
52bc799a 149 "--x32" {tlsgd6a.s}
e2cbcd91
L
150 {{objdump -dwr tlsgd6.dd}} "tlsgd6a"}
151 {"TLS X32 GD->IE transition without PLT"
152 "-melf32_x86_64 tmpdir/libtlsgd6.so" ""
153 "-mrelax-relocations=yes --x32" {tlsgd6c.s}
154 {{objdump -dwr tlsgd6.dd}} "tlsgd6b"}
897aea50 155 {"TLS X32 LD->LE transition" "-melf32_x86_64" ""
52bc799a
L
156 "--x32" {tlsld2.s}
157 {{objdump -dwr tlsld2.dd}} "tlsld2"}
5c98a14e
JJ
158 {"TLS -mcmodel=large GD->LE transition" "-melf_x86_64" ""
159 "--64" {tlsgd7.s}
160 {{objdump -dwr tlsgd7.dd}} "tlsgd7"}
161 {"TLS -mcmodel=large LD->LE transition" "-melf_x86_64" ""
162 "--64" {tlsld3.s}
163 {{objdump -dwr tlsld3.dd}} "tlsld3"}
e2cbcd91
L
164 {"TLS -mcmodel=large LD->LE transition with r15 as GOT base"
165 "-melf_x86_64" ""
166 "--64" {tlsld4.s}
167 {{objdump -dwr tlsld4.dd}} "tlsld4"}
168 {"TLS LD->LE transition without PLT"
169 "-melf_x86_64" ""
170 "--64 -mrelax-relocations=yes"
171 {tlsld5.s}
172 {{objdump -dwr tlsld5.dd}} "tlsld5"}
173 {"TLS X32 LD->LE transition without PLT" "-melf32_x86_64" ""
174 "--x32 -mrelax-relocations=yes"
175 {tlsld6.s}
176 {{objdump -dwr tlsld6.dd}} "tlsld6"}
5c98a14e
JJ
177 {"TLS -mcmodel=large GD->IE transition" "-melf_x86_64 tmpdir/libtlsgd5.so" ""
178 "--64" {tlsgd8.s}
179 {{objdump -dwrj.text tlsgd8.dd}} "tlsgd8"}
e2cbcd91
L
180 {"TLS -mcmodel=large GD->LE transition with r15 as GOT base"
181 "-melf_x86_64" ""
182 "--64" {tlsgd9.s}
183 {{objdump -dwr tlsgd9.dd}} "tlsgd9"}
184 {"TLS -mcmodel=large GD->IE transition with r15 as GOT base"
185 "-melf_x86_64 tmpdir/libtlsgd5.so" ""
186 "--64" {tlsgd10.s}
187 {{objdump -dwrj.text tlsgd10.dd}} "tlsgd10"}
188 {"TLS GD->LE transition without PLT"
189 "-melf_x86_64" ""
190 "--64" {tlsgd11.s}
191 {{objdump -dwr tlsgd11.dd}} "tlsgd11"}
192 {"TLS X32 GD->LE transition without PLT"
193 "-melf32_x86_64" ""
194 "--x32" {tlsgd14.s}
195 {{objdump -dwr tlsgd14.dd}} "tlsgd14"}
897aea50
MR
196 {"build 32-bit object with 33 locals" "-melf_x86_64 -e 0" "" "--32" {32bit.s} {{ ld incompatible.l }} "dummy" }
197 {"build 64-bit object" "-melf_x86_64 -e 0 --defsym foo=1" "" "--64" {64bit.s} {} "dummy" }
198 {"link mixed objects" "-melf_x86_64 -e 0 tmpdir/32bit.o tmpdir/64bit.o" "" "" {} { { ld incompatible.l } } "mixed"}
29a9f53e
L
199 {"PR ld/17313 (1)" "-melf_x86_64" ""
200 "--64" {dummy.s} {} ""}
201 {"PR ld/17313 (2)" "-melf_x86_64 -shared --just-symbols=tmpdir/dummy.o" ""
202 "--64" {lea1.s} {} "libpr17313.so"}
c8831961
L
203 {"PR ld/17306 (1)" "-melf_x86_64" ""
204 "--64" {pr17306b.s} {} ""}
205 {"PR ld/17306 (2)" "-melf_x86_64 -shared -Bsymbolic --just-symbols=tmpdir/pr17306b.o" ""
206 "--64" {pr17306a.s} {} "libpr17306.so"}
f7483970
L
207 {"PR ld/17709 (1)" "-melf_x86_64 -shared" ""
208 "--64" {pr17709a.s} {} "libpr17709.so"}
209 {"PR ld/17709 (2)" "-melf_x86_64 tmpdir/libpr17709.so" ""
210 "--64" {pr17709b.s} {{readelf -rW pr17709.rd}} "pr17709"}
4e0c91e4
L
211 {"Build pr19827a.o" "" ""
212 "--64" { pr19827a.S }}
213 {"Build pr19827b.so" "-melf_x86_64 -shared" ""
214 "--64" { pr19827b.S } {} "pr19827b.so"}
215 {"Build pr19827" "-melf_x86_64 -pie tmpdir/pr19827a.o tmpdir/pr19827b.so" ""
216 "--64" { dummy.s } {{readelf {-rW} pr19827.rd}} "pr19827"}
217 {"Build pr19827.so" "-melf_x86_64 -shared -Bsymbolic" ""
218 "--64" { pr19827a.S } {{readelf {-rW} pr19827.rd}} "pr19827.so"}
338c190a
L
219 {"Build pr19969.so" "-melf_x86_64 -shared" ""
220 "--64" { pr19969a.S } {} "pr19969.so"}
d8457a04
L
221 {"Build pr20550a.o" "" ""
222 "--64" { pr20550a.s }}
223 {"Build pr20550b.so" "-melf_x86_64 -shared" ""
224 "--64" { pr20550b.s } {} "pr20550b.so"}
225 {"Build pr20550" "-melf_x86_64 -pie tmpdir/pr20550a.o tmpdir/pr20550b.so" ""
226 "--64" { dummy.s } {} "pr20550"}
5a68afcf
RM
227}
228
229# So as to avoid rewriting every last test case here in a nacl variant,
230# we use black magic to massage the generic cases into nacl-variant cases.
231if [istarget "*-*-nacl*"] {
232 set emul elf_x86_64_nacl
233
234 set lhs {elf(32)?_(i386|x86_64)[[:>:]]}
235 set rhs {&_nacl}
236
237 # Change all the -melf_x86_64 to -melf_x86_64_nacl so linking can succeed.
238 regsub -all -- $lhs $x86_64tests $rhs x86_64tests
239
7c9f387a
L
240 set zlhs {-z noseparate-code -z max-page-size=0x200000}
241 set zrhs {}
242
243 # Remove -z max-page-size=0x200000 -z noseparate-code since they
244 # generate different addresses for nacl targets.
245 regsub -all -- $zlhs $x86_64tests $zrhs x86_64tests
246
5a68afcf
RM
247 # Same, applied to all the run_dump_test cases.
248 set options_regsub(ld) [list $lhs $rhs]
249
250 # The section/segment layout differs too much for the vanilla
251 # readelf output files to match. So massage the cases so that
252 # they refer to a foo-nacl.rd file instead of a foo.rd file.
253 regsub -all -- {([a-z0-9]+)\.rd} $x86_64tests {\1-nacl.rd} x86_64tests
254
255 # Likewise for PLTs.
256 regsub -all -- {([a-z0-9]+)\.pd} $x86_64tests {\1-nacl.pd} x86_64tests
257} else {
258 set emul elf_x86_64
bffbf940
JJ
259}
260
261run_ld_link_tests $x86_64tests
ac2aa337 262
39334f3a
L
263global link_output
264global ld
265
b51176f1 266set test_name "Mixed x86_64 and i386 input test 1"
39334f3a 267set test mixed1
d9816402 268if { ![ld_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
64b384e1 269 if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
5a68afcf 270 pass "$test_name"
39334f3a 271 } {
5a68afcf 272 fail "$test_name"
39334f3a
L
273 }
274}
275
b51176f1 276set test_name "Mixed x86_64 and i386 input test 2"
39334f3a 277set test mixed2
d9816402 278if { ![ld_link $ld tmpdir/$test "-m$emul tmpdir/${test}a.o tmpdir/${test}b.o"] } {
64b384e1 279 if [string match "*i386* architecture of input file `tmpdir/${test}b.o' is incompatible with i386:x86-64* output*" $link_output] {
5a68afcf 280 pass "$test_name"
39334f3a 281 } {
5a68afcf 282 fail "$test_name"
39334f3a
L
283 }
284}
285
ac2aa337 286run_dump_test "abs"
8a9036a4 287run_dump_test "abs-l1om"
43083a50 288run_dump_test "apic"
ac2aa337
JB
289run_dump_test "pcrel8"
290run_dump_test "pcrel16"
dd1093aa
L
291run_dump_test "tlsgd2"
292run_dump_test "tlsgd3"
e2cbcd91
L
293run_dump_test "tlsgd12"
294run_dump_test "tlsgd13"
dd1093aa
L
295run_dump_test "tlsie2"
296run_dump_test "tlsie3"
41bed6dd
L
297run_dump_test "hidden1"
298run_dump_test "hidden2"
299run_dump_test "hidden3"
e3c0e327
L
300run_dump_test "hidden4"
301run_dump_test "hidden5"
41bed6dd
L
302run_dump_test "protected1"
303run_dump_test "protected2"
8a9036a4 304run_dump_test "protected2-l1om"
41bed6dd 305run_dump_test "protected3"
8a9036a4 306run_dump_test "protected3-l1om"
bdb892b9
L
307run_dump_test "protected4"
308run_dump_test "protected5"
e3c0e327 309run_dump_test "protected6a"
889c2a67 310run_dump_test "protected6b"
3d949995
L
311run_dump_test "protected7a"
312run_dump_test "protected7b"
73784fa5 313run_dump_test "protected8"
9b769489 314run_dump_test "tlsle1"
1d85728f 315run_dump_test "tlspie1"
e2cbcd91
L
316run_dump_test "tlspie2a"
317run_dump_test "tlspie2b"
318run_dump_test "tlspie2c"
6f8bcf84 319run_dump_test "unique1"
a7b16ceb 320run_dump_test "nogot1"
0629d0af 321run_dump_test "nogot2"
56d4289c 322run_dump_test "discarded1"
2abca860 323run_dump_test "pr12718"
a81aeffc 324run_dump_test "pr12921"
aed64b35 325run_dump_test "pr13947"
2fe0fd06
L
326run_dump_test "pr12570a"
327run_dump_test "pr12570b"
17d6eea5 328run_dump_test "pr14215"
8981c88a 329run_dump_test "pr14207"
553d1284 330run_dump_test "gotplt1"
6333bc0d 331run_dump_test "pie1"
126697d1 332run_dump_test "pie2"
c5bb8910
L
333run_dump_test "pie3"
334run_dump_test "pie3-nacl"
03f2309a 335run_dump_test "pic1"
b8871f35
L
336run_dump_test "largecomm-1a"
337run_dump_test "largecomm-1b"
338run_dump_test "largecomm-1c"
339run_dump_test "largecomm-1d"
340run_dump_test "largecomm-1e"
341run_dump_test "largecomm-1f"
3ab94f96
L
342run_dump_test "pr19539a"
343run_dump_test "pr19539b"
4c10bbaa
L
344run_dump_test "pr19807-1a"
345run_dump_test "pr19807-1b"
346run_dump_test "pr19807-2a"
347run_dump_test "pr19807-2b"
348run_dump_test "pr19807-2c"
349run_dump_test "pr19807-2d"
350run_dump_test "pr19807-2e"
338c190a 351run_dump_test "pr19969"
2168b268
L
352run_dump_test "pr20093-1"
353run_dump_test "pr20093-2"
73caa85d 354run_dump_test "property-x86-3"
92f7d783
L
355run_dump_test "property-x86-4a"
356run_dump_test "property-x86-4b"
654f3b6a
L
357run_dump_test "property-x86-3-x32"
358run_dump_test "property-x86-4a-x32"
359run_dump_test "property-x86-4b-x32"
90c745dc
L
360run_dump_test "property-x86-5"
361run_dump_test "property-x86-5-x32"
ee2fdd6f
L
362run_dump_test "property-x86-ibt1a"
363run_dump_test "property-x86-ibt1b"
364run_dump_test "property-x86-ibt1a-x32"
365run_dump_test "property-x86-ibt1b-x32"
366run_dump_test "property-x86-ibt2"
367run_dump_test "property-x86-ibt2-x32"
368run_dump_test "property-x86-ibt3a"
369run_dump_test "property-x86-ibt3b"
370run_dump_test "property-x86-ibt3a-x32"
371run_dump_test "property-x86-ibt3b-x32"
372run_dump_test "property-x86-ibt4"
373run_dump_test "property-x86-ibt4-x32"
374run_dump_test "property-x86-ibt5"
375run_dump_test "property-x86-ibt5-x32"
48580982
L
376run_dump_test "property-x86-shstk1a"
377run_dump_test "property-x86-shstk1b"
378run_dump_test "property-x86-shstk1a-x32"
379run_dump_test "property-x86-shstk1b-x32"
380run_dump_test "property-x86-shstk2"
381run_dump_test "property-x86-shstk2-x32"
382run_dump_test "property-x86-shstk3a"
383run_dump_test "property-x86-shstk3b"
384run_dump_test "property-x86-shstk3a-x32"
385run_dump_test "property-x86-shstk3b-x32"
386run_dump_test "property-x86-shstk4"
387run_dump_test "property-x86-shstk4-x32"
388run_dump_test "property-x86-shstk5"
389run_dump_test "property-x86-shstk5-x32"
233a0083
L
390run_dump_test "property-x86-cet1"
391run_dump_test "property-x86-cet1-x32"
392run_dump_test "property-x86-cet2a"
393run_dump_test "property-x86-cet2a-x32"
394run_dump_test "property-x86-cet2b"
395run_dump_test "property-x86-cet2b-x32"
396run_dump_test "property-x86-cet3a"
397run_dump_test "property-x86-cet3a-x32"
398run_dump_test "property-x86-cet3b"
399run_dump_test "property-x86-cet3b-x32"
400run_dump_test "property-x86-cet4a"
401run_dump_test "property-x86-cet4a-x32"
402run_dump_test "property-x86-cet4b"
403run_dump_test "property-x86-cet4b-x32"
404run_dump_test "property-x86-cet5a"
405run_dump_test "property-x86-cet5a-x32"
406run_dump_test "property-x86-cet5b"
407run_dump_test "property-x86-cet5b-x32"
408run_dump_test "property-x86-cet6"
409run_dump_test "property-x86-cet6-x32"
9593aade 410run_dump_test "pr21884"
34c4758c 411run_dump_test "pr21884-nacl"
0e30d991 412run_dump_test "pr22071"
0a27fed7
L
413run_dump_test "pr22115-1a"
414run_dump_test "pr22115-1a-x32"
415run_dump_test "pr22115-1b"
416run_dump_test "pr22115-1b-x32"
417run_dump_test "pr22115-1c"
418run_dump_test "pr22115-1c-x32"
419run_dump_test "pr22115-1d"
420run_dump_test "pr22115-1d-x32"
5e5e02ae 421run_dump_test "pr22135"
cd048363
L
422run_dump_test "pr22782a"
423run_dump_test "pr22782b"
941036f4 424run_dump_test "pr23189"
97373b2e 425run_dump_test "pr23194"
b638b5d5
L
426run_dump_test "pr23324a"
427run_dump_test "pr23324b"
56ad703d
L
428run_dump_test "pr23372a"
429run_dump_test "pr23372a-x32"
430run_dump_test "pr23372b"
431run_dump_test "pr23372b-x32"
a9eafb08
L
432run_dump_test "pr23372c"
433run_dump_test "pr23372c-x32"
434run_dump_test "pr23372d"
435run_dump_test "pr23372d-x32"
f7309df2
L
436run_dump_test "pr23486a"
437run_dump_test "pr23486a-x32"
438run_dump_test "pr23486b"
439run_dump_test "pr23486b-x32"
a9eafb08
L
440run_dump_test "pr23486c"
441run_dump_test "pr23486c-x32"
442run_dump_test "pr23486d"
443run_dump_test "pr23486d-x32"
e60f4d3b 444run_dump_test "pr23854"
b44ee3a8
L
445run_dump_test "pr23930"
446run_dump_test "pr23930-x32"
83924b38
L
447run_dump_test "pr24151a"
448run_dump_test "pr24151a-x32"
44b27f95
L
449run_dump_test "pr24322a"
450run_dump_test "pr24322a-x32"
451run_dump_test "pr24322b"
452run_dump_test "pr24322b-x32"
25d17eb4 453
5a68afcf 454if { ![istarget "x86_64-*-linux*"] && ![istarget "x86_64-*-nacl*"]} {
25d17eb4
L
455 return
456}
457
5a68afcf 458if ![ld_assemble $as "--x32 $srcdir/$subdir/start.s" tmpdir/startx32.o] {
889a4d3e
L
459 unresolved "Build ILP32 start.o"
460 return
461}
462
5a68afcf 463if ![ld_assemble $as "--32 $srcdir/$subdir/start.s" tmpdir/start32.o] {
889a4d3e
L
464 unresolved "Build ia32 start.o"
465 return
466}
467
5a68afcf 468if ![ld_assemble $as "--64 $srcdir/$subdir/start.s" tmpdir/start64.o] {
889a4d3e
L
469 unresolved "Build LP64 start.o"
470 return
471}
472
5a68afcf 473if ![ld_assemble $as "--x32 $srcdir/$subdir/foo.s" tmpdir/foox32.o] {
889a4d3e
L
474 unresolved "Build ILP32 foo.o"
475 return
476}
477
5a68afcf 478if ![ld_assemble $as "--32 $srcdir/$subdir/foo.s" tmpdir/foo32.o] {
889a4d3e
L
479 unresolved "Build ia32 foo.o"
480 return
481}
482
5a68afcf 483if ![ld_assemble $as "--64 $srcdir/$subdir/foo.s" tmpdir/foo64.o] {
889a4d3e
L
484 unresolved "Build LP64 foo.o"
485 return
486}
487
25d17eb4 488run_dump_test "compressed1"
889a4d3e
L
489run_dump_test "ilp32-1"
490run_dump_test "ilp32-2"
491run_dump_test "ilp32-3"
82e96e07 492run_dump_test "ilp32-4"
5a68afcf 493run_dump_test "ilp32-4-nacl"
248775ba 494run_dump_test "ilp32-5"
d7921315
L
495run_dump_test "ilp32-6"
496run_dump_test "ilp32-7"
497run_dump_test "ilp32-8"
498run_dump_test "ilp32-9"
df4f9443 499run_dump_test "ilp32-10"
8cf0d2dd 500run_dump_test "ilp32-11"
889a4d3e
L
501run_dump_test "ia32-1"
502run_dump_test "ia32-2"
503run_dump_test "ia32-3"
504run_dump_test "lp64-1"
505run_dump_test "lp64-2"
506run_dump_test "lp64-3"
64d25c44
L
507run_dump_test "pr13082-1a"
508run_dump_test "pr13082-1b"
509run_dump_test "pr13082-2a"
510run_dump_test "pr13082-2b"
511run_dump_test "pr13082-3a"
512run_dump_test "pr13082-3b"
bae420ef
L
513run_dump_test "pr13082-3c"
514run_dump_test "pr13082-3d"
64d25c44
L
515run_dump_test "pr13082-4a"
516run_dump_test "pr13082-4b"
517run_dump_test "pr13082-5a"
518run_dump_test "pr13082-5b"
519run_dump_test "pr13082-6a"
520run_dump_test "pr13082-6b"
80d87326
L
521run_dump_test "lea1a"
522run_dump_test "lea1b"
523run_dump_test "lea1c"
524run_dump_test "lea1d"
525run_dump_test "lea1e"
526run_dump_test "lea1f"
daa67607
L
527run_dump_test "lea1g"
528run_dump_test "lea1h"
529run_dump_test "lea1i"
530run_dump_test "lea1j"
531run_dump_test "lea1k"
532run_dump_test "lea1l"
3f65f599
L
533run_dump_test "mov1a"
534run_dump_test "mov1b"
535run_dump_test "mov1c"
536run_dump_test "mov1d"
02e2aef8
L
537run_dump_test "mov2a"
538run_dump_test "mov2b"
539run_dump_test "mov2c"
540run_dump_test "mov2d"
56ceb5b5
L
541run_dump_test "load1a"
542run_dump_test "load1b"
543run_dump_test "load1c"
544run_dump_test "load1d"
caa65211
L
545run_dump_test "load1a-nacl"
546run_dump_test "load1b-nacl"
547run_dump_test "load1c-nacl"
548run_dump_test "load1d-nacl"
2856a627 549run_dump_test "load2"
caa65211
L
550run_dump_test "call1a"
551run_dump_test "call1b"
552run_dump_test "call1c"
553run_dump_test "call1d"
554run_dump_test "call1e"
555run_dump_test "call1f"
556run_dump_test "call1g"
557run_dump_test "call1h"
558run_dump_test "call1i"
1952c5cd
L
559run_dump_test "pr17935-1"
560run_dump_test "pr17935-2"
b19a8f85 561run_dump_test "pr18160"
875b5b9d 562run_dump_test "pr18176"
8efa2874 563run_dump_test "pr18801"
13a2df29 564run_dump_test "pr18815"
9865bd0d
L
565run_dump_test "pr19013"
566run_dump_test "pr19013-x32"
567run_dump_test "pr19013-nacl"
7963511f 568run_dump_test "pr19162"
7b7e7f1d 569run_dump_test "pr19175"
6ba2af25 570run_dump_test "pr18591"
e20365c5 571run_dump_test "pr19615"
aec6b87e
L
572run_dump_test "pr19636-1a"
573run_dump_test "pr19636-1b"
574run_dump_test "pr19636-1c"
575run_dump_test "pr19636-1d"
576run_dump_test "pr19636-1e"
577run_dump_test "pr19636-1f"
578run_dump_test "pr19636-1g"
853ee16f
L
579run_dump_test "pr19636-1h"
580run_dump_test "pr19636-1i"
581run_dump_test "pr19636-1j"
aec6b87e
L
582run_dump_test "pr19636-2a"
583run_dump_test "pr19636-2b"
584run_dump_test "pr19636-2c"
585run_dump_test "pr19636-2d"
586run_dump_test "pr19636-2d-nacl"
587run_dump_test "pr19636-2e"
588run_dump_test "pr19636-2f"
589run_dump_test "pr19636-2g"
590run_dump_test "pr19636-2h"
591run_dump_test "pr19636-2i"
853ee16f
L
592run_dump_test "pr19636-2j"
593run_dump_test "pr19636-2k"
594run_dump_test "pr19636-2l"
595run_dump_test "pr19636-2m"
aec6b87e
L
596run_dump_test "pr19636-3a"
597run_dump_test "pr19636-3b"
598run_dump_test "pr19636-3c"
b8871f35 599run_dump_test "pr19645"
bae420ef
L
600run_dump_test "pr19609-1a"
601run_dump_test "pr19609-1b"
602run_dump_test "pr19609-1c"
603run_dump_test "pr19609-1d"
604run_dump_test "pr19609-1e"
605run_dump_test "pr19609-1f"
606run_dump_test "pr19609-1g"
607run_dump_test "pr19609-1h"
608run_dump_test "pr19609-1i"
609run_dump_test "pr19609-1j"
610run_dump_test "pr19609-1k"
611run_dump_test "pr19609-1l"
612run_dump_test "pr19609-1m"
613run_dump_test "pr19609-2a"
614run_dump_test "pr19609-2b"
615run_dump_test "pr19609-2c"
616run_dump_test "pr19609-2d"
617run_dump_test "pr19609-3a"
618run_dump_test "pr19609-3b"
619run_dump_test "pr19609-4a"
620run_dump_test "pr19609-4b"
621run_dump_test "pr19609-4c"
622run_dump_test "pr19609-4d"
623run_dump_test "pr19609-4e"
624run_dump_test "pr19609-5a"
625run_dump_test "pr19609-5b"
626run_dump_test "pr19609-5c"
627run_dump_test "pr19609-5d"
628run_dump_test "pr19609-5e"
629run_dump_test "pr19609-6a"
630run_dump_test "pr19609-6b"
631run_dump_test "pr19609-6c"
632run_dump_test "pr19609-6d"
633run_dump_test "pr19609-7a"
634run_dump_test "pr19609-7b"
635run_dump_test "pr19609-7c"
636run_dump_test "pr19609-7d"
2df3368d
L
637run_dump_test "pr19939a"
638run_dump_test "pr19939b"
87d455c0 639run_dump_test "pr19719"
233cc9c1
L
640run_dump_test "pr20253-1a"
641run_dump_test "pr20253-1b"
642run_dump_test "pr20253-1c"
643run_dump_test "pr20253-1d"
644run_dump_test "pr20253-1e"
645run_dump_test "pr20253-1f"
646run_dump_test "pr20253-1g"
647run_dump_test "pr20253-1h"
648run_dump_test "pr20253-1i"
649run_dump_test "pr20253-1j"
650run_dump_test "pr20253-1k"
651run_dump_test "pr20253-1l"
652run_dump_test "pr20253-3"
653run_dump_test "pr20253-4a"
654run_dump_test "pr20253-4b"
655run_dump_test "pr20253-4c"
656run_dump_test "pr20253-4d"
657run_dump_test "pr20253-4e"
658run_dump_test "pr20253-4f"
659run_dump_test "pr20253-5a"
660run_dump_test "pr20253-5b"
97d343d4 661run_dump_test "tlsdesc2"
d7de6408 662run_dump_test "pr22048"
347a8774 663run_dump_test "pr22929"
aec6b87e
L
664
665proc undefined_weak {cflags ldflags} {
666 set testname "Undefined weak symbol"
667 if { ![ string match "" $cflags$ldflags] } {
668 set testname "$testname ($cflags $ldflags)"
669 }
670
074f6066
L
671 if { [string match "*-fPIE*" $cflags]
672 && ![string match "*nodynamic-undefined-weak*" $ldflags] } {
aec6b87e
L
673 set weak_symbol "Weak defined"
674 } else {
675 set weak_symbol "Weak undefined"
676 }
677
678 run_cc_link_tests [list \
679 [list \
680 "Build libpr19704a.so" \
681 "-shared -Wl,-soname,libpr19704.so" \
682 "" \
683 { dummy.s } \
684 {} \
685 "libpr19704a.so" \
686 ] \
687 [list \
688 "Build libpr19704b.so" \
689 "-shared -Wl,-soname,libpr19704.so" \
690 "-fPIC" \
691 { pr19704b.c } \
692 {} \
693 "libpr19704b.so" \
694 ] \
695 ]
696
697 exec cp tmpdir/libpr19704a.so tmpdir/libpr19704.so
698
982c6f26 699 run_ld_link_exec_tests [list \
aec6b87e
L
700 [list \
701 "Run pr19704" \
d9816402 702 "-Wl,--no-as-needed,-R,tmpdir $ldflags tmpdir/libpr19704.so" \
aec6b87e
L
703 "" \
704 { pr19704a.c } \
705 "pr19704" \
706 "pr19704.out" \
707 "$cflags" \
708 ] \
709 ]
710
711 exec cp tmpdir/libpr19704b.so tmpdir/libpr19704.so
712
713 set exec_output [run_host_cmd tmpdir/pr19704 ""]
714 if {![string match $weak_symbol $exec_output]} {
715 fail $testname
716 } else {
717 pass $testname
718 }
719}
adc7571d 720
ea9fb8b3
L
721# Add $PLT_CFLAGS if PLT is expected.
722global PLT_CFLAGS
a7eaf017
L
723# Add $NOPIE_CFLAGS and $NOPIE_LDFLAGS if non-PIE is required.
724global NOPIE_CFLAGS NOPIE_LDFLAGS
ea9fb8b3 725
56d4d7f2
L
726# Must be native with the C compiler
727if { [isnative] && [which $CC] != 0 } {
adc7571d
L
728 run_cc_link_tests {
729 {"Helper X32 DSO from x86-64 object" "" "-m64 -fPIC -g"
730 {simple.c} {} "libsimple.a"}
731 }
732
733 set convertx32 "$objcopy -O elf32-x86-64 tmpdir/simple.o tmpdir/simple-x32.o"
734 send_log "$convertx32\n"
735 set got [remote_exec host "$convertx32"]
736 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
737 send_log "$got\n"
738 fail "Convert x86-64 object to x32"
739 return
740 }
741
742 run_ld_link_tests {
743 {"X32 DSO from x86-64 object"
6c0d3bde
L
744 "-shared -melf32_x86_64 tmpdir/simple-x32.o" ""
745 "--x32 -mx86-used-note=yes"
adc7571d
L
746 {dummy.s} {{readelf {-s --wide} x86-64-x32.rd}} "x86-64-x32"}
747 }
76e7af5f
L
748
749 run_cc_link_tests [list \
750 [list \
751 "Build plt-lib.so" \
752 "-shared" \
6c0d3bde 753 "-fPIC -Wa,-mx86-used-note=yes" \
76e7af5f
L
754 { plt-lib.c } \
755 {} \
756 "libplt-lib.so" \
757 ] \
758 [list \
759 "Build libplt-main1.a" \
760 "" \
6c0d3bde 761 "-fPIC -Wa,-mrelax-relocations=yes,-mx86-used-note=yes" \
76e7af5f
L
762 { plt-main1.c } \
763 {{readelf {-Wr} plt-main1.rd}} \
764 "libplt-main1.a" \
765 ] \
766 [list \
767 "Build libplt-main2.a" \
768 "" \
6c0d3bde 769 "-fPIC -Wa,-mrelax-relocations=yes,-mx86-used-note=yes" \
76e7af5f
L
770 { plt-main2.c } \
771 {{readelf {-Wr} plt-main2.rd}} \
772 "libplt-main2.a" \
773 ] \
774 [list \
775 "Build libplt-main3.a" \
776 "" \
6c0d3bde 777 "-fPIC -Wa,-mrelax-relocations=yes,-mx86-used-note=yes $PLT_CFLAGS" \
76e7af5f
L
778 { plt-main3.c } \
779 {{readelf {-Wr} plt-main3.rd}} \
780 "libplt-main3.a" \
781 ] \
782 [list \
783 "Build libplt-main4.a" \
784 "" \
6c0d3bde 785 "-fPIC -Wa,-mrelax-relocations=yes,-mx86-used-note=yes $PLT_CFLAGS" \
76e7af5f
L
786 { plt-main4.c } \
787 {{readelf {-Wr} plt-main4.rd}} \
788 "libplt-main4.a" \
789 ] \
dd7e64d4
L
790 [list \
791 "Build plt-main" \
792 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
793 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
794 "" \
795 { plt-main5.c } \
796 {{readelf {-Wr} plt-main.rd}} \
797 "plt-main" \
798 ] \
799 [list \
800 "Build plt-main with PIE" \
801 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
802 tmpdir/plt-main4.o tmpdir/libplt-lib.so -pie" \
6c0d3bde 803 "-fPIC -Wa,-mx86-used-note=yes" \
dd7e64d4
L
804 { plt-main5.c } \
805 {{readelf {-Wr} plt-main.rd}} \
806 "plt-main" \
807 ] \
9a926d55
L
808 [list \
809 "Build copyreloc-lib.so" \
810 "-shared" \
6c0d3bde 811 "-fPIC -Wa,-mx86-used-note=yes" \
9a926d55
L
812 { copyreloc-lib.c } \
813 {} \
814 "copyreloc-lib.so" \
815 ] \
816 [list \
46175b4e
L
817 "Build libcopyreloc-main.a" \
818 "" \
6c0d3bde 819 "-Wa,-mx86-used-note=yes" \
01bbed2a 820 { copyreloc-main.S } \
46175b4e
L
821 {} \
822 "libcopyreloc-main.a" \
823 ] \
824 [list \
825 "Build copyreloc-main with PIE without -fPIE (1)" \
826 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
6c0d3bde 827 "-Wa,-mx86-used-note=yes" \
46175b4e 828 { dummy.s } \
9a926d55
L
829 {{readelf {-Wr} copyreloc-main1.rd}} \
830 "copyreloc-main" \
831 ] \
832 [list \
833 "Build copyreloc-main with PIE without -fPIE (2)" \
46175b4e 834 "tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so -pie" \
6c0d3bde 835 "-Wa,-mx86-used-note=yes" \
46175b4e 836 { dummy.s } \
9a926d55
L
837 {{readelf {-Wr} copyreloc-main2.rd}} \
838 "copyreloc-main" \
839 ] \
bc696fd5
L
840 [list \
841 "Build pr17689.so" \
842 "-shared" \
6c0d3bde 843 "-fPIC -Wa,-mx86-used-note=yes" \
bc696fd5
L
844 { pr17689a.c } \
845 {} \
846 "pr17689.so" \
847 ] \
25070364
L
848 [list \
849 "Build pr17689now.so with -z now" \
850 "-shared -Wl,-z,now" \
6c0d3bde 851 "-fPIC -Wa,-mx86-used-note=yes" \
25070364
L
852 { pr17689a.c } \
853 {{readelf {-Wr} pr17689now.rd}} \
854 "pr17689now.so" \
855 ] \
bc696fd5 856 [list \
37ce0cc4
L
857 "Build pr17689b.o" \
858 "" \
6c0d3bde 859 "-Wa,-mx86-used-note=yes" \
bc696fd5 860 { pr17689b.S } \
37ce0cc4
L
861 {} \
862 ] \
863 [list \
864 "Build pr17689 with PIE without -fPIE" \
865 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
6c0d3bde 866 "-Wa,-mx86-used-note=yes" \
37ce0cc4 867 { dummy.s } \
bc696fd5
L
868 {{readelf {-Wr} pr17689.rd}} \
869 "pr17689" \
870 ] \
25070364
L
871 [list \
872 "Build pr17689 with PIE -z now without -fPIE" \
37ce0cc4 873 "tmpdir/pr17689b.o tmpdir/pr17689.so -pie -Wl,-z,now" \
6c0d3bde 874 "-Wa,-mx86-used-note=yes" \
37ce0cc4 875 { dummy.s } \
25070364
L
876 {{readelf {-Wr} pr17689now.rd}} \
877 "pr17689now" \
878 ] \
9d1d54d5
L
879 [list \
880 "Build pr17827 with PIE without -fPIE" \
37ce0cc4 881 "-Wl,--as-needed tmpdir/pr17689b.o tmpdir/pr17689.so -pie" \
6c0d3bde 882 "-Wa,-mx86-used-note=yes" \
37ce0cc4 883 { dummy.s } \
9d1d54d5
L
884 {{readelf {-Wr} pr17827.rd}} \
885 "pr17827" \
886 ] \
04ebc307
L
887 [list \
888 "Build pr18900.so" \
889 "-shared" \
6c0d3bde 890 "-fPIC -Wa,-mx86-used-note=yes" \
04ebc307
L
891 { pr18900a.c } \
892 "" \
893 "pr18900.so" \
894 ] \
895 [list \
23a4bd22
L
896 "Build pr18900.o" \
897 "-r -nostdlib" \
6c0d3bde 898 "-Wa,-mx86-used-note=yes" \
04ebc307 899 { pr18900b.c pr18900c.c } \
23a4bd22
L
900 "" \
901 "pr18900.o" \
902 ] \
903 [list \
904 "Build pr18900a" \
905 "tmpdir/pr18900.o tmpdir/pr18900.so" \
6c0d3bde 906 "-Wa,-mx86-used-note=yes" \
23a4bd22 907 { dummy.s } \
04ebc307
L
908 {{readelf {-Wrd} pr18900a.rd}} \
909 "pr18900a" \
910 ] \
911 [list \
912 "Build pr18900b" \
23a4bd22 913 "-Wl,--as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
6c0d3bde 914 "-Wa,-mx86-used-note=yes" \
23a4bd22 915 { dummy.s } \
04ebc307
L
916 {{readelf {-Wrd} pr18900b.rd}} \
917 "pr18900b" \
918 ] \
5db4f0d3
L
919 [list \
920 "Build pr19031.so" \
921 "-shared" \
6c0d3bde 922 "-fPIC -Wa,-mx86-used-note=yes" \
5db4f0d3
L
923 { pr19031a.c } \
924 "" \
925 "pr19031.so" \
926 ] \
56ceb5b5
L
927 [list \
928 "Build gotpcrel1d.so" \
929 "-shared" \
6c0d3bde 930 "-Wa,-mx86-used-note=yes" \
56ceb5b5
L
931 { gotpcrel1d.S } \
932 "" \
933 "gotpcrel1d.so" \
934 ] \
37ce0cc4 935 [list \
b1058ce9 936 "Build gotpcrel1a.o gotpcrel1b.o gotpcrel1c.o" \
37ce0cc4 937 "" \
6c0d3bde 938 "-Wa,-mrelax-relocations=yes,-mx86-used-note=yes" \
37ce0cc4 939 { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
37ce0cc4 940 ] \
56ceb5b5
L
941 [list \
942 "Build gotpcrel1" \
68193357
L
943 "$NOPIE_LDFLAGS -Wl,--as-needed tmpdir/gotpcrel1a.o \
944 tmpdir/gotpcrel1b.o tmpdir/gotpcrel1c.o \
945 tmpdir/gotpcrel1d.so" \
6c0d3bde 946 "-Wa,-mx86-used-note=yes" \
37ce0cc4 947 { dummy.s } \
56ceb5b5
L
948 {{objdump {-dw} gotpcrel1.dd}} \
949 "gotpcrel1" \
950 ] \
ead3d542
L
951 [list \
952 "Build pr19319.so" \
953 "-shared" \
6c0d3bde 954 "-Wa,-mx86-used-note=yes" \
ead3d542
L
955 { pr19319a.S } \
956 "" \
957 "pr19319.so" \
958 ] \
959 [list \
960 "Build pr19319" \
961 "-pie -nostdlib -nostartfiles tmpdir/pr19319.so" \
6c0d3bde 962 "-Wa,-mx86-used-note=yes" \
ead3d542
L
963 { pr19319b.S } \
964 {{objdump {-dw} pr19319.dd}} \
965 "pr19319" \
966 ] \
5cfe428c
L
967 [list \
968 "Build pr24276.so" \
969 "-shared -nostdlib -nostartfiles \
970 -Ltmpdir $srcdir/$subdir/pr24276.dso" \
971 "-Wa,-mx86-used-note=yes" \
972 { pr19319b.S } \
973 {{warning_output pr24276.warn}} \
974 "pr24276.so" \
975 ] \
46bed679
L
976 [list \
977 "Build property 1" \
978 "" \
6c0d3bde 979 "-Wa,-mx86-used-note=no" \
46bed679
L
980 {pass.c property-no-copy.S} \
981 {{readelf {-n} property-1.r}} \
982 "property-1" \
983 ] \
984 [list \
985 "Build property 1 (.o)" \
986 "-r -nostdlib" \
6c0d3bde 987 "-Wa,-mx86-used-note=yes" \
46bed679 988 {pass.c property-no-copy.S} \
6c0d3bde 989 {{readelf {-n} property-1a.r}} \
46bed679
L
990 "property-1.o" \
991 ] \
992 [list \
993 "Build property 1 (.so)" \
994 "-shared" \
6c0d3bde 995 "-fPIC -Wa,-mx86-used-note=no" \
46bed679
L
996 {pass.c property-no-copy.S} \
997 {{readelf {-n} property-1.r}} \
998 "property-1.so" \
999 ] \
1000 [list \
1001 "Build property 2" \
1002 "" \
6c0d3bde 1003 "-Wa,-mx86-used-note=no" \
46bed679
L
1004 {pass.c property-stack.S} \
1005 {{readelf {-n} property-2.r}} \
1006 "property-2" \
1007 ] \
1008 [list \
1009 "Build property 2 (.o)" \
1010 "-r -nostdlib" \
6c0d3bde 1011 "-Wa,-mx86-used-note=yes" \
46bed679 1012 {pass.c property-stack.S} \
6c0d3bde 1013 {{readelf {-n} property-2a.r}} \
46bed679
L
1014 "property-2.o" \
1015 ] \
1016 [list \
1017 "Build property 2 (.so)" \
1018 "-shared" \
6c0d3bde 1019 "-fPIC -Wa,-mx86-used-note=yes" \
46bed679
L
1020 {pass.c property-stack.S} \
1021 {{readelf {-n} property-2.r}} \
1022 "property-2.so" \
1023 ] \
1024 [list \
1025 "Build property 3" \
1026 "" \
6c0d3bde 1027 "-Wa,-mx86-used-note=yes" \
46bed679
L
1028 {pass.c property-stack.S property-x86-1.S} \
1029 {{readelf {-n} property-3.r}} \
1030 "property-3" \
1031 ] \
1032 [list \
1033 "Build property 3 (.o)" \
1034 "-r -nostdlib" \
6c0d3bde 1035 "-Wa,-mx86-used-note=yes" \
46bed679 1036 {pass.c property-x86-1.S property-stack.S} \
6c0d3bde 1037 {{readelf {-n} property-3a.r}} \
46bed679
L
1038 "property-3.o" \
1039 ] \
1040 [list \
1041 "Build property 3 (.so)" \
1042 "-shared" \
6c0d3bde 1043 "-fPIC -Wa,-mx86-used-note=yes" \
46bed679
L
1044 {property-x86-1.S pass.c property-stack.S} \
1045 {{readelf {-n} property-3.r}} \
1046 "property-3.so" \
1047 ] \
1048 [list \
1049 "Build property 4" \
1050 "" \
6c0d3bde 1051 "-Wa,-mx86-used-note=yes" \
46bed679
L
1052 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1053 {{readelf {-n} property-4.r}} \
1054 "property-4" \
1055 ] \
1056 [list \
1057 "Build property 4 (.o)" \
1058 "-r -nostdlib" \
6c0d3bde 1059 "-Wa,-mx86-used-note=yes" \
46bed679 1060 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
6c0d3bde 1061 {{readelf {-n} property-4a.r}} \
46bed679
L
1062 "property-4.o" \
1063 ] \
1064 [list \
1065 "Build property 4 (.so)" \
1066 "-shared" \
6c0d3bde 1067 "-fPIC -Wa,-mx86-used-note=yes" \
46bed679
L
1068 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1069 {{readelf {-n} property-4.r}} \
1070 "property-4.so" \
1071 ] \
1072 [list \
1073 "Build property 4 (-Wl,-z,stack-size=0)" \
1074 "-Wl,-z,stack-size=0" \
6c0d3bde 1075 "-Wa,-mx86-used-note=yes" \
46bed679
L
1076 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1077 {{readelf {-n} property-4.r}} \
1078 "property-4" \
1079 ] \
1080 [list \
1081 "Build property 5" \
1082 "-Wl,-z,stack-size=0x900000" \
6c0d3bde 1083 "-Wa,-mx86-used-note=yes" \
46bed679
L
1084 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1085 {{readelf {-n} property-5.r}} \
1086 "property-5" \
1087 ] \
1088 [list \
1089 "Build property 5 (.o)" \
1090 "-r -nostdlib -Wl,-z,stack-size=0x900000" \
6c0d3bde 1091 "-Wa,-mx86-used-note=yes" \
46bed679 1092 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
6c0d3bde 1093 {{readelf {-n} property-5a.r}} \
46bed679
L
1094 "property-5.o" \
1095 ] \
1096 [list \
1097 "Build property 5 (.so)" \
1098 "-shared -Wl,-z,stack-size=0x900000" \
6c0d3bde 1099 "-fPIC -Wa,-mx86-used-note=yes" \
46bed679
L
1100 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1101 {{readelf {-n} property-5.r}} \
1102 "property-5.so" \
1103 ] \
1104 [list \
1105 "Build property-6.so" \
1106 "-shared" \
6c0d3bde 1107 "-fPIC -Wa,-mx86-used-note=yes" \
46bed679
L
1108 {property-6a.c property-6c.S} \
1109 {{readelf {-n} property-6.r}} \
1110 "property-6.so" \
1111 ] \
1112 [list \
1113 "Build property-6.o" \
1114 "-r -nostdlib" \
6c0d3bde 1115 "-Wa,-mx86-used-note=yes" \
46bed679 1116 {property-6b.c property-stack.S} \
6c0d3bde 1117 {{readelf {-n} property-2a.r}} \
46bed679
L
1118 "property-6.o" \
1119 ] \
1120 [list \
1121 "Build property-6" \
1122 "-Wl,--as-needed tmpdir/property-6.o tmpdir/property-6.so" \
6c0d3bde 1123 "-Wa,-mx86-used-note=yes" \
46bed679 1124 { dummy.s } \
46bed679
L
1125 {{readelf {-n} property-2.r}} \
1126 "property-6" \
1127 ] \
1128 [list \
1129 "Build property 7a (.o)" \
1130 "-r -nostdlib" \
6c0d3bde 1131 "-Wa,-mx86-used-note=yes" \
46bed679 1132 {property-unsorted-1.S} \
6c0d3bde 1133 {{readelf {-n} property-7a.r}} \
46bed679
L
1134 "property-7a.o" \
1135 ] \
1136 [list \
1137 "Build property 7b (.o)" \
1138 "-r -nostdlib" \
6c0d3bde 1139 "-Wa,-mx86-used-note=yes" \
46bed679 1140 {property-unsorted-2.S} \
6c0d3bde 1141 {{readelf {-n} property-7a.r}} \
46bed679
L
1142 "property-7b.o" \
1143 ] \
7073b5b9
L
1144 [list \
1145 "Build pr22001-1.so" \
1146 "-shared" \
6c0d3bde 1147 "-fPIC -Wa,-mx86-used-note=yes" \
7073b5b9
L
1148 { pr22001-1a.c } \
1149 {} \
1150 "pr22001-1.so" \
1151 ] \
1152 [list \
1153 "Build pr22001-1a" \
1154 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1155 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
7073b5b9
L
1156 { pr22001-1b.c } \
1157 {{error_output "pr22001-1a.err"}} \
1158 "pr22001-1a" \
1159 ] \
a5b4ee94
L
1160 [list \
1161 "Build pr21997-1.so" \
1162 "-shared" \
6c0d3bde 1163 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1164 { property-stack.S property-no-copy.S pr21997-1a.S } \
1165 {} \
1166 "pr21997-1.so" \
1167 ] \
1168 [list \
1169 "Build pr21997-1a" \
1170 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1171 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
a5b4ee94
L
1172 { pr21997-1b.c } \
1173 {{error_output "pr21997-1a.err"}} \
1174 "pr21997-1a" \
1175 ] \
ad71ce8d
L
1176 [list \
1177 "Build pr22064a.o" \
1178 "" \
6c0d3bde 1179 "-Wa,-mx86-used-note=yes" \
ad71ce8d
L
1180 { pr22064a.S } \
1181 ] \
1182 [list \
1183 "Build pr22064.so" \
1184 "-shared" \
6c0d3bde 1185 "-fPIC -Wa,-mx86-used-note=yes" \
ad71ce8d
L
1186 { pr22064b.c } \
1187 {} \
1188 "pr22064.so" \
1189 ] \
cf9e7f1f
L
1190 [list \
1191 "Build pr22393-3a.so" \
1192 "-shared -Wl,-z,separate-code,-z,max-page-size=0x1000" \
6c0d3bde 1193 "-fPIC -Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1194 {pr22393-3a.c} \
1195 {{readelf -lW pr22393-3a.rd} \
1196 {readelf -lW pr22393-3b.rd}} \
1197 "pr22393-3a.so" \
1198 ] \
1199 [list \
1200 "Build pr22393-3a-now.so" \
1201 "-shared -Wl,-z,separate-code,-z,now,-z,max-page-size=0x1000" \
6c0d3bde 1202 "-fPIC -Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1203 {pr22393-3a.c} \
1204 {{readelf -lW pr22393-3a.rd} \
1205 {readelf -lW pr22393-3b.rd}} \
1206 "pr22393-3a-now.so" \
1207 ] \
1208 [list \
1209 "Build pr22393-3" \
85f2093d 1210 "$NOPIE_LDFLAGS -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a.so" \
6c0d3bde 1211 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1212 {pr22393-3b.c} \
1213 {{readelf -lW pr22393-3a.rd} \
1214 {readelf -lW pr22393-3b.rd}} \
1215 "pr22393-3" \
1216 ] \
1217 [list \
1218 "Build pr22393-3 (PIE)" \
85f2093d 1219 "-pie -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a-now.so" \
6c0d3bde 1220 "-fPIE -Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1221 {pr22393-3b.c} \
1222 {{readelf -lW pr22393-3a.rd} \
1223 {readelf -lW pr22393-3b.rd}} \
1224 "pr22393-3-pie" \
1225 ] \
1226 [list \
1227 "Build pr22393-3 (static)" \
1228 "-static -Wl,-z,separate-code,-z,max-page-size=0x1000" \
6c0d3bde 1229 "-Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1230 {pr22393-3a.c pr22393-3b.c} \
1231 {{readelf -lW pr22393-3a.rd} \
1232 {readelf -lW pr22393-3b.rd}} \
1233 "pr22393-3-static" \
1234 ] \
bd7ab16b
L
1235 [list \
1236 "Build pr22791-1.so" \
1237 "-shared" \
6c0d3bde 1238 "-fPIC -Wa,-mx86-used-note=yes" \
bd7ab16b
L
1239 { pr22791-1a.c } \
1240 {} \
1241 "pr22791-1.so" \
1242 ] \
1243 [list \
1244 "Build pr22791-1" \
1245 "-pie -Wl,--no-as-needed tmpdir/pr22791-1.so" \
6c0d3bde 1246 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
bd7ab16b
L
1247 { pr22791-1b.s } \
1248 {{error_output "pr22791-1.err"}} \
1249 "pr22791-1" \
1250 ] \
1251 [list \
1252 "Build pr22791-2a.o" \
1253 "" \
6c0d3bde 1254 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
bd7ab16b
L
1255 { pr22791-2a.s } \
1256 ] \
1257 [list \
1258 "Build pr22791-2.so" \
1259 "-shared tmpdir/pr22791-2a.o" \
6c0d3bde 1260 "-fPIC -Wa,-mx86-used-note=yes" \
bd7ab16b
L
1261 { pr22791-2b.c } \
1262 {{readelf -drW pr22791-2.rd}} \
1263 "pr22791-2.so" \
1264 ] \
1265 [list \
1266 "Build pr22791-2" \
1267 "-pie -Wl,--no-as-needed tmpdir/pr22791-2.so" \
6c0d3bde 1268 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
bd7ab16b
L
1269 { pr22791-2c.s } \
1270 {{readelf -drW pr22791-2.rd}} \
1271 "pr22791-2" \
1272 ] \
451875b4
L
1273 [list \
1274 "Build pr22842.so" \
1275 "-shared" \
6c0d3bde 1276 "-fPIC -Wa,-mx86-used-note=yes" \
451875b4
L
1277 { pr22842a.c } \
1278 {} \
1279 "pr22842.so" \
1280 ] \
1281 [list \
1282 "Build pr22842" \
1283 "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \
6c0d3bde 1284 "-Wa,-mx86-used-note=yes" \
451875b4
L
1285 { pr22842b.S } \
1286 {{readelf -rW pr22842a.rd} \
1287 {readelf -rW pr22842b.rd}} \
1288 "pr22842" \
1289 ] \
76e7af5f
L
1290 ]
1291
28e6a46b
L
1292 if {[istarget "x86_64-*-linux*-gnux32"]} {
1293 run_ld_link_exec_tests [list \
1294 [list \
1295 "Run pr22001-1b" \
1296 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1297 "-Wa,-mx86-used-note=yes" \
28e6a46b
L
1298 { pr22001-1c.c } \
1299 "pr22001-1b" \
1300 "pass.out" \
1301 "$NOPIE_CFLAGS" \
1302 ] \
a5b4ee94
L
1303 [list \
1304 "Run pr21997-1b" \
1305 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1306 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1307 { pr21997-1c.c } \
1308 "pr21997-1b" \
1309 "pass.out" \
1310 "$NOPIE_CFLAGS" \
1311 ] \
28e6a46b
L
1312 ]
1313 } else {
1314 run_cc_link_tests [list \
1315 [list \
1316 "Build pr22001-1b" \
1317 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1318 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
28e6a46b
L
1319 { pr22001-1c.c } \
1320 {{error_output "pr22001-1b.err"}} \
1321 "pr22001-1b" \
1322 ] \
a5b4ee94
L
1323 [list \
1324 "Build pr21997-1b" \
1325 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1326 "$NOPIE_CFLAGS -Wa,-mx86-used-note=yes" \
a5b4ee94
L
1327 { pr21997-1c.c } \
1328 {{error_output "pr21997-1b.err"}} \
1329 "pr21997-1b" \
1330 ] \
28e6a46b
L
1331 ]
1332 }
1333
982c6f26 1334 run_ld_link_exec_tests [list \
76e7af5f
L
1335 [list \
1336 "Run plt-main" \
d9816402
AM
1337 "-Wl,--no-as-needed tmpdir/plt-main1.o tmpdir/plt-main2.o \
1338 tmpdir/plt-main3.o tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1339 "-Wa,-mx86-used-note=yes" \
76e7af5f
L
1340 { plt-main5.c } \
1341 "plt-main" \
1342 "plt-main.out" \
1343 ] \
ce641d0b
L
1344 [list \
1345 "Run plt-main with PIE" \
d9816402
AM
1346 "-Wl,--no-as-needed -pie tmpdir/plt-main1.o tmpdir/plt-main2.o \
1347 tmpdir/plt-main3.o tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1348 "-Wa,-mx86-used-note=yes" \
ce641d0b
L
1349 { plt-main5.c } \
1350 "plt-main-pie" \
1351 "plt-main.out" \
1352 "-fPIC" \
1353 ] \
9a926d55
L
1354 [list \
1355 "Run copyreloc-main with PIE without -fPIE" \
d9816402 1356 "-Wl,--as-needed -pie tmpdir/copyreloc-main.o tmpdir/copyreloc-lib.so" \
6c0d3bde 1357 "-Wa,-mx86-used-note=yes" \
46175b4e 1358 { dummy.s } \
9a926d55
L
1359 "copyreloc-main" \
1360 "copyreloc-main.out" \
1361 ] \
bc696fd5
L
1362 [list \
1363 "Run pr17689 with PIE without -fPIE" \
d9816402 1364 "-Wl,--no-as-needed -pie tmpdir/pr17689b.o tmpdir/pr17689.so" \
6c0d3bde 1365 "-Wa,-mx86-used-note=yes" \
37ce0cc4 1366 { dummy.s } \
bc696fd5
L
1367 "pr17689" \
1368 "pr17689.out" \
1369 ] \
25070364
L
1370 [list \
1371 "Run pr17689 with PIE -z now without -fPIE" \
d9816402 1372 "-Wl,--as-needed,-z,now -pie tmpdir/pr17689b.o tmpdir/pr17689.so" \
6c0d3bde 1373 "-Wa,-mx86-used-note=yes" \
37ce0cc4 1374 { dummy.s } \
25070364
L
1375 "pr17689now" \
1376 "pr17689.out" \
1377 ] \
04ebc307
L
1378 [list \
1379 "Run pr18900" \
d9816402 1380 "-Wl,--no-as-needed tmpdir/pr18900.o tmpdir/pr18900.so" \
6c0d3bde 1381 "-Wa,-mx86-used-note=yes" \
23a4bd22 1382 { dummy.s } \
04ebc307
L
1383 "pr18900" \
1384 "pr18900.out" \
1385 ] \
5db4f0d3
L
1386 [list \
1387 "Run pr19031" \
68193357 1388 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr19031.so" \
6c0d3bde 1389 "-Wa,-mx86-used-note=yes" \
5db4f0d3
L
1390 { pr19031b.S pr19031c.c } \
1391 "pr19031" \
1392 "pr19031.out" \
68193357 1393 "$NOPIE_CFLAGS" \
5db4f0d3 1394 ] \
56ceb5b5
L
1395 [list \
1396 "Run gotpcrel1" \
d9816402 1397 "-Wl,--no-as-needed tmpdir/gotpcrel1d.so" \
6c0d3bde 1398 "-Wa,-mx86-used-note=yes" \
56ceb5b5
L
1399 { gotpcrel1a.S gotpcrel1b.c gotpcrel1c.c } \
1400 "gotpcrel1" \
1401 "gotpcrel1.out" \
1402 ] \
46bed679
L
1403 [list \
1404 "Run property 1" \
1405 "" \
6c0d3bde 1406 "-Wa,-mx86-used-note=yes" \
46bed679
L
1407 {pass.c property-no-copy.S} \
1408 "property-1" "pass.out" \
1409 ] \
1410 [list \
1411 "Run property 1 (PIE)" \
1412 "-pie" \
6c0d3bde 1413 "-Wa,-mx86-used-note=yes" \
46bed679
L
1414 {pass.c property-no-copy.S} \
1415 "property-1-pie" "pass.out" "-fPIE" \
1416 ] \
1417 [list \
1418 "Run property 1 (static)" \
1419 "-static" \
6c0d3bde 1420 "-Wa,-mx86-used-note=yes" \
46bed679
L
1421 {pass.c property-no-copy.S} \
1422 "property-1-static" "pass.out" \
1423 ] \
1424 [list \
1425 "Run property 2" \
1426 "" \
6c0d3bde 1427 "-Wa,-mx86-used-note=yes" \
46bed679
L
1428 {pass.c property-stack.S} \
1429 "property-2" "pass.out" \
1430 ] \
1431 [list \
1432 "Run property 2 (PIE)" \
1433 "-pie" \
6c0d3bde 1434 "-Wa,-mx86-used-note=yes" \
46bed679
L
1435 {pass.c property-stack.S} \
1436 "property-2-pie" "pass.out" "-fPIE" \
1437 ] \
1438 [list \
1439 "Run property 2 (static)" \
1440 "-static" \
6c0d3bde 1441 "-Wa,-mx86-used-note=yes" \
46bed679
L
1442 {pass.c property-stack.S} \
1443 "property-3-static" "pass.out" \
1444 ] \
1445 [list \
1446 "Run property 3" \
1447 "" \
6c0d3bde 1448 "-Wa,-mx86-used-note=yes" \
46bed679
L
1449 {pass.c property-stack.S property-x86-1.S} \
1450 "property-3" "pass.out" \
1451 ] \
1452 [list \
1453 "Run property 3 (PIE)" \
1454 "-pie" \
6c0d3bde 1455 "-Wa,-mx86-used-note=yes" \
46bed679
L
1456 {pass.c property-x86-1.S property-stack.S} \
1457 "property-3-pie" "pass.out" "-fPIE" \
1458 ] \
1459 [list \
1460 "Run property 3 (static)" \
1461 "-static" \
6c0d3bde 1462 "-Wa,-mx86-used-note=yes" \
46bed679
L
1463 {property-x86-1.S pass.c property-stack.S} \
1464 "property-3-static" "pass.out" \
1465 ] \
1466 [list \
1467 "Run property 4" \
1468 "" \
6c0d3bde 1469 "-Wa,-mx86-used-note=yes" \
46bed679
L
1470 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1471 "property-4" "pass.out" \
1472 ] \
1473 [list \
1474 "Run property 4 (PIE)" \
1475 "-pie" \
6c0d3bde 1476 "-Wa,-mx86-used-note=yes" \
46bed679
L
1477 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1478 "property-4-pie" "pass.out" "-fPIE" \
1479 ] \
1480 [list \
1481 "Run property 4 (static)" \
1482 "-static" \
6c0d3bde 1483 "-Wa,-mx86-used-note=yes" \
46bed679
L
1484 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1485 "property-4-static" "pass.out" \
1486 ] \
1487 [list \
1488 "Run property 5" \
1489 "-Wl,-z,stack-size=0x900000" \
6c0d3bde 1490 "-Wa,-mx86-used-note=yes" \
46bed679
L
1491 {pass.c property-stack.S property-x86-1.S property-x86-2.S} \
1492 "property-5" "pass.out" \
1493 ] \
1494 [list \
1495 "Run property 5 (PIE)" \
1496 "-pie -Wl,-z,stack-size=0x900000" \
6c0d3bde 1497 "-Wa,-mx86-used-note=yes" \
46bed679
L
1498 {pass.c property-x86-2.S property-x86-1.S property-stack.S} \
1499 "property-5-pie" "pass.out" "-fPIE" \
1500 ] \
1501 [list \
1502 "Run property 5 (static)" \
1503 "-static -Wl,-z,stack-size=0x900000" \
6c0d3bde 1504 "-Wa,-mx86-used-note=yes" \
46bed679
L
1505 {property-x86-2.S property-x86-1.S pass.c property-stack.S} \
1506 "property-5-static" "pass.out" \
1507 ] \
7073b5b9
L
1508 [list \
1509 "Run pr22001-1a (PIC 1)" \
1510 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1511 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1512 { pr22001-1b.c } \
1513 "pr22001-1a-pic-1" \
1514 "pass.out" \
1515 "-fPIC" \
1516 ] \
1517 [list \
1518 "Run pr22001-1a (PIC 2)" \
1519 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1520 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1521 { pr22001-1b.c } \
1522 "pr22001-1a-pic-2" \
1523 "pass.out" \
1524 "-fPIC" \
1525 ] \
1526 [list \
1527 "Run pr22001-1b (PIC 1)" \
1528 "$NOPIE_LDFLAGS -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1529 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1530 { pr22001-1c.c } \
1531 "pr22001-1b-pic-1" \
1532 "pass.out" \
1533 "-fPIC" \
1534 ] \
1535 [list \
1536 "Run pr22001-1b (PIC 2)" \
1537 "-pie -Wl,-z,nocopyreloc,--no-as-needed tmpdir/pr22001-1.so" \
6c0d3bde 1538 "-Wa,-mx86-used-note=yes" \
7073b5b9
L
1539 { pr22001-1c.c } \
1540 "pr22001-1b-pic-2" \
1541 "pass.out" \
1542 "-fPIC" \
1543 ] \
a5b4ee94
L
1544 [list \
1545 "Run pr21997-1a (PIC 1)" \
1546 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1547 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1548 { pr21997-1b.c } \
1549 "pr21997-1a-pic-1" \
1550 "pass.out" \
1551 "-fPIC" \
1552 ] \
1553 [list \
1554 "Run pr21997-1a (PIC 2)" \
1555 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1556 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1557 { pr21997-1b.c } \
1558 "pr21997-1a-pic-2" \
1559 "pass.out" \
1560 "-fPIC" \
1561 ] \
1562 [list \
1563 "Run pr21997-1b (PIC 1)" \
1564 "$NOPIE_LDFLAGS -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1565 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1566 { pr21997-1c.c } \
1567 "pr21997-1b-pic-1" \
1568 "pass.out" \
1569 "-fPIC" \
1570 ] \
1571 [list \
1572 "Run pr21997-1b (PIC 2)" \
1573 "-pie -Wl,--no-as-needed tmpdir/pr21997-1.so" \
6c0d3bde 1574 "-Wa,-mx86-used-note=yes" \
a5b4ee94
L
1575 { pr21997-1c.c } \
1576 "pr21997-1b-pic-2" \
1577 "pass.out" \
1578 "-fPIC" \
1579 ] \
ad71ce8d
L
1580 [list \
1581 "Run pr22064" \
1582 "-pie -Wl,--no-as-needed tmpdir/pr22064a.o tmpdir/pr22064.so" \
6c0d3bde 1583 "-Wa,-mx86-used-note=yes" \
ad71ce8d
L
1584 { dummy.s } \
1585 "pr22064-pie" \
1586 "pass.out" \
1587 "-fPIE" \
1588 ] \
cf9e7f1f
L
1589 [list \
1590 "Run pr22393-3" \
1591 "$NOPIE_LDFLAGS -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a.so" \
6c0d3bde 1592 "-Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1593 {pr22393-3b.c} \
1594 "pr22393-3" \
1595 "pass.out" \
1596 "$NOPIE_CFLAGS" \
1597 ] \
1598 [list \
1599 "Run pr22393-3 (PIE)" \
1600 "-pie -Wl,-z,separate-code,-z,max-page-size=0x1000,--no-as-needed tmpdir/pr22393-3a-now.so" \
6c0d3bde 1601 "-Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1602 {pr22393-3b.c} \
1603 "pr22393-3-pie" \
1604 "pass.out" \
1605 "-fPIE" \
1606 ] \
1607 [list \
1608 "Run pr22393-3 (static)" \
1609 "-static -Wl,-z,separate-code,-z,max-page-size=0x1000" \
6c0d3bde 1610 "-Wa,-mx86-used-note=yes" \
cf9e7f1f
L
1611 {pr22393-3a.c pr22393-3b.c} \
1612 "pr22393-3-static" \
1613 "pass.out" \
1614 ] \
bd7ab16b
L
1615 [list \
1616 "Run pr22791-2" \
1617 "-pie -Wl,--no-as-needed tmpdir/pr22791-2.so" \
6c0d3bde 1618 "-Wa,-mx86-used-note=yes" \
bd7ab16b
L
1619 { pr22791-2c.s } \
1620 "pr22791-2" \
1621 "pass.out" \
1622 "$NOPIE_CFLAGS" \
1623 ] \
451875b4 1624 [list \
fc999e80 1625 "Run pr22842" \
451875b4 1626 "-pie -Wl,--no-as-needed tmpdir/pr22842.so" \
6c0d3bde 1627 "-Wa,-mx86-used-note=yes" \
451875b4
L
1628 { pr22842b.S } \
1629 "pr22842" \
1630 "pass.out" \
1631 ] \
b9519cfe
L
1632 [list \
1633 "Run pr23997" \
1634 "" \
1635 "" \
1636 { pr23997a.s pr23997b.c pr23997c.c } \
1637 "pr23997" \
1638 "pass.out" \
1639 ] \
76e7af5f 1640 ]
dd7e64d4 1641
3c4f3228
L
1642 # Run-time tests which require working ifunc attribute support.
1643 if { [check_ifunc_attribute_available] } {
1644 run_cc_link_tests [list \
1645 [list \
1646 "Build libpr19784a.so" \
1647 "-shared -Wl,-Bsymbolic-functions" \
6c0d3bde 1648 "-fPIC -O2 -g -Wa,-mx86-used-note=yes" \
3c4f3228
L
1649 { pr19784b.c pr19784c.c } \
1650 {} \
1651 "libpr19784a.so" \
1652 ] \
1653 [list \
1654 "Build libpr19784b.so" \
1655 "-shared -Wl,-Bsymbolic-functions" \
6c0d3bde 1656 "-fPIC -O2 -g -Wa,-mx86-used-note=yes" \
3c4f3228
L
1657 { pr19784c.c pr19784b.c } \
1658 {} \
1659 "libpr19784b.so" \
1660 ] \
1661 [list \
1662 "Build pr19784a.o" \
1663 "" \
6c0d3bde 1664 "-Wa,-mx86-used-note=yes" \
3c4f3228
L
1665 { pr19784a.c } \
1666 ] \
1667 ]
1668
1669 run_ld_link_exec_tests [list \
1670 [list \
1671 "Run pr19784a" \
d9816402 1672 "-Wl,--no-as-needed tmpdir/pr19784a.o tmpdir/libpr19784a.so" \
6c0d3bde 1673 "-Wa,-mx86-used-note=yes" \
3c4f3228
L
1674 { dummy.s } \
1675 "pr19784a" \
1676 "pass.out" \
1677 ] \
1678 [list \
1679 "Run pr19784b" \
d9816402 1680 "-Wl,--as-needed tmpdir/pr19784a.o tmpdir/libpr19784b.so" \
6c0d3bde 1681 "-Wa,-mx86-used-note=yes" \
3c4f3228
L
1682 { dummy.s } \
1683 "pr19784b" \
1684 "pass.out" \
1685 ] \
1686 ]
1687 }
1688
dd7e64d4
L
1689 if { [istarget "x86_64-*-linux*"] \
1690 && ![istarget "x86_64-*-linux*-gnux32"]} {
1691
1692 run_cc_link_tests [list \
1693 [list \
1694 "Build plt-main with -z bndplt" \
1695 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1696 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt \
1697 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1698 "-Wa,-mx86-used-note=yes" \
dd7e64d4
L
1699 { plt-main5.c } \
1700 {{objdump {-drw} plt-main-bnd.dd}} \
1701 "plt-main-bnd" \
1702 ] \
1703 [list \
1704 "Build plt-main with PIE and -z bndplt" \
1705 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1706 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -pie \
1707 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1708 "-fPIC -Wa,-mx86-used-note=yes" \
dd7e64d4
L
1709 { plt-main5.c } \
1710 {{objdump {-drw} plt-main-bnd.dd}} \
1711 "plt-main-pie-bnd" \
1712 ] \
38b12349
L
1713 [list \
1714 "Build plt-main with -z bndplt -z now" \
1715 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1716 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -z now \
1717 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1718 "-Wa,-mx86-used-note=yes" \
38b12349
L
1719 { plt-main5.c } \
1720 {{readelf {-SW} plt-main-bnd-now.rd} {objdump {-drw} plt-main-bnd.dd}} \
1721 "plt-main-bnd-now" \
1722 ] \
1723 [list \
1724 "Build plt-main with PIE and -z bndplt -z now" \
1725 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1726 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z bndplt -z now -pie \
1727 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1728 "-fPIC -Wa,-mx86-used-note=yes" \
38b12349
L
1729 { plt-main5.c } \
1730 {{readelf {-SW} plt-main-bnd-now.rd} {objdump {-drw} plt-main-bnd.dd}} \
1731 "plt-main-pie-bnd-now" \
1732 ] \
dd7e64d4
L
1733 ]
1734
982c6f26 1735 run_ld_link_exec_tests [list \
dd7e64d4
L
1736 [list \
1737 "Run plt-main with -z bndplt" \
d9816402
AM
1738 "-Wl,--no-as-needed,-z,bndplt tmpdir/plt-main1.o \
1739 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1740 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1741 "-Wa,-mx86-used-note=yes" \
dd7e64d4
L
1742 { plt-main5.c } \
1743 "plt-main-bnd" \
1744 "plt-main.out" \
1745 ] \
1746 [list \
1747 "Run plt-main with PIE and -z bndplt" \
d9816402
AM
1748 "-Wl,--no-as-needed,-z,bndplt -pie tmpdir/plt-main1.o \
1749 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1750 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1751 "-Wa,-mx86-used-note=yes" \
dd7e64d4
L
1752 { plt-main5.c } \
1753 "plt-main-pie-bnd" \
1754 "plt-main.out" \
1755 "-fPIC" \
1756 ] \
38b12349
L
1757 [list \
1758 "Run plt-main with -z bndplt -z now" \
1759 "-Wl,--no-as-needed,-z,bndplt,-z,now tmpdir/plt-main1.o \
1760 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1761 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1762 "-Wa,-mx86-used-note=yes" \
38b12349
L
1763 { plt-main5.c } \
1764 "plt-main-bnd-now" \
1765 "plt-main.out" \
1766 ] \
1767 [list \
1768 "Run plt-main with PIE and -z bndplt -z now" \
1769 "-Wl,--no-as-needed,-z,bndplt,-z,now -pie tmpdir/plt-main1.o \
1770 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1771 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1772 "-Wa,-mx86-used-note=yes" \
38b12349
L
1773 { plt-main5.c } \
1774 "plt-main-pie-bnd-now" \
1775 "plt-main.out" \
1776 "-fPIC" \
1777 ] \
9d734efa
L
1778 [list \
1779 "Run pr20800" \
d9816402 1780 "-Wl,-z,now -pie" \
6c0d3bde 1781 "-Wa,-mx86-used-note=yes" \
9d734efa
L
1782 { pr20800a.S pr20800b.S } \
1783 "pr20800" \
1784 "pass.out" \
1785 ] \
dd7e64d4 1786 ]
85406233
L
1787 if { [check_ifunc_attribute_available] } {
1788 run_ld_link_exec_tests [list \
1789 [list \
1790 "Run pr21481a" \
1791 "$NOPIE_LDFLAGS -Wl,-z,bndplt" \
6c0d3bde 1792 "-Wa,-mx86-used-note=yes" \
85406233
L
1793 { pr21481a.c pr21481b.S } \
1794 "pr21481a" \
1795 "pass.out" \
1796 "$NOPIE_CFLAGS" \
1797 ] \
1798 [list \
1799 "Run pr21481b" \
1800 "$NOPIE_LDFLAGS -Wl,-z,bndplt,-z,now" \
6c0d3bde 1801 "-Wa,-mx86-used-note=yes" \
85406233
L
1802 { pr21481a.c pr21481b.S } \
1803 "pr21481b" \
1804 "pass.out" \
1805 "$NOPIE_CFLAGS" \
1806 ] \
1807 ]
1808 }
dd7e64d4 1809 }
aec6b87e 1810
ee2fdd6f
L
1811 if { [istarget "x86_64-*-linux*"] } {
1812 if { [istarget "x86_64-*-linux*-gnux32"] } {
1813 set pltdump {{objdump {-drw} plt-main-ibt-x32.dd}}
1814 set pltsecdump {{readelf {-SW} plt-main-ibt-now.rd} {objdump {-drw} plt-main-ibt-x32.dd}}
1815 } else {
1816 set pltdump {{objdump {-drw} plt-main-ibt.dd}}
1817 set pltsecdump {{readelf {-SW} plt-main-ibt-now.rd} {objdump {-drw} plt-main-ibt.dd}}
1818 }
1819 run_cc_link_tests [list \
1820 [list \
1821 "Build plt-main with -z ibtplt" \
1822 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1823 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt \
1824 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1825 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1826 { plt-main5.c } \
1827 $pltdump \
1828 "plt-main-ibt" \
1829 ] \
1830 [list \
1831 "Build plt-main with PIE and -z ibtplt" \
1832 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1833 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -pie \
1834 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1835 "-fPIC -Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1836 { plt-main5.c } \
1837 $pltdump \
1838 "plt-main-pie-ibt" \
1839 ] \
1840 [list \
1841 "Build plt-main with -z ibtplt -z now" \
1842 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1843 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -z now \
1844 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1845 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1846 { plt-main5.c } \
1847 $pltsecdump \
1848 "plt-main-ibt-now" \
1849 ] \
1850 [list \
1851 "Build plt-main with PIE and -z ibtplt -z now" \
1852 "tmpdir/plt-main1.o tmpdir/plt-main2.o tmpdir/plt-main3.o \
7c9f387a
L
1853 tmpdir/plt-main4.o tmpdir/libplt-lib.so -z ibtplt -z now -pie \
1854 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1855 "-fPIC -Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1856 { plt-main5.c } \
1857 $pltsecdump \
1858 "plt-main-pie-ibt-now" \
1859 ] \
1860 [list \
1861 "Build libibtplt-lib.so with -z ibtplt" \
7c9f387a
L
1862 "-shared -z ibtplt \
1863 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1864 "-fPIC -Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1865 { plt-main1.c plt-main2.c plt-main3.c plt-main4.c} \
1866 $pltdump \
1867 "libibtplt-lib.so" \
1868 ] \
1869 [list \
1870 "Build libibtplt--now-lib.so with -z ibtplt -z now" \
7c9f387a
L
1871 "-shared -z ibtplt -z now \
1872 -z noseparate-code -z max-page-size=0x200000" \
6c0d3bde 1873 "-fPIC -Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1874 { plt-main1.c plt-main2.c plt-main3.c plt-main4.c} \
1875 $pltdump \
1876 "libibtplt-now-lib.so" \
1877 ] \
1878 ]
1879
1880 run_ld_link_exec_tests [list \
1881 [list \
1882 "Run plt-main with -z ibtplt" \
1883 "-Wl,--no-as-needed,-z,ibtplt tmpdir/plt-main1.o \
1884 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1885 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1886 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1887 { plt-main5.c } \
1888 "plt-main-ibt" \
1889 "plt-main.out" \
1890 ] \
1891 [list \
1892 "Run plt-main with PIE and -z ibtplt" \
1893 "-Wl,--no-as-needed,-z,ibtplt -pie tmpdir/plt-main1.o \
1894 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1895 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1896 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1897 { plt-main5.c } \
1898 "plt-main-pie-ibt" \
1899 "plt-main.out" \
1900 "-fPIC" \
1901 ] \
1902 [list \
1903 "Run plt-main with -z ibtplt -z now" \
1904 "-Wl,--no-as-needed,-z,ibtplt,-z,now tmpdir/plt-main1.o \
1905 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1906 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1907 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1908 { plt-main5.c } \
1909 "plt-main-ibt-now" \
1910 "plt-main.out" \
1911 ] \
1912 [list \
1913 "Run plt-main with PIE and -z ibtplt -z now" \
1914 "-Wl,--no-as-needed,-z,ibtplt,-z,now -pie tmpdir/plt-main1.o \
1915 tmpdir/plt-main2.o tmpdir/plt-main3.o \
1916 tmpdir/plt-main4.o tmpdir/libplt-lib.so" \
6c0d3bde 1917 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1918 { plt-main5.c } \
1919 "plt-main-pie-ibt-now" \
1920 "plt-main.out" \
1921 "-fPIC" \
1922 ] \
1923 [list \
1924 "Run plt-main with libibtplt-lib.so -z ibtplt" \
1925 "-Wl,--no-as-needed,-z,ibtplt tmpdir/libibtplt-lib.so \
1926 tmpdir/libplt-lib.so" \
6c0d3bde 1927 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1928 { plt-main5.c } \
1929 "plt-main-ibt-lib" \
1930 "plt-main.out" \
1931 ] \
1932 [list \
1933 "Run plt-main with libibtplt-lib.so -z ibtplt -z now" \
1934 "-Wl,--no-as-needed,-z,ibtplt,-z,now \
1935 tmpdir/libibtplt-now-lib.so tmpdir/libplt-lib.so" \
6c0d3bde 1936 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1937 { plt-main5.c } \
1938 "plt-main-ibt-now-lib" \
1939 "plt-main.out" \
1940 ] \
1941 ]
1942
1943 if { [check_ifunc_attribute_available] } {
1944 run_ld_link_exec_tests [list \
1945 [list \
1946 "Run pr21481a" \
1947 "$NOPIE_LDFLAGS -Wl,-z,ibtplt" \
6c0d3bde 1948 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1949 { pr21481a.c pr21481b.S } \
1950 "pr21481a" \
1951 "pass.out" \
1952 "$NOPIE_CFLAGS" \
1953 ] \
1954 [list \
1955 "Run pr21481b" \
1956 "$NOPIE_LDFLAGS -Wl,-z,ibtplt,-z,now" \
6c0d3bde 1957 "-Wa,-mx86-used-note=yes" \
ee2fdd6f
L
1958 { pr21481a.c pr21481b.S } \
1959 "pr21481b" \
1960 "pass.out" \
1961 "$NOPIE_CFLAGS" \
1962 ] \
1963 ]
1964 }
1965 }
1966
a7eaf017 1967 undefined_weak "$NOPIE_CFLAGS" "$NOPIE_LDFLAGS"
aec6b87e
L
1968 undefined_weak "-fPIE" ""
1969 undefined_weak "-fPIE" "-pie"
d9816402
AM
1970 undefined_weak "-fPIE" "-Wl,-z,nodynamic-undefined-weak"
1971 undefined_weak "-fPIE" "-pie -Wl,-z,nodynamic-undefined-weak"
adc7571d 1972}
ab7fede8
L
1973
1974if { ![istarget "x86_64-*-linux*"]} {
6c0d3bde 1975 set ASFLAGS "$saved_ASFLAGS"
ab7fede8
L
1976 return
1977}
1978
38b12349
L
1979run_ld_link_tests [list \
1980 [list \
1981 "basic PLT generation (-z now)" \
7c9f387a
L
1982 "-z now -melf_x86_64 --hash-style=sysv tmpdir/libpltlib.so \
1983 -z noseparate-code -z max-page-size=0x200000" \
38b12349
L
1984 "" \
1985 "--64" \
1986 {plt2.s} \
1987 {{readelf -SW plt2.rd} {objdump -dwr plt2.dd}} \
1988 "plt2" \
1989 ] \
abfa390d
L
1990 [list \
1991 "Build pr21626.so" \
1992 "-shared -melf_x86_64" \
1993 "" \
6c0d3bde 1994 "--64 -defsym __64_bit__=1 -mx86-used-note=yes" \
abfa390d
L
1995 {property-x86-3.s} \
1996 "" \
1997 "pr21626.so" \
1998 ] \
1999 [list \
2000 "Build pr21626" \
2001 "-melf_x86_64 tmpdir/pr21626.so" \
2002 "" \
6c0d3bde 2003 "--64 -mx86-used-note=yes" \
abfa390d
L
2004 {start.s foo.s} \
2005 "" \
2006 "pr21626" \
2007 ] \
38b12349
L
2008]
2009
ab7fede8 2010# Linux only tests
978c0540
L
2011global LD_CLASS
2012if { "$LD_CLASS" == "64bit" } then {
2013 # This test needs 64-bit linker.
2014 run_dump_test "pr17618"
2015}
a3747075 2016run_dump_test "pltgot-1"
7c1e8d3e 2017run_dump_test "pltgot-2"
59a1e29d
L
2018run_dump_test "pr20830a"
2019run_dump_test "pr20830b"
9e659176
L
2020run_dump_test "pr21038a"
2021run_dump_test "pr21038b"
8361ed4d 2022run_dump_test "pr21038c"
38b12349
L
2023run_dump_test "pr20830a-now"
2024run_dump_test "pr20830b-now"
2025run_dump_test "pr21038a-now"
2026run_dump_test "pr21038b-now"
2027run_dump_test "pr21038c-now"
ee2fdd6f
L
2028run_dump_test "ibt-plt-1"
2029run_dump_test "ibt-plt-1-x32"
2030run_dump_test "ibt-plt-2a"
2031run_dump_test "ibt-plt-2b"
2032run_dump_test "ibt-plt-2c"
2033run_dump_test "ibt-plt-2d"
2034run_dump_test "ibt-plt-2a-x32"
2035run_dump_test "ibt-plt-2b-x32"
2036run_dump_test "ibt-plt-2c-x32"
2037run_dump_test "ibt-plt-2d-x32"
2038run_dump_test "ibt-plt-3a"
2039run_dump_test "ibt-plt-3b"
2040run_dump_test "ibt-plt-3c"
2041run_dump_test "ibt-plt-3d"
2042run_dump_test "ibt-plt-3a-x32"
2043run_dump_test "ibt-plt-3b-x32"
2044run_dump_test "ibt-plt-3c-x32"
2045run_dump_test "ibt-plt-3d-x32"
6c0d3bde
L
2046
2047set ASFLAGS "$saved_ASFLAGS"
This page took 0.982797 seconds and 4 git commands to generate.