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