OSDN Git Service

Update Copyright years for files modified in 2008 and/or 2009.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / costmodel / i386 / i386-costmodel-vect.exp
1 # Copyright (C) 1997, 2004, 2005, 2006, 2007, 2008
2 # 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 # GCC testsuite that uses the `dg.exp' driver.
19
20 # Load support procs.
21 load_lib gcc-dg.exp
22
23 # Exit immediately if this isn't a x86 target.
24 if { ![istarget i?86*-*-*] && ![istarget x86_64-*-*] } then {
25   return
26 }
27
28 # Set up flags used for tests that don't specify options.
29 set DEFAULT_VECTCFLAGS ""
30
31 # These flags are used for all targets.
32 lappend DEFAULT_VECTCFLAGS "-O2" "-ftree-vectorize" "-fvect-cost-model"
33
34 # If the target system supports vector instructions, the default action
35 # for a test is 'run', otherwise it's 'compile'.  Save current default.
36 # Executing vector instructions on a system without hardware vector support
37 # is also disabled by a call to check_vect, but disabling execution here is
38 # more efficient.
39 global dg-do-what-default
40 set save-dg-do-what-default ${dg-do-what-default}
41
42 lappend DEFAULT_VECTCFLAGS "-msse2"
43 if [check_sse2_hw_available] {
44     set dg-do-what-default run
45 } else {
46     set dg-do-what-default compile
47 }
48
49 # Initialize `dg'.
50 dg-init
51
52 lappend DEFAULT_VECTCFLAGS "-fdump-tree-vect-details"
53
54 # Main loop.
55 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/costmodel-vect-*.\[cS\]]]  \
56         "" $DEFAULT_VECTCFLAGS
57
58 #### Tests with special options
59 global SAVED_DEFAULT_VECTCFLAGS
60 set SAVED_DEFAULT_VECTCFLAGS $DEFAULT_VECTCFLAGS
61
62 # -ffast-math tests
63 set DEFAULT_VECTCFLAGS $SAVED_DEFAULT_VECTCFLAGS
64 lappend DEFAULT_VECTCFLAGS "-ffast-math"
65 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/costmodel-fast-math-vect*.\[cS\]]]  \
66         "" $DEFAULT_VECTCFLAGS
67
68 # Clean up.
69 set dg-do-what-default ${save-dg-do-what-default}
70
71 # All done.
72 dg-finish