OSDN Git Service

* lib/target-supports.exp (check_profiling_available): Return
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / lib / target-supports.exp
index c259f64..76b9ede 100644 (file)
@@ -1,4 +1,4 @@
-#   Copyright (C) 1999, 2001, 2003, 2004 Free Software Foundation, Inc.
+#   Copyright (C) 1999, 2001, 2003, 2004, 2005 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
 # BASENAME is a basename to use for temporary files.
 # TYPE is the type of compilation to perform (see target_compile).
 # CONTENTS gives the contents of the input file.
-proc get_compiler_messages {basename type contents} {
+# The rest is optional:
+# OPTIONS: additional compiler options to use.
+proc get_compiler_messages {basename type contents args} {
     global tool
 
+    if { [llength $args] > 0 } {
+       set options "additional_flags=[lindex $args 0]"
+    } else {
+       set options ""
+    }
+
     set src ${basename}[pid].c
     switch $type {
        assembly { set output ${basename}[pid].s }
@@ -35,13 +43,23 @@ proc get_compiler_messages {basename type contents} {
     set f [open $src "w"]
     puts $f $contents
     close $f
-    set lines [${tool}_target_compile $src $output $type ""]
+    set lines [${tool}_target_compile $src $output $type "$options"]
     file delete $src
     remote_file build delete $output
 
     return $lines
 }
 
+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
+}
+
 ###############################
 # proc check_weak_available { }
 ###############################
@@ -77,6 +95,12 @@ proc check_weak_available { } {
        return 1
     }
 
+    # HP-UX 10.X doesn't support it
+
+    if { [regexp "hppa.*hpux10" $target_triplet] } {
+       return 0
+    }
+
     # ELF and ECOFF support it. a.out does with gas/gld but may also with
     # other linkers, so we should try it
 
@@ -87,19 +111,21 @@ proc check_weak_available { } {
         ecoff    { return 1 }
         a.out    { return 1 }
        mach-o   { return 1 }
+       som      { return 1 }
         unknown  { return -1 }
         default  { return 0 }
     }
 }
 
 ###############################
-# proc check_visibility_available { }
+# 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 { } {
+proc check_visibility_available { what_kind } {
     global visibility_available_saved
     global tool
     global target_triplet
@@ -109,18 +135,29 @@ proc check_visibility_available { } {
         return 0
     }
 
-    if {![info exists visibility_available_saved] } {
-       set lines [get_compiler_messages visibility object {
-           void f() __attribute__((visibility("hidden")));
-           void f() {}
-       }]
-       if [string match "" $lines] then {
-           set visibility_available_saved 1
-       } else {
-           set visibility_available_saved 0
+    if [string match "" $what_kind] { set what_kind "hidden" }
+
+    if { [info exists visibility_available_saved] } {
+       verbose "Saved result is <$visibility_available_saved>" 1
+       if { [ lsearch -exact $visibility_available_saved $what_kind ] != -1 } {
+           return 1
+       } elseif { [ lsearch -exact $visibility_available_saved "!$what_kind" ] != -1 } {
+           return 0
        }
     }
-    return $visibility_available_saved
+
+    set lines [get_compiler_messages visibility object "
+       void f() __attribute__((visibility(\"$what_kind\")));
+       void f() {}
+    "]
+    if [string match "" $lines] then {
+       set answer 1
+       lappend visibility_available_saved $what_kind
+    } else {
+       set answer 0
+       lappend visibility_available_saved "!$what_kind"
+    }
+    return $answer
 }
 
 ###############################
@@ -256,6 +293,7 @@ proc check_profiling_available { test_what } {
             || [istarget cris-*-*]
             || [istarget h8300-*-*]
             || [istarget mips*-*-elf]
+            || [istarget xtensa-*-elf]
             || [istarget *-*-windiss] } {
            set profiling_available_saved 0
        } else {
@@ -266,7 +304,56 @@ proc check_profiling_available { test_what } {
     return $profiling_available_saved
 }
 
-# Return true if iconv is supported on the target. In particular IBM-1047.
+# Return 1 if -fpic and -fPIC are supported, as in no warnings or errors
+# emitted, 0 otherwise.  Whether a shared library can actually be built is
+# out of scope for this test.
+#
+# When the target name changes, replace the cached result.
+
+proc check_effective_target_fpic { } {
+    global et_fpic_saved
+    global et_fpic_target_name
+
+    if { ![info exists et_fpic_target_name] } {
+       set et_fpic_target_name ""
+    }
+
+    # If the target has changed since we set the cached value, clear it.
+    set current_target [current_target_name]
+    if { $current_target != $et_fpic_target_name } {
+       verbose "check_effective_target_fpic: `$et_fpic_target_name'" 2
+       set et_fpic_target_name $current_target
+       if [info exists et_fpic_saved] {
+           verbose "check_effective_target_fpic: removing cached result" 2
+           unset et_fpic_saved
+       }
+    }
+
+    if [info exists et_fpic_saved] {
+       verbose "check_effective_target_fpic: using cached result" 2
+    } else {
+       verbose "check_effective_target_fpic: compiling source" 2
+
+       # Note that M68K has a multilib that supports -fpic but not
+       # -fPIC, so we need to check both.  We test with a program that
+       # requires GOT references.
+       set et_fpic_saved [string match "" [get_compiler_messages fpic object {
+           extern int foo (void); extern int bar;
+           int baz (void) { return foo () + bar; }
+       } "-fpic"]]
+
+       if { $et_fpic_saved != 0 } {
+           set et_fpic_saved [string match "" [get_compiler_messages fpic object {
+               extern int foo (void); extern int bar;
+               int baz (void) { return foo () + bar; }
+           } "-fPIC"]]
+       }
+    }
+    verbose "check_effective_target_fpic: returning $et_fpic_saved" 2
+    return $et_fpic_saved
+}
+
+# Return true if iconv is supported on the target. In particular IBM1047.
 
 proc check_iconv_available { test_what } {
     global tool
@@ -286,6 +373,10 @@ proc check_iconv_available { test_what } {
     puts $f "return 0;\n}"
     close $f
 
+    # If the tool configuration file has not set libiconv, try "-liconv"
+    if { ![info exists libiconv] } {
+       set libiconv "-liconv"
+    }
     set lines [${tool}_target_compile $src $exe executable "libs=$libiconv" ]
     file delete $src
 
@@ -293,7 +384,7 @@ proc check_iconv_available { test_what } {
        # No error messages, everything is OK.
 
        set result [${tool}_load "./$exe" "" ""]
-       set status [lindex $result 0];
+       set status [lindex $result 0]
        remote_file build delete $exe
 
        verbose "check_iconv_available status is <$status>" 2
@@ -354,8 +445,16 @@ proc check_vmx_hw_available { } {
        puts $f "  return 0; }"
        close $f
 
+       # Most targets don't require special flags for this test case, but
+       # Darwin does.
+       if [istarget *-*-darwin*] {
+         set opts "additional_flags=-maltivec"
+       } else {
+         set opts ""
+       }
+
        verbose "check_vmx_hw_available  compiling testfile $src" 2
-       set lines [${tool}_target_compile $src $exe executable ""]
+       set lines [${tool}_target_compile $src $exe executable "$opts"]
        file delete $src
 
        if [string match "" $lines] then {
@@ -376,6 +475,92 @@ proc check_vmx_hw_available { } {
     return $vmx_hw_available_saved
 }
 
+# GCC 3.4.0 for powerpc64-*-linux* included an ABI fix for passing
+# complex float arguments.  This affects gfortran tests that call cabsf
+# in libm built by an earlier compiler.  Return 1 if libm uses the same
+# argument passing as the compiler under test, 0 otherwise.
+#
+# When the target name changes, replace the cached result.
+
+proc check_effective_target_broken_cplxf_arg { } {
+    global et_broken_cplxf_arg_saved
+    global et_broken_cplxf_arg_target_name
+    global tool
+
+    # Skip the work for targets known not to be affected.
+    if { ![istarget powerpc64-*-linux*] } {
+       return 0
+    } elseif { [is-effective-target ilp32] } {
+       return 0
+    }
+
+    if { ![info exists et_broken_cplxf_arg_target_name] } {
+       set et_broken_cplxf_arg_target_name ""
+    }
+
+    # If the target has changed since we set the cached value, clear it.
+    set current_target [current_target_name]
+    if { $current_target != $et_broken_cplxf_arg_target_name } {
+       verbose "check_effective_target_broken_cplxf_arg: `$et_broken_cplxf_arg_target_name'" 2
+       set et_broken_cplxf_arg_target_name $current_target
+       if [info exists et_broken_cplxf_arg_saved] {
+           verbose "check_effective_target_broken_cplxf_arg: removing cached result" 2
+           unset et_broken_cplxf_arg_saved
+       }
+    }
+
+    if [info exists et_broken_cplxf_arg_saved] {
+       verbose "check_effective_target_broken_cplxf_arg: using cached result" 2
+    } else {
+       set et_broken_cplxf_arg_saved 0
+       # This is only known to affect one target.
+       if { ![istarget powerpc64-*-linux*] || ![is-effective-target lp64] } {
+           set et_broken_cplxf_arg_saved 0
+           verbose "check_effective_target_broken_cplxf_arg: caching 0" 2
+           return $et_broken_cplxf_arg_saved
+       }
+
+       # Set up, compile, and execute a C test program that calls cabsf.
+       set src cabsf[pid].c
+       set exe cabsf[pid].x
+
+       set f [open $src "w"]
+       puts $f "#include <complex.h>"
+       puts $f "extern void abort (void);"
+       puts $f "float fabsf (float);"
+       puts $f "float cabsf (_Complex float);"
+       puts $f "int main ()"
+       puts $f "{"
+       puts $f "  _Complex float cf;"
+       puts $f "  float f;"
+       puts $f "  cf = 3 + 4.0fi;"
+       puts $f "  f = cabsf (cf);"
+       puts $f "  if (fabsf (f - 5.0) > 0.0001) abort ();"
+       puts $f "  return 0;"
+       puts $f "}"
+       close $f
+
+       set lines [${tool}_target_compile $src $exe executable "-lm"]
+       file delete $src
+
+       if [string match "" $lines] {
+           # No error message, compilation succeeded.
+           set result [${tool}_load "./$exe" "" ""]
+           set status [lindex $result 0]
+           remote_file build delete $exe
+
+           verbose "check_effective_target_broken_cplxf_arg: status is <$status>" 2
+
+           if { $status != "pass" } {
+               set et_broken_cplxf_arg_saved 1
+           }
+       } else {
+           verbose "check_effective_target_broken_cplxf_arg: compilation failed" 2
+       }
+    }
+    return $et_broken_cplxf_arg_saved
+}
+
 proc check_alpha_max_hw_available { } {
     global alpha_max_hw_available_saved
     global tool
@@ -418,26 +603,74 @@ proc check_alpha_max_hw_available { } {
 
 # Return 1 if we're generating 32-bit code using default options, 0
 # otherwise.
+#
+# When the target name changes, replace the cached result.
 
 proc check_effective_target_ilp32 { } {
-    verbose "check_effective_target_ilp32: compiling source" 2
-    set answer [string match "" [get_compiler_messages ilp32 object {
-       int dummy[(sizeof (int) == 4 && sizeof (void *) == 4 && sizeof (long) == 4 ) ? 1 : -1];
-    }]]
-    verbose "check_effective_target_ilp32: returning $answer" 2
-    return $answer
+    global et_ilp32_saved
+    global et_ilp32_target_name
+
+    if { ![info exists et_ilp32_target_name] } {
+       set et_ilp32_target_name ""
+    }
+
+    # If the target has changed since we set the cached value, clear it.
+    set current_target [current_target_name]
+    if { $current_target != $et_ilp32_target_name } {
+       verbose "check_effective_target_ilp32: `$et_ilp32_target_name' `$current_target'" 2
+       set et_ilp32_target_name $current_target
+       if { [info exists et_ilp32_saved] } {
+           verbose "check_effective_target_ilp32: removing cached result" 2
+           unset et_ilp32_saved
+       }
+    }
+
+    if [info exists et_ilp32_saved] {
+       verbose "check-effective_target_ilp32: using cached result" 2
+    } else {
+       verbose "check_effective_target_ilp32: compiling source" 2
+       set et_ilp32_saved [string match "" [get_compiler_messages ilp32 object {
+           int dummy[(sizeof (int) == 4 && sizeof (void *) == 4 && sizeof (long) == 4 ) ? 1 : -1];
+       }]]
+    }
+    verbose "check_effective_target_ilp32: returning $et_ilp32_saved" 2
+    return $et_ilp32_saved
 }
 
 # Return 1 if we're generating 64-bit code using default options, 0
 # otherwise.
+#
+# When the target name changes, replace the cached result.
 
 proc check_effective_target_lp64 { } {
-    verbose "check_effective_target_lp64: compiling source" 2
-    set answer [string match "" [get_compiler_messages lp64 object {
-       int dummy[(sizeof (int) == 4 && sizeof (void *) == 8 && sizeof (long) == 8 ) ? 1 : -1];
-    }]]
-    verbose "check_effective_target_lp64: returning $answer" 2
-    return $answer
+    global et_lp64_saved
+    global et_lp64_target_name
+
+    if { ![info exists et_lp64_target_name] } {
+       set et_lp64_target_name ""
+    }
+
+    # If the target has changed since we set the cached value, clear it.
+    set current_target [current_target_name]
+    if { $current_target != $et_lp64_target_name } {
+       verbose "check_effective_target_lp64: `$et_lp64_target_name' `$current_target'" 2
+       set et_lp64_target_name $current_target
+       if [info exists et_lp64_saved] {
+           verbose "check_effective_target_lp64: removing cached result" 2
+           unset et_lp64_saved
+       }
+    }
+
+    if [info exists et_lp64_saved] {
+       verbose "check_effective_target_lp64: using cached result" 2
+    } else {
+       verbose "check_effective_target_lp64: compiling source" 2
+       set et_lp64_saved [string match "" [get_compiler_messages lp64 object {
+           int dummy[(sizeof (int) == 4 && sizeof (void *) == 8 && sizeof (long) == 8 ) ? 1 : -1];
+       }]]
+    }
+    verbose "check_effective_target_lp64: returning $et_lp64_saved" 2
+    return $et_lp64_saved
 }
 
 # Return 1 if the target supports hardware vectors of int, 0 otherwise.
@@ -455,7 +688,8 @@ proc check_effective_target_vect_int { } {
              || [istarget powerpc*-*-*]
              || [istarget x86_64-*-*]
              || [istarget sparc*-*-*]
-             || [istarget alpha*-*-*] } {
+             || [istarget alpha*-*-*]
+             || [istarget ia64-*-*] } {
           set et_vect_int_saved 1
        }
     }
@@ -464,6 +698,19 @@ proc check_effective_target_vect_int { } {
     return $et_vect_int_saved
 }
 
+# Return 1 if the target supports hardware vector shift operation.
+
+proc check_effective_target_vect_shift { } {
+    if { [istarget powerpc*-*-*] } {
+       set answer 1
+    } else {
+       set answer 0
+    }
+
+    verbose "check_effective_target_vect_shift: returning $answer" 2
+    return $answer
+}
+
 # Return 1 if the target supports hardware vectors of long, 0 otherwise.
 #
 # This can change for different subtargets so do not cache the result.
@@ -496,7 +743,8 @@ proc check_effective_target_vect_float { } {
        if { [istarget i?86-*-*]
              || [istarget powerpc*-*-*]
              || [istarget mipsisa64*-*-*]
-             || [istarget x86_64-*-*] } {
+             || [istarget x86_64-*-*]
+             || [istarget ia64-*-*] } {
           set et_vect_float_saved 1
        }
     }
@@ -561,11 +809,6 @@ proc check_effective_target_vect_no_bitwise { } {
        verbose "check_effective_target_vect_no_bitwise: using cached result" 2
     } else {
        set et_vect_no_bitwise_saved 0
-       if { [istarget i?86-*-*]
-            || [istarget x86_64-*-*]
-            || [istarget alpha-*-*] } {
-           set et_vect_no_bitwise_saved 1
-       }
     }
     verbose "check_effective_target_vect_no_bitwise: returning $et_vect_no_bitwise_saved" 2
     return $et_vect_no_bitwise_saved
@@ -584,7 +827,8 @@ proc check_effective_target_vect_no_align { } {
     } else {
        set et_vect_no_align_saved 0
        if { [istarget mipsisa64*-*-*]
-            || [istarget sparc*-*-*] } {
+            || [istarget sparc*-*-*]
+            || [istarget ia64-*-*] } {
            set et_vect_no_align_saved 1
        }
     }
@@ -592,6 +836,69 @@ proc check_effective_target_vect_no_align { } {
     return $et_vect_no_align_saved
 }
 
+# Return 1 if the target supports vector conditional operations, 0 otherwise.
+
+proc check_effective_target_vect_condition { } {
+    global et_vect_cond_saved
+
+    if [info exists et_vect_int_cond] {
+       verbose "check_effective_target_vect_cond: using cached result" 2
+    } else {
+       set et_vect_cond_saved 0
+       if { [istarget powerpc*-*-*]
+            || [istarget ia64-*-*]
+            || [istarget i?86-*-*]
+            || [istarget x86_64-*-*] } {
+          set et_vect_cond_saved 1
+       }
+    }
+
+    verbose "check_effective_target_vect_cond: returning $et_vect_cond_saved" 2
+    return $et_vect_cond_saved
+}
+
+# Return 1 if the target supports vector int multiplication, 0 otherwise.
+
+proc check_effective_target_vect_int_mult { } {
+    global et_vect_int_mult_saved
+
+    if [info exists et_vect_int_mult_saved] {
+       verbose "check_effective_target_vect_int_mult: using cached result" 2
+    } else {
+       set et_vect_int_mult_saved 0
+       if { [istarget powerpc*-*-*] } {
+          set et_vect_int_mult_saved 1
+       }
+    }
+
+    verbose "check_effective_target_vect_int_mult: returning $et_vect_int_mult_saved" 2
+    return $et_vect_int_mult_saved
+}
+
+# Return 1 if the target supports atomic operations on "int" and "long".
+
+proc check_effective_target_sync_int_long { } {
+    global et_sync_int_long_saved
+
+    if [info exists et_sync_int_long_saved] {
+        verbose "check_effective_target_sync_int_long: using cached result" 2
+    } else {
+        set et_sync_int_long_saved 0
+# This is intentionally powerpc but not rs6000, rs6000 doesn't have the
+# load-reserved/store-conditional instructions.
+        if { [istarget ia64-*-*]
+            || [istarget i?86-*-*]
+            || [istarget x86_64-*-*]
+            || [istarget alpha*-*-*] 
+            || [istarget powerpc*-*-*] } {
+           set et_sync_int_long_saved 1
+        }
+    }
+
+    verbose "check_effective_target_sync_int_long: returning $et_sync_int_long_saved" 2
+    return $et_sync_int_long_saved
+}
+
 # Return 1 if the target matches the effective target 'arg', 0 otherwise.
 # This can be used with any check_* proc that takes no argument and
 # returns only 1 or 0.  It could be used with check_* procs that take