OSDN Git Service

2006-05-06 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / vect.exp
1 # Copyright (C) 1997, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  
16
17 # GCC testsuite that uses the `dg.exp' driver.
18
19 # Load support procs.
20 load_lib gcc-dg.exp
21
22 # Set up flags used for tests that don't specify options.
23 set DEFAULT_VECTCFLAGS ""
24
25 # These flags are used for all targets.
26 lappend DEFAULT_VECTCFLAGS "-O2" "-ftree-vectorize"
27
28 # If the target system supports vector instructions, the default action
29 # for a test is 'run', otherwise it's 'compile'.  Save current default.
30 # Executing vector instructions on a system without hardware vector support
31 # is also disabled by a call to check_vect, but disabling execution here is
32 # more efficient.
33 global dg-do-what-default
34 set save-dg-do-what-default ${dg-do-what-default}
35
36 # Skip these tests for targets that do not support generating vector
37 # code.  Set additional target-dependent vector flags, which can be
38 # overridden by using dg-options in individual tests.
39 if [istarget "powerpc*-*-*"] {
40     # If there are powerpc targets to skip, do it here.
41
42     lappend DEFAULT_VECTCFLAGS "-maltivec"
43     if [check_vmx_hw_available] {
44         set dg-do-what-default run
45     } else {
46         if [is-effective-target ilp32] {
47             # Specify a cpu that supports VMX for compile-only tests.
48             lappend DEFAULT_VECTCFLAGS "-mcpu=7400"
49         }
50         set dg-do-what-default compile
51     }
52 } elseif { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] } {
53     lappend DEFAULT_VECTCFLAGS "-msse2"
54     set dg-do-what-default run
55 } elseif [istarget "mipsisa64*-*-*"] {
56     lappend DEFAULT_VECTCFLAGS "-mpaired-single"
57     set dg-do-what-default run
58 } elseif [istarget "sparc*-*-*"] {
59     lappend DEFAULT_VECTCFLAGS "-mcpu=ultrasparc" "-mvis"
60     set dg-do-what-default run
61 } elseif [istarget "alpha*-*-*"] {
62     lappend DEFAULT_VECTCFLAGS "-mmax"
63     if [check_alpha_max_hw_available] {
64         set dg-do-what-default run
65     } else {
66         set dg-do-what-default compile
67     }
68 } elseif [istarget "ia64-*-*"] {
69     set dg-do-what-default run
70 } else {
71     return
72 }
73
74 # Initialize `dg'.
75 dg-init
76
77 # Tests that should be run without generating dump info
78 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/nodump-*.\[cS\]]]  \
79         "" $DEFAULT_VECTCFLAGS
80
81 lappend DEFAULT_VECTCFLAGS "-fdump-tree-vect-details"
82
83 # Main loop.
84 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/pr*.\[cS\]]]  \
85         "" $DEFAULT_VECTCFLAGS
86 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/vect-*.\[cS\]]]  \
87         "" $DEFAULT_VECTCFLAGS
88
89 #### Tests with special options
90 global SAVED_DEFAULT_VECTCFLAGS
91 set SAVED_DEFAULT_VECTCFLAGS $DEFAULT_VECTCFLAGS
92
93 # -ffast-math tests
94 set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS
95 lappend DEFAULT_VECTCFLAGS "-ffast-math"
96 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/fast-math-vect*.\[cS\]]]  \
97         "" $DEFAULT_VECTCFLAGS
98
99 # -fwrapv tests
100 set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS
101 lappend DEFAULT_VECTCFLAGS "-fwrapv"
102 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/wrapv-vect*.\[cS\]]]  \
103         "" $DEFAULT_VECTCFLAGS
104
105 # -ftrapv tests
106 set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS
107 lappend DEFAULT_VECTCFLAGS "-ftrapv"
108 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/trapv-vect*.\[cS\]]]  \
109         "" $DEFAULT_VECTCFLAGS
110
111 # -fdump-tree-dceloop-details tests
112 set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS
113 lappend DEFAULT_VECTCFLAGS "-fdump-tree-dceloop-details"
114 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/dump-tree-dceloop-*.\[cS\]]]  \
115         "" $DEFAULT_VECTCFLAGS
116
117 # With -Os
118 lappend DEFAULT_VECTCFLAGS "-Os"
119 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/Os-vect-*.\[cS\]]]  \
120         "" $DEFAULT_VECTCFLAGS
121
122 # Clean up.
123 set dg-do-what-default ${save-dg-do-what-default}
124
125 # All done.
126 dg-finish