📄 target-supports.exp
字号:
# Copyright (C) 1999, 2001, 2003, 2004, 2005, 2006, 2007# Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 3 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with GCC; see the file COPYING3. If not see# <http://www.gnu.org/licenses/>.# Please email any bugs, comments, and/or additions to this file to:# gcc-patches@gcc.gnu.org# This file defines procs for determining features supported by the target.# Try to compile the code given by CONTENTS into an output file of# type TYPE, where TYPE is as for target_compile. Return a list# whose first element contains the compiler messages and whose# second element is the name of the output file.## BASENAME is a prefix to use for source and output files.# If ARGS is not empty, its first element is a string that# should be added to the command line.## Assume by default that CONTENTS is C code. C++ code should contain# "// C++" and Fortran code should contain "! Fortran".proc check_compile {basename type contents args} { global tool if { [llength $args] > 0 } { set options [list "additional_flags=[lindex $args 0]"] } else { set options "" } switch -glob -- $contents { "*! Fortran*" { set src ${basename}[pid].f90 } "*// C++*" { set src ${basename}[pid].cc } default { set src ${basename}[pid].c } } set compile_type $type switch -glob $type { assembly { set output ${basename}[pid].s } object { set output ${basename}[pid].o } executable { set output ${basename}[pid].exe } "rtl-*" { set output ${basename}[pid].s lappend options "additional_flags=-fdump-$type" set compile_type assembly } } set f [open $src "w"] puts $f $contents close $f set lines [${tool}_target_compile $src $output $compile_type "$options"] file delete $src set scan_output $output # Don't try folding this into the switch above; calling "glob" before the # file is created won't work. if [regexp "rtl-(.*)" $type dummy rtl_type] { set scan_output "[glob $src.\[0-9\]\[0-9\]\[0-9\]r.$rtl_type]" file delete $output } return [list $lines $scan_output]}proc current_target_name { } { global target_info if [info exists target_info(target,name)] { set answer $target_info(target,name) } else { set answer "" } return $answer}# Implement an effective-target check for property PROP by invoking# the Tcl command ARGS and seeing if it returns true.proc check_cached_effective_target { prop args } { global et_cache set target [current_target_name] if {![info exists et_cache($prop,target)] || $et_cache($prop,target) != $target} { verbose "check_cached_effective_target $prop: checking $target" 2 set et_cache($prop,target) $target set et_cache($prop,value) [uplevel eval $args] } set value $et_cache($prop,value) verbose "check_cached_effective_target $prop: returning $value for $target" 2 return $value}# Like check_compile, but delete the output file and return true if the# compiler printed no messages.proc check_no_compiler_messages_nocache {args} { set result [eval check_compile $args] set lines [lindex $result 0] set output [lindex $result 1] remote_file build delete $output return [string match "" $lines]}# Like check_no_compiler_messages_nocache, but cache the result.# PROP is the property we're checking, and doubles as a prefix for# temporary filenames.proc check_no_compiler_messages {prop args} { return [check_cached_effective_target $prop { eval [list check_no_compiler_messages_nocache $prop] $args }]}# Like check_compile, but return true if the compiler printed no# messages and if the contents of the output file satisfy PATTERN.# If PATTERN has the form "!REGEXP", the contents satisfy it if they# don't match regular expression REGEXP, otherwise they satisfy it# if they do match regular expression PATTERN. (PATTERN can start# with something like "[!]" if the regular expression needs to match# "!" as the first character.)## Delete the output file before returning. The other arguments are# as for check_compile.proc check_no_messages_and_pattern_nocache {basename pattern args} { global tool set result [eval [list check_compile $basename] $args] set lines [lindex $result 0] set output [lindex $result 1] set ok 0 if { [string match "" $lines] } { set chan [open "$output"] set invert [regexp {^!(.*)} $pattern dummy pattern] set ok [expr { [regexp $pattern [read $chan]] != $invert }] close $chan } remote_file build delete $output return $ok}# Like check_no_messages_and_pattern_nocache, but cache the result.# PROP is the property we're checking, and doubles as a prefix for# temporary filenames.proc check_no_messages_and_pattern {prop pattern args} { return [check_cached_effective_target $prop { eval [list check_no_messages_and_pattern_nocache $prop $pattern] $args }]}# Try to compile and run an executable from code CONTENTS. Return true# if the compiler reports no messages and if execution "passes" in the# usual DejaGNU sense. The arguments are as for check_compile, with# TYPE implicitly being "executable".proc check_runtime_nocache {basename contents args} { global tool set result [eval [list check_compile $basename executable $contents] $args] set lines [lindex $result 0] set output [lindex $result 1] set ok 0 if { [string match "" $lines] } { # No error messages, everything is OK. set result [remote_load target "./$output" "" ""] set status [lindex $result 0] verbose "check_runtime_nocache $basename: status is <$status>" 2 if { $status == "pass" } { set ok 1 } } remote_file build delete $output return $ok}# Like check_runtime_nocache, but cache the result. PROP is the# property we're checking, and doubles as a prefix for temporary# filenames.proc check_runtime {prop args} { global tool return [check_cached_effective_target $prop { eval [list check_runtime_nocache $prop] $args }]}################################ proc check_weak_available { }################################ weak symbols are only supported in some configs/object formats# this proc returns 1 if they're supported, 0 if they're not, or -1 if unsureproc check_weak_available { } { global target_triplet global target_cpu # All mips targets should support it if { [ string first "mips" $target_cpu ] >= 0 } { return 1 } # All solaris2 targets should support it if { [regexp ".*-solaris2.*" $target_triplet] } { return 1 } # DEC OSF/1/Digital UNIX/Tru64 UNIX supports it if { [regexp "alpha.*osf.*" $target_triplet] } { return 1 } # Windows targets Cygwin and MingW32 support it if { [regexp ".*mingw32|.*cygwin" $target_triplet] } { return 1 } # HP-UX 10.X doesn't support it if { [istarget "hppa*-*-hpux10*"] } { return 0 } # ELF and ECOFF support it. a.out does with gas/gld but may also with # other linkers, so we should try it set objformat [gcc_target_object_format] switch $objformat { elf { return 1 } ecoff { return 1 } a.out { return 1 } mach-o { return 1 } som { return 1 } unknown { return -1 } default { return 0 } }}################################ proc check_visibility_available { what_kind }################################ The visibility attribute is only support in some object formats# This proc returns 1 if it is supported, 0 if not.# The argument is the kind of visibility, default/protected/hidden/internal.proc check_visibility_available { what_kind } { global tool global target_triplet # On NetWare, support makes no sense. if { [istarget *-*-netware*] } { return 0 } if [string match "" $what_kind] { set what_kind "hidden" } return [check_no_compiler_messages visibility_available_$what_kind object " void f() __attribute__((visibility(\"$what_kind\"))); void f() {} "]}################################ proc check_alias_available { }################################ Determine if the target toolchain supports the alias attribute.# Returns 2 if the target supports aliases. Returns 1 if the target# only supports weak aliased. Returns 0 if the target does not# support aliases at all. Returns -1 if support for aliases could not# be determined.proc check_alias_available { } { global alias_available_saved global tool if [info exists alias_available_saved] { verbose "check_alias_available returning saved $alias_available_saved" 2 } else { set src alias[pid].c set obj alias[pid].o verbose "check_alias_available compiling testfile $src" 2 set f [open $src "w"] # Compile a small test program. The definition of "g" is # necessary to keep the Solaris assembler from complaining # about the program. puts $f "#ifdef __cplusplus\nextern \"C\"\n#endif\n" puts $f "void g() {} void f() __attribute__((alias(\"g\")));" close $f set lines [${tool}_target_compile $src $obj object ""] file delete $src remote_file build delete $obj if [string match "" $lines] then { # No error messages, everything is OK. set alias_available_saved 2 } else { if [regexp "alias definitions not supported" $lines] { verbose "check_alias_available target does not support aliases" 2 set objformat [gcc_target_object_format] if { $objformat == "elf" } { verbose "check_alias_available but target uses ELF format, so it ought to" 2 set alias_available_saved -1 } else { set alias_available_saved 0 } } else { if [regexp "only weak aliases are supported" $lines] { verbose "check_alias_available target supports only weak aliases" 2 set alias_available_saved 1 } else { set alias_available_saved -1 } } } verbose "check_alias_available returning $alias_available_saved" 2 } return $alias_available_saved}# Returns true if --gc-sections is supported on the target.proc check_gc_sections_available { } { global gc_sections_available_saved global tool if {![info exists gc_sections_available_saved]} { # Some targets don't support gc-sections despite whatever's # advertised by ld's options. if { [istarget alpha*-*-*] || [istarget ia64-*-*] } { set gc_sections_available_saved 0 return 0 } # elf2flt uses -q (--emit-relocs), which is incompatible with # --gc-sections. if { [board_info target exists ldflags] && [regexp " -elf2flt\[ =\]" " [board_info target ldflags] "] } { set gc_sections_available_saved 0 return 0 } # VxWorks kernel modules are relocatable objects linked with -r, # while RTP executables are linked with -q (--emit-relocs). # Both of these options are incompatible with --gc-sections. if { [istarget *-*-vxworks*] } { set gc_sections_available_saved 0 return 0 } # Check if the ld used by gcc supports --gc-sections. set gcc_spec [${tool}_target_compile "-dumpspecs" "" "none" ""] regsub ".*\n\*linker:\[ \t\]*\n(\[^ \t\n\]*).*" "$gcc_spec" {\1} linker set gcc_ld [lindex [${tool}_target_compile "-print-prog-name=$linker" "" "none" ""] 0] set ld_output [remote_exec host "$gcc_ld" "--help"] if { [ string first "--gc-sections" $ld_output ] >= 0 } { set gc_sections_available_saved 1 } else { set gc_sections_available_saved 0 } } return $gc_sections_available_saved}# Return true if profiling is supported on the target.proc check_profiling_available { test_what } { global profiling_available_saved verbose "Profiling argument is <$test_what>" 1 # These conditions depend on the argument so examine them before # looking at the cache variable. # Support for -p on solaris2 relies on mcrt1.o which comes with the # vendor compiler. We cannot reliably predict the directory where the # vendor compiler (and thus mcrt1.o) is installed so we can't # necessarily find mcrt1.o even if we have it. if { [istarget *-*-solaris2*] && [lindex $test_what 1] == "-p" } { return 0 } # Support for -p on irix relies on libprof1.a which doesn't appear to # exist on any irix6 system currently posting testsuite results. # Support for -pg on irix relies on gcrt1.o which doesn't exist yet. # See: http://gcc.gnu.org/ml/gcc/2002-10/msg00169.html if { [istarget mips*-*-irix*] && ([lindex $test_what 1] == "-p" || [lindex $test_what 1] == "-pg") } { return 0 } # MinGW does not support -p. if { [istarget *-*-mingw*] && [lindex $test_what 1] == "-p" } { return 0 } # At present, there is no profiling support on NetWare. if { [istarget *-*-netware*] } { return 0 } # uClibc does not have gcrt1.o. if { [check_effective_target_uclibc] && ([lindex $test_what 1] == "-p" || [lindex $test_what 1] == "-pg") } { return 0 }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -