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