]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/graphite/graphite.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / graphite / graphite.exp
1 # Copyright (C) 2006-2024 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 3 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 GCC; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
16
17 # GCC testsuite that uses the `dg.exp' driver.
18
19 # Load support procs.
20 load_lib gcc-dg.exp
21
22 if ![check_effective_target_fgraphite] {
23 return
24 }
25
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]
31 }
32
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}
36
37 # Initialize `dg'.
38 dg-init
39
40 # Set up a list of effective targets to run vector tests for all supported
41 # targets.
42 global EFFECTIVE_TARGETS
43 set EFFECTIVE_TARGETS ""
44
45 set wait_to_run_files [lsort [glob -nocomplain $srcdir/$subdir/*.c ] ]
46 set scop_files [lsort [glob -nocomplain $srcdir/$subdir/scop-*.c ] ]
47 set id_files [lsort [glob -nocomplain $srcdir/$subdir/id-*.c ] ]
48 set run_id_files [lsort [glob -nocomplain $srcdir/$subdir/run-id-*.c ] ]
49 set opt_files [lsort [glob -nocomplain $srcdir/$subdir/interchange-*.c \
50 $srcdir/$subdir/uns-interchange-*.c \
51 $srcdir/$subdir/isl-ast-gen-*.c \
52 $srcdir/$subdir/fuse-*.c \
53 $srcdir/$subdir/block-*.c \
54 $srcdir/$subdir/uns-block-*.c ] ]
55 set vect_files [lsort [glob -nocomplain $srcdir/$subdir/vect-*.c ] ]
56
57 # Tests to be compiled.
58 set dg-do-what-default compile
59 dg-runtest $scop_files "" "-O2 -fgraphite -fdump-tree-graphite-all -fno-finite-loops"
60 dg-runtest $id_files "" "-O2 -fgraphite-identity -ffast-math -fdump-tree-graphite-details"
61
62 # Tests to be run.
63 set dg-do-what-default run
64 dg-runtest $run_id_files "" "-O2 -fgraphite-identity -fdump-tree-graphite-details"
65 dg-runtest $opt_files "" "-O2 -ffast-math -floop-nest-optimize -fdump-tree-graphite-all"
66
67 # Vectorizer tests, to be run or compiled, depending on target capabilities.
68 global DEFAULT_VECTCFLAGS
69 set DEFAULT_VECTCFLAGS "-O2 -fgraphite-identity -ftree-vectorize -fno-vect-cost-model -fdump-tree-vect-details -ffast-math"
70
71 if [check_vect_support_and_set_flags] {
72 et-dg-runtest dg-runtest $vect_files "" $DEFAULT_VECTCFLAGS
73 }
74
75 # The default action for the rest of the files is 'compile'.
76 set dg-do-what-default compile
77 foreach f $scop_files {lremove wait_to_run_files $f}
78 foreach f $id_files {lremove wait_to_run_files $f}
79 foreach f $run_id_files {lremove wait_to_run_files $f}
80 foreach f $opt_files {lremove wait_to_run_files $f}
81 foreach f $vect_files {lremove wait_to_run_files $f}
82 dg-runtest $wait_to_run_files "" "-ansi -pedantic-errors"
83
84 # Clean up.
85 set dg-do-what-default ${save-dg-do-what-default}
86
87 # All done.
88 dg-finish