1 # Copyright
(C
) 2006-2015 Free Software Foundation
, Inc.
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
3 of the License
, or
6 #
(at your option
) any later version.
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.
13 # You should have received a copy of the GNU General Public License
14 # along with GCC
; see the file COPYING3.
If not see
15 #
<http
://www.gnu.org
/licenses
/>.
17 # GCC testsuite that uses the `dg.exp
' driver.
22 if ![check_effective_target_fgraphite] {
26 # Remove VALUE from LIST_VARIABLE.
27 proc lremove {list_variable value} {
28 upvar 1 $list_variable var
29 set idx [lsearch -exact $var $value]
30 set var [lreplace $var $idx $idx]
33 # The default action for a test is 'compile'. Save current default.
34 global dg-do-what-default
35 set save-dg-do-what-default ${dg-do-what-default}
40 set wait_to_run_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/*.c
] ]
41 set scop_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/scop
-*.c
] ]
42 set id_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/id
-*.c
] ]
43 set run_id_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/run
-id
-*.c
] ]
44 set interchange_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/interchange
-*.c \
45 $srcdir
/$subdir
/uns
-interchange
-*.c
] ]
46 set block_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/block
-*.c \
47 $srcdir
/$subdir
/uns
-block
-*.c
] ]
48 set vect_files
[lsort
[glob
-nocomplain $srcdir
/$subdir
/vect
-*.c
] ]
50 # Tests to be compiled.
51 set dg
-do-what
-default
compile
52 dg
-runtest $scop_files
"" "-O2 -fgraphite -fdump-tree-graphite-all"
53 dg
-runtest $id_files
"" "-O2 -fgraphite-identity -ffast-math"
56 set dg
-do-what
-default run
57 dg
-runtest $run_id_files
"" "-O2 -fgraphite-identity"
58 dg
-runtest $interchange_files
"" "-O2 -floop-interchange -fno-loop-block -fno-loop-strip-mine -ffast-math -fdump-tree-graphite-all"
59 dg
-runtest $block_files
"" "-O2 -floop-block -fno-loop-strip-mine -fno-loop-interchange -ffast-math -fdump-tree-graphite-all"
61 # Vectorizer tests
, to be run or compiled
, depending
on target capabilities.
62 global DEFAULT_VECTCFLAGS
63 set DEFAULT_VECTCFLAGS
"-O2 -fgraphite-identity -ftree-vectorize -fno-vect-cost-model -fdump-tree-vect-details -ffast-math"
65 if [check_vect_support_and_set_flags
] {
66 dg
-runtest $vect_files
"" $DEFAULT_VECTCFLAGS
69 # The default action
for the rest of the files is
'compile'.
70 set dg
-do-what
-default
compile
71 foreach f $scop_files
{lremove wait_to_run_files $f
}
72 foreach f $id_files
{lremove wait_to_run_files $f
}
73 foreach f $run_id_files
{lremove wait_to_run_files $f
}
74 foreach f $interchange_files
{lremove wait_to_run_files $f
}
75 foreach f $block_files
{lremove wait_to_run_files $f
}
76 foreach f $vect_files
{lremove wait_to_run_files $f
}
77 dg
-runtest $wait_to_run_files
"" "-ansi -pedantic-errors"
80 set dg
-do-what
-default $
{save
-dg
-do-what
-default
}