OSDN Git Service

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