1 # Support routines
for LD testsuite.
2 # Copyright
1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 #
2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 # Free Software Foundation
, Inc.
6 # This file is part of the GNU Binutils.
8 # This file is free software
; you can redistribute it and
/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation
; either version
3 of the License
, or
11 #
(at your option
) any later version.
13 # This
program is distributed in the hope that it will be useful
,
14 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License
for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this
program; if not
, write to the Free Software
20 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
,
23 proc load_common_lib
{ name } {
25 load_file $srcdir
/..
/..
/binutils
/testsuite
/lib
/$
name
28 load_common_lib binutils
-common.exp
30 # Extract and print the version number of
ld.
32 proc default_ld_version
{ ld } {
35 if { ![is_remote host
] && [which $
ld] == 0 } then {
36 perror
"$ld does not exist"
40 remote_exec host
"$ld --version" "" "/dev/null" "ld.version"
41 remote_upload host
"ld.version"
42 set tmp
[prune_warnings
[file_contents
"ld.version"]]
43 remote_file build
delete "ld.version"
44 remote_file host
delete "ld.version"
46 regexp
"\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number
47 if [info exists number
] then {
48 clone_output
"$ld $number\n"
52 proc run_host_cmd
{ prog command
} {
55 if { ![is_remote host
] && [which
"$prog"] == 0 } then {
56 perror
"$prog does not exist"
60 verbose
-log "$prog $command"
61 set status [remote_exec host
[concat sh
-c
[list
"$prog $command 2>&1"]] "" "/dev/null" "ld.tmp"]
62 remote_upload host
"ld.tmp"
63 set link_output
[file_contents
"ld.tmp"]
64 regsub
"\n$" $link_output "" link_output
65 if { [lindex $
status 0] != 0 && [string match
"" $link_output] } then {
66 append link_output
"child process exited abnormally"
68 remote_file build
delete ld.tmp
69 remote_file host
delete ld.tmp
71 if [string match
"" $link_output] then {
75 verbose
-log "$link_output"
79 proc run_host_cmd_yesno
{ prog command
} {
82 set exec_output
[prune_warnings
[run_host_cmd
"$prog" "$command"]]
83 if [string match
"" $exec_output] then {
89 # Link an object using relocation.
91 proc default_ld_relocate
{ ld target objects
} {
94 remote_file host
delete $target
95 return [run_host_cmd_yesno
"$ld" "$HOSTING_EMU -o $target -r $objects"]
98 # Check to see
if ld is being invoked with a non
-endian output format
100 proc is_endian_output_format
{ object_flags
} {
102 if {[string match
"*-oformat binary*" $object_flags] || \
103 [string match
"*-oformat ieee*" $object_flags] || \
104 [string match
"*-oformat ihex*" $object_flags] || \
105 [string match
"*-oformat netbsd-core*" $object_flags] || \
106 [string match
"*-oformat srec*" $object_flags] || \
107 [string match
"*-oformat tekhex*" $object_flags] || \
108 [string match
"*-oformat trad-core*" $object_flags] } then {
115 # Look
for big
-endian or little
-endian switches in the multlib
116 # options and
translate these into a
-EB or
-EL
switch. Note
117 # we cannot rely upon proc process_multilib_options to
do this
118 #
for us because
for some targets the compiler does not support
119 #
-EB
/-EL but it does support
-mbig
-endian
/-mlittle
-endian
, and
120 # the site.exp file will
include the
switch "-mbig-endian"
121 #
(rather than
"big-endian") which is not detected by proc
122 # process_multilib_options.
124 proc big_or_little_endian
{} {
126 if [board_info
[target_info
name] exists multilib_flags
] {
127 set tmp_flags
" [board_info [target_info name] multilib_flags]"
129 foreach x $tmp_flags
{
131 {*big
*endian eb EB
-eb
-EB
-mb
-meb
} {
135 {*little
*endian el EL
-el
-EL
-ml
-mel
} {
147 # Link a
program using
ld.
149 proc default_ld_link
{ ld target objects
} {
158 set objs
"$HOSTING_CRT0 $objects"
159 set libs
"$LIBS $HOSTING_LIBS"
161 if [is_endian_output_format $objects
] then {
162 set flags
[big_or_little_endian
]
167 remote_file host
delete $target
169 return [run_host_cmd_yesno
"$ld" "$HOSTING_EMU $flags -o $target $objs $libs"]
172 # Link a
program using
ld, without including
any libraries.
174 proc default_ld_simple_link
{ ld target objects
} {
179 if [is_endian_output_format $objects
] then {
180 set flags
[big_or_little_endian
]
185 #
If we are compiling with gcc
, we want to add gcc_ld_flag to
186 # flags. Rather than determine this in some complex way
, we guess
187 # based
on the
name of the compiler.
189 set ldparm
[string first
" " $ld]
191 if { $ldparm
> 0 } then {
192 set ldflags
[string range $
ld $ldparm end
]
193 set ldexe
[string range $
ld 0 $ldparm
]
196 set ldexe
[string replace $ldexe
0 [string last
"/" $ldexe] ""]
197 if {[string match
"*gcc*" $ldexe] || [string match "*++*" $ldexe]} then {
198 set ldflags
"$gcc_ld_flag $ldflags"
201 remote_file host
delete $target
203 set exec_output
[run_host_cmd
"$ld" "$ldflags $flags -o $target $objects"]
204 set exec_output
[prune_warnings $exec_output
]
206 # We don
't care if we get a warning about a non-existent start
207 # symbol, since the default linker script might use ENTRY.
208 regsub -all "(^|\n)(\[^\n\]*: warning: cannot find entry symbol\[^\n\]*\n?)" $exec_output "\\1" exec_output
210 if [string match "" $exec_output] then {
217 # Compile an object using cc.
219 proc default_ld_compile { cc source object } {
228 if {[llength $cc_prog] > 1} then {
229 set cc_prog [lindex $cc_prog 0]
231 if {![is_remote host] && [which $cc_prog] == 0} then {
232 perror "$cc_prog does not exist"
236 remote_file build delete "$object"
237 remote_file host delete "$object"
239 set flags "-I$srcdir/$subdir"
241 # If we are compiling with gcc, we want to add gcc_gas_flag to
242 # flags. Rather than determine this in some complex way, we guess
243 # based on the name of the compiler.
245 set ccparm [string first " " $cc]
247 if { $ccparm > 0 } then {
248 set ccflags [string range $cc $ccparm end]
249 set ccexe [string range $cc 0 $ccparm]
252 set ccexe [string replace $ccexe 0 [string last "/" $ccexe] ""]
253 if {[string match "*gcc*" $ccexe] || [string match "*++*" $ccexe]} then {
254 set flags "$gcc_gas_flag $flags"
257 if {[string match "*++*" $ccexe]} {
258 set flags "$flags $CXXFLAGS"
260 set flags "$flags $CFLAGS"
263 if [board_info [target_info name] exists multilib_flags] {
264 append flags " [board_info [target_info name] multilib_flags]"
267 verbose -log "$cc $flags $ccflags -c $source -o $object"
269 set status [remote_exec host [concat sh -c [list "$cc $flags $ccflags -c $source -o $object 2>&1"]] "" "/dev/null" "ld.tmp"]
270 remote_upload host "ld.tmp"
271 set exec_output [file_contents "ld.tmp"]
272 remote_file build delete "ld.tmp"
273 remote_file host delete "ld.tmp"
274 set exec_output [prune_warnings $exec_output]
275 if [string match "" $exec_output] then {
276 if {![file exists $object]} then {
277 regexp ".*/(\[^/\]*)$" $source all dobj
278 regsub "\\.c" $dobj ".o" realobj
279 verbose "looking for $realobj"
280 if {[remote_file host exists $realobj]} then {
281 verbose -log "mv $realobj $object"
282 remote_upload "$realobj" "$object"
284 perror "$object not found after compilation"
290 verbose -log "$exec_output"
291 perror "$source: compilation failed"
298 proc default_ld_assemble { as in_flags source object } {
302 if ![info exists ASFLAGS] { set ASFLAGS "" }
304 set flags [big_or_little_endian]
305 set exec_output [run_host_cmd "$as" "$flags $in_flags $ASFLAGS -o $object $source"]
306 set exec_output [prune_warnings $exec_output]
307 if [string match "" $exec_output] then {
310 perror "$source: assembly failed"
315 # Run nm on a file, putting the result in the array nm_output.
317 proc default_ld_nm { nm nmflags object } {
322 if {[info exists nm_output]} {
326 if ![info exists NMFLAGS] { set NMFLAGS "" }
328 # Ensure consistent sorting of symbols
329 if {[info exists env(LC_ALL)]} {
330 set old_lc_all $env(LC_ALL)
334 verbose -log "$nm $NMFLAGS $nmflags $object >tmpdir/nm.out"
336 set status [remote_exec host [concat sh -c [list "$nm $NMFLAGS $nmflags $object 2>ld.stderr"]] "" "/dev/null" "tmpdir/nm.out"]
337 if {[info exists old_lc_all]} {
338 set env(LC_ALL) $old_lc_all
342 remote_upload host "ld.stderr"
343 remote_upload host "tmpdir/nm.out" "tmpdir/nm.out"
344 set exec_output [prune_warnings [file_contents "ld.stderr"]]
345 remote_file host delete "ld.stderr"
346 remote_file build delete "ld.stderr"
347 if [string match "" $exec_output] then {
348 set file [open tmpdir/nm.out r]
349 while { [gets $file line] != -1 } {
351 if [regexp "^(\[0-9a-fA-F\]+) \[a-zA-Z0-9\] \\.*(.+)$" $line whole value name] {
352 set name [string trimleft $name "_"]
353 verbose "Setting nm_output($name) to 0x$value" 2
354 set nm_output($name) 0x$value
360 verbose -log "$exec_output"
361 perror "$object: nm failed"
366 # Define various symbols needed when not linking against all
368 proc ld_simple_link_defsyms {} {
370 set flags "--defsym __stack_chk_fail=0"
372 # ARM targets call __gccmain
373 if {[istarget arm*-*-*]} {
374 append flags " --defsym __gccmain=0"
377 # Windows targets need __main, prefixed with underscore.
378 if {[istarget *-*-cygwin* ] || [istarget *-*-mingw*]} {
379 append flags " --defsym ___main=0"
382 # PowerPC EABI code calls __eabi.
383 if {[istarget powerpc*-*-eabi*] || [istarget powerpc*-*-rtems*]} {
384 append flags " --defsym __eabi=0"
387 # mn10200 code calls __truncsipsi2_d0_d2.
388 if {[istarget mn10200*-*-*]} then {
389 append flags " --defsym __truncsipsi2_d0_d2=0"
392 # m6811/m6812 code has references to soft registers.
393 if {[istarget m6811-*-*] || [istarget m6812-*-*]} {
394 append flags " --defsym _.frame=0 --defsym _.d1=0 --defsym _.d2=0"
395 append flags " --defsym _.d3=0 --defsym _.d4=0"
396 append flags " --defsym _.tmp=0 --defsym _.xy=0 --defsym _.z=0"
399 # Some OpenBSD targets have ProPolice and reference __guard and
400 # __stack_smash_handler.
401 if [istarget *-*-openbsd*] {
402 append flags " --defsym __guard=0"
403 append flags " --defsym __stack_smash_handler=0"
410 # Copied from gas testsuite, tweaked and further extended.
412 # Assemble a .s file, then run some utility on it and check the output.
414 # There should be an assembly language file named FILE.s in the test
415 # suite directory, and a pattern file called FILE.d. `run_dump_test'
416 # will assemble FILE.s
, run some tool like `objdump
', `objcopy', or
417 # `nm
' on the .o file to produce textual output, and then analyze that
418 # with regexps. The FILE.d file specifies what program to run, and
419 # what to expect in its output.
421 # The FILE.d file begins with zero or more option lines, which specify
422 # flags to pass to the assembler, the program to run to dump the
423 # assembler's output
, and the options it wants. The option lines have
428 # OPTION is the
name of some option
, like
"name" or "objdump", and
429 # VALUE is OPTION
's value. The valid options are described below.
430 # Whitespace is ignored everywhere, except within VALUE. The option
431 # list ends with the first line that doesn't match the above syntax
432 #
(hmm
, not great
for error detection
).
434 # The interesting options are
:
437 # The
name of this test
, passed to DejaGNU
's `pass' and `fail
'
438 # commands. If omitted, this defaults to FILE, the root of the
439 # .s and .d files' names.
442 # When assembling
, pass FLAGS to the assembler.
443 #
If assembling several files
, you can pass different assembler
444 # options in the
"source" directives. See below.
447 # Link assembled files using FLAGS
, in the order of the
"source"
448 # directives
, when using multiple files.
450 # ld_after_inputfiles
: FLAGS
451 # Similar to
"ld", but put after all input files.
453 # objcopy_linked_file
: FLAGS
454 # Run objcopy
on the linked file with the specified flags.
455 # This lets you transform the linked file using objcopy
, before the
456 # result is analyzed by an analyzer
program specified below
(which
457 # may in turn
*also
* be objcopy
).
460 # The
name of the
program to run to analyze the .o file produced
461 # by the assembler or the linker output. This can be omitted
;
462 # run_dump_test will guess which
program to run by seeing which of
463 # the flags options below is present.
468 # Use the specified
program to analyze the assembler or linker
469 # output file
, and pass it FLAGS
, in addition to the output
name.
470 # Note that they are run with LC_ALL
=C in the environment to give
471 # consistent sorting of symbols.
473 # source
: SOURCE
[FLAGS
]
474 # Assemble the file SOURCE.s using the flags in the
"as" directive
475 # and the
(optional
) FLAGS.
If omitted
, the source defaults to
477 # This is useful
if several .d files want to share a .s file.
478 # More than one
"source" directive can be given, which is useful
479 # when testing linking.
482 # The test is expected to fail
on TARGET. This may occur more than
486 # Only run the test
for TARGET. This may occur more than once
; the
487 # target being tested must match at least one. You may provide target
488 #
name "cfi" for any target supporting the CFI statements.
491 #
Do not run the test
for TARGET. This may occur more than once
;
492 # the target being tested must not match
any of them.
495 # An error with message matching REGEX must be emitted
for the test
496 # to pass. The PROG
, objdump
, nm and objcopy options have no
497 # meaning and need not supplied
if this is present. Multiple
"error"
498 # directives append to the expected linker error message.
501 # Expect a linker warning matching REGEX. It is an error to issue
502 # both
"error" and "warning". Multiple "warning" directives
503 # append to the expected linker warning message.
505 # Each option may occur at most once unless otherwise mentioned.
507 # After the option lines come regexp lines. `run_dump_test
' calls
508 # `regexp_diff' to compare the output of the dumping tool against the
509 # regexps in FILE.d. `regexp_diff
' is defined in binutils-common.exp;
510 # see further comments there.
512 proc run_dump_test { name } {
514 global OBJDUMP NM AS OBJCOPY READELF LD
515 global OBJDUMPFLAGS NMFLAGS ASFLAGS OBJCOPYFLAGS READELFFLAGS LDFLAGS
516 global host_triplet runtests
519 if [string match "*/*" $name] {
521 set name [file tail $name]
523 set file "$srcdir/$subdir/$name"
526 if ![runtest_file_p $runtests $name] then {
530 set opt_array [slurp_options "${file}.d"]
531 if { $opt_array == -1 } {
532 perror "error reading options from $file.d"
533 unresolved $subdir/$name
536 set dumpfile tmpdir/dump.out
541 set opts(ld_after_inputfiles) {}
544 set opts(notarget) {}
554 set opts(objcopy_linked_file) {}
555 set asflags(${file}.s) {}
557 foreach i $opt_array {
558 set opt_name [lindex $i 0]
559 set opt_val [lindex $i 1]
560 if ![info exists opts($opt_name)] {
561 perror "unknown option $opt_name in file $file.d"
562 unresolved $subdir/$name
566 switch -- $opt_name {
573 # Move any source-specific as-flags to a separate array to
574 # simplify processing.
575 if { [llength $opt_val] > 1 } {
576 set asflags([lindex $opt_val 0]) [lrange $opt_val 1 end]
577 set opt_val [lindex $opt_val 0]
579 set asflags($opt_val) {}
583 if [string length $opts($opt_name)] {
584 perror "option $opt_name multiply set in $file.d"
585 unresolved $subdir/$name
589 # A single "# ld:" with no options should do the right thing.
590 if { $opt_name == "ld" } {
593 # Likewise objcopy_linked_file.
594 if { $opt_name == "objcopy_linked_file" } {
599 if { $opt_name == "as" || $opt_name == "ld" } {
600 set opt_val [subst $opt_val]
602 set opts($opt_name) [concat $opts($opt_name) $opt_val]
604 foreach opt { as ld } {
605 regsub {\[big_or_little_endian\]} $opts($opt) \
606 [big_or_little_endian] opts($opt)
609 # Decide early whether we should run the test for this target.
610 if { [llength $opts(target)] > 0 } {
612 foreach targ $opts(target) {
613 if [istarget $targ] {
618 if { $targmatch == 0 } {
622 foreach targ $opts(notarget) {
623 if [istarget $targ] {
629 # It's meaningless to require an output
-testing method when we
631 if { $opts
(error
) == "" } {
632 if {$opts
(PROG
) != ""} {
633 switch -- $opts
(PROG
) {
634 objdump
{ set program objdump
}
635 nm
{ set program nm
}
636 objcopy
{ set program objcopy
}
637 readelf
{ set program readelf
}
639 { perror
"unrecognized program option $opts(PROG) in $file.d"
640 unresolved $subdir
/$
name
644 # Guess which
program to run
, by seeing which option was specified.
645 foreach p
{objdump objcopy nm readelf
} {
646 if {$opts
($p
) != ""} {
647 if {$
program != ""} {
648 perror
"ambiguous dump program in $file.d"
649 unresolved $subdir
/$
name
657 if { $
program == "" && $opts(warning) == "" } {
658 perror
"dump program unspecified in $file.d"
659 unresolved $subdir
/$
name
664 if { $opts
(name) == "" } {
665 set testname
"$subdir/$name"
667 set testname $opts
(name)
670 if { $opts
(source
) == "" } {
671 set sourcefiles
[list $
{file
}.s
]
674 foreach sf $opts
(source
) {
675 if { [string match
"/*" $sf] } {
676 lappend sourcefiles
"$sf"
678 lappend sourcefiles
"$srcdir/$subdir/$sf"
680 # Must have asflags indexed
on source
name.
681 set asflags
($srcdir
/$subdir
/$sf
) $asflags
($sf
)
685 # Time to setup xfailures.
686 foreach targ $opts
(xfail
) {
690 # Assemble each file.
692 for { set i
0 } { $i
< [llength $sourcefiles
] } { incr i
} {
693 set sourcefile
[lindex $sourcefiles $i
]
695 set objfile
"tmpdir/dump$i.o"
696 catch
"exec rm -f $objfile" exec_output
697 lappend objfiles $objfile
698 set cmd
"$AS $ASFLAGS $opts(as) $asflags($sourcefile) -o $objfile $sourcefile"
701 set cmdret
[remote_exec host
[concat sh
-c
[list
"$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
702 remote_upload host
"ld.tmp"
703 set comp_output
[prune_warnings
[file_contents
"ld.tmp"]]
704 remote_file host
delete "ld.tmp"
705 remote_file build
delete "ld.tmp"
707 if { [lindex $cmdret
0] != 0 ||
![string match
"" $comp_output] } then {
708 send_log
"$comp_output\n"
709 verbose
"$comp_output" 3
711 set exitstat
"succeeded"
712 if { $cmdret
!= 0 } { set exitstat
"failed" }
713 verbose
-log "$exitstat with: <$comp_output>"
719 set expmsg $opts
(error
)
720 if { $opts
(warning
) != "" } {
721 if { $expmsg
!= "" } {
722 perror
"$testname: mixing error and warning test-directives"
725 set expmsg $opts
(warning
)
728 # Perhaps link the file
(s
).
730 set objfile
"tmpdir/dump"
731 catch
"exec rm -f $objfile" exec_output
733 # Add
-L$srcdir
/$subdir so that the linker command can use
734 # linker scripts in the source directory.
735 set cmd
"$LD $LDFLAGS -L$srcdir/$subdir \
736 $opts
(ld) -o $objfile $objfiles $opts
(ld_after_inputfiles
)"
739 set cmdret
[remote_exec host
[concat sh
-c
[list
"$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
740 remote_upload host
"ld.tmp"
741 set comp_output
[file_contents
"ld.tmp"]
742 remote_file host
delete "ld.tmp"
743 remote_file build
delete "ld.tmp"
744 set cmdret
[lindex $cmdret
0]
746 if { $cmdret
== 0 && $run_objcopy
} {
748 set objfile
"tmpdir/dump1"
749 remote_file host
delete $objfile
751 # Note that we don
't use OBJCOPYFLAGS here; any flags must be
752 # explicitly specified.
753 set cmd "$OBJCOPY $opts(objcopy_linked_file) $infile $objfile"
756 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "ld.tmp"]
757 remote_upload host "ld.tmp"
758 append comp_output [file_contents "ld.tmp"]
759 remote_file host delete "ld.tmp"
760 remote_file build delete "ld.tmp"
761 set cmdret [lindex $cmdret 0]
764 regsub "\n$" $comp_output "" comp_output
765 if { $cmdret != 0 || $comp_output != "" || $expmsg != "" } then {
766 set exitstat "succeeded"
767 if { $cmdret != 0 } { set exitstat "failed" }
768 verbose -log "$exitstat with: <$comp_output>, expected: <$expmsg>"
769 send_log "$comp_output\n"
770 verbose "$comp_output" 3
772 if { ($expmsg == "") == ($comp_output == "") \
773 && [regexp $expmsg $comp_output] \
774 && (($cmdret == 0) == ($opts(error) == "")) } {
775 # We have the expected output from ld.
776 if { $opts(error) != "" || $program == "" } {
781 verbose -log "$exitstat with: <$comp_output>, expected: <$expmsg>"
787 set objfile "tmpdir/dump0.o"
790 # We must not have expected failure if we get here.
791 if { $opts(error) != "" } {
796 set progopts1 $opts($program)
797 eval set progopts \$[string toupper $program]FLAGS
798 eval set binary \$[string toupper $program]
800 if { ![is_remote host] && [which $binary] == 0 } {
805 if { $progopts1 == "" } { set $progopts1 "-r" }
806 verbose "running $binary $progopts $progopts1" 3
808 # Objcopy, unlike the other two, won't send its output to stdout
,
809 # so we have to run it specially.
810 set cmd
"$binary $progopts $progopts1 $objfile > $dumpfile"
811 if { $
program == "objcopy" } {
812 set cmd
"$binary $progopts $progopts1 $objfile $dumpfile"
815 # Ensure consistent sorting of symbols
816 if {[info exists env
(LC_ALL
)]} {
817 set old_lc_all $env
(LC_ALL
)
821 set cmdret
[remote_exec host
[concat sh
-c
[list
"$cmd 2>ld.tmp"]] "" "/dev/null"]
822 set cmdret
[lindex $cmdret
0]
823 remote_upload host
"ld.tmp"
824 set comp_output
[prune_warnings
[file_contents
"ld.tmp"]]
825 remote_file host
delete "ld.tmp"
826 remote_file build
delete "ld.tmp"
827 if {[info exists old_lc_all
]} {
828 set env
(LC_ALL
) $old_lc_all
832 if { $cmdret
!= 0 || $comp_output
!= "" } {
833 send_log
"exited abnormally with $cmdret, output:$comp_output\n"
838 if { $verbose
> 2 } then { verbose
"output is [file_contents $dumpfile]" 3 }
839 if { [regexp_diff $dumpfile
"${file}.d"] } then {
841 if { $verbose
== 2 } then { verbose
"output is [file_contents $dumpfile]" 2 }
848 proc slurp_options
{ file
} {
849 if [catch
{ set f
[open $file r
] } x
] {
850 #perror
"couldn't open `$file': $x"
855 # whitespace expression
858 # whitespace is ignored anywhere except within the options list
;
859 # option names are alphabetic plus underscore only.
860 set pat
"^#${ws}(\[a-zA-Z_\]*)$ws:${ws}(.*)$ws\$"
861 while { [gets $f line
] != -1 } {
862 set line
[string trim $line
]
863 # Whitespace here is space
-tab.
864 if [regexp $pat $line xxx opt_name opt_val
] {
866 lappend opt_array
[list $opt_name $opt_val
]
875 proc file_contents
{ filename
} {
876 set file
[open $filename r
]
877 set contents
[read $file
]
882 proc set_file_contents
{ filename contents
} {
883 set file
[open $filename w
]
884 puts $file
"$contents"
888 # Create an archive using ar
890 proc ar_simple_create
{ ar aropts target objects
} {
891 remote_file host
delete $target
893 set exec_output
[run_host_cmd
"$ar" "$aropts rc $target $objects"]
894 set exec_output
[prune_warnings $exec_output
]
896 if [string match
"" $exec_output] then {
897 send_log
"$exec_output\n"
904 # List contains test
-items with
3 items followed by
2 lists
, one item and
906 #
0:name 1:ld/ar options
2:assembler options
907 #
3:filenames of assembler files
4: action and options.
5: name of output file
908 #
6:compiler flags
(optional
)
911 # objdump
: Apply objdump options
on result. Compare with regex
(last
arg).
912 # nm
: Apply nm options
on result. Compare with regex
(last
arg).
913 # readelf
: Apply readelf options
on result. Compare with regex
(last
arg).
914 #
ld: Don
't apply anything on result. Compare output during linking with
915 # regex (second arg). Note that this *must* be the first action if it
916 # is to be used at all; in all other cases, any output from the linker
917 # during linking is treated as a sign of an error and FAILs the test.
919 proc run_ld_link_tests { ldtests } {
934 foreach testitem $ldtests {
935 set testname [lindex $testitem 0]
937 if ![runtest_file_p $runtests $testname] then {
941 set ld_options [lindex $testitem 1]
942 set as_options [lindex $testitem 2]
943 set src_files [lindex $testitem 3]
944 set actions [lindex $testitem 4]
945 set binfile tmpdir/[lindex $testitem 5]
946 set cflags [lindex $testitem 6]
953 # verbose -log "Testname is $testname"
954 # verbose -log "ld_options is $ld_options"
955 # verbose -log "as_options is $as_options"
956 # verbose -log "src_files is $src_files"
957 # verbose -log "actions is $actions"
958 # verbose -log "binfile is $binfile"
960 # Assemble each file in the test.
961 foreach src_file $src_files {
962 set objfile "tmpdir/[file rootname $src_file].o"
963 lappend objfiles $objfile
965 if { [file extension $src_file] == ".c" } {
966 set as_file "tmpdir/[file rootname $src_file].s"
967 if ![ld_compile "$CC -S $CFLAGS $cflags" $srcdir/$subdir/$src_file $as_file] {
972 set as_file "$srcdir/$subdir/$src_file"
974 if ![ld_assemble $as "$as_options $as_file" $objfile] {
980 # Catch assembler errors.
981 if { $is_unresolved } {
986 if { [regexp ".*\\.a$" $binfile] } {
987 if { ![ar_simple_create $ar $ld_options $binfile "$objfiles"] } {
990 } elseif { ![ld_simple_link $ld $binfile "-L$srcdir/$subdir $ld_options $objfiles"] } {
992 set ld_output "$exec_output"
996 foreach actionlist $actions {
997 set action [lindex $actionlist 0]
998 set progopts [lindex $actionlist 1]
1000 # There are actions where we run regexp_diff on the
1001 # output, and there are other actions (presumably).
1002 # Handling of the former look the same.
1006 { set dump_prog $objdump }
1008 { set dump_prog $nm }
1010 { set dump_prog $READELF }
1012 { set dump_prog "ld" }
1015 perror "Unrecognized action $action"
1021 if { $action == "ld" } {
1022 set dumpfile [lindex $actionlist 1]
1023 verbose "dumpfile is $dumpfile"
1024 set_file_contents "tmpdir/ld.messages" "$ld_output"
1025 verbose "ld.messages has '[file_contents tmpdir
/ld.messages
]'"
1026 if { [regexp_diff "tmpdir/ld.messages" "$srcdir/$subdir/$dumpfile"] } then {
1027 verbose "output is $ld_output" 2
1032 } elseif { !$maybe_failed && $dump_prog != "" } {
1033 set dumpfile [lindex $actionlist 2]
1034 set binary $dump_prog
1036 # Ensure consistent sorting of symbols
1037 if {[info exists env(LC_ALL)]} {
1038 set old_lc_all $env(LC_ALL)
1041 set cmd "$binary $progopts $binfile"
1042 set status [remote_exec host [concat sh -c [list "$cmd >dump.out 2>ld.stderr"]] "" "/dev/null"]
1044 remote_upload host "ld.stderr"
1045 set comp_output [prune_warnings [file_contents "ld.stderr"]]
1046 remote_file host delete "ld.stderr"
1047 remote_file build delete "ld.stderr"
1049 if {[info exists old_lc_all]} {
1050 set env(LC_ALL) $old_lc_all
1055 if ![string match "" $comp_output] then {
1056 send_log "$comp_output\n"
1061 remote_upload host "dump.out"
1063 if { [regexp_diff "dump.out" "$srcdir/$subdir/$dumpfile"] } then {
1064 verbose "output is [file_contents "dump.out"]" 2
1066 remote_file build delete "dump.out"
1067 remote_file host delete "dump.out"
1070 remote_file build delete "dump.out"
1071 remote_file host delete "dump.out"
1076 if { $is_unresolved } {
1077 unresolved $testname
1078 } elseif { $maybe_failed || $failed } {
1086 # This definition is taken from an unreleased version of DejaGnu. Once
1087 # that version gets released, and has been out in the world for a few
1088 # months at least, it may be safe to delete this copy.
1089 if ![string length [info proc prune_warnings]] {
1091 # prune_warnings -- delete various system verbosities from TEXT
1094 # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
1096 # Sites with particular verbose os's may wish to override this in site.exp.
1098 proc prune_warnings
{ text } {
1099 # This is from sun4
's. Do it for all machines for now.
1100 # The "\\1" is to try to preserve a "\n" but only if necessary.
1101 regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
1103 # It might be tempting to get carried away and delete blank lines, etc.
1104 # Just delete *exactly* what we're ask to
, and that
's it.
1109 # targets_to_xfail is a list of target triplets to be xfailed.
1110 # ldtests contains test-items with 3 items followed by 1 lists, 2 items
1111 # and 3 optional items:
1114 # 2:assembler options
1115 # 3:filenames of source files
1116 # 4:name of output file
1118 # 6:compiler flags (optional)
1119 # 7:language (optional)
1120 # 8:linker warning (optional)
1122 proc run_ld_link_exec_tests { targets_to_xfail ldtests } {
1135 foreach testitem $ldtests {
1136 foreach target $targets_to_xfail {
1139 set testname [lindex $testitem 0]
1140 set ld_options [lindex $testitem 1]
1141 set as_options [lindex $testitem 2]
1142 set src_files [lindex $testitem 3]
1143 set binfile tmpdir/[lindex $testitem 4]
1144 set expfile [lindex $testitem 5]
1145 set cflags [lindex $testitem 6]
1146 set lang [lindex $testitem 7]
1147 set warning [lindex $testitem 8]
1151 # verbose -log "Testname is $testname"
1152 # verbose -log "ld_options is $ld_options"
1153 # verbose -log "as_options is $as_options"
1154 # verbose -log "src_files is $src_files"
1155 # verbose -log "actions is $actions"
1156 # verbose -log "binfile is $binfile"
1158 # Assemble each file in the test.
1159 foreach src_file $src_files {
1160 set objfile "tmpdir/[file rootname $src_file].o"
1161 lappend objfiles $objfile
1163 # We ignore warnings since some compilers may generate
1164 # incorrect section attributes and the assembler will warn
1166 if { [ string match "c++" $lang ] } {
1167 ld_compile "$CXX -c $CXXFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1169 ld_compile "$CC -c $CFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1172 # We have to use $CC to build PIE and shared library.
1173 if { [ string match "c" $lang ] } {
1174 set link_proc ld_simple_link
1176 } elseif { [ string match "c++" $lang ] } {
1177 set link_proc ld_simple_link
1179 } elseif { [ string match "-shared" $ld_options ] \
1180 || [ string match "-pie" $ld_options ] } {
1181 set link_proc ld_simple_link
1184 set link_proc ld_link
1188 if ![$link_proc $link_cmd $binfile "-L$srcdir/$subdir $ld_options $objfiles"] {
1194 # Check if exec_output is expected.
1195 if { $warning != "" } then {
1196 verbose -log "returned with: <$exec_output>, expected: <$warning>"
1197 if { [regexp $warning $exec_output] } then {
1204 if { $failed == 0 } {
1205 send_log "Running: $binfile > $binfile.out\n"
1206 verbose "Running: $binfile > $binfile.out"
1207 catch "exec $binfile > $binfile.out" exec_output
1209 if ![string match "" $exec_output] then {
1210 send_log "$exec_output\n"
1211 verbose "$exec_output" 1
1214 send_log "diff $binfile.out $srcdir/$subdir/$expfile\n"
1215 verbose "diff $binfile.out $srcdir/$subdir/$expfile"
1216 catch "exec diff $binfile.out $srcdir/$subdir/$expfile" exec_output
1217 set exec_output [prune_warnings $exec_output]
1219 if ![string match "" $exec_output] then {
1220 send_log "$exec_output\n"
1221 verbose "$exec_output" 1
1227 if { $failed != 0 } {
1237 # List contains test-items with 3 items followed by 2 lists, one item and
1238 # one optional item:
1240 # 1:ld or ar options
1242 # 3:filenames of source files
1243 # 4:action and options.
1244 # 5:name of output file
1245 # 6:language (optional)
1246 # 7:linker warnings (optional)
1249 # objdump: Apply objdump options on result. Compare with regex (last arg).
1250 # nm: Apply nm options on result. Compare with regex (last arg).
1251 # readelf: Apply readelf options on result. Compare with regex (last arg).
1253 proc run_cc_link_tests { ldtests } {
1267 foreach testitem $ldtests {
1268 set testname [lindex $testitem 0]
1269 set ldflags [lindex $testitem 1]
1270 set cflags [lindex $testitem 2]
1271 set src_files [lindex $testitem 3]
1272 set actions [lindex $testitem 4]
1273 set binfile tmpdir/[lindex $testitem 5]
1274 set lang [lindex $testitem 6]
1275 set warnings [lindex $testitem 7]
1280 # Compile each file in the test.
1281 foreach src_file $src_files {
1282 set objfile "tmpdir/[file rootname $src_file].o"
1283 lappend objfiles $objfile
1285 # We ignore warnings since some compilers may generate
1286 # incorrect section attributes and the assembler will warn
1288 if { [ string match "c++" $lang ] } {
1289 ld_compile "$CXX -c $CXXFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1291 ld_compile "$CC -c $CFLAGS $cflags" $srcdir/$subdir/$src_file $objfile
1295 # Clear error and warning counts.
1298 if { [ string match "c++" $lang ] } {
1304 if { [regexp ".*\\.a$" $binfile] } {
1305 if { ![ar_simple_create $ar $ldflags $binfile "$objfiles"] } {
1311 } elseif { ![ld_simple_link $cc_cmd $binfile "-L$srcdir/$subdir $ldflags $objfiles"] } {
1312 # Check if exec_output is expected.
1313 if { $warnings != "" } then {
1314 verbose -log "returned with: <$exec_output>, expected: <$warnings>"
1315 if { [regexp $warnings $exec_output] } then {
1328 if { $failed == 0 } {
1329 foreach actionlist $actions {
1330 set action [lindex $actionlist 0]
1331 set progopts [lindex $actionlist 1]
1333 # There are actions where we run regexp_diff on the
1334 # output, and there are other actions (presumably).
1335 # Handling of the former look the same.
1339 { set dump_prog $objdump }
1341 { set dump_prog $nm }
1343 { set dump_prog $READELF }
1346 perror "Unrecognized action $action"
1352 if { $dump_prog != "" } {
1353 set dumpfile [lindex $actionlist 2]
1354 set binary $dump_prog
1356 # Ensure consistent sorting of symbols
1357 if {[info exists env(LC_ALL)]} {
1358 set old_lc_all $env(LC_ALL)
1361 set cmd "$binary $progopts $binfile > dump.out"
1363 catch "exec $cmd" comp_output
1364 if {[info exists old_lc_all]} {
1365 set env(LC_ALL) $old_lc_all
1369 set comp_output [prune_warnings $comp_output]
1371 if ![string match "" $comp_output] then {
1372 send_log "$comp_output\n"
1377 if { [regexp_diff "dump.out" "$srcdir/$subdir/$dumpfile"] } then {
1378 verbose "output is [file_contents "dump.out"]" 2
1385 if { $failed != 0 } {
1387 } else { if { $is_unresolved == 0 } {
1392 # Catch action errors.
1393 if { $is_unresolved != 0 } {
1394 unresolved $testname
1400 # Returns true if --gc-sections is supported on the target.
1402 proc check_gc_sections_available { } {
1403 global gc_sections_available_saved
1406 if {![info exists gc_sections_available_saved]} {
1407 # Some targets don't support gc
-sections despite whatever
's
1408 # advertised by ld's options.
1409 if {[istarget arc
-*-*]
1410 ||
[istarget d30v
-*-*]
1411 ||
[istarget dlx
-*-*]
1412 ||
[istarget i960
-*-*]
1413 ||
[istarget or32
-*-*]
1414 ||
[istarget pj
*-*-*]
1415 ||
[istarget alpha
-*-*]
1416 ||
[istarget hppa64
-*-*]
1417 ||
[istarget i370
-*-*]
1418 ||
[istarget i860
-*-*]
1419 ||
[istarget ia64
-*-*]
1420 ||
[istarget mep
-*-*]
1421 ||
[istarget mn10200
-*-*]
1422 ||
[istarget
*-*-cygwin
]
1423 ||
[istarget
*-*-mingw
*] } {
1424 set gc_sections_available_saved
0
1428 # elf2flt uses
-q
(--emit
-relocs
), which is incompatible with
1430 if { [board_info target
exists ldflags
]
1431 && [regexp
" -elf2flt\[ =\]" " [board_info target ldflags] "] } {
1432 set gc_sections_available_saved
0
1436 # Check
if the
ld used by gcc supports
--gc
-sections.
1437 set ld_output
[remote_exec host $
ld "--help"]
1438 if { [ string first
"--gc-sections" $ld_output ] >= 0 } {
1439 set gc_sections_available_saved
1
1441 set gc_sections_available_saved
0
1444 return $gc_sections_available_saved
1447 # Returns true
if the target
ld supports the plugin API.
1448 proc check_plugin_api_available
{ } {
1449 global plugin_api_available_saved
1451 if {![info exists plugin_api_available_saved
]} {
1452 # Check
if the
ld used by gcc supports
--plugin.
1453 set ld_output
[remote_exec host $
ld "--help"]
1454 if { [ string first
"-plugin" $ld_output ] >= 0 } {
1455 set plugin_api_available_saved
1
1457 set plugin_api_available_saved
0
1460 return $plugin_api_available_saved
1463 # Check
if the assembler supports CFI statements.
1465 proc check_as_cfi
{ } {
1466 global check_as_cfi_result
1468 if [info exists check_as_cfi_result
] {
1469 return $check_as_cfi_result
1471 set as_file
"tmpdir/check_as_cfi.s"
1472 set as_fh
[open $as_file w
0666]
1473 puts $as_fh
"# Generated file. DO NOT EDIT"
1474 puts $as_fh
"\t.cfi_startproc"
1475 puts $as_fh
"\t.cfi_endproc"
1477 remote_download host $as_file
1478 verbose
-log "Checking CFI support:"
1479 rename "perror" "check_as_cfi_perror"
1480 proc perror
{ args } { }
1481 set success
[ld_assemble $as $as_file
"/dev/null"]
1483 rename "check_as_cfi_perror" "perror"
1484 #remote_file host
delete $as_file
1485 set check_as_cfi_result $success
1489 # Provide virtual target
"cfi" for targets supporting CFI.
1491 rename "istarget" "istarget_ld"
1492 proc istarget
{ target
} {
1493 if {$target
== "cfi"} {
1494 return [check_as_cfi
]
1496 return [istarget_ld $target
]