1 # Support routines
for LD testsuite.
2 # Copyright
1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 #
2004, 2005, 2006, 2007 Free Software Foundation
, Inc.
5 # This file is part of the GNU Binutils.
7 # This file is free software
; you can redistribute it and
/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation
; either version
3 of the License
, or
10 #
(at your option
) any later version.
12 # This
program is distributed in the hope that it will be useful
,
13 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License
for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this
program; if not
, write to the Free Software
19 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
,
22 # Extract and print the version number of
ld.
24 proc default_ld_version
{ ld } {
27 if { ![is_remote host
] && [which $
ld] == 0 } then {
28 perror
"$ld does not exist"
32 remote_exec host
"$ld --version" "" "/dev/null" "ld.version"
33 remote_upload host
"ld.version"
34 set tmp
[prune_warnings
[file_contents
"ld.version"]]
35 remote_file build
delete "ld.version"
36 remote_file host
delete "ld.version"
38 regexp
"\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number
39 if [info exists number
] then {
40 clone_output
"$ld $number\n"
44 proc run_host_cmd
{ prog command
} {
47 if { ![is_remote host
] && [which
"$prog"] == 0 } then {
48 perror
"$prog does not exist"
52 verbose
-log "$prog $command"
53 set status [remote_exec host
[concat sh
-c
[list
"$prog $command 2>&1"]] "" "/dev/null" "ld.tmp"]
54 remote_upload host
"ld.tmp"
55 set link_output
[file_contents
"ld.tmp"]
56 regsub
"\n$" $link_output "" link_output
57 if { [lindex $
status 0] != 0 && [string match
"" $link_output] } then {
58 append link_output
"child process exited abnormally"
60 remote_file build
delete ld.tmp
61 remote_file host
delete ld.tmp
63 if [string match
"" $link_output] then {
67 verbose
-log "$link_output"
71 proc run_host_cmd_yesno
{ prog command
} {
74 set exec_output
[prune_warnings
[run_host_cmd
"$prog" "$command"]]
75 if [string match
"" $exec_output] then {
81 # Link an object using relocation.
83 proc default_ld_relocate
{ ld target objects
} {
86 remote_file host
delete $target
87 return [run_host_cmd_yesno
"$ld" "$HOSTING_EMU -o $target -r $objects"]
90 # Check to see
if ld is being invoked with a non
-endian output format
92 proc is_endian_output_format
{ object_flags
} {
94 if {[string match
"*-oformat binary*" $object_flags] || \
95 [string match
"*-oformat ieee*" $object_flags] || \
96 [string match
"*-oformat ihex*" $object_flags] || \
97 [string match
"*-oformat netbsd-core*" $object_flags] || \
98 [string match
"*-oformat srec*" $object_flags] || \
99 [string match
"*-oformat tekhex*" $object_flags] || \
100 [string match
"*-oformat trad-core*" $object_flags] } then {
107 # Look
for big
-endian or little
-endian switches in the multlib
108 # options and
translate these into a
-EB or
-EL
switch. Note
109 # we cannot rely upon proc process_multilib_options to
do this
110 #
for us because
for some targets the compiler does not support
111 #
-EB
/-EL but it does support
-mbig
-endian
/-mlittle
-endian
, and
112 # the site.exp file will
include the
switch "-mbig-endian"
113 #
(rather than
"big-endian") which is not detected by proc
114 # process_multilib_options.
116 proc big_or_little_endian
{} {
118 if [board_info
[target_info
name] exists multilib_flags
] {
119 set tmp_flags
" [board_info [target_info name] multilib_flags]"
121 foreach x $tmp_flags
{
123 {*big
*endian eb EB
-eb
-EB
-mb
-meb
} {
127 {*little
*endian el EL
-el
-EL
-ml
-mel
} {
139 # Link a
program using
ld.
141 proc default_ld_link
{ ld target objects
} {
150 set objs
"$HOSTING_CRT0 $objects"
151 set libs
"$LIBS $HOSTING_LIBS"
153 if [is_endian_output_format $objects
] then {
154 set flags
[big_or_little_endian
]
159 remote_file host
delete $target
161 return [run_host_cmd_yesno
"$ld" "$HOSTING_EMU $flags -o $target $objs $libs"]
164 # Link a
program using
ld, without including
any libraries.
166 proc default_ld_simple_link
{ ld target objects
} {
171 if [is_endian_output_format $objects
] then {
172 set flags
[big_or_little_endian
]
177 #
If we are compiling with gcc
, we want to add gcc_ld_flag to
178 # flags. Rather than determine this in some complex way
, we guess
179 # based
on the
name of the compiler.
181 set ldparm
[string first
" " $ld]
182 if { $ldparm
> 0 } then {
183 set ldexe
[string range $
ld 0 $ldparm
]
185 set ldexe
[string replace $ldexe
0 [string last
"/" $ldexe] ""]
186 if {[string match
"*gcc*" $ldexe] || [string match "*++*" $ldexe]} then {
187 set flags
"$gcc_ld_flag $flags"
190 remote_file host
delete $target
192 set exec_output
[run_host_cmd
"$ld" "$flags -o $target $objects"]
193 set exec_output
[prune_warnings $exec_output
]
195 # We don
't care if we get a warning about a non-existent start
196 # symbol, since the default linker script might use ENTRY.
197 regsub -all "(^|\n)(\[^\n\]*: warning: cannot find entry symbol\[^\n\]*\n?)" $exec_output "\\1" exec_output
199 if [string match "" $exec_output] then {
206 # Compile an object using cc.
208 proc default_ld_compile { cc source object } {
217 if {[llength $cc_prog] > 1} then {
218 set cc_prog [lindex $cc_prog 0]
220 if {![is_remote host] && [which $cc_prog] == 0} then {
221 perror "$cc_prog does not exist"
225 remote_file build delete "$object"
226 remote_file host delete "$object"
228 set flags "-I$srcdir/$subdir"
230 # If we are compiling with gcc, we want to add gcc_gas_flag to
231 # flags. Rather than determine this in some complex way, we guess
232 # based on the name of the compiler.
234 set ccparm [string first " " $cc]
236 if { $ccparm > 0 } then {
237 set ccflags [string range $cc $ccparm end]
238 set ccexe [string range $cc 0 $ccparm]
241 set ccexe [string replace $ccexe 0 [string last "/" $ccexe] ""]
242 if {[string match "*gcc*" $ccexe] || [string match "*++*" $ccexe]} then {
243 set flags "$gcc_gas_flag $flags"
246 if {[string match "*++*" $ccexe]} {
247 set flags "$flags $CXXFLAGS"
249 set flags "$flags $CFLAGS"
252 if [board_info [target_info name] exists multilib_flags] {
253 append flags " [board_info [target_info name] multilib_flags]"
256 verbose -log "$cc $flags $ccflags -c $source -o $object"
258 set status [remote_exec host [concat sh -c [list "$cc $flags $ccflags -c $source -o $object 2>&1"]] "" "/dev/null" "ld.tmp"]
259 remote_upload host "ld.tmp"
260 set exec_output [file_contents "ld.tmp"]
261 remote_file build delete "ld.tmp"
262 remote_file host delete "ld.tmp"
263 set exec_output [prune_warnings $exec_output]
264 if [string match "" $exec_output] then {
265 if {![file exists $object]} then {
266 regexp ".*/(\[^/\]*)$" $source all dobj
267 regsub "\\.c" $dobj ".o" realobj
268 verbose "looking for $realobj"
269 if {[remote_file host exists $realobj]} then {
270 verbose -log "mv $realobj $object"
271 remote_upload "$realobj" "$object"
273 perror "$object not found after compilation"
279 verbose -log "$exec_output"
280 perror "$source: compilation failed"
287 proc default_ld_assemble { as source object } {
291 if ![info exists ASFLAGS] { set ASFLAGS "" }
293 set flags [big_or_little_endian]
294 set exec_output [run_host_cmd "$as" "$flags $ASFLAGS -o $object $source"]
295 set exec_output [prune_warnings $exec_output]
296 if [string match "" $exec_output] then {
299 perror "$source: assembly failed"
304 # Run nm on a file, putting the result in the array nm_output.
306 proc default_ld_nm { nm nmflags object } {
311 if {[info exists nm_output]} {
315 if ![info exists NMFLAGS] { set NMFLAGS "" }
317 # Ensure consistent sorting of symbols
318 if {[info exists env(LC_ALL)]} {
319 set old_lc_all $env(LC_ALL)
323 verbose -log "$nm $NMFLAGS $nmflags $object >tmpdir/nm.out"
325 set status [remote_exec host [concat sh -c [list "$nm $NMFLAGS $nmflags $object 2>ld.stderr"]] "" "/dev/null" "tmpdir/nm.out"]
326 if {[info exists old_lc_all]} {
327 set env(LC_ALL) $old_lc_all
331 remote_upload host "ld.stderr"
332 remote_upload host "tmpdir/nm.out" "tmpdir/nm.out"
333 set exec_output [prune_warnings [file_contents "ld.stderr"]]
334 remote_file host delete "ld.stderr"
335 remote_file build delete "ld.stderr"
336 if [string match "" $exec_output] then {
337 set file [open tmpdir/nm.out r]
338 while { [gets $file line] != -1 } {
340 if [regexp "^(\[0-9a-fA-F\]+) \[a-zA-Z0-9\] \\.*(.+)$" $line whole value name] {
341 set name [string trimleft $name "_"]
342 verbose "Setting nm_output($name) to 0x$value" 2
343 set nm_output($name) 0x$value
349 verbose -log "$exec_output"
350 perror "$object: nm failed"
355 # True if the object format is known to be ELF.
357 proc is_elf_format {} {
358 if { ![istarget *-*-sysv4*] \
359 && ![istarget *-*-unixware*] \
360 && ![istarget *-*-elf*] \
361 && ![istarget *-*-eabi*] \
362 && ![istarget hppa*64*-*-hpux*] \
363 && ![istarget *-*-linux*] \
364 && ![istarget frv-*-uclinux*] \
365 && ![istarget *-*-irix5*] \
366 && ![istarget *-*-irix6*] \
367 && ![istarget *-*-netbsd*] \
368 && ![istarget *-*-solaris2*] } {
372 if { [istarget *-*-linux*aout*] \
373 || [istarget *-*-linux*oldld*] } {
377 if { ![istarget *-*-netbsdelf*] \
378 && ([istarget *-*-netbsd*aout*] \
379 || [istarget *-*-netbsdpe*] \
380 || [istarget arm*-*-netbsd*] \
381 || [istarget sparc-*-netbsd*] \
382 || [istarget i*86-*-netbsd*] \
383 || [istarget m68*-*-netbsd*] \
384 || [istarget vax-*-netbsd*] \
385 || [istarget ns32k-*-netbsd*]) } {
391 # True if the object format is known to be 64-bit ELF.
393 proc is_elf64 { binary_file } {
398 catch "exec $READELF $READELFFLAGS -h $binary_file > readelf.out" got
400 if ![string match "" $got] then {
404 if { ![regexp "\n\[ \]*Class:\[ \]*ELF(\[0-9\]+)\n" \
405 [file_contents readelf.out] nil readelf_size] } {
409 if { $readelf_size == "64" } {
416 # True if the object format is known to be a.out.
418 proc is_aout_format {} {
419 if { [istarget *-*-*\[ab\]out*] \
420 || [istarget *-*-linux*oldld*] \
421 || [istarget *-*-msdos*] \
422 || [istarget arm-*-netbsd] \
423 || [istarget i?86-*-netbsd] \
424 || [istarget i?86-*-mach*] \
425 || [istarget i?86-*-vsta] \
426 || [istarget pdp11-*-*] \
427 || [istarget m68*-ericsson-ose] \
428 || [istarget m68k-hp-bsd*] \
429 || [istarget m68*-*-hpux*] \
430 || [istarget m68*-*-netbsd] \
431 || [istarget m68*-*-netbsd*4k*] \
432 || [istarget m68k-sony-*] \
433 || [istarget m68*-sun-sunos\[34\]*] \
434 || [istarget m68*-wrs-vxworks*] \
435 || [istarget ns32k-*-*] \
436 || [istarget sparc*-*-netbsd] \
437 || [istarget sparc-sun-sunos4*] \
438 || [istarget vax-dec-ultrix*] \
439 || [istarget vax-*-netbsd] } {
445 # True if the object format is known to be PE COFF.
447 proc is_pecoff_format {} {
448 if { ![istarget *-*-mingw*] \
449 && ![istarget *-*-cygwin*] \
450 && ![istarget *-*-pe*] } {
457 # Compares two files line-by-line.
458 # Returns differences if exist.
459 # Returns null if file(s) cannot be opened.
461 proc simple_diff { file_1 file_2 } {
467 if [file exists $file_1] then {
468 set file_a [open $file_1 r]
470 warning "$file_1 doesn't exist
"
474 if [file
exists $file_2
] then {
475 set file_b
[open $file_2 r
]
477 fail
"$file_2 doesn't exist"
481 verbose
"# Diff'ing: $file_1 $file_2\n" 2
483 while { [gets $file_a line
] != $eof
} {
484 if [regexp
"^#.*$" $line] then {
492 while { [gets $file_b line
] != $eof
} {
493 if [regexp
"^#.*$" $line] then {
501 for { set i
0 } { $i
< [llength $list_a
] } { incr i
} {
502 set line_a
[lindex $list_a $i
]
503 set line_b
[lindex $list_b $i
]
505 verbose
"\t$file_1: $i: $line_a\n" 3
506 verbose
"\t$file_2: $i: $line_b\n" 3
507 if [string compare $line_a $line_b
] then {
508 verbose
-log "\t$file_1: $i: $line_a\n"
509 verbose
-log "\t$file_2: $i: $line_b\n"
516 if { [llength $list_a
] != [llength $list_b
] } {
521 if $differences
<1 then {
527 # Copied from gas testsuite
, tweaked and further extended.
529 # Assemble a .s file
, then run some utility
on it and check the output.
531 # There should be an assembly language file named FILE.s in the test
532 # suite directory
, and a pattern file called FILE.d. `run_dump_test
'
533 # will assemble FILE.s, run some tool like `objdump', `objcopy
', or
534 # `nm' on the .o file to produce textual output
, and
then analyze that
535 # with regexps. The FILE.d file specifies what
program to run
, and
536 # what to expect in its output.
538 # The FILE.d file begins with zero or more option lines
, which specify
539 # flags to pass to the assembler
, the
program to run to dump the
540 # assembler
's output, and the options it wants. The option lines have
545 # OPTION is the name of some option, like "name" or "objdump", and
546 # VALUE is OPTION's value. The valid options are described below.
547 # Whitespace is ignored everywhere
, except within VALUE. The option
548 # list ends with the first line that doesn
't match the above syntax
549 # (hmm, not great for error detection).
551 # The interesting options are:
554 # The name of this test, passed to DejaGNU's `pass
' and `fail'
555 # commands.
If omitted
, this defaults to FILE
, the root of the
556 # .s and .d files
' names.
559 # When assembling, pass FLAGS to the assembler.
560 # If assembling several files, you can pass different assembler
561 # options in the "source" directives. See below.
564 # Link assembled files using FLAGS, in the order of the "source"
565 # directives, when using multiple files.
567 # objcopy_linked_file: FLAGS
568 # Run objcopy on the linked file with the specified flags.
569 # This lets you transform the linked file using objcopy, before the
570 # result is analyzed by an analyzer program specified below (which
571 # may in turn *also* be objcopy).
574 # The name of the program to run to analyze the .o file produced
575 # by the assembler or the linker output. This can be omitted;
576 # run_dump_test will guess which program to run by seeing which of
577 # the flags options below is present.
582 # Use the specified program to analyze the assembler or linker
583 # output file, and pass it FLAGS, in addition to the output name.
584 # Note that they are run with LC_ALL=C in the environment to give
585 # consistent sorting of symbols.
587 # source: SOURCE [FLAGS]
588 # Assemble the file SOURCE.s using the flags in the "as" directive
589 # and the (optional) FLAGS. If omitted, the source defaults to
591 # This is useful if several .d files want to share a .s file.
592 # More than one "source" directive can be given, which is useful
593 # when testing linking.
596 # The test is expected to fail on TARGET. This may occur more than
600 # Only run the test for TARGET. This may occur more than once; the
601 # target being tested must match at least one. You may provide target
602 # name "cfi" for any target supporting the CFI statements.
605 # Do not run the test for TARGET. This may occur more than once;
606 # the target being tested must not match any of them.
609 # An error with message matching REGEX must be emitted for the test
610 # to pass. The PROG, objdump, nm and objcopy options have no
611 # meaning and need not supplied if this is present.
614 # Expect a linker warning matching REGEX. It is an error to issue
615 # both "error" and "warning".
617 # Each option may occur at most once unless otherwise mentioned.
619 # After the option lines come regexp lines. `run_dump_test' calls
620 # `regexp_diff
' to compare the output of the dumping tool against the
621 # regexps in FILE.d. `regexp_diff' is defined later in this file
; see
622 # further comments there.
624 proc run_dump_test
{ name } {
626 global OBJDUMP NM AS OBJCOPY READELF
LD
627 global OBJDUMPFLAGS NMFLAGS ASFLAGS OBJCOPYFLAGS READELFFLAGS LDFLAGS
628 global host_triplet runtests
631 if [string match
"*/*" $name] {
633 set name [file tail $
name]
635 set file
"$srcdir/$subdir/$name"
638 if ![runtest_file_p $runtests $
name] then {
642 set opt_array
[slurp_options
"${file}.d"]
643 if { $opt_array
== -1 } {
644 perror
"error reading options from $file.d"
645 unresolved $subdir
/$
name
648 set dumpfile tmpdir
/dump.out
655 set opts
(notarget
) {}
665 set opts
(objcopy_linked_file
) {}
666 set asflags
($
{file
}.s
) {}
668 foreach i $opt_array
{
669 set opt_name
[lindex $i
0]
670 set opt_val
[lindex $i
1]
671 if ![info exists opts
($opt_name
)] {
672 perror
"unknown option $opt_name in file $file.d"
673 unresolved $subdir
/$
name
677 switch -- $opt_name
{
682 #
Move any source
-specific as
-flags to a separate array to
683 # simplify processing.
684 if { [llength $opt_val
] > 1 } {
685 set asflags
([lindex $opt_val
0]) [lrange $opt_val
1 end
]
686 set opt_val
[lindex $opt_val
0]
688 set asflags
($opt_val
) {}
692 if [string length $opts
($opt_name
)] {
693 perror
"option $opt_name multiply set in $file.d"
694 unresolved $subdir
/$
name
698 # A single
"# ld:" with no options should do the right thing.
699 if { $opt_name
== "ld" } {
702 # Likewise objcopy_linked_file.
703 if { $opt_name
== "objcopy_linked_file" } {
708 if { $opt_name
== "as" || $opt_name == "ld" } {
709 set opt_val
[subst $opt_val
]
711 set opts
($opt_name
) [concat $opts
($opt_name
) $opt_val
]
713 foreach opt
{ as
ld } {
714 regsub
{\
[big_or_little_endian\
]} $opts
($opt
) \
715 [big_or_little_endian
] opts
($opt
)
718 # Decide early whether we should run the test
for this target.
719 if { [llength $opts
(target
)] > 0 } {
721 foreach targ $opts
(target
) {
722 if [istarget $targ
] {
727 if { $targmatch
== 0 } {
731 foreach targ $opts
(notarget
) {
732 if [istarget $targ
] {
738 # It
's meaningless to require an output-testing method when we
740 if { $opts(error) == "" } {
741 if {$opts(PROG) != ""} {
742 switch -- $opts(PROG) {
743 objdump { set program objdump }
744 nm { set program nm }
745 objcopy { set program objcopy }
746 readelf { set program readelf }
748 { perror "unrecognized program option $opts(PROG) in $file.d"
749 unresolved $subdir/$name
753 # Guess which program to run, by seeing which option was specified.
754 foreach p {objdump objcopy nm readelf} {
755 if {$opts($p) != ""} {
756 if {$program != ""} {
757 perror "ambiguous dump program in $file.d"
758 unresolved $subdir/$name
766 if { $program == "" && $opts(warning) == "" } {
767 perror "dump program unspecified in $file.d"
768 unresolved $subdir/$name
773 if { $opts(name) == "" } {
774 set testname "$subdir/$name"
776 set testname $opts(name)
779 if { $opts(source) == "" } {
780 set sourcefiles [list ${file}.s]
783 foreach sf $opts(source) {
784 if { [string match "/*" $sf] } {
785 lappend sourcefiles "$sf"
787 lappend sourcefiles "$srcdir/$subdir/$sf"
789 # Must have asflags indexed on source name.
790 set asflags($srcdir/$subdir/$sf) $asflags($sf)
794 # Time to setup xfailures.
795 foreach targ $opts(xfail) {
799 # Assemble each file.
801 for { set i 0 } { $i < [llength $sourcefiles] } { incr i } {
802 set sourcefile [lindex $sourcefiles $i]
804 set objfile "tmpdir/dump$i.o"
805 catch "exec rm -f $objfile" exec_output
806 lappend objfiles $objfile
807 set cmd "$AS $ASFLAGS $opts(as) $asflags($sourcefile) -o $objfile $sourcefile"
810 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
811 remote_upload host "ld.tmp"
812 set comp_output [prune_warnings [file_contents "ld.tmp"]]
813 remote_file host delete "ld.tmp"
814 remote_file build delete "ld.tmp"
816 if { [lindex $cmdret 0] != 0 || ![string match "" $comp_output] } then {
817 send_log "$comp_output\n"
818 verbose "$comp_output" 3
820 set exitstat "succeeded"
821 if { $cmdret != 0 } { set exitstat "failed" }
822 verbose -log "$exitstat with: <$comp_output>"
828 set expmsg $opts(error)
829 if { $opts(warning) != "" } {
830 if { $expmsg != "" } {
831 perror "$testname: mixing error and warning test-directives"
834 set expmsg $opts(warning)
837 # Perhaps link the file(s).
839 set objfile "tmpdir/dump"
840 catch "exec rm -f $objfile" exec_output
842 # Add -L$srcdir/$subdir so that the linker command can use
843 # linker scripts in the source directory.
844 set cmd "$LD $LDFLAGS -L$srcdir/$subdir \
845 $opts(ld) -o $objfile $objfiles"
848 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
849 remote_upload host "ld.tmp"
850 set comp_output [file_contents "ld.tmp"]
851 remote_file host delete "ld.tmp"
852 remote_file build delete "ld.tmp"
853 set cmdret [lindex $cmdret 0]
855 if { $cmdret == 0 && $run_objcopy } {
857 set objfile "tmpdir/dump1"
858 remote_file host delete $objfile
860 # Note that we don't use OBJCOPYFLAGS here
; any flags must be
861 # explicitly specified.
862 set cmd
"$OBJCOPY $opts(objcopy_linked_file) $infile $objfile"
865 set cmdret
[remote_exec host
[concat sh
-c
[list
"$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
866 remote_upload host
"ld.tmp"
867 append comp_output
[file_contents
"ld.tmp"]
868 remote_file host
delete "ld.tmp"
869 remote_file build
delete "ld.tmp"
870 set cmdret
[lindex $cmdret
0]
873 regsub
"\n$" $comp_output "" comp_output
874 if { $cmdret
!= 0 || $comp_output
!= "" || $expmsg != "" } then {
875 set exitstat
"succeeded"
876 if { $cmdret
!= 0 } { set exitstat
"failed" }
877 verbose
-log "$exitstat with: <$comp_output>, expected: <$expmsg>"
878 send_log
"$comp_output\n"
879 verbose
"$comp_output" 3
881 if { [regexp $expmsg $comp_output
] \
882 && (($cmdret
== 0) == ($opts
(warning
) != "")) } {
883 # We have the expected output from
ld.
884 if { $opts
(error
) != "" || $program == "" } {
889 verbose
-log "$exitstat with: <$comp_output>, expected: <$expmsg>"
895 set objfile
"tmpdir/dump0.o"
898 # We must not have expected failure
if we
get here.
899 if { $opts
(error
) != "" } {
904 set progopts1 $opts
($
program)
905 eval
set progopts \$
[string toupper $
program]FLAGS
906 eval
set binary \$
[string toupper $
program]
908 if { ![is_remote host
] && [which $binary
] == 0 } {
913 if { $progopts1
== "" } { set $progopts1 "-r" }
914 verbose
"running $binary $progopts $progopts1" 3
916 # Objcopy
, unlike the other two
, won
't send its output to stdout,
917 # so we have to run it specially.
918 set cmd "$binary $progopts $progopts1 $objfile > $dumpfile"
919 if { $program == "objcopy" } {
920 set cmd "$binary $progopts $progopts1 $objfile $dumpfile"
923 # Ensure consistent sorting of symbols
924 if {[info exists env(LC_ALL)]} {
925 set old_lc_all $env(LC_ALL)
929 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>ld.tmp"]] "" "/dev/null"]
930 remote_upload host "ld.tmp"
931 set comp_output [prune_warnings [file_contents "ld.tmp"]]
932 remote_file host delete "ld.tmp"
933 remote_file build delete "ld.tmp"
934 if {[info exists old_lc_all]} {
935 set env(LC_ALL) $old_lc_all
939 if ![string match "" $comp_output] then {
940 send_log "$comp_output\n"
945 verbose_eval {[file_contents $dumpfile]} 3
946 if { [regexp_diff $dumpfile "${file}.d"] } then {
948 verbose "output is [file_contents $dumpfile]" 2
955 proc slurp_options { file } {
956 if [catch { set f [open $file r] } x] {
957 #perror "couldn't open `$file
': $x"
962 # whitespace expression
965 # whitespace is ignored anywhere except within the options list;
966 # option names are alphabetic plus underscore only.
967 set pat "^#${ws}(\[a-zA-Z_\]*)$ws:${ws}(.*)$ws\$"
968 while { [gets $f line] != -1 } {
969 set line [string trim $line]
970 # Whitespace here is space-tab.
971 if [regexp $pat $line xxx opt_name opt_val] {
973 lappend opt_array [list $opt_name $opt_val]
982 # regexp_diff, copied from gas, based on simple_diff above.
983 # compares two files line-by-line
984 # file1 contains strings, file2 contains regexps and #-comments
985 # blank lines are ignored in either file
986 # returns non-zero if differences exist
988 proc regexp_diff { file_1 file_2 } {
996 if [file exists $file_1] then {
997 set file_a [open $file_1 r]
999 warning "$file_1 doesn't exist
"
1003 if [file
exists $file_2
] then {
1004 set file_b
[open $file_2 r
]
1006 fail
"$file_2 doesn't exist"
1011 verbose
" Regexp-diff'ing: $file_1 $file_2" 2
1016 while { [string length $line_a
] == 0 } {
1017 if { [gets $file_a line_a
] == $eof
} {
1022 while { [string length $line_b
] == 0 ||
[string match
"#*" $line_b] } {
1023 if [ string match
"#pass" $line_b ] {
1027 } elseif
[ string match
"#..." $line_b ] {
1028 if { [gets $file_b line_b
] == $eof
} {
1033 verbose
"looking for \"^$line_b$\"" 3
1034 while { ![regexp
"^$line_b$" "$line_a"] } {
1035 verbose
"skipping \"$line_a\"" 3
1036 if { [gets $file_a line_a
] == $eof
} {
1043 if { [gets $file_b line_b
] == $eof
} {
1051 } elseif
{ $end_1
&& $end_2
} {
1053 } elseif
{ $end_1
} {
1054 send_log
"extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n"
1055 verbose
"extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3
1058 } elseif
{ $end_2
} {
1059 send_log
"extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n"
1060 verbose
"extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3
1064 verbose
"regexp \"^$line_b$\"\nline \"$line_a\"" 3
1065 if ![regexp
"^$line_b$" "$line_a"] {
1066 send_log
"regexp_diff match failure\n"
1067 send_log
"regexp \"^$line_b$\"\nline \"$line_a\"\n"
1073 if { $differences
== 0 && !$diff_pass
&& [eof $file_a
] != [eof $file_b
] } {
1074 send_log
"$file_1 and $file_2 are different lengths\n"
1075 verbose
"$file_1 and $file_2 are different lengths" 3
1085 proc file_contents
{ filename
} {
1086 set file
[open $filename r
]
1087 set contents
[read $file
]
1092 # List contains test
-items with
3 items followed by
2 lists
, one item and
1093 # one optional item
:
1094 #
0:name 1:ld options
2:assembler options
1095 #
3:filenames of assembler files
4: action and options.
5: name of output file
1096 #
6:compiler flags
(optional
)
1099 # objdump
: Apply objdump options
on result. Compare with regex
(last
arg).
1100 # nm
: Apply nm options
on result. Compare with regex
(last
arg).
1101 # readelf
: Apply readelf options
on result. Compare with regex
(last
arg).
1103 proc run_ld_link_tests
{ ldtests
} {
1115 foreach testitem $ldtests
{
1116 set testname
[lindex $testitem
0]
1117 set ld_options
[lindex $testitem
1]
1118 set as_options
[lindex $testitem
2]
1119 set src_files
[lindex $testitem
3]
1120 set actions
[lindex $testitem
4]
1121 set binfile tmpdir
/[lindex $testitem
5]
1122 set cflags
[lindex $testitem
6]
1127 # verbose
-log "Testname is $testname"
1128 # verbose
-log "ld_options is $ld_options"
1129 # verbose
-log "as_options is $as_options"
1130 # verbose
-log "src_files is $src_files"
1131 # verbose
-log "actions is $actions"
1132 # verbose
-log "binfile is $binfile"
1134 # Assemble each file in the test.
1135 foreach src_file $src_files
{
1136 set objfile
"tmpdir/[file rootname $src_file].o"
1137 lappend objfiles $objfile
1139 if { [file extension $src_file
] == ".c" } {
1140 set as_file
"tmpdir/[file rootname $src_file].s"
1141 if ![ld_compile
"$CC -S $CFLAGS $cflags" $srcdir/$subdir/$src_file $as_file] {
1146 set as_file
"$srcdir/$subdir/$src_file"
1148 if ![ld_assemble $as
"$as_options $as_file" $objfile] {
1154 # Catch assembler errors.
1155 if { $is_unresolved
!= 0 } {
1156 unresolved $testname
1160 if ![ld_simple_link $
ld $binfile
"-L$srcdir/$subdir $ld_options $objfiles"] {
1164 foreach actionlist $actions
{
1165 set action
[lindex $actionlist
0]
1166 set progopts
[lindex $actionlist
1]
1168 # There are actions where we run regexp_diff
on the
1169 # output
, and there are other actions
(presumably
).
1170 # Handling of the former look the same.
1174 { set dump_prog $objdump
}
1176 { set dump_prog $nm
}
1178 { set dump_prog $READELF
}
1181 perror
"Unrecognized action $action"
1187 if { $dump_prog
!= "" } {
1188 set dumpfile
[lindex $actionlist
2]
1189 set binary $dump_prog
1191 # Ensure consistent sorting of symbols
1192 if {[info exists env
(LC_ALL
)]} {
1193 set old_lc_all $env
(LC_ALL
)
1196 set cmd
"$binary $progopts $binfile"
1197 set status [remote_exec host
[concat sh
-c
[list
"$cmd >dump.out 2>ld.stderr"]] "" "/dev/null"]
1199 remote_upload host
"ld.stderr"
1200 set comp_output
[prune_warnings
[file_contents
"ld.stderr"]]
1201 remote_file host
delete "ld.stderr"
1202 remote_file build
delete "ld.stderr"
1204 if {[info exists old_lc_all
]} {
1205 set env
(LC_ALL
) $old_lc_all
1210 if ![string match
"" $comp_output] then {
1211 send_log
"$comp_output\n"
1216 remote_upload host
"dump.out"
1218 if { [regexp_diff
"dump.out" "$srcdir/$subdir/$dumpfile"] } then {
1219 verbose
"output is [file_contents "dump.out"]" 2
1221 remote_file build
delete "dump.out"
1222 remote_file host
delete "dump.out"
1225 remote_file build
delete "dump.out"
1226 remote_file host
delete "dump.out"
1230 if { $failed
!= 0 } {
1232 } else { if { $is_unresolved
== 0 } {
1237 # Catch action errors.
1238 if { $is_unresolved
!= 0 } {
1239 unresolved $testname
1246 proc verbose_eval
{ expr
{ level
1 } } {
1248 if $verbose
>$level
then { eval verbose
"$expr" $level }
1251 # This definition is taken from an unreleased version of DejaGnu. Once
1252 # that version gets released
, and has been out in the world
for a few
1253 # months at least
, it may be safe to
delete this copy.
1254 if ![string length
[info proc prune_warnings
]] {
1256 # prune_warnings
-- delete various
system verbosities from
TEXT
1259 #
ld.so
: warning
: /usr
/lib
/libc.so
.1.8.1 has older revision than expected
9
1261 # Sites with particular verbose os
's may wish to override this in site.exp.
1263 proc prune_warnings { text } {
1264 # This is from sun4's.
Do it
for all machines
for now.
1265 # The
"\\1" is to try to preserve a "\n" but only if necessary.
1266 regsub
-all
"(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
1268 # It might be tempting to
get carried away and
delete blank lines
, etc.
1269 # Just
delete *exactly
* what we
're ask to, and that's it.
1274 # targets_to_xfail is a list of target triplets to be xfailed.
1275 # ldtests contains test
-items with
3 items followed by
1 lists
, 2 items
1276 # and
3 optional items
:
1279 #
2:assembler options
1280 #
3:filenames of source files
1281 #
4:name of output file
1283 #
6:compiler flags
(optional
)
1284 #
7:language
(optional
)
1285 #
8:linker warning
(optional
)
1287 proc run_ld_link_exec_tests
{ targets_to_xfail ldtests
} {
1300 foreach testitem $ldtests
{
1301 foreach target $targets_to_xfail
{
1304 set testname
[lindex $testitem
0]
1305 set ld_options
[lindex $testitem
1]
1306 set as_options
[lindex $testitem
2]
1307 set src_files
[lindex $testitem
3]
1308 set binfile tmpdir
/[lindex $testitem
4]
1309 set expfile
[lindex $testitem
5]
1310 set cflags
[lindex $testitem
6]
1311 set lang
[lindex $testitem
7]
1312 set warning
[lindex $testitem
8]
1316 # verbose
-log "Testname is $testname"
1317 # verbose
-log "ld_options is $ld_options"
1318 # verbose
-log "as_options is $as_options"
1319 # verbose
-log "src_files is $src_files"
1320 # verbose
-log "actions is $actions"
1321 # verbose
-log "binfile is $binfile"
1323 # Assemble each file in the test.
1324 foreach src_file $src_files
{
1325 set objfile
"tmpdir/[file rootname $src_file].o"
1326 lappend objfiles $objfile
1328 # We ignore warnings since some compilers may generate
1329 # incorrect section attributes and the assembler will warn
1331 if { [ string match
"c++" $lang ] } {
1332 ld_compile
"$CXX -c $CXXFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1334 ld_compile
"$CC -c $CFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1337 # We have to use $CC to build PIE and shared library.
1338 if { [ string match
"c" $lang ] } {
1339 set link_proc ld_simple_link
1341 } elseif
{ [ string match
"c++" $lang ] } {
1342 set link_proc ld_simple_link
1344 } elseif
{ [ string match
"-shared" $ld_options ] \
1345 ||
[ string match
"-pie" $ld_options ] } {
1346 set link_proc ld_simple_link
1349 set link_proc ld_link
1353 if ![$link_proc $link_cmd $binfile
"-L$srcdir/$subdir $ld_options $objfiles"] {
1359 # Check
if exec_output is expected.
1360 if { $warning
!= "" } then {
1361 verbose
-log "returned with: <$exec_output>, expected: <$warning>"
1362 if { [regexp $warning $exec_output
] } then {
1369 if { $failed
== 0 } {
1370 send_log
"Running: $binfile > $binfile.out\n"
1371 verbose
"Running: $binfile > $binfile.out"
1372 catch
"exec $binfile > $binfile.out" exec_output
1374 if ![string match
"" $exec_output] then {
1375 send_log
"$exec_output\n"
1376 verbose
"$exec_output" 1
1379 send_log
"diff $binfile.out $srcdir/$subdir/$expfile\n"
1380 verbose
"diff $binfile.out $srcdir/$subdir/$expfile"
1381 catch
"exec diff $binfile.out $srcdir/$subdir/$expfile" exec_output
1382 set exec_output
[prune_warnings $exec_output
]
1384 if ![string match
"" $exec_output] then {
1385 send_log
"$exec_output\n"
1386 verbose
"$exec_output" 1
1392 if { $failed
!= 0 } {
1402 # List contains test
-items with
3 items followed by
2 lists
, one item and
1403 # one optional item
:
1407 #
3:filenames of source files
1408 #
4:action and options.
1409 #
5:name of output file
1410 #
6:language
(optional
)
1413 # objdump
: Apply objdump options
on result. Compare with regex
(last
arg).
1414 # nm
: Apply nm options
on result. Compare with regex
(last
arg).
1415 # readelf
: Apply readelf options
on result. Compare with regex
(last
arg).
1417 proc run_cc_link_tests
{ ldtests
} {
1429 foreach testitem $ldtests
{
1430 set testname
[lindex $testitem
0]
1431 set ldflags
[lindex $testitem
1]
1432 set cflags
[lindex $testitem
2]
1433 set src_files
[lindex $testitem
3]
1434 set actions
[lindex $testitem
4]
1435 set binfile tmpdir
/[lindex $testitem
5]
1436 set lang
[lindex $testitem
6]
1441 #
Compile each file in the test.
1442 foreach src_file $src_files
{
1443 set objfile
"tmpdir/[file rootname $src_file].o"
1444 lappend objfiles $objfile
1446 # We ignore warnings since some compilers may generate
1447 # incorrect section attributes and the assembler will warn
1449 if { [ string match
"c++" $lang ] } {
1450 ld_compile
"$CXX -c $CXXFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1452 ld_compile
"$CC -c $CFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1456 # Clear error and warning counts.
1459 if { [ string match
"c++" $lang ] } {
1465 if ![ld_simple_link $cc_cmd $binfile
"-L$srcdir/$subdir $ldflags $objfiles"] {
1469 foreach actionlist $actions
{
1470 set action
[lindex $actionlist
0]
1471 set progopts
[lindex $actionlist
1]
1473 # There are actions where we run regexp_diff
on the
1474 # output
, and there are other actions
(presumably
).
1475 # Handling of the former look the same.
1479 { set dump_prog $objdump
}
1481 { set dump_prog $nm
}
1483 { set dump_prog $READELF
}
1486 perror
"Unrecognized action $action"
1492 if { $dump_prog
!= "" } {
1493 set dumpfile
[lindex $actionlist
2]
1494 set binary $dump_prog
1496 # Ensure consistent sorting of symbols
1497 if {[info exists env
(LC_ALL
)]} {
1498 set old_lc_all $env
(LC_ALL
)
1501 set cmd
"$binary $progopts $binfile > dump.out"
1503 catch
"exec $cmd" comp_output
1504 if {[info exists old_lc_all
]} {
1505 set env
(LC_ALL
) $old_lc_all
1509 set comp_output
[prune_warnings $comp_output
]
1511 if ![string match
"" $comp_output] then {
1512 send_log
"$comp_output\n"
1517 if { [regexp_diff
"dump.out" "$srcdir/$subdir/$dumpfile"] } then {
1518 verbose
"output is [file_contents "dump.out"]" 2
1525 if { $failed
!= 0 } {
1527 } else { if { $is_unresolved
== 0 } {
1532 # Catch action errors.
1533 if { $is_unresolved
!= 0 } {
1534 unresolved $testname
1540 # Returns true
if --gc
-sections is supported
on the target.
1542 proc check_gc_sections_available
{ } {
1543 global gc_sections_available_saved
1546 if {![info exists gc_sections_available_saved
]} {
1547 # Some targets don
't support gc-sections despite whatever's
1548 # advertised by
ld's options.
1549 if { [istarget alpha*-*-*]
1550 || [istarget ia64-*-*] } {
1551 set gc_sections_available_saved 0
1555 # elf2flt uses -q (--emit-relocs), which is incompatible with
1557 if { [board_info target exists ldflags]
1558 && [regexp " -elf2flt\[ =\]" " [board_info target ldflags] "] } {
1559 set gc_sections_available_saved 0
1563 # Check if the ld used by gcc supports --gc-sections.
1564 set ld_output [remote_exec host $ld "--help"]
1565 if { [ string first "--gc-sections" $ld_output ] >= 0 } {
1566 set gc_sections_available_saved 1
1568 set gc_sections_available_saved 0
1571 return $gc_sections_available_saved
1574 # Check if the assembler supports CFI statements.
1576 proc check_as_cfi { } {
1577 global check_as_cfi_result
1579 if [info exists check_as_cfi_result] {
1580 return $check_as_cfi_result
1582 set as_file "tmpdir/check_as_cfi.s"
1583 set as_fh [open $as_file w 0666]
1584 puts $as_fh "# Generated file. DO NOT EDIT"
1585 puts $as_fh "\t.cfi_startproc"
1586 puts $as_fh "\t.cfi_endproc"
1588 remote_download host $as_file
1589 verbose -log "Checking CFI support:"
1590 rename "perror" "check_as_cfi_perror"
1591 proc perror { args } { }
1592 set success [ld_assemble $as $as_file "/dev/null"]
1594 rename "check_as_cfi_perror" "perror"
1595 #remote_file host delete $as_file
1596 set check_as_cfi_result $success
1600 # Provide virtual target "cfi" for targets supporting CFI.
1602 rename "istarget" "istarget_ld"
1603 proc istarget { target } {
1604 if {$target == "cfi"} {
1605 return [check_as_cfi]
1607 return [istarget_ld $target]