1 |
14 |
jlechner |
# Copyright (C) 2003, 2005 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 |
|
|
proc load_gcc_lib { filename } {
|
18 |
|
|
global srcdir
|
19 |
|
|
load_file $srcdir/../../gcc/testsuite/lib/$filename
|
20 |
|
|
}
|
21 |
|
|
|
22 |
|
|
load_lib dg.exp
|
23 |
|
|
load_lib libgloss.exp
|
24 |
|
|
load_gcc_lib target-libpath.exp
|
25 |
|
|
load_gcc_lib wrapper.exp
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
# Define libffi callbacks for dg.exp.
|
29 |
|
|
|
30 |
|
|
proc libffi-dg-test-1 { target_compile prog do_what extra_tool_flags } {
|
31 |
|
|
|
32 |
|
|
# To get all \n in dg-output test strings to match printf output
|
33 |
|
|
# in a system that outputs it as \015\012 (i.e. not just \012), we
|
34 |
|
|
# need to change all \n into \r?\n. As there is no dejagnu flag
|
35 |
|
|
# or hook to do that, we simply change the text being tested.
|
36 |
|
|
# Unfortunately, we have to know that the variable is called
|
37 |
|
|
# dg-output-text and lives in the caller of libffi-dg-test, which
|
38 |
|
|
# is two calls up. Overriding proc dg-output would be longer and
|
39 |
|
|
# would necessarily have the same assumption.
|
40 |
|
|
upvar 2 dg-output-text output_match
|
41 |
|
|
|
42 |
|
|
if { [llength $output_match] > 1 } {
|
43 |
|
|
regsub -all "\n" [lindex $output_match 1] "\r?\n" x
|
44 |
|
|
set output_match [lreplace $output_match 1 1 $x]
|
45 |
|
|
}
|
46 |
|
|
|
47 |
|
|
# Set up the compiler flags, based on what we're going to do.
|
48 |
|
|
|
49 |
|
|
set options [list]
|
50 |
|
|
switch $do_what {
|
51 |
|
|
"compile" {
|
52 |
|
|
set compile_type "assembly"
|
53 |
|
|
set output_file "[file rootname [file tail $prog]].s"
|
54 |
|
|
}
|
55 |
|
|
"link" {
|
56 |
|
|
set compile_type "executable"
|
57 |
|
|
set output_file "[file rootname [file tail $prog]].exe"
|
58 |
|
|
# The following line is needed for targets like the i960 where
|
59 |
|
|
# the default output file is b.out. Sigh.
|
60 |
|
|
}
|
61 |
|
|
"run" {
|
62 |
|
|
set compile_type "executable"
|
63 |
|
|
# FIXME: "./" is to cope with "." not being in $PATH.
|
64 |
|
|
# Should this be handled elsewhere?
|
65 |
|
|
# YES.
|
66 |
|
|
set output_file "./[file rootname [file tail $prog]].exe"
|
67 |
|
|
# This is the only place where we care if an executable was
|
68 |
|
|
# created or not. If it was, dg.exp will try to run it.
|
69 |
|
|
remote_file build delete $output_file;
|
70 |
|
|
}
|
71 |
|
|
default {
|
72 |
|
|
perror "$do_what: not a valid dg-do keyword"
|
73 |
|
|
return ""
|
74 |
|
|
}
|
75 |
|
|
}
|
76 |
|
|
|
77 |
|
|
if { $extra_tool_flags != "" } {
|
78 |
|
|
lappend options "additional_flags=$extra_tool_flags"
|
79 |
|
|
}
|
80 |
|
|
|
81 |
|
|
set comp_output [libffi_target_compile "$prog" "$output_file" "$compile_type" $options];
|
82 |
|
|
|
83 |
|
|
|
84 |
|
|
return [list $comp_output $output_file]
|
85 |
|
|
}
|
86 |
|
|
|
87 |
|
|
|
88 |
|
|
proc libffi-dg-test { prog do_what extra_tool_flags } {
|
89 |
|
|
return [libffi-dg-test-1 target_compile $prog $do_what $extra_tool_flags]
|
90 |
|
|
}
|
91 |
|
|
|
92 |
|
|
proc libffi-init { args } {
|
93 |
|
|
global gluefile wrap_flags;
|
94 |
|
|
global srcdir
|
95 |
|
|
global blddirffi
|
96 |
|
|
global objdir
|
97 |
|
|
global blddircxx
|
98 |
|
|
global TOOL_OPTIONS
|
99 |
|
|
global tool
|
100 |
|
|
global libffi_include
|
101 |
|
|
global libffi_link_flags
|
102 |
|
|
global tool_root_dir
|
103 |
|
|
global ld_library_path
|
104 |
|
|
|
105 |
|
|
set blddirffi [lookfor_file [get_multilibs] libffi]
|
106 |
|
|
verbose "libffi $blddirffi"
|
107 |
|
|
set blddircxx [lookfor_file [get_multilibs] libstdc++-v3]
|
108 |
|
|
verbose "libstdc++ $blddircxx"
|
109 |
|
|
|
110 |
|
|
set gccdir [lookfor_file $tool_root_dir gcc/libgcc.a]
|
111 |
|
|
if {$gccdir != ""} {
|
112 |
|
|
set gccdir [file dirname $gccdir]
|
113 |
|
|
}
|
114 |
|
|
verbose "gccdir $gccdir"
|
115 |
|
|
|
116 |
|
|
set ld_library_path "."
|
117 |
|
|
append ld_library_path ":${gccdir}"
|
118 |
|
|
|
119 |
|
|
set compiler "${gccdir}/xgcc"
|
120 |
|
|
if { [is_remote host] == 0 && [which $compiler] != 0 } {
|
121 |
|
|
foreach i "[exec $compiler --print-multi-lib]" {
|
122 |
|
|
set mldir ""
|
123 |
|
|
regexp -- "\[a-z0-9=_/\.-\]*;" $i mldir
|
124 |
|
|
set mldir [string trimright $mldir "\;@"]
|
125 |
|
|
if { "$mldir" == "." } {
|
126 |
|
|
continue
|
127 |
|
|
}
|
128 |
|
|
if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.so.*]] >= 1 } {
|
129 |
|
|
append ld_library_path ":${gccdir}/${mldir}"
|
130 |
|
|
}
|
131 |
|
|
}
|
132 |
|
|
}
|
133 |
|
|
# add the library path for libffi.
|
134 |
|
|
append ld_library_path ":${blddirffi}/.libs"
|
135 |
|
|
# add the library path for libstdc++ as well.
|
136 |
|
|
append ld_library_path ":${blddircxx}/src/.libs"
|
137 |
|
|
|
138 |
|
|
verbose "ld_library_path: $ld_library_path"
|
139 |
|
|
|
140 |
|
|
# Point to the Libffi headers in libffi.
|
141 |
|
|
set libffi_include "${blddirffi}/include"
|
142 |
|
|
verbose "libffi_include $libffi_include"
|
143 |
|
|
|
144 |
|
|
set libffi_dir "${blddirffi}/.libs"
|
145 |
|
|
verbose "libffi_dir $libffi_dir"
|
146 |
|
|
if { $libffi_dir != "" } {
|
147 |
|
|
set libffi_dir [file dirname ${libffi_dir}]
|
148 |
|
|
set libffi_link_flags "-L${libffi_dir}/.libs"
|
149 |
|
|
lappend libffi_link_flags "-L${blddircxx}/src/.libs"
|
150 |
|
|
}
|
151 |
|
|
|
152 |
|
|
set_ld_library_path_env_vars
|
153 |
|
|
libffi_maybe_build_wrapper "${objdir}/testglue.o"
|
154 |
|
|
}
|
155 |
|
|
|
156 |
|
|
proc libffi_exit { } {
|
157 |
|
|
global gluefile;
|
158 |
|
|
|
159 |
|
|
if [info exists gluefile] {
|
160 |
|
|
file_on_build delete $gluefile;
|
161 |
|
|
unset gluefile;
|
162 |
|
|
}
|
163 |
|
|
}
|
164 |
|
|
|
165 |
|
|
proc libffi_target_compile { source dest type options } {
|
166 |
|
|
global gluefile wrap_flags;
|
167 |
|
|
global srcdir
|
168 |
|
|
global blddirffi
|
169 |
|
|
global TOOL_OPTIONS
|
170 |
|
|
global libffi_link_flags
|
171 |
|
|
global libffi_include
|
172 |
|
|
global target_triplet
|
173 |
|
|
|
174 |
|
|
|
175 |
|
|
if { [target_info needs_status_wrapper]!="" && [info exists gluefile] } {
|
176 |
|
|
lappend options "libs=${gluefile}"
|
177 |
|
|
lappend options "ldflags=$wrap_flags"
|
178 |
|
|
}
|
179 |
|
|
|
180 |
|
|
# TOOL_OPTIONS must come first, so that it doesn't override testcase
|
181 |
|
|
# specific options.
|
182 |
|
|
if [info exists TOOL_OPTIONS] {
|
183 |
|
|
lappend options [concat "additional_flags=$TOOL_OPTIONS" $options];
|
184 |
|
|
}
|
185 |
|
|
|
186 |
|
|
# search for ffi_mips.h in srcdir, too
|
187 |
|
|
lappend options "additional_flags=-I${libffi_include} -I${srcdir}/../include -I${libffi_include}/.."
|
188 |
|
|
lappend options "additional_flags=${libffi_link_flags}"
|
189 |
|
|
|
190 |
|
|
# If you're building the compiler with --prefix set to a place
|
191 |
|
|
# where it's not yet installed, then the linker won't be able to
|
192 |
|
|
# find the libgcc used by libffi.dylib. We could pass the
|
193 |
|
|
# -dylib_file option, but that's complicated, and it's much easier
|
194 |
|
|
# to just make the linker find libgcc using -L options.
|
195 |
|
|
if { [string match "*-*-darwin*" $target_triplet] } {
|
196 |
|
|
lappend options "libs= -shared-libgcc"
|
197 |
|
|
}
|
198 |
|
|
|
199 |
|
|
lappend options "libs= -lffi"
|
200 |
|
|
|
201 |
|
|
verbose "options: $options"
|
202 |
|
|
return [target_compile $source $dest $type $options]
|
203 |
|
|
}
|
204 |
|
|
|
205 |
|
|
# Utility routines.
|
206 |
|
|
|
207 |
|
|
#
|
208 |
|
|
# search_for -- looks for a string match in a file
|
209 |
|
|
#
|
210 |
|
|
proc search_for { file pattern } {
|
211 |
|
|
set fd [open $file r]
|
212 |
|
|
while { [gets $fd cur_line]>=0 } {
|
213 |
|
|
if [string match "*$pattern*" $cur_line] then {
|
214 |
|
|
close $fd
|
215 |
|
|
return 1
|
216 |
|
|
}
|
217 |
|
|
}
|
218 |
|
|
close $fd
|
219 |
|
|
return 0
|
220 |
|
|
}
|
221 |
|
|
|
222 |
|
|
# Modified dg-runtest that can cycle through a list of optimization options
|
223 |
|
|
# as c-torture does.
|
224 |
|
|
proc libffi-dg-runtest { testcases default-extra-flags } {
|
225 |
|
|
global runtests
|
226 |
|
|
|
227 |
|
|
foreach test $testcases {
|
228 |
|
|
# If we're only testing specific files and this isn't one of
|
229 |
|
|
# them, skip it.
|
230 |
|
|
if ![runtest_file_p $runtests $test] {
|
231 |
|
|
continue
|
232 |
|
|
}
|
233 |
|
|
|
234 |
|
|
# Look for a loop within the source code - if we don't find one,
|
235 |
|
|
# don't pass -funroll[-all]-loops.
|
236 |
|
|
global torture_with_loops torture_without_loops
|
237 |
|
|
if [expr [search_for $test "for*("]+[search_for $test "while*("]] {
|
238 |
|
|
set option_list $torture_with_loops
|
239 |
|
|
} else {
|
240 |
|
|
set option_list $torture_without_loops
|
241 |
|
|
}
|
242 |
|
|
|
243 |
|
|
set nshort [file tail [file dirname $test]]/[file tail $test]
|
244 |
|
|
|
245 |
|
|
foreach flags $option_list {
|
246 |
|
|
verbose "Testing $nshort, $flags" 1
|
247 |
|
|
dg-test $test $flags ${default-extra-flags}
|
248 |
|
|
}
|
249 |
|
|
}
|
250 |
|
|
}
|
251 |
|
|
|
252 |
|
|
|
253 |
|
|
# Like check_conditional_xfail, but callable from a dg test.
|
254 |
|
|
|
255 |
|
|
proc dg-xfail-if { args } {
|
256 |
|
|
set args [lreplace $args 0 0]
|
257 |
|
|
set selector "target [join [lindex $args 1]]"
|
258 |
|
|
if { [dg-process-target $selector] == "S" } {
|
259 |
|
|
global compiler_conditional_xfail_data
|
260 |
|
|
set compiler_conditional_xfail_data $args
|
261 |
|
|
}
|
262 |
|
|
}
|
263 |
|
|
|
264 |
|
|
|
265 |
|
|
# We need to make sure that additional_files and additional_sources
|
266 |
|
|
# are both cleared out after every test. It is not enough to clear
|
267 |
|
|
# them out *before* the next test run because gcc-target-compile gets
|
268 |
|
|
# run directly from some .exp files (outside of any test). (Those
|
269 |
|
|
# uses should eventually be eliminated.)
|
270 |
|
|
|
271 |
|
|
# Because the DG framework doesn't provide a hook that is run at the
|
272 |
|
|
# end of a test, we must replace dg-test with a wrapper.
|
273 |
|
|
|
274 |
|
|
if { [info procs saved-dg-test] == [list] } {
|
275 |
|
|
rename dg-test saved-dg-test
|
276 |
|
|
|
277 |
|
|
proc dg-test { args } {
|
278 |
|
|
global additional_files
|
279 |
|
|
global additional_sources
|
280 |
|
|
global errorInfo
|
281 |
|
|
|
282 |
|
|
if { [ catch { eval saved-dg-test $args } errmsg ] } {
|
283 |
|
|
set saved_info $errorInfo
|
284 |
|
|
set additional_files ""
|
285 |
|
|
set additional_sources ""
|
286 |
|
|
error $errmsg $saved_info
|
287 |
|
|
}
|
288 |
|
|
set additional_files ""
|
289 |
|
|
set additional_sources ""
|
290 |
|
|
}
|
291 |
|
|
}
|
292 |
|
|
|
293 |
|
|
# Local Variables:
|
294 |
|
|
# tcl-indent-level:4
|
295 |
|
|
# End:
|