Merge from trunk:
[official-gcc.git] / main / gcc / testsuite / g++.dg / tree-prof / tree-prof.exp
blobf12ddaf86dc534ce0beb62fcd926f6ba36c334ed
1 # Copyright (C) 2001-2014 Free Software Foundation, Inc.
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.
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/>.
17 # Test the functionality of programs compiled with profile-directed block
18 # ordering using -fprofile-generate followed by -fprofile-use.
20 load_lib target-supports.exp
22 # Some targets don't support tree profiling.
23 if { ![check_profiling_available "-fprofile-generate"] } {
24 return
27 # The procedures in profopt.exp need these parameters.
28 set tool g++
29 set prof_ext "gcda"
31 if $tracelevel then {
32 strace $tracelevel
35 # Load support procs.
36 load_lib profopt.exp
38 # Save and override the default list defined in profopt.exp.
39 set treeprof_save_profopt_options $PROFOPT_OPTIONS
40 set PROFOPT_OPTIONS [list {}]
42 # These are globals used by profopt-execute. The first is options
43 # needed to generate profile data, the second is options to use the
44 # profile data.
45 set profile_option "-fprofile-generate -D_PROFILE_GENERATE"
46 set feedback_option "-fprofile-use -D_PROFILE_USE"
48 foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.C]] {
49 # If we're only testing specific files and this isn't one of them, skip it.
50 if ![runtest_file_p $runtests $src] then {
51 continue
53 profopt-execute $src
56 set PROFOPT_OPTIONS $treeprof_save_profopt_options