OSDN Git Service

Create proc to test for alias attribute support from targets.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / lib / target-supports.exp
1 #   Copyright (C) 1999 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
16
17 # Please email any bugs, comments, and/or additions to this file to:
18 # gcc-patches@gcc.gnu.org
19
20 # This file defines procs for determining features supported by the target.
21
22 ###############################
23 # proc check_weak_available { }
24 ###############################
25
26 # weak symbols are only supported in some configs/object formats
27 # this proc returns 1 if they're supported, 0 if they're not, or -1 if unsure
28
29 proc check_weak_available { } {
30     global target_cpu
31
32     # All mips targets should support it
33     
34     if { [ string first "mips" $target_cpu ] >= 0 } {
35         return 1
36     }
37
38     # ELF and ECOFF support it. a.out does with gas/gld but may also with
39     # other linkers, so we should try it
40
41     set objformat [gcc_target_object_format]
42
43     switch $objformat {
44         elf      { return 1 }
45         ecoff    { return 1 }
46         a.out    { return 1 }
47         unknown  { return -1 }
48         default  { return 0 }
49     }
50 }
51
52 ###############################
53 # proc check_alias_available { }
54 ###############################
55
56 # Determine if the target toolchain supports the alias attribute.
57 # Parameter is the pathname of a file that can be used to test the alias support.
58 # Returns yes if it does.
59 # Returns no if it does not.
60 # Returns dontknow if something went wrong
61 # For an example of the use of this function, see gcc.dg/special/ecos.exp
62
63 proc check_alias_available { testfile } {
64     global alias_available_saved
65     
66     if [info exists alias_available_saved] {
67         verbose "check_alias_available  returning saved $alias_available_saved" 2
68     } else {
69         verbose "check_alias_available  compiling testfile $testfile" 2
70         set lines [gcc_target_compile $testfile "tmp.o" object ""]
71         
72         if [string match "" $lines] then {
73             # No error messages, everything is OK.
74             set alias_available_saved yes
75         } else {
76             if [regexp "alias definitions not supported" $lines] {
77                 verbose "check_alias_available  target does not support aliases" 2
78
79                 set objformat [gcc_target_object_format]
80
81                 if { $objformat == "elf" } {
82                     verbose "check_alias_available  but target uses ELF format, so it ought to" 2
83                     set alias_available_saved dontknow
84                 } else {
85                     set alias_available_saved no
86                 }
87             } else {
88                 set alias_available_saved dontknow
89             }
90         }
91         
92         verbose "check_alias_available  returning $alias_available_saved" 2
93     }
94
95     return $alias_available_saved
96 }