* doc/internals.texi (Relaxing with a table) <after relaxation>:
[deliverable/binutils-gdb.git] / ld / testsuite / ld-srec / srec.exp
CommitLineData
252b5132
RH
1# Test linking directly to S-records.
2# By Ian Lance Taylor, Cygnus Support.
3# Public domain.
4
5# Get the offset from an S-record line to the start of the data.
6
7proc srec_off { l } {
8 if [string match "S1*" $l] {
9 return 8
10 } else { if [string match "S2*" $l] {
11 return 10
12 } else { if [string match "S3*" $l] {
13 return 12
14 } else {
15 return -1
16 } } }
17}
18
19# See if an S-record line contains only zero data.
20
21proc srec_zero { l } {
22 if [string match "S\[0789\]*" $l] {
23 return 1
24 }
25
26 # Strip the address and checksum.
27 if [string match "S\[123\]*" $l] {
28 set l [string range $l [srec_off $l] [expr [string length $l] - 3]]
29 } else {
30 return 0
31 }
32
33 # The rest must be zero.
34 return [string match "" [string trim $l "0"]]
35}
36
37# Get the address of an S-record line.
38
39proc srec_addr { l } {
40 if [string match "S\[123\]*" $l] {
41 set addr [string range $l 4 [expr [srec_off $l] - 1]]
42 } else {
43 return -1
44 }
45
46 return "0x$addr"
47}
48
49# Get the number of data bytes in an S-record line.
50
51proc srec_len { l } {
52 if ![string match "S\[123\]*" $l] {
53 return 0
54 }
55
56 return [expr "0x[string range $l 2 3]" - ([srec_off $l] - 4) / 2 - 1]
57}
58
59# Extract bytes from an S-record line.
60
61proc srec_extract { l start len } {
62 set off [srec_off $l]
63 set rlen [srec_len $l]
64 set stop [expr $start + $len]
65 if { $stop > $rlen } {
66 set stop [expr $rlen]
67 }
68 set start [expr $start * 2 + $off]
69 set stop [expr $stop * 2 + $off - 1]
70 return [string range $l $start $stop]
71}
72
73# See if a range of bytes in an S-record line is all zeroes.
74
75proc srec_zero_range { l start len } {
76 return [string match "" [string trim [srec_extract $l $start $len] "0"]]
77}
78
79# Trim an S-record line such that the specified number of bytes remain
80# at the end.
81
82proc srec_trim { l leave } {
83 set off [srec_off $l]
84 set addr [srec_addr $l]
85 set len [srec_len $l]
86
87 if { $leave >= $len } {
88 return $l
89 }
90
91 set s1 [string range $l 0 1]
92 set s2 [format "%02x" [expr ($off - 4) / 2 + $leave + 1]]
93 set s3 [format "%0[expr $off - 4]x" [expr $addr + $len - $leave]]
94 set s4 [string range $l [expr [string length $l] - ($leave * 2) - 2] end]
95 set s "${s1}${s2}${s3}${s4}"
96
97 verbose "srec_trim { '$l' $leave } returning '$s'" 2
98
99 return $s
100}
101
102# Report failure when comparing S-record lines
103
104proc srec_compare_fail { which l1 l2 } {
105 send_log "comparison failure $which:\n$l1\n$l2\n"
106 verbose "comparison failure $which:\n$l1\n$l2"
107}
108
109# Compare S-record files. We don't want to fuss about things like
110# extra zeroes. Note that BFD always sorts S-records by address.
111
112proc srec_compare { f1 f2 } {
113 set e1 [gets $f1 l1]
114 set e2 [gets $f2 l2]
115
116 while { $e1 != -1 } {
117 set l1 [string trimright $l1 "\r\n"]
118 set l2 [string trimright $l2 "\r\n"]
119 if { $e2 == -1 } {
120 # If l1 contains data, it must be zero.
121 if ![srec_zero $l1] {
122 send_log "data after EOF: $l1\n"
123 verbose "data after EOF: $l1"
124 return 0
125 }
126 } else { if { [string compare $l1 $l2] == 0 } {
127 set e1 [gets $f1 l1]
128 set e2 [gets $f2 l2]
129 } else { if { [srec_zero $l1] } {
130 set e1 [gets $f1 l1]
131 } else { if { [srec_zero $l2] } {
132 set e2 [gets $f2 l2]
133 } else {
134 # The strings are not the same, and neither is all zeroes.
135 set a1 [srec_addr $l1]
136 set n1 [srec_len $l1]
137 set a2 [srec_addr $l2]
138 set n2 [srec_len $l2]
139
140 if { $a1 < $a2 && ![srec_zero_range $l1 0 [expr $a2 - $a1]] } {
141 verbose "$a1 $a2 [srec_extract $l1 0 [expr $a2 - $a1]]" 2
142 srec_compare_fail 1 $l1 $l2
143 return 0
144 }
145 if { $a2 < $a1 && ![srec_zero_range $l2 0 [expr $a1 - $a2]] } {
146 srec_compare_fail 2 $l1 $l2
147 return 0
148 }
149
150 # Here we know that any initial data in both lines is
151 # zero. Now make sure that any overlapping data matches.
152 if { $a1 < $a2 } {
153 set os1 [expr $a2 - $a1]
154 set os2 0
155 } else {
156 set os1 0
157 set os2 [expr $a1 - $a2]
158 }
159 if { $a1 + $n1 < $a2 + $n2 } {
160 set ol [expr $n1 - $os1]
161 } else {
162 set ol [expr $n2 - $os2]
163 }
164
165 set x1 [srec_extract $l1 $os1 $ol]
166 set x2 [srec_extract $l2 $os2 $ol]
167 if { [string compare $x1 $x2] != 0 } {
168 verbose "$os1 $ol $x1" 2
169 verbose "$os2 $ol $x2" 2
170 srec_compare_fail 3 $l1 $l2
171 return 0
172 }
173
174 # These strings match. Trim the data from the larger
175 # string, read a new copy of the smaller string, and
176 # continue.
177 if { $a1 + $n1 < $a2 + $n2 } {
178 set l2 [srec_trim $l2 [expr ($a2 + $n2) - ($a1 + $n1)]]
179 set e1 [gets $f1 l1]
180 } else { if { $a1 + $n1 > $a2 + $n2 } {
181 set l1 [srec_trim $l1 [expr ($a1 + $n1) - ($a2 + $n2)]]
182 set e2 [gets $f2 l2]
183 } else {
184 set e1 [gets $f1 l1]
185 set e2 [gets $f2 l2]
186 } }
187 } } } }
188 }
189
190 # We've reached the end of the first file. The remainder of the
191 # second file must contain only zeroes.
192 while { $e2 != -1 } {
193 set l2 [string trimright $l2 "\r\n"]
194 if ![srec_zero $l2] {
195 send_log "data after EOF: $l2\n"
196 verbose "data after EOF: $l2"
197 return 0
198 }
199 set e2 [gets $f2 l2]
200 }
201
202 return 1
203}
204
205# Link twice, objcopy, and compare
206
207proc run_srec_test { test objs } {
208 global ld
209 global objcopy
210 global sizeof_headers
211 global host_triplet
212
213 set flags ""
214
215 # If the linker script uses SIZEOF_HEADERS, use a -Ttext argument
216 # to force both the normal link and the S-record link to be put in
217 # the same place. We don't always use -Ttext because it interacts
218 # poorly with a.out.
219
220 if { $sizeof_headers } {
221 set flags "$flags -Ttext 0x1000"
222 }
223
224 # The a29k compiled code calls V_SPILL and V_FILL. Since we don't
225 # need to run this code, but we don't have definitions for those
226 # functions, we just define them out.
227 if [istarget a29k*-*-*] {
228 set flags "$flags --defsym V_SPILL=0 --defsym V_FILL=0"
229 }
230
bad19f8f
NC
231 if {[istarget arm*-*-*] || \
232 [istarget strongarm*-*-*] || \
233 [istarget xscale*-*-*] || \
234 [istarget thumb-*-*] } {
252b5132 235
bad19f8f
NC
236 # ARM targets call __gccmain
237 set flags "$flags --defsym __gccmain=0"
238
239 # ARM targets cannot convert format in the linker
240 # using the -oformat command line switch
241 setup_xfail "*arm*-*-*"
242 setup_xfail "xscale-*-*"
243 setup_xfail "thumb-*-*"
252b5132
RH
244 }
245
246 # PowerPC EABI code calls __eabi.
247 if [istarget powerpc*-*-eabi*] {
248 set flags "$flags --defsym __eabi=0"
249 }
250
251 # mn10200 code calls __truncsipsi2_d0_d2.
252 if {[istarget mn10200*-*-*]} then {
253 set flags "$flags --defsym __truncsipsi2_d0_d2=0"
254 }
255
256 # V850 targets need libgcc.a
257 if [istarget v850*-*-elf] {
258 set objs "$objs -L ../gcc -lgcc"
259 }
260
261 if { ![ld_simple_link $ld tmpdir/sr1 "$flags $objs"] \
262 || ![ld_simple_link $ld tmpdir/sr2.sr "$flags -oformat srec $objs"] } {
263 setup_xfail "hppa*-*-*elf*"
264 fail $test
265 return
266 }
267
268 send_log "$objcopy -O srec tmpdir/sr1 tmpdir/sr1.sr\n"
269 verbose "$objcopy -O srec tmpdir/sr1 tmpdir/sr1.sr"
270 catch "exec $objcopy -O srec tmpdir/sr1 tmpdir/sr1.sr" exec_output
271 set exec_output [prune_warnings $exec_output]
272 if ![string match "" $exec_output] {
273 send_log "$exec_output\n"
274 verbose "$exec_output"
275 unresolved $test
276 return
277 }
278
279 set f1 [open tmpdir/sr1.sr r]
280 set f2 [open tmpdir/sr2.sr r]
281 if [srec_compare $f1 $f2] {
282 pass $test
283 } else {
284 fail $test
285 }
286 close $f1
287 close $f2
288}
289
290set test1 "S-records"
291set test2 "S-records with constructors"
292
293# See whether the default linker script uses SIZEOF_HEADERS.
294catch "exec $ld --verbose" exec_output
295set sizeof_headers [string match "*SIZEOF_HEADERS*" $exec_output]
296
297# First test linking a C program. We don't require any libraries. We
298# link it normally, and objcopy to the S-record format, and then link
299# directly to the S-record format, and require that the two files
300# contain the same data.
301
302if { [which $CC] == 0 } {
303 untested $test1
304 untested $test2
305 return
306}
307
308if { ![ld_compile $CC $srcdir/$subdir/sr1.c tmpdir/sr1.o] \
309 || ![ld_compile $CC $srcdir/$subdir/sr2.c tmpdir/sr2.o] } {
310 unresolved $test1
311 unresolved $test2
312 return
313}
314
315# The i386-aout target is confused: the linker does not put the
316# sections where objdump finds them. I don't know which is wrong.
317setup_xfail "i*86-*-aout*"
318
319# These tests fail on the native MIPS ELF targets because the GP value
320# in the .reginfo section is not updated when the S-record version is
321# written out. The mips-elf target itself does not use a .reginfo section.
322setup_xfail "mips*-*-irix5*" "mips*-*-irix6*"
323
324# The S-record linker doesn't do the magic TOC handling that XCOFF
325# linkers do.
326setup_xfail "*-*-aix*" "*-*-xcoff*"
327
328# The S-record linker doesn't build ARM/Thumb stubs.
329setup_xfail "arm-*-coff"
bad19f8f
NC
330setup_xfail "strongarm*-*-coff"
331setup_xfail "xscale*-*-coff"
252b5132
RH
332setup_xfail "arm-*-pe*"
333# setup_xfail "arm-*elf*"
334setup_xfail "thumb-*-coff*"
335setup_xfail "thumb-*-pe*"
336setup_xfail "thumb-*-elf*"
abdbda5e 337setup_xfail "arm*-*-linux*"
252b5132
RH
338
339# The S-record linker doesn't build special EABI sections.
340setup_xfail "powerpc*-*-eabi*"
341
342# The S-record linker doesn't include the .{zda} sections.
343setup_xfail "v850*-*-elf"
344
345# The S-record linker doesn't handle Alpha Elf relaxation.
346setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*"
347setup_xfail "alpha*-*-netbsd*"
348
36a3dc51
AM
349# The S-record linker hasn't any hope of coping with HPPA relocs.
350setup_xfail "hppa*-*-*"
351
69f868fa
DD
352# The S-record linker doesn't support the special PE headers - the PE
353# emulation tries to write pe-specific information to the PE headers
354# in the output bfd, but it's not a PE bfd (it's an srec bfd)
355setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
356
252b5132
RH
357run_srec_test $test1 "tmpdir/sr1.o tmpdir/sr2.o"
358
359# Now try linking a C++ program with global constructors and
360# destructors. Note that since we are not linking against any
361# libraries, this program won't actually work or anything.
362
363if { [which $CXX] == 0 } {
364 untested $test2
365 return
366}
367
368if ![ld_compile "$CXX $CXXFLAGS -fgnu-linker" $srcdir/$subdir/sr3.cc tmpdir/sr3.o] {
369 unresolved $test2
370 return
371}
372
373# See above.
374setup_xfail "i*86-*-aout*"
375setup_xfail "mips*-*-irix5*" "mips*-*-irix6*"
376setup_xfail "*-*-aix*" "*-*-xcoff*"
abdbda5e
NC
377setup_xfail "arm*-*-*"
378setup_xfail "strongarm*-*-*"
252b5132
RH
379setup_xfail "thumb-*-*"
380setup_xfail "powerpc*-*-eabi*"
381setup_xfail "v850*-*-elf"
382setup_xfail "alpha*-*-elf*" "alpha*-*-linux-gnu*" "alpha*-*-gnu*"
383setup_xfail "alpha*-*-netbsd*"
36a3dc51 384setup_xfail "hppa*-*-*"
69f868fa 385setup_xfail "*-*-cygwin*" "*-*-mingw*" "*-*-pe*" "*-*-winnt*"
252b5132
RH
386
387run_srec_test $test2 "tmpdir/sr3.o"
This page took 0.073221 seconds and 4 git commands to generate.