Lines Matching full:profiling
16 * LLVM uses profiling data that's deliberately similar to GCC, but has a
36 * also means we don't depend as much on how LLVM represents profiling data
150 * @info: profiling data set
159 * @info: profiling data set
167 * gcov_info_next - return next profiling data set
168 * @info: profiling data set
184 * gcov_info_link - link/add profiling data set to the list
185 * @info: profiling data set
193 * gcov_info_unlink - unlink/remove profiling data set from the list
194 * @prev: previous profiling data set
195 * @info: profiling data set
204 * gcov_info_within_module - check if a profiling data set belongs to a module
205 * @info: profiling data set
208 * Returns true if profiling data belongs module, false otherwise.
215 /* Symbolic links to be created for each profiling data file. */
222 * gcov_info_reset - reset profiling data to zero
223 * @info: profiling data set
235 * gcov_info_is_compatible - check if profiling data can be added
236 * @info1: first profiling data set
237 * @info2: second profiling data set
239 * Returns non-zero if profiling data can be added, zero otherwise.
266 * gcov_info_add - add up profiling data
267 * @dest: profiling data set to which data is added
268 * @source: profiling data set which is added
270 * Adds profiling counts of @source to @dest.
310 * gcov_info_dup - duplicate profiling data set
311 * @info: profiling data set to duplicate
345 * gcov_info_free - release memory for profiling data set duplicate
346 * @info: profiling data set duplicate to free
362 * convert_to_gcda - convert profiling data set to gcda file format
364 * @info: profiling data set to be converted