1 # Copyright (C) 1993-2019 Free Software Foundation, Inc.
3 # This file is part of the GNU Binutils.
5 # This file is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 # True if the object format is known to be ELF.
22 proc is_elf_format {} {
23 # config.sub for these targets curiously transforms a target doublet
24 # ending in -elf to -none. eg. m68hc12-elf to m68hc12-unknown-none
25 # They are always elf.
26 if { [istarget m68hc1*-*] || [istarget s12z*-*] || [istarget xgate-*] } {
29 # vxworks (and windiss) excluded due to number of ELF tests that need
30 # modifying to pass on those targets.
31 # && ![istarget *-*-vxworks*]
32 # && ![istarget *-*-windiss*]
34 if { ![istarget *-*-chorus*]
35 && ![istarget *-*-cloudabi*]
36 && ![istarget *-*-eabi*]
37 && ![istarget *-*-*elf*]
38 && ![istarget *-*-*freebsd*]
39 && ![istarget *-*-fuchsia*]
40 && ![istarget *-*-gnu*]
41 && ![istarget *-*-irix5*]
42 && ![istarget *-*-irix6*]
43 && ![istarget *-*-kaos*]
44 && ![istarget *-*-*linux*]
45 && ![istarget *-*-lynxos*]
46 && ![istarget *-*-nacl*]
47 && ![istarget *-*-netbsd*]
48 && ![istarget *-*-nto*]
49 && ![istarget *-*-openbsd*]
50 && ![istarget *-*-rtems*]
51 && ![istarget *-*-solaris2*]
52 && ![istarget *-*-sysv4*]
53 && ![istarget *-*-unixware*]
54 && ![istarget *-*-wasm32*]
55 && ![istarget avr-*-*]
56 && ![istarget hppa*64*-*-hpux*]
57 && ![istarget ia64-*-hpux*] } {
61 if { [istarget *-*-linux*ecoff*]
62 || [istarget *-*-rtemscoff*] } {
66 if { ![istarget *-*-netbsdelf*]
67 && ( [istarget vax-*-netbsd*]
68 || [istarget ns32k-*-netbsd*]) } {
72 if { [istarget arm-*-openbsd*]
73 || [istarget ns32k-*-openbsd*]
74 || [istarget vax-*-openbsd*] } {
81 # True if the object format is known to be a.out.
83 proc is_aout_format {} {
84 if { [istarget *-*-*aout*]
85 || [istarget *-*-bsd*]
86 || [istarget *-*-msdos*]
87 || [istarget ns32k-*-*]
88 || [istarget pdp11-*-*]
89 || [istarget vax-*-netbsd] } {
95 # True if the object format is known to be PE COFF.
97 proc is_pecoff_format {} {
98 if { ![istarget *-*-mingw*]
99 && ![istarget *-*-cygwin*]
100 && ![istarget *-*-cegcc*]
101 && ![istarget *-*-pe*] } {
108 proc is_som_format {} {
109 if { ![istarget hppa*-*-*] || [istarget hppa*64*-*-*] } {
112 if { [istarget *-*-osf*] \
113 || [istarget {*-*-h[ip]ux*}] \
114 || [istarget *-*-mpeix*] \
115 || [istarget *-*-bsd*] } {
121 # True if the object format is known to be 64-bit ELF.
123 proc is_elf64 { binary_file } {
127 set tmpfile [file dirname $binary_file]/readelf.out
129 catch "exec $READELF $READELFFLAGS -h $binary_file > $tmpfile" got
131 if ![string match "" $got] then {
135 if { ![regexp "\n\[ \]*Class:\[ \]*ELF(\[0-9\]+)\n" \
136 [file_contents $tmpfile] nil readelf_size] } {
140 if { $readelf_size == "64" } {
147 # True if the object format is known to use RELA relocations.
149 proc is_rela { binary_file } {
153 set tmpfile [file dirname $binary_file]/readelf.out
154 catch "exec $READELF $READELFFLAGS -S $binary_file > $tmpfile" got
156 if ![string match "" $got] then {
160 if { ![regexp "RELA" [file_contents $tmpfile]] } {
167 # True if the target matches TARGET, specified as a TCL procedure if
168 # in square brackets or as machine triplet otherwise.
170 proc match_target { target } {
171 if [string match {\[*\]} $target] {
174 return [istarget $target]
178 # True if the ELF target supports STB_GNU_UNIQUE with the ELF header's
179 # OSABI field set to ELFOSABI_GNU.
181 # This generally depends on the target OS only, however there are a
182 # number of exceptions for bare metal targets as follows. The MSP430
183 # and Visium targets set OSABI to ELFOSABI_STANDALONE and cannot
184 # support STB_GNU_UNIQUE. Likewise non-EABI ARM targets set OSABI to
185 # ELFOSABI_ARM, and TI C6X targets to ELFOSABI_C6000_*. Finally
186 # rather than `bfd_elf_final_link' AM33/2.0, D30V, DLX, and
187 # picoJava targets use `_bfd_generic_final_link', which does not
188 # support STB_GNU_UNIQUE symbol binding causing assertion failures.
190 proc supports_gnu_unique {} {
191 if { [istarget *-*-gnu*]
192 || [istarget *-*-linux*]
193 || [istarget *-*-nacl*] } {
196 if { [istarget "arm*-*-*eabi*"] } {
199 if { [istarget "wasm32*-*-*"] } {
202 if { ![istarget "*-*-elf*"] } {
205 if { [istarget "arm*-*-*"]
206 || [istarget "msp430-*-*"]
207 || [istarget "tic6x-*-*"]
208 || [istarget "visium-*-*"] } {
211 if { [istarget "am33_2.0-*-*"]
212 || [istarget "d30v-*-*"]
213 || [istarget "dlx-*-*"]
214 || [istarget "pj*-*-*"]
215 || [istarget "xgate-*-*"] } {
221 # True for targets that do not sort .symtab as per the ELF standard.
222 # ie. any that have mips_elf32_be_vec, mips_elf32_le_vec,
223 # mips_elf32_n_be_vec or mips_elf32_n_le_vec as the primary bfd target
224 # vector in config.bfd. When syncing with config.bfd, don't forget that
225 # earlier case-matches trump later ones.
226 proc is_bad_symtab {} {
227 if { ![istarget "mips*-*-*"] } {
230 if { [istarget "*-*-chorus*"]
231 || [istarget "*-*-irix5*"]
232 || [istarget "*-*-irix6*"]
233 || [istarget "*-*-none"]
234 || [istarget "*-*-rtems*"]
235 || [istarget "*-*-windiss"] } {
238 if { [istarget "*-*-elf*"]
239 && ![istarget "*-sde-*"]
240 && ![istarget "*-mti-*"]
241 && ![istarget "*-img-*"] } {
244 if { [istarget "*-*-openbsd*"]
245 && ![istarget "mips64*-*-*"] } {
251 # Returns true if -shared is supported on the target
253 proc check_shared_lib_support { } {
254 global shared_available_saved
257 if {![info exists shared_available_saved]} {
258 set ld_output [remote_exec host $ld "-shared"]
259 if { [ string first "not supported" $ld_output ] >= 0 } {
260 set shared_available_saved 0
262 set shared_available_saved 1
265 return $shared_available_saved
268 # Compare two files line-by-line. FILE_1 is the actual output and FILE_2
269 # is the expected output. Ignore blank lines in either file.
271 # FILE_2 is a series of regexps, comments and # directives. The directives
275 # Treat the test as a PASS if everything up till this point has
276 # matched. Ignore any remaining lines in either FILE_1 or FILE_2.
279 # Reverse the sense of the test: expect differences to exist.
283 # Skip all lines in FILE_1 until the first that matches REGEXP.
285 # Other # lines are comments. Regexp lines starting with the `!' character
286 # specify inverse matching (use `\!' for literal matching against a leading
287 # `!'). Skip empty lines in both files.
289 # The first optional argument is a list of regexp substitutions of the form:
291 # EXP1 SUBSPEC1 EXP2 SUBSPEC2 ...
293 # This tells the function to apply each regexp substitution EXPi->SUBSPECi
294 # in order to every line of FILE_2.
296 # Return nonzero if differences exist.
297 proc regexp_diff { file_1 file_2 args } {
305 if { [llength $args] > 0 } {
306 set ref_subst [lindex $args 0]
308 if { [llength $args] > 1 } {
309 perror "Too many arguments to regexp_diff"
313 if [file exists $file_1] then {
314 set file_a [open $file_1 r]
316 perror "$file_1 doesn't exist"
320 if [file exists $file_2] then {
321 set file_b [open $file_2 r]
323 perror "$file_2 doesn't exist"
328 verbose " Regexp-diff'ing: $file_1 $file_2" 2
333 while { [string length $line_a] == 0 } {
334 # Ignore blank line in FILE_1.
335 if { [gets $file_a line_a] == $eof } {
340 while { [string length $line_b] == 0 || [string match "#*" $line_b] } {
341 if { [string match "#pass" $line_b] } {
345 } elseif { [string match "#failif" $line_b] } {
346 send_log "fail if no difference\n"
347 verbose "fail if no difference" 3
349 } elseif { [string match "#..." $line_b] } {
350 if { [gets $file_b line_b] == $eof } {
355 set negated [expr { [string index $line_b 0] == "!" }]
356 set line_bx [string range $line_b $negated end]
357 set n [expr { $negated ? "! " : "" }]
358 # Substitute on the reference.
359 foreach {name value} $ref_subst {
360 regsub -- $name $line_bx $value line_bx
362 verbose "looking for $n\"^$line_bx$\"" 3
363 while { [expr [regexp "^$line_bx$" "$line_a"] == $negated] } {
364 verbose "skipping \"$line_a\"" 3
365 if { [gets $file_a line_a] == $eof } {
372 if { [gets $file_b line_b] == $eof } {
380 } elseif { $end_1 && $end_2 } {
382 } elseif { $end_1 } {
383 send_log "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n"
384 verbose "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3
387 } elseif { $end_2 } {
388 send_log "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n"
389 verbose "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3
393 set negated [expr { [string index $line_b 0] == "!" }]
394 set line_bx [string range $line_b $negated end]
395 set n [expr { $negated ? "! " : "" }]
396 set s [expr { $negated ? " " : "" }]
397 # Substitute on the reference.
398 foreach {name value} $ref_subst {
399 regsub -- $name $line_bx $value line_bx
401 verbose "regexp $n\"^$line_bx$\"\nline \"$line_a\"" 3
402 if { [expr [regexp "^$line_bx$" "$line_a"] == $negated] } {
403 send_log "regexp_diff match failure\n"
404 send_log "regexp $n\"^$line_bx$\"\nline $s\"$line_a\"\n"
405 verbose "regexp_diff match failure\n" 3
411 if { $differences == 0 && !$diff_pass && [eof $file_a] != [eof $file_b] } {
412 send_log "$file_1 and $file_2 are different lengths\n"
413 verbose "$file_1 and $file_2 are different lengths" 3
417 if { $fail_if_match } {
418 if { $differences == 0 } {
431 # prune_warnings_extra -- delete extra warnings from TEXT.
434 # ld: warning: /lib64/ld-linux-x86-64.so.2: unsupported GNU_PROPERTY_TYPE (5) type : 0xc0010001
435 proc prune_warnings_extra { text } {
437 # Warnings are only pruned from non-experimental code (ie code not
438 # on a release branch). For experimental code we want the warnings
439 # as they indicate that the sources need to be updated to recognise
440 # the new properties.
441 if { "$experimental" == "false" } {
442 # The "\\1" is to try to preserve a "\n" but only if necessary.
443 regsub -all "(^|\n)(\[^\n\]*: warning:\[^\n\]*unsupported GNU_PROPERTY_TYPE\[^\n\]*\n?)+" $text "\\1" text
445 # PR binutils/23898: It is OK to have gaps in build notes.
446 regsub -all "(^|\n)(\[^\n\]*: Warning: Gap in build notes detected from\[^\n\]*\n?)+" $text "\\1" text
450 # This definition is taken from an unreleased version of DejaGnu. Once
451 # that version gets released, and has been out in the world for a few
452 # months at least, it may be safe to delete this copy.
453 if ![string length [info proc prune_warnings]] {
455 # prune_warnings -- delete various system verbosities from TEXT
458 # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
460 # Sites with particular verbose os's may wish to override this in site.exp.
462 proc prune_warnings { text } {
463 # This is from sun4's. Do it for all machines for now.
464 # The "\\1" is to try to preserve a "\n" but only if necessary.
465 regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
466 # It might be tempting to get carried away and delete blank lines, etc.
467 # Just delete *exactly* what we're ask to, and that's it.
468 set text [prune_warnings_extra $text]
471 } elseif { [info procs saved-prune_warnings] == [list] } {
472 rename prune_warnings saved-prune_warnings
473 proc prune_warnings { text } {
474 set text [saved-prune_warnings $text]
475 set text [prune_warnings_extra $text]
480 # run_dump_test FILE (optional:) EXTRA_OPTIONS
482 # Assemble a .s file, then run some utility on it and check the output.
484 # There should be an assembly language file named FILE.s in the test
485 # suite directory, and a pattern file called FILE.d. run_dump_test
486 # will assemble FILE.s, optionally run objcopy on the object file,
487 # optionally run ld, optionally run another objcopy, optionally run
488 # another tool under test specified by PROG, then run a dump tool like
489 # addr2line, nm, objdump, readelf or size on the object file to produce
490 # textual output, and then analyze that with regexps.
491 # The FILE.d file specifies what program to run, and what to expect in
494 # The FILE.d file begins with zero or more option lines, which specify
495 # flags to pass to the assembler, the program to run to dump the
496 # assembler's output, and the options it wants. The option lines have
501 # OPTION is the name of some option, like "name" or "objdump", and
502 # VALUE is OPTION's value. The valid options are described below.
503 # Whitespace is ignored everywhere, except within VALUE. The option
504 # list ends with the first line that doesn't match the above syntax.
505 # However, a line within the options that begins with a #, but doesn't
506 # have a recognizable option name followed by a colon, is considered a
507 # comment and entirely ignored.
509 # The optional EXTRA_OPTIONS argument to `run_dump_test' is a list of
510 # two-element lists. The first element of each is an option name, and
511 # the second additional arguments to be added on to the end of the
512 # option list as given in FILE.d. (If omitted, no additional options
515 # The interesting options are:
518 # The name of this test, passed to DejaGNU's `pass' and `fail'
519 # commands. If omitted, this defaults to FILE, the root of the
520 # .s and .d files' names.
523 # When assembling, pass FLAGS to the assembler.
524 # If assembling several files, you can pass different assembler
525 # options in the "source" directives. See below.
526 # Multiple instances of this directive tells run_dump_test to run the test
527 # multiple times -- one time with each set of flags provided.
528 # Each instance will run exactly as a file with a single "as" line, it is
529 # not possible to condition any behaviour on which set of "as" flags is
530 # used. That means that the "source" specific options are appended to
531 # the "as" flags for their corresponding files, and any extra processing
532 # (e.g. with "ld" and "objcopy") is repeated for each test.
535 # Link assembled files using FLAGS, in the order of the "source"
536 # directives, when using multiple files.
538 # ld_after_inputfiles: FLAGS
539 # Similar to "ld", but put FLAGS after all input files.
541 # objcopy_objects: FLAGS
542 # Run objcopy with the specified flags after assembling any source
543 # that has the special marker RUN_OBJCOPY in the source specific
546 # objcopy_linked_file: FLAGS
547 # Run objcopy on the linked file with the specified flags.
548 # This lets you transform the linked file using objcopy, before the
549 # result is analyzed by an analyzer program specified below.
552 # The name of a program under test, to run to modify or analyze the
553 # .o file produced by the assembler. Recognised names are: ar,
554 # elfedit, nm, objcopy, ranlib, strings, and strip.
556 # DUMPPROG: PROGRAM-NAME
557 # The name of the program to run to analyze the file produced
558 # by the assembler or the linker. This can be omitted;
559 # run_dump_test will guess which program to run from which of
560 # the flags options below is present.
567 # Use the specified program to analyze the output file, and pass it
568 # FLAGS, in addition to the output name. Note that they are run
569 # with LC_ALL=C in the environment to give consistent sorting of
570 # symbols. If no FLAGS are needed then you can use:
571 # DUMPPROG: [nm objdump readelf addr2line]
572 # instead, or just pass a flag that happens to be the default.
573 # If objdump is the dump tool and we're not dumping binary, nor
574 # have run ld, then the standard section names (.text, .data and
575 # .bss) are replaced by target ones if any (eg. rx-elf uses "P"
576 # instead of .text). The substition is done for both the
577 # objdump options (eg: "-j .text" is replaced by "-j P") and the
580 # source: SOURCE [FLAGS]
581 # Assemble the file SOURCE.s using the flags in the "as" directive
582 # and the (optional) FLAGS. If omitted, the source defaults to
584 # This is useful if several .d files want to share a .s file.
585 # More than one "source" directive can be given, which is useful
586 # when testing linking.
589 # Match against DUMP.d. If omitted, this defaults to FILE.d. This
590 # is useful if several .d files differ by options only. Options are
591 # always read from FILE.d.
593 # target: GLOB|PROC ...
594 # Run this test only on a specified list of targets. More precisely,
595 # in the space-separated list each glob is passed to "istarget" and
596 # each proc is called as a TCL procedure. List items are interpreted
597 # such that procs are denoted by surrounding square brackets, and any
598 # other items are consired globs. If the call evaluates true for any
599 # of them, the test will be run, otherwise it will be marked
602 # notarget: GLOB|PROC ...
603 # Do not run this test on a specified list of targets. Again, each
604 # glob in the space-separated list is passed to "istarget" and each
605 # proc is called as a TCL procedure, and the test is run if it
606 # evaluates *false* for *all* of them. Otherwise it will be marked
609 # alltargets: GLOB|PROC ...
610 # Run this test on a specified list of targets. Again, each
611 # glob in the space-separated list is passed to "istarget" and each
612 # proc is called as a TCL procedure, and the test is run if it
613 # evaluates *true* for *all* of them. Otherwise it will be marked
616 # skip: GLOB|PROC ...
617 # anyskip: GLOB|PROC ...
618 # noskip: GLOB|PROC ...
619 # These are exactly the same as "notarget", "alltargets" and
620 # "target" respectively, except that they do nothing at all if the
621 # check fails. They should only be used in groups, to construct a
622 # single test which is run on all targets but with variant options
623 # or expected output on some targets. (For example, see
624 # gas/arm/inst.d and gas/arm/wince_inst.d.)
626 # xfail: GLOB|PROC ...
627 # Run this test and it is is expected to fail on a specified list
631 # An error with message matching REGEX must be emitted for the test
632 # to pass. The DUMPPROG, addr2line, nm, objdump, readelf and size
633 # options have no meaning and need not supplied if this is present.
634 # Multiple "error" directives append to the expected error message.
637 # Means the same as 'error', except the regular expression lines
638 # are contains in FILE.
641 # Expect a warning matching REGEX. It is an error to issue
642 # both "error" and "warning". Multiple "warning" directives
643 # append to the expected warning message.
645 # warning_output: FILE
646 # Means the same as 'warning', except the regular expression
647 # lines are contains in FILE.
650 # Adding this option will cause the linker to generate a linker
651 # map file, using the -Map=MAPFILE command line option. If
652 # there is no -Map=MAPFILE in the 'ld: FLAGS' then one will be
653 # added to the linker command line. The contents of the
654 # generated MAPFILE are then compared against the regexp lines
655 # in FILE using `regexp_diff' (see below for details).
658 # Means that the section substitution for objdump is disabled.
660 # Each option may occur at most once unless otherwise mentioned.
662 # After the option lines come regexp lines. run_dump_test calls
663 # regexp_diff to compare the output of the dumping tool against the
666 proc run_dump_test { name {extra_options {}} } {
667 global ADDR2LINE ADDR2LINEFLAGS AS ASFLAGS ELFEDIT ELFEDITFLAGS LD LDFLAGS
668 global NM NMFLAGS OBJCOPY OBJCOPYFLAGS OBJDUMP OBJDUMPFLAGS
669 global READELF READELFFLAGS STRIP STRIPFLAGS
670 global copyfile env ld_elf_shared_opt runtests srcdir subdir verbose
672 if [string match "*/*" $name] {
674 set name [file tail $name]
676 set file "$srcdir/$subdir/$name"
679 if ![runtest_file_p $runtests $name] then {
683 set opt_array [slurp_options "${file}.d"]
684 if { $opt_array == -1 } {
685 perror "error reading options from $file.d"
686 unresolved $subdir/$name
689 set dumpfile tmpdir/dump.out
694 set opts(DUMPPROG) {}
695 set opts(addr2line) {}
696 set opts(alltargets) {}
700 set as_final_flags {}
701 set as_additional_flags {}
705 set opts(error_output) {}
707 set opts(ld_after_inputfiles) {}
712 set opts(notarget) {}
714 set opts(objcopy_linked_file) {}
715 set opts(objcopy_objects) {}
719 set opts(section_subst) {}
728 set opts(warning_output) {}
732 foreach i [concat $opt_array {{} {}} $extra_options] {
733 set opt_name [lindex $i 0]
734 set opt_val [lindex $i 1]
735 if { $opt_name == "" } {
739 if ![info exists opts($opt_name)] {
740 perror "unknown option $opt_name in file $file.d"
741 unresolved $subdir/$name
745 # Allow more substitutions, including tcl functions, for as and ld.
746 # Not done in general because extra quoting is needed for glob
747 # args used for example in binutils-all/remove-relocs-04.d.
748 if { $opt_name == "as" || $opt_name == "ld" } {
749 set opt_val [subst $opt_val]
751 # Just substitute $srcdir and $subdir
752 regsub -all {\$srcdir} "$opt_val" "$srcdir" opt_val
753 regsub -all {\$subdir} "$opt_val" "$subdir" opt_val
756 switch -- $opt_name {
767 # Move any source-specific as-flags to a separate list to
768 # simplify processing.
769 if { [llength $opt_val] > 1 } {
770 lappend asflags [lrange $opt_val 1 end]
771 set opt_val [lindex $opt_val 0]
776 # Create the object file name based on nothing but the source
779 [concat tmpdir/[file rootname [file tail [lindex $opt_val 0]]].o]
780 # But, sometimes, we have the exact same source filename in
781 # different directories (foo/src.s bar/src.s) which would lead
782 # us to try and create two src.o files. We detect this
783 # conflict here, and instead create src.o and src1.o.
785 while { [lsearch $objfile_names $new_objfile] != -1 } {
788 [concat tmpdir/[file rootname [file tail [lindex $opt_val 0]]]${j}.o]
790 lappend objfile_names $new_objfile
794 && [string length $opts($opt_name)]
795 && $opt_name != "as" } {
796 perror "option $opt_name multiply set in $file.d"
797 unresolved $subdir/$name
801 # A single "#ld:" with no options should do the right thing.
802 if { $opt_name == "ld" } {
805 # Likewise objcopy_linked_file.
806 if { $opt_name == "objcopy_linked_file" } {
812 # Append differently whether it's a message (without space) or
813 # an option or list (with space).
814 switch -- $opt_name {
817 append opts($opt_name) $opt_val
821 set as_additional_flags [concat $as_additional_flags $opt_val]
823 lappend opts(as) $opt_val
827 set opts($opt_name) [concat $opts($opt_name) $opt_val]
832 # Ensure there is something in $opts(as) for the foreach loop below.
833 if { [llength $opts(as)] == 0 } {
834 set opts(as) [list " "]
836 foreach x $opts(as) {
837 if { [string length $x] && [string length $as_additional_flags] } {
840 append x $as_additional_flags
841 regsub {\[big_or_little_endian\]} $x \
842 [big_or_little_endian] x
843 lappend as_final_flags $x
846 regsub {\[big_or_little_endian\]} $opts(ld) \
847 [big_or_little_endian] opts(ld)
849 if { $opts(name) == "" } {
850 set testname "$subdir/$name"
852 set testname $opts(name)
856 foreach opt { warning error warning_output error_output } {
857 if { $opts($opt) != "" } {
859 perror "$testname: bad mix of warning and error test directives"
867 # Decide early whether we should run the test for this target.
868 if { [llength $opts(noskip)] > 0 } {
870 foreach targ $opts(noskip) {
871 if [match_target $targ] {
876 if { $targmatch == 0 } {
880 foreach targ $opts(anyskip) {
881 if ![match_target $targ] {
885 foreach targ $opts(skip) {
886 if [match_target $targ] {
890 if { [llength $opts(target)] > 0 } {
892 foreach targ $opts(target) {
893 if [match_target $targ] {
898 if { $targmatch == 0 } {
899 unsupported $testname
903 foreach targ $opts(alltargets) {
904 if ![match_target $targ] {
905 unsupported $testname
909 foreach targ $opts(notarget) {
910 if [match_target $targ] {
911 unsupported $testname
917 # It's meaningless to require an output-testing method when we
919 if { $opts(error) == "" && $opts(error_output) == "" } {
920 if { $opts(DUMPPROG) != "" } {
921 switch -- $opts(DUMPPROG) {
922 addr2line { set dumpprogram addr2line }
923 nm { set dumpprogram nm }
924 objdump { set dumpprogram objdump }
925 readelf { set dumpprogram readelf }
926 size { set dumpprogram size }
928 perror "unrecognized DUMPPROG option $opts(DUMPPROG) in $file.d"
934 # Guess which program to run, by seeing which option was specified.
935 foreach p {addr2line nm objdump readelf size} {
936 if {$opts($p) != ""} {
937 if {$dumpprogram != ""} {
938 perror "ambiguous dump program in $file.d"
947 if { $dumpprogram == "" && $opts(map) == "" && !$err_warn } {
948 perror "dump program unspecified in $file.d"
954 if { $opts(source) == "" } {
955 set sourcefiles [list ${file}.s]
956 set asflags [list ""]
957 set objfile_names [list tmpdir/[file tail ${file}].o]
960 foreach sf $opts(source) {
961 if { [string match "./*" $sf] } {
962 lappend sourcefiles "$sf"
964 lappend sourcefiles "$srcdir/$subdir/$sf"
969 if { $opts(dump) == "" } {
972 set dfile $srcdir/$subdir/$opts(dump)
975 # Time to setup xfailures.
976 foreach targ $opts(xfail) {
980 foreach as_flags $as_final_flags {
981 # Assemble each file.
983 for { set i 0 } { $i < [llength $sourcefiles] } { incr i } {
984 set sourcefile [lindex $sourcefiles $i]
985 set sourceasflags [lindex $asflags $i]
986 set run_objcopy_objects 0
988 if { [string match "*RUN_OBJCOPY*" $sourceasflags] } {
989 set run_objcopy_objects 1
991 regsub "RUN_OBJCOPY" $sourceasflags "" sourceasflags
993 set objfile [lindex $objfile_names $i]
994 catch "exec rm -f $objfile" exec_output
995 lappend objfiles $objfile
997 if { $as_flags == "binary" } {
998 while {[file type $sourcefile] eq "link"} {
999 set newfile [file readlink $sourcefile]
1000 if {[string index $newfile 0] ne "/"} {
1001 set newfile [file dirname $sourcefile]/$newfile
1003 set sourcefile $newfile
1005 set newfile [remote_download host $sourcefile $objfile]
1007 if { $newfile == "" } {
1011 if { [istarget "hppa*-*-*"] \
1012 && ![istarget "*-*-linux*"] \
1013 && ![istarget "*-*-netbsd*" ] } {
1014 set cmd "sed -e 's/^\[ \]*\.comm \\(\[^,\]*\\),\\(.*\\)/\\1 .comm \\2/' < $sourcefile > tmpdir/asm.s"
1016 set cmdret [remote_exec host [concat sh -c [list "$cmd"]]]
1017 set cmdret [lindex $cmdret 0]
1018 if { $cmdret != 0 } {
1019 perror "sed failure"
1020 unresolved $testname
1023 set sourcefile tmpdir/asm.s
1025 set cmd "$AS $ASFLAGS $as_flags $sourceasflags -o $objfile $sourcefile"
1028 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "dump.tmp"]
1029 remote_upload host "dump.tmp"
1030 set comp_output [prune_warnings [file_contents "dump.tmp"]]
1031 remote_file host delete "dump.tmp"
1032 remote_file build delete "dump.tmp"
1033 set cmdret [lindex $cmdret 0]
1035 if { $cmdret == 0 && $run_objcopy_objects } {
1036 set cmd "$OBJCOPY $opts(objcopy_objects) $objfile"
1039 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] \
1040 "" "/dev/null" "dump.tmp"]
1041 remote_upload host "dump.tmp"
1042 append comp_output [prune_warnings [file_contents "dump.tmp"]]
1043 remote_file host delete "dump.tmp"
1044 remote_file build delete "dump.tmp"
1045 set cmdret [lindex $cmdret 0]
1049 # Perhaps link the file(s).
1050 if { $cmdret == 0 && $run_ld } {
1051 set objfile "tmpdir/dump"
1052 catch "exec rm -f $objfile" exec_output
1057 if { [is_elf_format] && [check_shared_lib_support] } {
1058 set ld_extra_opt "$ld_elf_shared_opt"
1061 # Add -L$srcdir/$subdir so that the linker command can use
1062 # linker scripts in the source directory.
1063 set cmd "$LD $ld_extra_opt $LDFLAGS -L$srcdir/$subdir \
1064 $opts(ld) -o $objfile $objfiles $opts(ld_after_inputfiles)"
1066 # If needed then check for, or add a -Map option.
1068 if { $opts(map) != "" } then {
1069 if { [regexp -- "-Map=(\[^ \]+)" $cmd all mapfile] } then {
1070 # Found existing mapfile option
1071 verbose -log "Existing mapfile '$mapfile' found"
1073 # No mapfile option.
1074 set mapfile "tmpdir/dump.map"
1075 verbose -log "Adding mapfile '$mapfile'"
1076 set cmd "$cmd -Map=$mapfile"
1081 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "dump.tmp"]
1082 remote_upload host "dump.tmp"
1083 append comp_output [file_contents "dump.tmp"]
1084 remote_file host delete "dump.tmp"
1085 remote_file build delete "dump.tmp"
1086 set cmdret [lindex $cmdret 0]
1088 if { $cmdret == 0 && $run_objcopy } {
1090 set objfile "tmpdir/dump1"
1091 remote_file host delete $objfile
1093 # Note that we don't use OBJCOPYFLAGS here; any flags must be
1094 # explicitly specified.
1095 set cmd "$OBJCOPY $opts(objcopy_linked_file) $infile $objfile"
1098 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>&1"]] "" "/dev/null" "dump.tmp"]
1099 remote_upload host "dump.tmp"
1100 append comp_output [file_contents "dump.tmp"]
1101 remote_file host delete "dump.tmp"
1102 remote_file build delete "dump.tmp"
1103 set cmdret [lindex $cmdret 0]
1106 set objfile [lindex $objfiles 0]
1109 if { $cmdret == 0 && $opts(PROG) != "" } {
1110 set destopt ${copyfile}.o
1111 switch -- $opts(PROG) {
1112 ar { set program ar }
1117 nm { set program nm }
1118 objcopy { set program objcopy }
1119 ranlib { set program ranlib }
1120 strings { set program strings }
1123 set destopt "-o $destopt"
1126 perror "unrecognized PROG option $opts(PROG) in $file.d"
1127 unresolved $testname
1132 set progopts1 $opts($program)
1133 eval set progopts \$[string toupper $program]FLAGS
1134 eval set binary \$[string toupper $program]
1136 if { ![is_remote host] && [which $binary] == 0 } {
1141 verbose "running $binary $progopts $progopts1" 3
1142 set cmd "$binary $progopts $progopts1 $objfile $destopt"
1144 # Ensure consistent sorting of symbols
1145 if {[info exists env(LC_ALL)]} {
1146 set old_lc_all $env(LC_ALL)
1150 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>dump.tmp"]] "" "/dev/null"]
1151 set cmdret [lindex $cmdret 0]
1152 remote_upload host "dump.tmp"
1153 append comp_output [prune_warnings [file_contents "dump.tmp"]]
1154 remote_file host delete "dump.tmp"
1155 remote_file build delete "dump.tmp"
1156 if {[info exists old_lc_all]} {
1157 set env(LC_ALL) $old_lc_all
1161 if { $destopt != "" } {
1162 set objfile ${copyfile}.o
1166 set want_out(source) ""
1167 set want_out(terminal) 0
1169 if { $opts(error) != "" || $opts(error_output) != "" } {
1170 set want_out(terminal) 1
1173 if { $opts(error) != "" || $opts(warning) != "" } {
1174 set want_out(source) "regex"
1175 if { $opts(error) != "" } {
1176 set want_out(regex) $opts(error)
1178 set want_out(regex) $opts(warning)
1181 set want_out(source) "file"
1182 if { $opts(error_output) != "" } {
1183 set want_out(file) $opts(error_output)
1185 set want_out(file) $opts(warning_output)
1190 regsub "\n$" $comp_output "" comp_output
1191 if { $cmdret != 0 || $comp_output != "" || $want_out(source) != "" } {
1192 set exitstat "succeeded"
1193 if { $cmdret != 0 } { set exitstat "failed" }
1195 if { $want_out(source) == "regex" } {
1196 verbose -log "$exitstat with: <$comp_output>, expected: <$want_out(regex)>"
1197 } elseif { $want_out(source) == "file" } {
1198 verbose -log "$exitstat with: <$comp_output>, expected in file $want_out(file)"
1199 set_file_contents "tmpdir/ld.messages" "$comp_output"
1201 verbose -log "$exitstat with: <$comp_output>, no expected output"
1204 if { (($want_out(source) == "") == ($comp_output == "")) \
1205 && (($cmdret == 0) == ($want_out(terminal) == 0)) \
1206 && ((($want_out(source) == "regex") \
1207 && [regexp -- $want_out(regex) $comp_output]) \
1208 || (($want_out(source) == "file") \
1209 && (![regexp_diff "tmpdir/ld.messages" "$srcdir/$subdir/$want_out(file)"]))) } {
1210 # We have the expected output.
1211 if { $want_out(terminal) || $dumpprogram == "" } {
1221 # We must not have expected failure if we get here.
1222 if { $opts(error) != "" } {
1227 if { $opts(map) != "" } then {
1228 # Check the map file matches.
1229 set map_pattern_file $srcdir/$subdir/$opts(map)
1230 verbose -log "Compare '$mapfile' against '$map_pattern_file'"
1231 if { [regexp_diff $mapfile $map_pattern_file] } then {
1232 fail "$testname (map file check)"
1234 pass "$testname (map file check)"
1237 if { $dumpprogram == "" } then {
1242 set progopts1 $opts($dumpprogram)
1243 eval set progopts \$[string toupper $dumpprogram]FLAGS
1244 eval set binary \$[string toupper $dumpprogram]
1246 if { ![is_remote host] && [which $binary] == 0 } {
1251 # For objdump of gas output, automatically translate standard section names
1253 if { !$run_ld && $dumpprogram == "objdump" \
1254 && $opts(section_subst) != "no" \
1255 && ![string match "*-b binary*" $progopts1] } {
1256 set sect_names [get_standard_section_names]
1257 if { $sect_names != ""} {
1258 regsub -- "\\.text" $progopts1 "[lindex $sect_names 0]" progopts1
1259 regsub -- "\\.data" $progopts1 "[lindex $sect_names 1]" progopts1
1260 regsub -- "\\.bss" $progopts1 "[lindex $sect_names 2]" progopts1
1264 if { $progopts1 == "" } { set $progopts1 "-r" }
1265 verbose "running $binary $progopts $progopts1" 3
1267 set cmd "$binary $progopts $progopts1 $objfile > $dumpfile"
1269 # Ensure consistent sorting of symbols
1270 if {[info exists env(LC_ALL)]} {
1271 set old_lc_all $env(LC_ALL)
1275 set cmdret [remote_exec host [concat sh -c [list "$cmd 2>dump.tmp"]] "" "/dev/null"]
1276 set cmdret [lindex $cmdret 0]
1277 remote_upload host "dump.tmp"
1278 set comp_output [prune_warnings [file_contents "dump.tmp"]]
1279 remote_file host delete "dump.tmp"
1280 remote_file build delete "dump.tmp"
1281 if {[info exists old_lc_all]} {
1282 set env(LC_ALL) $old_lc_all
1286 if { $cmdret != 0 || $comp_output != "" } {
1287 send_log "exited abnormally with $cmdret, output:$comp_output\n"
1292 if { $verbose > 2 } then { verbose "output is [file_contents $dumpfile]" 3 }
1294 # Create the substition list for objdump output.
1296 if { $sect_names != "" } {
1297 set regexp_subst [list "\\\\?\\.text" [lindex $sect_names 0] \
1298 "\\\\?\\.data" [lindex $sect_names 1] \
1299 "\\\\?\\.bss" [lindex $sect_names 2] ]
1302 if { [regexp_diff $dumpfile "${dfile}" $regexp_subst] } then {
1304 if { $verbose == 2 } then { verbose "output is [file_contents $dumpfile]" 2 }
1312 proc slurp_options { file } {
1313 # If options_regsub(foo) is set to {a b}, then the contents of a
1314 # "#foo:" line will have regsub -all applied to replace a with b.
1315 global options_regsub
1317 if [catch { set f [open $file r] } x] {
1318 #perror "couldn't open `$file': $x"
1323 # whitespace expression
1326 # whitespace is ignored anywhere except within the options list;
1327 # option names are alphanumeric plus underscore.
1328 set pat "^#${ws}(\[a-zA-Z0-9_\]*)$ws:${ws}(.*)$ws\$"
1329 while { [gets $f line] != -1 } {
1330 set line [string trim $line]
1331 # Whitespace here is space-tab.
1332 if [regexp $pat $line xxx opt_name opt_val] {
1334 if [info exists options_regsub($opt_name)] {
1335 set subst $options_regsub($opt_name)
1336 regsub -all -- [lindex $subst 0] $opt_val [lindex $subst 1] \
1339 lappend opt_array [list $opt_name $opt_val]
1340 } elseif {![regexp "^#" $line ]} {
1348 proc file_contents { filename } {
1349 set file [open $filename r]
1350 set contents [read $file]
1355 proc set_file_contents { filename contents } {
1356 set file [open $filename w]
1357 puts $file "$contents"
1361 # Look for big-endian or little-endian switches in the multlib
1362 # options and translate these into a -EB or -EL switch. Note
1363 # we cannot rely upon proc process_multilib_options to do this
1364 # for us because for some targets the compiler does not support
1365 # -EB/-EL but it does support -mbig-endian/-mlittle-endian, and
1366 # the site.exp file will include the switch "-mbig-endian"
1367 # (rather than "big-endian") which is not detected by proc
1368 # process_multilib_options.
1370 proc big_or_little_endian {} {
1372 if [board_info [target_info name] exists multilib_flags] {
1373 set tmp_flags " [board_info [target_info name] multilib_flags]"
1375 foreach x $tmp_flags {
1377 {*big*endian eb EB -eb -EB -mb -meb} {
1381 {*little*endian el EL -el -EL -ml -mel} {
1393 # Internal procedure: return the names of the standard sections
1395 proc get_standard_section_names {} {
1396 if [istarget "rx-*-elf"] {
1397 return { "P" "D_1" "B_1" }
1399 if { [istarget "alpha*-*-*vms*"] || [is_som_format] } {
1400 return { {\$CODE\$} {\$DATA\$} {\$BSS\$} }