OSDN Git Service

aae1988314328aadb3de9cd1960d7f5c004ad7d2
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / matrix / matrix.exp
1 #   Copyright (C) 2001, 2002, 2004, 2005, 2007, 2010
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 # Test the functionality of programs compiled with profile-directed block
19 # ordering using -fprofile-generate followed by -fbranch-use.
20 load_lib gcc-dg.exp
21 load_lib target-supports.exp
22
23 set DEFAULT_MATCFLAGS "-O3 -fipa-matrix-reorg -fdump-ipa-matrix-reorg -fwhole-program -fno-tree-fre"
24
25 # Initialize `dg'.
26 dg-init
27
28 dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/matrix-\[1-6\].\[cS\]]]  \
29         "" $DEFAULT_MATCFLAGS
30
31 dg-final
32
33 # Some targets don't support tree profiling.
34 if { ![check_profiling_available ""] } {
35     return
36 }
37
38 # The procedures in profopt.exp need these parameters.
39 set tool gcc
40 set prof_ext "gcda"
41
42 # Override the list defined in profopt.exp.
43 set PROFOPT_OPTIONS [list {}]
44
45 if $tracelevel then {
46     strace $tracelevel
47 }
48
49 # Load support procs.
50 load_lib profopt.exp
51
52 # These are globals used by profopt-execute.  The first is options
53 # needed to generate profile data, the second is options to use the
54 # profile data.
55 set profile_option "-fprofile-generate -O3 -fno-tree-fre"
56 set feedback_option "-fprofile-use -fipa-matrix-reorg -fdump-ipa-matrix-reorg -O3 -fwhole-program -fno-tree-fre"
57
58 foreach src [lsort [glob -nocomplain $srcdir/$subdir/transpose-*.c]] {
59     # If we're only testing specific files and this isn't one of them, skip it.
60     if ![runtest_file_p $runtests $src] then {
61         continue
62     }
63     profopt-execute $src
64 }
65