Searched refs:gcov_type (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-11.0-release/contrib/gcc/
H A Dcoverage.h44 extern gcov_type *get_coverage_counts (unsigned /*counter*/,
H A Dgcov-io.h173 typedef signed gcov_type __attribute__ ((mode (DI))); typedef
175 typedef signed gcov_type __attribute__ ((mode (SI))); typedef
182 typedef signed gcov_type __attribute__ ((mode (SI))); typedef
184 typedef signed gcov_type __attribute__ ((mode (HI))); typedef
190 typedef signed gcov_type __attribute__ ((mode (HI))); typedef
192 typedef signed gcov_type __attribute__ ((mode (QI))); typedef
209 /* gcov_type is typedef'd elsewhere for the compiler */
212 typedef HOST_WIDEST_INT gcov_type; typedef
387 gcov_type sum_all; /* sum of all counters accumulated. */
388 gcov_type run_ma
[all...]
H A Dcgraph.h147 gcov_type count;
189 gcov_type count;
269 tree, gcov_type, int);
280 tree, gcov_type, int, bool);
281 struct cgraph_node * cgraph_clone_node (struct cgraph_node *, gcov_type,
H A Dlibgcov.c58 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
63 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
68 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
231 gcov_type *values[GCOV_COUNTERS];
499 gcov_type *c_ptr;
597 memset (ci_ptr->values, 0, sizeof (gcov_type) * ci_ptr->num);
610 __gcov_merge_add (gcov_type *counters, unsigned n_counters)
628 __gcov_merge_single (gcov_type *counters, unsigned n_counters)
631 gcov_type value, counter, all;
667 __gcov_merge_delta (gcov_type *counter
[all...]
H A Dvalue-prof.h47 gcov_type *counters; /* Pointer to first counter. */
H A Dvalue-prof.c75 tree, int, gcov_type, gcov_type);
76 static tree tree_mod_pow2 (tree, tree, tree, tree, int, gcov_type, gcov_type);
78 gcov_type, gcov_type, gcov_type);
87 check_counter (tree stmt, const char * name, gcov_type all, gcov_type bb_count)
176 tree op1, tree op2, tree value, int prob, gcov_type coun
[all...]
H A Dipa-prop.h137 gcov_type count_scale;
H A Dprofile.c91 gcov_type succ_count;
92 gcov_type pred_count;
122 static gcov_type * get_exec_counts (void);
230 static gcov_type *
235 gcov_type *counts;
275 gcov_type *exec_counts = get_exec_counts ();
389 gcov_type total = 0;
401 gcov_type total = 0;
416 gcov_type total = 0;
443 gcov_type tota
[all...]
H A Dgcov.c83 gcov_type count;
85 gcov_type cs_count;
122 gcov_type num_succ;
123 gcov_type num_pred;
126 gcov_type count;
181 gcov_type *counts;
217 gcov_type count; /* execution count */
341 static const char *format_gcov (gcov_type, gcov_type, int);
1048 fn->counts = XCNEWVEC (gcov_type, f
[all...]
H A Dgcov-io.c261 gcov_write_counter (gcov_type value)
439 GCOV_LINKAGE gcov_type
442 gcov_type value;
449 value |= ((gcov_type) from_file (buffer[1])) << 32;
H A Dtracer.c206 gcov_type weighted_insns = 0, traced_insns = 0;
208 gcov_type cover_insns;
H A Dbasic-block.h115 typedef HOST_WIDEST_INT gcov_type; typedef
138 gcov_type count; /* Expected number of executions calculated
247 gcov_type count;
520 extern void scale_bbs_frequencies_gcov_type (basic_block *, int, gcov_type,
521 gcov_type);
1001 extern void update_bb_profile_for_threading (basic_block, int, gcov_type, edge);
H A Dcfg.c438 gcov_type lsum;
879 gcov_type count, edge taken_edge)
980 by NUM/DEN, in gcov_type arithmetic. More accurate than previous
983 scale_bbs_frequencies_gcov_type (basic_block *bbs, int nbbs, gcov_type num,
984 gcov_type den)
988 gcov_type fraction = RDIV (num * 65536, den);
1011 if (sizeof (gcov_type) > sizeof (int))
H A Dipa-cp.c189 static inline gcov_type
197 ipcp_method_set_scale (struct cgraph_node *node, gcov_type count)
496 gcov_type sum;
948 ipcp_update_bb_counts (struct cgraph_node *node, gcov_type scale)
958 ipcp_update_edges_counts (struct cgraph_node *node, gcov_type scale)
975 gcov_type scale, scale_complement;
H A Dbb-reorder.c166 static gcov_type max_entry_count;
172 static void find_traces_1_round (int, int, gcov_type, struct trace *, int *,
180 static bool push_to_next_round_p (basic_block, int, int, int, gcov_type);
202 int exec_th, gcov_type count_th)
257 gcov_type count_threshold;
301 gcov_type best_count = -1;
429 find_traces_1_round (int branch_th, int exec_th, gcov_type count_th,
907 gcov_type count_threshold;
H A Dcgraph.c378 tree call_stmt, gcov_type count, int nest)
1038 tree call_stmt, gcov_type count_scale, int loop_nest,
1064 cgraph_clone_node (struct cgraph_node *n, gcov_type count, int loop_nest,
1069 gcov_type count_scale;
H A Dgcov-dump.c397 gcov_type count;
H A Dcfghooks.c399 gcov_type count = e->count;
702 gcov_type new_count = e ? e->count : 0;
H A Dtree-ssa-loop-ivcanon.c501 gcov_type exit_count = exit->count;
H A Dpostreload-gcse.c976 gcov_type ok_count = 0; /* Redundant load execution count. */
977 gcov_type critical_count = 0; /* Execution count of critical edges. */
983 gcov_type not_ok_count = 0;
H A Dcoverage.c67 gcov_type *counts;
125 /* Return the type node for gcov_type. */
272 entry->counts = XCNEWVEC (gcov_type, n_counts);
325 gcov_type *
H A Dcfgloopanal.c426 gcov_type count_in, count_latch, expected;
H A Dtree-tailcall.c673 decrease_profile (basic_block bb, gcov_type count, int frequency)
H A Dipa-inline.c91 static gcov_type max_count;
H A Dtree-inline.c867 copy_cfg_body (copy_body_data * id, gcov_type count, int frequency,
981 copy_body (copy_body_data *id, gcov_type count, int frequency,

Completed in 131 milliseconds

12