annotate gcc/tree-profile.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents f6334be47118
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Calculate branch probabilities, and basic block execution counts.
111
kono
parents: 67
diff changeset
2 Copyright (C) 1990-2017 Free Software Foundation, Inc.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 Contributed by James E. Wilson, UC Berkeley/Cygnus Support;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 based on some ideas from Dain Samples of UC Berkeley.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 Further mangling by Bob Manson, Cygnus Support.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 Converted to use trees by Dale Johannesen, Apple Computer.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 This file is part of GCC.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 GCC is free software; you can redistribute it and/or modify it under
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 the terms of the GNU General Public License as published by the Free
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12 Software Foundation; either version 3, or (at your option) any later
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 version.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 for more details.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
19
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
20 You should have received a copy of the GNU General Public License
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21 along with GCC; see the file COPYING3. If not see
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 <http://www.gnu.org/licenses/>. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 /* Generate basic block profile instrumentation and auxiliary files.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 Tree-based version. See profile.c for overview. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 #include "config.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 #include "system.h"
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29 #include "coretypes.h"
111
kono
parents: 67
diff changeset
30 #include "memmodel.h"
kono
parents: 67
diff changeset
31 #include "backend.h"
kono
parents: 67
diff changeset
32 #include "target.h"
kono
parents: 67
diff changeset
33 #include "tree.h"
kono
parents: 67
diff changeset
34 #include "gimple.h"
kono
parents: 67
diff changeset
35 #include "cfghooks.h"
kono
parents: 67
diff changeset
36 #include "tree-pass.h"
kono
parents: 67
diff changeset
37 #include "ssa.h"
kono
parents: 67
diff changeset
38 #include "cgraph.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39 #include "coverage.h"
111
kono
parents: 67
diff changeset
40 #include "diagnostic-core.h"
kono
parents: 67
diff changeset
41 #include "fold-const.h"
kono
parents: 67
diff changeset
42 #include "varasm.h"
kono
parents: 67
diff changeset
43 #include "tree-nested.h"
kono
parents: 67
diff changeset
44 #include "gimplify.h"
kono
parents: 67
diff changeset
45 #include "gimple-iterator.h"
kono
parents: 67
diff changeset
46 #include "gimplify-me.h"
kono
parents: 67
diff changeset
47 #include "tree-cfg.h"
kono
parents: 67
diff changeset
48 #include "tree-into-ssa.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
49 #include "value-prof.h"
111
kono
parents: 67
diff changeset
50 #include "profile.h"
kono
parents: 67
diff changeset
51 #include "tree-cfgcleanup.h"
kono
parents: 67
diff changeset
52 #include "params.h"
kono
parents: 67
diff changeset
53 #include "stringpool.h"
kono
parents: 67
diff changeset
54 #include "attribs.h"
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
55
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
56 static GTY(()) tree gcov_type_node;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
57 static GTY(()) tree tree_interval_profiler_fn;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
58 static GTY(()) tree tree_pow2_profiler_fn;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
59 static GTY(()) tree tree_one_value_profiler_fn;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
60 static GTY(()) tree tree_indirect_call_profiler_fn;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
61 static GTY(()) tree tree_average_profiler_fn;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
62 static GTY(()) tree tree_ior_profiler_fn;
111
kono
parents: 67
diff changeset
63 static GTY(()) tree tree_time_profiler_counter;
kono
parents: 67
diff changeset
64
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
65
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
66 static GTY(()) tree ic_void_ptr_var;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
67 static GTY(()) tree ic_gcov_type_ptr_var;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
68 static GTY(()) tree ptr_void;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
69
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70 /* Do initialization work for the edge profiler. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
71
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
72 /* Add code:
111
kono
parents: 67
diff changeset
73 __thread gcov* __gcov_indirect_call_counters; // pointer to actual counter
kono
parents: 67
diff changeset
74 __thread void* __gcov_indirect_call_callee; // actual callee address
kono
parents: 67
diff changeset
75 __thread int __gcov_function_counter; // time profiler function counter
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
77 static void
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
78 init_ic_make_global_vars (void)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
79 {
111
kono
parents: 67
diff changeset
80 tree gcov_type_ptr;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
81
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
82 ptr_void = build_pointer_type (void_type_node);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
83
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
84 ic_void_ptr_var
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
85 = build_decl (UNKNOWN_LOCATION, VAR_DECL,
111
kono
parents: 67
diff changeset
86 get_identifier (
kono
parents: 67
diff changeset
87 (PARAM_VALUE (PARAM_INDIR_CALL_TOPN_PROFILE) ?
kono
parents: 67
diff changeset
88 "__gcov_indirect_call_topn_callee" :
kono
parents: 67
diff changeset
89 "__gcov_indirect_call_callee")),
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
90 ptr_void);
111
kono
parents: 67
diff changeset
91 TREE_PUBLIC (ic_void_ptr_var) = 1;
kono
parents: 67
diff changeset
92 DECL_EXTERNAL (ic_void_ptr_var) = 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93 TREE_STATIC (ic_void_ptr_var) = 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 DECL_ARTIFICIAL (ic_void_ptr_var) = 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 DECL_INITIAL (ic_void_ptr_var) = NULL;
111
kono
parents: 67
diff changeset
96 if (targetm.have_tls)
kono
parents: 67
diff changeset
97 set_decl_tls_model (ic_void_ptr_var, decl_default_tls_model (ic_void_ptr_var));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 gcov_type_ptr = build_pointer_type (get_gcov_type ());
111
kono
parents: 67
diff changeset
100
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
101 ic_gcov_type_ptr_var
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
102 = build_decl (UNKNOWN_LOCATION, VAR_DECL,
111
kono
parents: 67
diff changeset
103 get_identifier (
kono
parents: 67
diff changeset
104 (PARAM_VALUE (PARAM_INDIR_CALL_TOPN_PROFILE) ?
kono
parents: 67
diff changeset
105 "__gcov_indirect_call_topn_counters" :
kono
parents: 67
diff changeset
106 "__gcov_indirect_call_counters")),
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
107 gcov_type_ptr);
111
kono
parents: 67
diff changeset
108 TREE_PUBLIC (ic_gcov_type_ptr_var) = 1;
kono
parents: 67
diff changeset
109 DECL_EXTERNAL (ic_gcov_type_ptr_var) = 1;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
110 TREE_STATIC (ic_gcov_type_ptr_var) = 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
111 DECL_ARTIFICIAL (ic_gcov_type_ptr_var) = 1;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
112 DECL_INITIAL (ic_gcov_type_ptr_var) = NULL;
111
kono
parents: 67
diff changeset
113 if (targetm.have_tls)
kono
parents: 67
diff changeset
114 set_decl_tls_model (ic_gcov_type_ptr_var, decl_default_tls_model (ic_gcov_type_ptr_var));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
115 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
116
111
kono
parents: 67
diff changeset
117 /* Create the type and function decls for the interface with gcov. */
kono
parents: 67
diff changeset
118
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
119 void
111
kono
parents: 67
diff changeset
120 gimple_init_gcov_profiler (void)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
121 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
122 tree interval_profiler_fn_type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
123 tree pow2_profiler_fn_type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
124 tree one_value_profiler_fn_type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
125 tree gcov_type_ptr;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
126 tree ic_profiler_fn_type;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
127 tree average_profiler_fn_type;
111
kono
parents: 67
diff changeset
128 const char *profiler_fn_name;
kono
parents: 67
diff changeset
129 const char *fn_name;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
130
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
131 if (!gcov_type_node)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
132 {
111
kono
parents: 67
diff changeset
133 const char *fn_suffix
kono
parents: 67
diff changeset
134 = flag_profile_update == PROFILE_UPDATE_ATOMIC ? "_atomic" : "";
kono
parents: 67
diff changeset
135
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
136 gcov_type_node = get_gcov_type ();
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
137 gcov_type_ptr = build_pointer_type (gcov_type_node);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
138
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
139 /* void (*) (gcov_type *, gcov_type, int, unsigned) */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
140 interval_profiler_fn_type
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
141 = build_function_type_list (void_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
142 gcov_type_ptr, gcov_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
143 integer_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
144 unsigned_type_node, NULL_TREE);
111
kono
parents: 67
diff changeset
145 fn_name = concat ("__gcov_interval_profiler", fn_suffix, NULL);
kono
parents: 67
diff changeset
146 tree_interval_profiler_fn = build_fn_decl (fn_name,
kono
parents: 67
diff changeset
147 interval_profiler_fn_type);
kono
parents: 67
diff changeset
148 free (CONST_CAST (char *, fn_name));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
149 TREE_NOTHROW (tree_interval_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
150 DECL_ATTRIBUTES (tree_interval_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
151 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
152 DECL_ATTRIBUTES (tree_interval_profiler_fn));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
153
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
154 /* void (*) (gcov_type *, gcov_type) */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
155 pow2_profiler_fn_type
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
156 = build_function_type_list (void_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
157 gcov_type_ptr, gcov_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
158 NULL_TREE);
111
kono
parents: 67
diff changeset
159 fn_name = concat ("__gcov_pow2_profiler", fn_suffix, NULL);
kono
parents: 67
diff changeset
160 tree_pow2_profiler_fn = build_fn_decl (fn_name, pow2_profiler_fn_type);
kono
parents: 67
diff changeset
161 free (CONST_CAST (char *, fn_name));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
162 TREE_NOTHROW (tree_pow2_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
163 DECL_ATTRIBUTES (tree_pow2_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
164 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
165 DECL_ATTRIBUTES (tree_pow2_profiler_fn));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
166
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
167 /* void (*) (gcov_type *, gcov_type) */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
168 one_value_profiler_fn_type
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
169 = build_function_type_list (void_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
170 gcov_type_ptr, gcov_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
171 NULL_TREE);
111
kono
parents: 67
diff changeset
172 fn_name = concat ("__gcov_one_value_profiler", fn_suffix, NULL);
kono
parents: 67
diff changeset
173 tree_one_value_profiler_fn = build_fn_decl (fn_name,
kono
parents: 67
diff changeset
174 one_value_profiler_fn_type);
kono
parents: 67
diff changeset
175 free (CONST_CAST (char *, fn_name));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
176 TREE_NOTHROW (tree_one_value_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
177 DECL_ATTRIBUTES (tree_one_value_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
178 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
179 DECL_ATTRIBUTES (tree_one_value_profiler_fn));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
180
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
181 init_ic_make_global_vars ();
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
182
111
kono
parents: 67
diff changeset
183 /* void (*) (gcov_type, void *) */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
184 ic_profiler_fn_type
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
185 = build_function_type_list (void_type_node,
111
kono
parents: 67
diff changeset
186 gcov_type_node,
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
187 ptr_void,
111
kono
parents: 67
diff changeset
188 NULL_TREE);
kono
parents: 67
diff changeset
189 profiler_fn_name = "__gcov_indirect_call_profiler_v2";
kono
parents: 67
diff changeset
190 if (PARAM_VALUE (PARAM_INDIR_CALL_TOPN_PROFILE))
kono
parents: 67
diff changeset
191 profiler_fn_name = "__gcov_indirect_call_topn_profiler";
kono
parents: 67
diff changeset
192
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
193 tree_indirect_call_profiler_fn
111
kono
parents: 67
diff changeset
194 = build_fn_decl (profiler_fn_name, ic_profiler_fn_type);
kono
parents: 67
diff changeset
195
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
196 TREE_NOTHROW (tree_indirect_call_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
197 DECL_ATTRIBUTES (tree_indirect_call_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
198 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
199 DECL_ATTRIBUTES (tree_indirect_call_profiler_fn));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
200
111
kono
parents: 67
diff changeset
201 tree_time_profiler_counter
kono
parents: 67
diff changeset
202 = build_decl (UNKNOWN_LOCATION, VAR_DECL,
kono
parents: 67
diff changeset
203 get_identifier ("__gcov_time_profiler_counter"),
kono
parents: 67
diff changeset
204 get_gcov_type ());
kono
parents: 67
diff changeset
205 TREE_PUBLIC (tree_time_profiler_counter) = 1;
kono
parents: 67
diff changeset
206 DECL_EXTERNAL (tree_time_profiler_counter) = 1;
kono
parents: 67
diff changeset
207 TREE_STATIC (tree_time_profiler_counter) = 1;
kono
parents: 67
diff changeset
208 DECL_ARTIFICIAL (tree_time_profiler_counter) = 1;
kono
parents: 67
diff changeset
209 DECL_INITIAL (tree_time_profiler_counter) = NULL;
kono
parents: 67
diff changeset
210
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
211 /* void (*) (gcov_type *, gcov_type) */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
212 average_profiler_fn_type
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
213 = build_function_type_list (void_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
214 gcov_type_ptr, gcov_type_node, NULL_TREE);
111
kono
parents: 67
diff changeset
215 fn_name = concat ("__gcov_average_profiler", fn_suffix, NULL);
kono
parents: 67
diff changeset
216 tree_average_profiler_fn = build_fn_decl (fn_name,
kono
parents: 67
diff changeset
217 average_profiler_fn_type);
kono
parents: 67
diff changeset
218 free (CONST_CAST (char *, fn_name));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
219 TREE_NOTHROW (tree_average_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
220 DECL_ATTRIBUTES (tree_average_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
221 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
222 DECL_ATTRIBUTES (tree_average_profiler_fn));
111
kono
parents: 67
diff changeset
223 fn_name = concat ("__gcov_ior_profiler", fn_suffix, NULL);
kono
parents: 67
diff changeset
224 tree_ior_profiler_fn = build_fn_decl (fn_name, average_profiler_fn_type);
kono
parents: 67
diff changeset
225 free (CONST_CAST (char *, fn_name));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
226 TREE_NOTHROW (tree_ior_profiler_fn) = 1;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
227 DECL_ATTRIBUTES (tree_ior_profiler_fn)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
228 = tree_cons (get_identifier ("leaf"), NULL,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
229 DECL_ATTRIBUTES (tree_ior_profiler_fn));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
230
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
231 /* LTO streamer needs assembler names. Because we create these decls
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
232 late, we need to initialize them by hand. */
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
233 DECL_ASSEMBLER_NAME (tree_interval_profiler_fn);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
234 DECL_ASSEMBLER_NAME (tree_pow2_profiler_fn);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
235 DECL_ASSEMBLER_NAME (tree_one_value_profiler_fn);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
236 DECL_ASSEMBLER_NAME (tree_indirect_call_profiler_fn);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
237 DECL_ASSEMBLER_NAME (tree_average_profiler_fn);
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
238 DECL_ASSEMBLER_NAME (tree_ior_profiler_fn);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
239 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
240 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
241
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
242 /* Output instructions as GIMPLE trees to increment the edge
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
243 execution count, and insert them on E. We rely on
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
244 gsi_insert_on_edge to preserve the order. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
245
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
246 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
247 gimple_gen_edge_profiler (int edgeno, edge e)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
248 {
111
kono
parents: 67
diff changeset
249 tree one;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
250
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
251 one = build_int_cst (gcov_type_node, 1);
111
kono
parents: 67
diff changeset
252
kono
parents: 67
diff changeset
253 if (flag_profile_update == PROFILE_UPDATE_ATOMIC)
kono
parents: 67
diff changeset
254 {
kono
parents: 67
diff changeset
255 /* __atomic_fetch_add (&counter, 1, MEMMODEL_RELAXED); */
kono
parents: 67
diff changeset
256 tree addr = tree_coverage_counter_addr (GCOV_COUNTER_ARCS, edgeno);
kono
parents: 67
diff changeset
257 tree f = builtin_decl_explicit (LONG_LONG_TYPE_SIZE > 32
kono
parents: 67
diff changeset
258 ? BUILT_IN_ATOMIC_FETCH_ADD_8:
kono
parents: 67
diff changeset
259 BUILT_IN_ATOMIC_FETCH_ADD_4);
kono
parents: 67
diff changeset
260 gcall *stmt = gimple_build_call (f, 3, addr, one,
kono
parents: 67
diff changeset
261 build_int_cst (integer_type_node,
kono
parents: 67
diff changeset
262 MEMMODEL_RELAXED));
kono
parents: 67
diff changeset
263 gsi_insert_on_edge (e, stmt);
kono
parents: 67
diff changeset
264 }
kono
parents: 67
diff changeset
265 else
kono
parents: 67
diff changeset
266 {
kono
parents: 67
diff changeset
267 tree ref = tree_coverage_counter_ref (GCOV_COUNTER_ARCS, edgeno);
kono
parents: 67
diff changeset
268 tree gcov_type_tmp_var = make_temp_ssa_name (gcov_type_node,
kono
parents: 67
diff changeset
269 NULL, "PROF_edge_counter");
kono
parents: 67
diff changeset
270 gassign *stmt1 = gimple_build_assign (gcov_type_tmp_var, ref);
kono
parents: 67
diff changeset
271 gcov_type_tmp_var = make_temp_ssa_name (gcov_type_node,
kono
parents: 67
diff changeset
272 NULL, "PROF_edge_counter");
kono
parents: 67
diff changeset
273 gassign *stmt2 = gimple_build_assign (gcov_type_tmp_var, PLUS_EXPR,
kono
parents: 67
diff changeset
274 gimple_assign_lhs (stmt1), one);
kono
parents: 67
diff changeset
275 gassign *stmt3 = gimple_build_assign (unshare_expr (ref),
kono
parents: 67
diff changeset
276 gimple_assign_lhs (stmt2));
kono
parents: 67
diff changeset
277 gsi_insert_on_edge (e, stmt1);
kono
parents: 67
diff changeset
278 gsi_insert_on_edge (e, stmt2);
kono
parents: 67
diff changeset
279 gsi_insert_on_edge (e, stmt3);
kono
parents: 67
diff changeset
280 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
281 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
282
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
283 /* Emits code to get VALUE to instrument at GSI, and returns the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
284 variable containing the value. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
285
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
286 static tree
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
287 prepare_instrumented_value (gimple_stmt_iterator *gsi, histogram_value value)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
288 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
289 tree val = value->hvalue.value;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
290 if (POINTER_TYPE_P (TREE_TYPE (val)))
111
kono
parents: 67
diff changeset
291 val = fold_convert (build_nonstandard_integer_type
kono
parents: 67
diff changeset
292 (TYPE_PRECISION (TREE_TYPE (val)), 1), val);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
293 return force_gimple_operand_gsi (gsi, fold_convert (gcov_type_node, val),
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
294 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
295 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
296
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
297 /* Output instructions as GIMPLE trees to increment the interval histogram
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
298 counter. VALUE is the expression whose value is profiled. TAG is the
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
299 tag of the section for counters, BASE is offset of the counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
300
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
301 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
302 gimple_gen_interval_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
303 {
111
kono
parents: 67
diff changeset
304 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
305 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
306 tree ref = tree_coverage_counter_ref (tag, base), ref_ptr;
111
kono
parents: 67
diff changeset
307 gcall *call;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
308 tree val;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
309 tree start = build_int_cst_type (integer_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
310 value->hdata.intvl.int_start);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
311 tree steps = build_int_cst_type (unsigned_type_node,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
312 value->hdata.intvl.steps);
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
313
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
314 ref_ptr = force_gimple_operand_gsi (&gsi,
111
kono
parents: 67
diff changeset
315 build_addr (ref),
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
316 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
317 val = prepare_instrumented_value (&gsi, value);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
318 call = gimple_build_call (tree_interval_profiler_fn, 4,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
319 ref_ptr, val, start, steps);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
320 gsi_insert_before (&gsi, call, GSI_NEW_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
321 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
322
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
323 /* Output instructions as GIMPLE trees to increment the power of two histogram
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
324 counter. VALUE is the expression whose value is profiled. TAG is the tag
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
325 of the section for counters, BASE is offset of the counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
326
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
327 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
328 gimple_gen_pow2_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
329 {
111
kono
parents: 67
diff changeset
330 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
331 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
332 tree ref_ptr = tree_coverage_counter_addr (tag, base);
111
kono
parents: 67
diff changeset
333 gcall *call;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
334 tree val;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
335
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
336 ref_ptr = force_gimple_operand_gsi (&gsi, ref_ptr,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
337 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
338 val = prepare_instrumented_value (&gsi, value);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
339 call = gimple_build_call (tree_pow2_profiler_fn, 2, ref_ptr, val);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
340 gsi_insert_before (&gsi, call, GSI_NEW_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
341 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
342
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
343 /* Output instructions as GIMPLE trees for code to find the most common value.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
344 VALUE is the expression whose value is profiled. TAG is the tag of the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
345 section for counters, BASE is offset of the counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
346
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
347 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
348 gimple_gen_one_value_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
349 {
111
kono
parents: 67
diff changeset
350 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
351 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
352 tree ref_ptr = tree_coverage_counter_addr (tag, base);
111
kono
parents: 67
diff changeset
353 gcall *call;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
354 tree val;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
355
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
356 ref_ptr = force_gimple_operand_gsi (&gsi, ref_ptr,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
357 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
358 val = prepare_instrumented_value (&gsi, value);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
359 call = gimple_build_call (tree_one_value_profiler_fn, 2, ref_ptr, val);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
360 gsi_insert_before (&gsi, call, GSI_NEW_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
361 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
362
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
363
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
364 /* Output instructions as GIMPLE trees for code to find the most
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
365 common called function in indirect call.
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
366 VALUE is the call expression whose indirect callee is profiled.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
367 TAG is the tag of the section for counters, BASE is offset of the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
368 counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
369
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
370 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
371 gimple_gen_ic_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
372 {
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
373 tree tmp1;
111
kono
parents: 67
diff changeset
374 gassign *stmt1, *stmt2, *stmt3;
kono
parents: 67
diff changeset
375 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
376 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
377 tree ref_ptr = tree_coverage_counter_addr (tag, base);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
378
111
kono
parents: 67
diff changeset
379 if ( (PARAM_VALUE (PARAM_INDIR_CALL_TOPN_PROFILE) &&
kono
parents: 67
diff changeset
380 tag == GCOV_COUNTER_V_INDIR) ||
kono
parents: 67
diff changeset
381 (!PARAM_VALUE (PARAM_INDIR_CALL_TOPN_PROFILE) &&
kono
parents: 67
diff changeset
382 tag == GCOV_COUNTER_ICALL_TOPNV))
kono
parents: 67
diff changeset
383 return;
kono
parents: 67
diff changeset
384
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
385 ref_ptr = force_gimple_operand_gsi (&gsi, ref_ptr,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
386 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
387
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
388 /* Insert code:
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
389
111
kono
parents: 67
diff changeset
390 stmt1: __gcov_indirect_call_counters = get_relevant_counter_ptr ();
kono
parents: 67
diff changeset
391 stmt2: tmp1 = (void *) (indirect call argument value)
kono
parents: 67
diff changeset
392 stmt3: __gcov_indirect_call_callee = tmp1;
kono
parents: 67
diff changeset
393
kono
parents: 67
diff changeset
394 Example:
kono
parents: 67
diff changeset
395 f_1 = foo;
kono
parents: 67
diff changeset
396 __gcov_indirect_call_counters = &__gcov4.main[0];
kono
parents: 67
diff changeset
397 PROF_9 = f_1;
kono
parents: 67
diff changeset
398 __gcov_indirect_call_callee = PROF_9;
kono
parents: 67
diff changeset
399 _4 = f_1 ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
400 */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
401
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
402 stmt1 = gimple_build_assign (ic_gcov_type_ptr_var, ref_ptr);
111
kono
parents: 67
diff changeset
403 tmp1 = make_temp_ssa_name (ptr_void, NULL, "PROF");
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
404 stmt2 = gimple_build_assign (tmp1, unshare_expr (value->hvalue.value));
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
405 stmt3 = gimple_build_assign (ic_void_ptr_var, gimple_assign_lhs (stmt2));
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
406
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
407 gsi_insert_before (&gsi, stmt1, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
408 gsi_insert_before (&gsi, stmt2, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
409 gsi_insert_before (&gsi, stmt3, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
410 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
411
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
412
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
413 /* Output instructions as GIMPLE trees for code to find the most
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
414 common called function in indirect call. Insert instructions at the
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
415 beginning of every possible called function.
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
416 */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
417
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
418 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
419 gimple_gen_ic_func_profiler (void)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
420 {
111
kono
parents: 67
diff changeset
421 struct cgraph_node * c_node = cgraph_node::get (current_function_decl);
kono
parents: 67
diff changeset
422 gcall *stmt1;
kono
parents: 67
diff changeset
423 tree tree_uid, cur_func, void0;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
424
111
kono
parents: 67
diff changeset
425 if (c_node->only_called_directly_p ())
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
426 return;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
427
111
kono
parents: 67
diff changeset
428 gimple_init_gcov_profiler ();
kono
parents: 67
diff changeset
429
kono
parents: 67
diff changeset
430 basic_block entry = ENTRY_BLOCK_PTR_FOR_FN (cfun);
kono
parents: 67
diff changeset
431 basic_block cond_bb = split_edge (single_succ_edge (entry));
kono
parents: 67
diff changeset
432 basic_block update_bb = split_edge (single_succ_edge (cond_bb));
kono
parents: 67
diff changeset
433
kono
parents: 67
diff changeset
434 /* We need to do an extra split in order to not create an input
kono
parents: 67
diff changeset
435 for a possible PHI node. */
kono
parents: 67
diff changeset
436 split_edge (single_succ_edge (update_bb));
kono
parents: 67
diff changeset
437
kono
parents: 67
diff changeset
438 edge true_edge = single_succ_edge (cond_bb);
kono
parents: 67
diff changeset
439 true_edge->flags = EDGE_TRUE_VALUE;
kono
parents: 67
diff changeset
440
kono
parents: 67
diff changeset
441 profile_probability probability;
kono
parents: 67
diff changeset
442 if (DECL_VIRTUAL_P (current_function_decl))
kono
parents: 67
diff changeset
443 probability = profile_probability::very_likely ();
kono
parents: 67
diff changeset
444 else
kono
parents: 67
diff changeset
445 probability = profile_probability::unlikely ();
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
446
111
kono
parents: 67
diff changeset
447 true_edge->probability = probability;
kono
parents: 67
diff changeset
448 edge e = make_edge (cond_bb, single_succ_edge (update_bb)->dest,
kono
parents: 67
diff changeset
449 EDGE_FALSE_VALUE);
kono
parents: 67
diff changeset
450 e->probability = true_edge->probability.invert ();
kono
parents: 67
diff changeset
451
kono
parents: 67
diff changeset
452 /* Insert code:
kono
parents: 67
diff changeset
453
kono
parents: 67
diff changeset
454 if (__gcov_indirect_call_callee != NULL)
kono
parents: 67
diff changeset
455 __gcov_indirect_call_profiler_v2 (profile_id, &current_function_decl);
kono
parents: 67
diff changeset
456
kono
parents: 67
diff changeset
457 The function __gcov_indirect_call_profiler_v2 is responsible for
kono
parents: 67
diff changeset
458 resetting __gcov_indirect_call_callee to NULL. */
kono
parents: 67
diff changeset
459
kono
parents: 67
diff changeset
460 gimple_stmt_iterator gsi = gsi_start_bb (cond_bb);
kono
parents: 67
diff changeset
461 void0 = build_int_cst (build_pointer_type (void_type_node), 0);
kono
parents: 67
diff changeset
462
kono
parents: 67
diff changeset
463 tree ref = force_gimple_operand_gsi (&gsi, ic_void_ptr_var, true, NULL_TREE,
kono
parents: 67
diff changeset
464 true, GSI_SAME_STMT);
kono
parents: 67
diff changeset
465
kono
parents: 67
diff changeset
466 gcond *cond = gimple_build_cond (NE_EXPR, ref,
kono
parents: 67
diff changeset
467 void0, NULL, NULL);
kono
parents: 67
diff changeset
468 gsi_insert_before (&gsi, cond, GSI_NEW_STMT);
kono
parents: 67
diff changeset
469
kono
parents: 67
diff changeset
470 gsi = gsi_after_labels (update_bb);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
471
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
472 cur_func = force_gimple_operand_gsi (&gsi,
111
kono
parents: 67
diff changeset
473 build_addr (current_function_decl),
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
474 true, NULL_TREE,
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
475 true, GSI_SAME_STMT);
111
kono
parents: 67
diff changeset
476 tree_uid = build_int_cst
kono
parents: 67
diff changeset
477 (gcov_type_node,
kono
parents: 67
diff changeset
478 cgraph_node::get (current_function_decl)->profile_id);
kono
parents: 67
diff changeset
479 stmt1 = gimple_build_call (tree_indirect_call_profiler_fn, 2,
kono
parents: 67
diff changeset
480 tree_uid, cur_func);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
481 gsi_insert_before (&gsi, stmt1, GSI_SAME_STMT);
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
482 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
483
111
kono
parents: 67
diff changeset
484 /* Output instructions as GIMPLE tree at the beginning for each function.
kono
parents: 67
diff changeset
485 TAG is the tag of the section for counters, BASE is offset of the
kono
parents: 67
diff changeset
486 counter position and GSI is the iterator we place the counter. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
487
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
488 void
111
kono
parents: 67
diff changeset
489 gimple_gen_time_profiler (unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
490 {
111
kono
parents: 67
diff changeset
491 tree type = get_gcov_type ();
kono
parents: 67
diff changeset
492 basic_block entry = ENTRY_BLOCK_PTR_FOR_FN (cfun);
kono
parents: 67
diff changeset
493 basic_block cond_bb = split_edge (single_succ_edge (entry));
kono
parents: 67
diff changeset
494 basic_block update_bb = split_edge (single_succ_edge (cond_bb));
kono
parents: 67
diff changeset
495
kono
parents: 67
diff changeset
496 /* We need to do an extra split in order to not create an input
kono
parents: 67
diff changeset
497 for a possible PHI node. */
kono
parents: 67
diff changeset
498 split_edge (single_succ_edge (update_bb));
kono
parents: 67
diff changeset
499
kono
parents: 67
diff changeset
500 edge true_edge = single_succ_edge (cond_bb);
kono
parents: 67
diff changeset
501 true_edge->flags = EDGE_TRUE_VALUE;
kono
parents: 67
diff changeset
502 true_edge->probability = profile_probability::unlikely ();
kono
parents: 67
diff changeset
503 edge e
kono
parents: 67
diff changeset
504 = make_edge (cond_bb, single_succ_edge (update_bb)->dest, EDGE_FALSE_VALUE);
kono
parents: 67
diff changeset
505 e->probability = true_edge->probability.invert ();
kono
parents: 67
diff changeset
506
kono
parents: 67
diff changeset
507 gimple_stmt_iterator gsi = gsi_start_bb (cond_bb);
kono
parents: 67
diff changeset
508 tree original_ref = tree_coverage_counter_ref (tag, base);
kono
parents: 67
diff changeset
509 tree ref = force_gimple_operand_gsi (&gsi, original_ref, true, NULL_TREE,
kono
parents: 67
diff changeset
510 true, GSI_SAME_STMT);
kono
parents: 67
diff changeset
511 tree one = build_int_cst (type, 1);
kono
parents: 67
diff changeset
512
kono
parents: 67
diff changeset
513 /* Emit: if (counters[0] != 0). */
kono
parents: 67
diff changeset
514 gcond *cond = gimple_build_cond (EQ_EXPR, ref, build_int_cst (type, 0),
kono
parents: 67
diff changeset
515 NULL, NULL);
kono
parents: 67
diff changeset
516 gsi_insert_before (&gsi, cond, GSI_NEW_STMT);
kono
parents: 67
diff changeset
517
kono
parents: 67
diff changeset
518 gsi = gsi_start_bb (update_bb);
kono
parents: 67
diff changeset
519
kono
parents: 67
diff changeset
520 /* Emit: counters[0] = ++__gcov_time_profiler_counter. */
kono
parents: 67
diff changeset
521 if (flag_profile_update == PROFILE_UPDATE_ATOMIC)
kono
parents: 67
diff changeset
522 {
kono
parents: 67
diff changeset
523 tree ptr = make_temp_ssa_name (build_pointer_type (type), NULL,
kono
parents: 67
diff changeset
524 "time_profiler_counter_ptr");
kono
parents: 67
diff changeset
525 tree addr = build1 (ADDR_EXPR, TREE_TYPE (ptr),
kono
parents: 67
diff changeset
526 tree_time_profiler_counter);
kono
parents: 67
diff changeset
527 gassign *assign = gimple_build_assign (ptr, NOP_EXPR, addr);
kono
parents: 67
diff changeset
528 gsi_insert_before (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
529 tree f = builtin_decl_explicit (LONG_LONG_TYPE_SIZE > 32
kono
parents: 67
diff changeset
530 ? BUILT_IN_ATOMIC_ADD_FETCH_8:
kono
parents: 67
diff changeset
531 BUILT_IN_ATOMIC_ADD_FETCH_4);
kono
parents: 67
diff changeset
532 gcall *stmt = gimple_build_call (f, 3, ptr, one,
kono
parents: 67
diff changeset
533 build_int_cst (integer_type_node,
kono
parents: 67
diff changeset
534 MEMMODEL_RELAXED));
kono
parents: 67
diff changeset
535 tree result_type = TREE_TYPE (TREE_TYPE (f));
kono
parents: 67
diff changeset
536 tree tmp = make_temp_ssa_name (result_type, NULL, "time_profile");
kono
parents: 67
diff changeset
537 gimple_set_lhs (stmt, tmp);
kono
parents: 67
diff changeset
538 gsi_insert_after (&gsi, stmt, GSI_NEW_STMT);
kono
parents: 67
diff changeset
539 tmp = make_temp_ssa_name (type, NULL, "time_profile");
kono
parents: 67
diff changeset
540 assign = gimple_build_assign (tmp, NOP_EXPR,
kono
parents: 67
diff changeset
541 gimple_call_lhs (stmt));
kono
parents: 67
diff changeset
542 gsi_insert_after (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
543 assign = gimple_build_assign (original_ref, tmp);
kono
parents: 67
diff changeset
544 gsi_insert_after (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
545 }
kono
parents: 67
diff changeset
546 else
kono
parents: 67
diff changeset
547 {
kono
parents: 67
diff changeset
548 tree tmp = make_temp_ssa_name (type, NULL, "time_profile");
kono
parents: 67
diff changeset
549 gassign *assign = gimple_build_assign (tmp, tree_time_profiler_counter);
kono
parents: 67
diff changeset
550 gsi_insert_before (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
551
kono
parents: 67
diff changeset
552 tmp = make_temp_ssa_name (type, NULL, "time_profile");
kono
parents: 67
diff changeset
553 assign = gimple_build_assign (tmp, PLUS_EXPR, gimple_assign_lhs (assign),
kono
parents: 67
diff changeset
554 one);
kono
parents: 67
diff changeset
555 gsi_insert_after (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
556 assign = gimple_build_assign (original_ref, tmp);
kono
parents: 67
diff changeset
557 gsi_insert_after (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
558 assign = gimple_build_assign (tree_time_profiler_counter, tmp);
kono
parents: 67
diff changeset
559 gsi_insert_after (&gsi, assign, GSI_NEW_STMT);
kono
parents: 67
diff changeset
560 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
561 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
562
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
563 /* Output instructions as GIMPLE trees to increment the average histogram
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
564 counter. VALUE is the expression whose value is profiled. TAG is the
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
565 tag of the section for counters, BASE is offset of the counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
566
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
567 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
568 gimple_gen_average_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
569 {
111
kono
parents: 67
diff changeset
570 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
571 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
572 tree ref_ptr = tree_coverage_counter_addr (tag, base);
111
kono
parents: 67
diff changeset
573 gcall *call;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
574 tree val;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
575
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
576 ref_ptr = force_gimple_operand_gsi (&gsi, ref_ptr,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
577 true, NULL_TREE,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
578 true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
579 val = prepare_instrumented_value (&gsi, value);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
580 call = gimple_build_call (tree_average_profiler_fn, 2, ref_ptr, val);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
581 gsi_insert_before (&gsi, call, GSI_NEW_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
582 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
583
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
584 /* Output instructions as GIMPLE trees to increment the ior histogram
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
585 counter. VALUE is the expression whose value is profiled. TAG is the
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
586 tag of the section for counters, BASE is offset of the counter position. */
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
587
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
588 void
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
589 gimple_gen_ior_profiler (histogram_value value, unsigned tag, unsigned base)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
590 {
111
kono
parents: 67
diff changeset
591 gimple *stmt = value->hvalue.stmt;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
592 gimple_stmt_iterator gsi = gsi_for_stmt (stmt);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
593 tree ref_ptr = tree_coverage_counter_addr (tag, base);
111
kono
parents: 67
diff changeset
594 gcall *call;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
595 tree val;
55
77e2b8dfacca update it from 4.4.3 to 4.5.0
ryoma <e075725@ie.u-ryukyu.ac.jp>
parents: 0
diff changeset
596
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
597 ref_ptr = force_gimple_operand_gsi (&gsi, ref_ptr,
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
598 true, NULL_TREE, true, GSI_SAME_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
599 val = prepare_instrumented_value (&gsi, value);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
600 call = gimple_build_call (tree_ior_profiler_fn, 2, ref_ptr, val);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
601 gsi_insert_before (&gsi, call, GSI_NEW_STMT);
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
602 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
603
111
kono
parents: 67
diff changeset
604 #ifndef HAVE_sync_compare_and_swapsi
kono
parents: 67
diff changeset
605 #define HAVE_sync_compare_and_swapsi 0
kono
parents: 67
diff changeset
606 #endif
kono
parents: 67
diff changeset
607 #ifndef HAVE_atomic_compare_and_swapsi
kono
parents: 67
diff changeset
608 #define HAVE_atomic_compare_and_swapsi 0
kono
parents: 67
diff changeset
609 #endif
kono
parents: 67
diff changeset
610
kono
parents: 67
diff changeset
611 #ifndef HAVE_sync_compare_and_swapdi
kono
parents: 67
diff changeset
612 #define HAVE_sync_compare_and_swapdi 0
kono
parents: 67
diff changeset
613 #endif
kono
parents: 67
diff changeset
614 #ifndef HAVE_atomic_compare_and_swapdi
kono
parents: 67
diff changeset
615 #define HAVE_atomic_compare_and_swapdi 0
kono
parents: 67
diff changeset
616 #endif
kono
parents: 67
diff changeset
617
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
618 /* Profile all functions in the callgraph. */
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
619
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
620 static unsigned int
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
621 tree_profiling (void)
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
622 {
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
623 struct cgraph_node *node;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
624
111
kono
parents: 67
diff changeset
625 /* Verify whether we can utilize atomic update operations. */
kono
parents: 67
diff changeset
626 bool can_support_atomic = false;
kono
parents: 67
diff changeset
627 unsigned HOST_WIDE_INT gcov_type_size
kono
parents: 67
diff changeset
628 = tree_to_uhwi (TYPE_SIZE_UNIT (get_gcov_type ()));
kono
parents: 67
diff changeset
629 if (gcov_type_size == 4)
kono
parents: 67
diff changeset
630 can_support_atomic
kono
parents: 67
diff changeset
631 = HAVE_sync_compare_and_swapsi || HAVE_atomic_compare_and_swapsi;
kono
parents: 67
diff changeset
632 else if (gcov_type_size == 8)
kono
parents: 67
diff changeset
633 can_support_atomic
kono
parents: 67
diff changeset
634 = HAVE_sync_compare_and_swapdi || HAVE_atomic_compare_and_swapdi;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
635
111
kono
parents: 67
diff changeset
636 if (flag_profile_update == PROFILE_UPDATE_ATOMIC
kono
parents: 67
diff changeset
637 && !can_support_atomic)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
638 {
111
kono
parents: 67
diff changeset
639 warning (0, "target does not support atomic profile update, "
kono
parents: 67
diff changeset
640 "single mode is selected");
kono
parents: 67
diff changeset
641 flag_profile_update = PROFILE_UPDATE_SINGLE;
kono
parents: 67
diff changeset
642 }
kono
parents: 67
diff changeset
643 else if (flag_profile_update == PROFILE_UPDATE_PREFER_ATOMIC)
kono
parents: 67
diff changeset
644 flag_profile_update = can_support_atomic
kono
parents: 67
diff changeset
645 ? PROFILE_UPDATE_ATOMIC : PROFILE_UPDATE_SINGLE;
kono
parents: 67
diff changeset
646
kono
parents: 67
diff changeset
647 /* This is a small-ipa pass that gets called only once, from
kono
parents: 67
diff changeset
648 cgraphunit.c:ipa_passes(). */
kono
parents: 67
diff changeset
649 gcc_assert (symtab->state == IPA_SSA);
kono
parents: 67
diff changeset
650
kono
parents: 67
diff changeset
651 init_node_map (true);
kono
parents: 67
diff changeset
652
kono
parents: 67
diff changeset
653 FOR_EACH_DEFINED_FUNCTION (node)
kono
parents: 67
diff changeset
654 {
kono
parents: 67
diff changeset
655 if (!gimple_has_body_p (node->decl))
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
656 continue;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
657
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
658 /* Don't profile functions produced for builtin stuff. */
111
kono
parents: 67
diff changeset
659 if (DECL_SOURCE_LOCATION (node->decl) == BUILTINS_LOCATION)
kono
parents: 67
diff changeset
660 continue;
kono
parents: 67
diff changeset
661
kono
parents: 67
diff changeset
662 if (lookup_attribute ("no_profile_instrument_function",
kono
parents: 67
diff changeset
663 DECL_ATTRIBUTES (node->decl)))
kono
parents: 67
diff changeset
664 continue;
kono
parents: 67
diff changeset
665 /* Do not instrument extern inline functions when testing coverage.
kono
parents: 67
diff changeset
666 While this is not perfectly consistent (early inlined extern inlines
kono
parents: 67
diff changeset
667 will get acocunted), testsuite expects that. */
kono
parents: 67
diff changeset
668 if (DECL_EXTERNAL (node->decl)
kono
parents: 67
diff changeset
669 && flag_test_coverage)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
670 continue;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
671
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
672 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
673
111
kono
parents: 67
diff changeset
674 /* Local pure-const may imply need to fixup the cfg. */
kono
parents: 67
diff changeset
675 if (execute_fixup_cfg () & TODO_cleanup_cfg)
kono
parents: 67
diff changeset
676 cleanup_tree_cfg ();
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
677
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
678 branch_prob ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
679
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
680 if (! flag_branch_probabilities
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
681 && flag_profile_values)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
682 gimple_gen_ic_func_profiler ();
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
683
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
684 if (flag_branch_probabilities
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
685 && flag_profile_values
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
686 && flag_value_profile_transformations)
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
687 gimple_value_profile_transformations ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
688
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
689 /* The above could hose dominator info. Currently there is
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
690 none coming in, this is a safety valve. It should be
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
691 easy to adjust it, if and when there is some. */
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
692 free_dominance_info (CDI_DOMINATORS);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
693 free_dominance_info (CDI_POST_DOMINATORS);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
694 pop_cfun ();
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
695 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
696
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
697 /* Drop pure/const flags from instrumented functions. */
111
kono
parents: 67
diff changeset
698 if (profile_arc_flag || flag_test_coverage)
kono
parents: 67
diff changeset
699 FOR_EACH_DEFINED_FUNCTION (node)
kono
parents: 67
diff changeset
700 {
kono
parents: 67
diff changeset
701 if (!gimple_has_body_p (node->decl)
kono
parents: 67
diff changeset
702 || !(!node->clone_of
kono
parents: 67
diff changeset
703 || node->decl != node->clone_of->decl))
kono
parents: 67
diff changeset
704 continue;
kono
parents: 67
diff changeset
705
kono
parents: 67
diff changeset
706 /* Don't profile functions produced for builtin stuff. */
kono
parents: 67
diff changeset
707 if (DECL_SOURCE_LOCATION (node->decl) == BUILTINS_LOCATION)
kono
parents: 67
diff changeset
708 continue;
kono
parents: 67
diff changeset
709
kono
parents: 67
diff changeset
710 node->set_const_flag (false, false);
kono
parents: 67
diff changeset
711 node->set_pure_flag (false, false);
kono
parents: 67
diff changeset
712 }
kono
parents: 67
diff changeset
713
kono
parents: 67
diff changeset
714 /* Update call statements and rebuild the cgraph. */
kono
parents: 67
diff changeset
715 FOR_EACH_DEFINED_FUNCTION (node)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
716 {
111
kono
parents: 67
diff changeset
717 basic_block bb;
kono
parents: 67
diff changeset
718
kono
parents: 67
diff changeset
719 if (!gimple_has_body_p (node->decl)
kono
parents: 67
diff changeset
720 || !(!node->clone_of
kono
parents: 67
diff changeset
721 || node->decl != node->clone_of->decl))
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
722 continue;
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
723
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
724 /* Don't profile functions produced for builtin stuff. */
111
kono
parents: 67
diff changeset
725 if (DECL_SOURCE_LOCATION (node->decl) == BUILTINS_LOCATION)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
726 continue;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
727
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
728 push_cfun (DECL_STRUCT_FUNCTION (node->decl));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
729
111
kono
parents: 67
diff changeset
730 FOR_EACH_BB_FN (bb, cfun)
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
731 {
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
732 gimple_stmt_iterator gsi;
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
733 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
734 {
111
kono
parents: 67
diff changeset
735 gimple *stmt = gsi_stmt (gsi);
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
736 if (is_gimple_call (stmt))
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
737 update_stmt (stmt);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
738 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
739 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
740
111
kono
parents: 67
diff changeset
741 /* re-merge split blocks. */
kono
parents: 67
diff changeset
742 cleanup_tree_cfg ();
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
743 update_ssa (TODO_update_ssa);
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
744
111
kono
parents: 67
diff changeset
745 cgraph_edge::rebuild_edges ();
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
746
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
747 pop_cfun ();
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
748 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
749
111
kono
parents: 67
diff changeset
750 handle_missing_profiles ();
kono
parents: 67
diff changeset
751
kono
parents: 67
diff changeset
752 del_node_map ();
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
753 return 0;
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
754 }
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
755
111
kono
parents: 67
diff changeset
756 namespace {
kono
parents: 67
diff changeset
757
kono
parents: 67
diff changeset
758 const pass_data pass_data_ipa_tree_profile =
kono
parents: 67
diff changeset
759 {
kono
parents: 67
diff changeset
760 SIMPLE_IPA_PASS, /* type */
kono
parents: 67
diff changeset
761 "profile", /* name */
kono
parents: 67
diff changeset
762 OPTGROUP_NONE, /* optinfo_flags */
kono
parents: 67
diff changeset
763 TV_IPA_PROFILE, /* tv_id */
kono
parents: 67
diff changeset
764 0, /* properties_required */
kono
parents: 67
diff changeset
765 0, /* properties_provided */
kono
parents: 67
diff changeset
766 0, /* properties_destroyed */
kono
parents: 67
diff changeset
767 0, /* todo_flags_start */
kono
parents: 67
diff changeset
768 TODO_dump_symtab, /* todo_flags_finish */
kono
parents: 67
diff changeset
769 };
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
770
111
kono
parents: 67
diff changeset
771 class pass_ipa_tree_profile : public simple_ipa_opt_pass
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
772 {
111
kono
parents: 67
diff changeset
773 public:
kono
parents: 67
diff changeset
774 pass_ipa_tree_profile (gcc::context *ctxt)
kono
parents: 67
diff changeset
775 : simple_ipa_opt_pass (pass_data_ipa_tree_profile, ctxt)
kono
parents: 67
diff changeset
776 {}
kono
parents: 67
diff changeset
777
kono
parents: 67
diff changeset
778 /* opt_pass methods: */
kono
parents: 67
diff changeset
779 virtual bool gate (function *);
kono
parents: 67
diff changeset
780 virtual unsigned int execute (function *) { return tree_profiling (); }
kono
parents: 67
diff changeset
781
kono
parents: 67
diff changeset
782 }; // class pass_ipa_tree_profile
kono
parents: 67
diff changeset
783
kono
parents: 67
diff changeset
784 bool
kono
parents: 67
diff changeset
785 pass_ipa_tree_profile::gate (function *)
kono
parents: 67
diff changeset
786 {
kono
parents: 67
diff changeset
787 /* When profile instrumentation, use or test coverage shall be performed.
kono
parents: 67
diff changeset
788 But for AutoFDO, this there is no instrumentation, thus this pass is
kono
parents: 67
diff changeset
789 diabled. */
kono
parents: 67
diff changeset
790 return (!in_lto_p && !flag_auto_profile
67
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
791 && (flag_branch_probabilities || flag_test_coverage
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
792 || profile_arc_flag));
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
793 }
f6334be47118 update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 63
diff changeset
794
111
kono
parents: 67
diff changeset
795 } // anon namespace
kono
parents: 67
diff changeset
796
kono
parents: 67
diff changeset
797 simple_ipa_opt_pass *
kono
parents: 67
diff changeset
798 make_pass_ipa_tree_profile (gcc::context *ctxt)
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
799 {
111
kono
parents: 67
diff changeset
800 return new pass_ipa_tree_profile (ctxt);
kono
parents: 67
diff changeset
801 }
0
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
802
a06113de4d67 first commit
kent <kent@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
803 #include "gt-tree-profile.h"