OSDN Git Service

* lib/target-supports.exp (check_effective_target_mpc_pow): Fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / lib / objc.exp
1 # Copyright (C) 1992, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2004, 2005,
2 # 2007, 2008 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3.  If not see
16 # <http://www.gnu.org/licenses/>.
17
18 # This file was written by Rob Savoye (rob@cygnus.com)
19 # Currently maintained by Doug Evans (dje@cygnus.com)
20
21 # This file is loaded by the tool init file (eg: unix.exp).  It provides
22 # default definitions for objc_start, etc. and other supporting cast members.
23
24 # These globals are used by objc_start if no compiler arguments are provided.
25 # They are also used by the various testsuites to define the environment:
26 # where to find stdio.h, libc.a, etc.
27
28 load_lib libgloss.exp
29 load_lib prune.exp
30 load_lib gcc-defs.exp
31 load_lib timeout.exp
32 load_lib target-libpath.exp
33
34 #
35 # OBJC_UNDER_TEST is the compiler under test.
36 #
37
38 #
39 # default_objc_version -- extract and print the version number of the compiler
40 #
41
42 proc default_objc_version { } {
43     global OBJC_UNDER_TEST
44
45     objc_init
46
47     # ignore any arguments after the command
48     set compiler [lindex $OBJC_UNDER_TEST 0]
49
50     if ![is_remote host] {
51         set compiler_name [which $compiler]
52     } else {
53         set compiler_name $compiler
54     }
55
56     # verify that the compiler exists
57     if { $compiler_name != 0 } then {
58         set tmp [remote_exec host "$compiler -v"]
59         set status [lindex $tmp 0]
60         set output [lindex $tmp 1]
61         regexp " version \[^\n\r\]*" $output version
62         if { $status == 0 && [info exists version] } then {
63             clone_output "$compiler_name $version\n"
64         } else {
65             clone_output "Couldn't determine version of $compiler_name: $output\n"
66         }
67     } else {
68         # compiler does not exist (this should have already been detected)
69         warning "$compiler does not exist"
70     }
71 }
72
73 #
74 # Call objc_version. We do it this way so we can override it if needed.
75 #
76 proc objc_version { } {
77     default_objc_version
78 }
79
80 #
81 # objc_init -- called at the start of each .exp script.
82 #
83 # There currently isn't much to do, but always using it allows us to
84 # make some enhancements without having to go back and rewrite the scripts.
85 #
86
87 set objc_initialized 0
88
89 proc objc_init { args } {
90     global rootme
91     global tmpdir
92     global libdir
93     global gluefile wrap_flags
94     global objc_initialized
95     global OBJC_UNDER_TEST
96     global TOOL_EXECUTABLE
97     global objc_libgcc_s_path
98     global gcc_warning_prefix
99     global gcc_error_prefix
100
101     # We set LC_ALL and LANG to C so that we get the same error messages as expected.
102     setenv LC_ALL C
103     setenv LANG C
104
105     if { $objc_initialized == 1 } { return; }
106
107     if ![info exists OBJC_UNDER_TEST] then {
108         if [info exists TOOL_EXECUTABLE] {
109             set OBJC_UNDER_TEST $TOOL_EXECUTABLE
110         } else {
111             set OBJC_UNDER_TEST [find_gcc]
112         }
113     }
114
115     if ![info exists tmpdir] then {
116         set tmpdir /tmp
117     }
118
119     set gcc_warning_prefix "warning:"
120     set gcc_error_prefix "error:"
121
122     objc_maybe_build_wrapper "${tmpdir}/objc-testglue.o"
123
124     set objc_libgcc_s_path [gcc-set-multilib-library-path $OBJC_UNDER_TEST]
125 }
126
127 proc objc_target_compile { source dest type options } {
128     global rootme
129     global tmpdir
130     global gluefile wrap_flags
131     global srcdir
132     global OBJC_UNDER_TEST
133     global TOOL_OPTIONS
134     global ld_library_path
135     global objc_libgcc_s_path
136     global shlib_ext
137
138     set ld_library_path ".:${objc_libgcc_s_path}"
139     lappend options "libs=-lobjc"
140     set shlib_ext [get_shlib_extension]
141     verbose "shared lib extension: $shlib_ext"
142
143     if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
144         lappend options "libs=${gluefile}"
145         lappend options "ldflags=$wrap_flags"
146     }
147
148     if [target_info exists objc,stack_size] {
149         lappend options "additional_flags=-DSTACK_SIZE=[target_info objc,stack_size]"
150     }
151     if [target_info exists objc,no_trampolines] {
152         lappend options "additional_flags=-DNO_TRAMPOLINES"
153     }
154     if [target_info exists objc,no_label_values] {
155         lappend options "additional_flags=-DNO_LABEL_VALUES"
156     }
157     # TOOL_OPTIONS must come first, so that it doesn't override testcase
158     # specific options.
159     if [info exists TOOL_OPTIONS] {
160         set options [concat "{additional_flags=$TOOL_OPTIONS}" $options]
161     }
162
163     # If we have built libobjc along with the compiler (which usually
164     # _is not_ the case on Mac OS X systems), point the test harness
165     # at it (and associated headers).
166
167     set objcpath "[get_multilibs]"
168
169     set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc.a]
170     if { $libobjc_dir == ""} {
171       verbose "see if we have -fgnu-runtime in options"
172       if [regexp ".*-fgnu-runtime.*" "${options}"] {
173         set libobjc_dir [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.a]
174       }
175     }
176     # Now check if we have a shared only build.
177     if { $libobjc_dir == ""} {
178      set libobjc_dir \
179          [lookfor_file ${objcpath} libobjc/.libs/libobjc.${shlib_ext}]
180     }
181     if { $libobjc_dir == ""} {
182         verbose "see if we have -fgnu-runtime in options"
183         if [regexp ".*-fgnu-runtime.*" "${options}"] {
184          set libobjc_dir \
185              [lookfor_file ${objcpath} libobjc/.libs/libobjc-gnu.${shlib_ext}]
186         }
187     }
188     if { $libobjc_dir != "" } {
189         set objc_include_dir "${srcdir}/../../libobjc"
190         lappend options "additional_flags=-I${objc_include_dir}"
191         set libobjc_dir [file dirname ${libobjc_dir}]
192         set objc_link_flags "-L${libobjc_dir}"
193         lappend options "additional_flags=${objc_link_flags}"
194         append ld_library_path ":${libobjc_dir}"
195     }
196     if { $type == "precompiled_header" } {
197         # If we generating a precompiled header, we have say this is an
198         # objective-C header
199         set source [concat "-x objective-c-header" $source]
200     }
201     lappend options "compiler=$OBJC_UNDER_TEST"
202     lappend options "timeout=[timeout_value]"
203
204     set_ld_library_path_env_vars
205
206     return [target_compile $source $dest $type $options]
207 }
208
209 #
210 # objc_pass -- utility to record a testcase passed
211 #
212
213 proc objc_pass { testcase cflags } {
214     if { "$cflags" == "" } {
215         pass "$testcase"
216     } else {
217         pass "$testcase, $cflags"
218     }
219 }
220
221 #
222 # objc_fail -- utility to record a testcase failed
223 #
224
225 proc objc_fail { testcase cflags } {
226     if { "$cflags" == "" } {
227         fail "$testcase"
228     } else {
229         fail "$testcase, $cflags"
230     }
231 }
232
233 #
234 # objc_finish -- called at the end of every .exp script that calls objc_init
235 #
236 # The purpose of this proc is to hide all quirks of the testing environment
237 # from the testsuites.  It also exists to undo anything that objc_init did
238 # (that needs undoing).
239 #
240
241 proc objc_finish { } {
242     # The testing harness apparently requires this.
243     global errorInfo
244
245     if [info exists errorInfo] then {
246         unset errorInfo
247     }
248
249     # Might as well reset these (keeps our caller from wondering whether
250     # s/he has to or not).
251     global prms_id bug_id
252     set prms_id 0
253     set bug_id 0
254 }
255
256 proc objc_exit { } {
257     global gluefile
258
259     if [info exists gluefile] {
260         file_on_build delete $gluefile
261         unset gluefile
262     }
263 }
264     
265 # If this is an older version of dejagnu (without runtest_file_p),
266 # provide one and assume the old syntax: foo1.exp bar1.c foo2.exp bar2.c.
267 # This can be deleted after next dejagnu release.
268
269 if { [info procs runtest_file_p] == "" } then {
270     proc runtest_file_p { runtests testcase } {
271         if { $runtests != "" && [regexp "\[.\]\[cC\]" $runtests] } then {
272             if { [lsearch $runtests [file tail $testcase]] >= 0 } then {
273                 return 1
274             } else {
275                 return 0
276             }
277         }
278         return 1
279     }
280 }
281
282 # Provide a definition of this if missing (delete after next dejagnu release).
283
284 if { [info procs prune_warnings] == "" } then {
285     proc prune_warnings { text } {
286         return $text
287     }
288 }
289
290 # Utility used by mike-gcc.exp and c-torture.exp.
291 # Check the compiler(/assembler/linker) output for text indicating that
292 # the testcase should be marked as "unsupported".
293 #
294 # When dealing with a large number of tests, it's difficult to weed out the
295 # ones that are too big for a particular cpu (eg: 16 bit with a small amount
296 # of memory).  There are various ways to deal with this.  Here's one.
297 # Fortunately, all of the cases where this is likely to happen will be using
298 # gld so we can tell what the error text will look like.
299
300 proc ${tool}_check_unsupported_p { output } {
301     if [regexp "(^|\n)\[^\n\]*: region \[^\n\]* is full" $output] {
302         return "memory full"
303     }
304     return ""
305 }
306
307 # Prune messages from objc that aren't useful.
308
309 proc prune_objc_output { text } {
310     #send_user "Before:$text\n"
311     regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\n\]*" $text "" text
312     regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text
313
314     # It would be nice to avoid passing anything to objc that would cause it to
315     # issue these messages (since ignoring them seems like a hack on our part),
316     # but that's too difficult in the general case.  For example, sometimes
317     # you need to use -B to point objc at crt0.o, but there are some targets
318     # that don't have crt0.o.
319     regsub -all "(^|\n)\[^\n\]*file path prefix \[^\n\]* never used" $text "" text
320     regsub -all "(^|\n)\[^\n\]*linker input file unused since linking not done" $text "" text
321
322     #send_user "After:$text\n"
323
324     return $text
325 }
326