Searched refs:histogram_value (Results 1 – 4 of 4) sorted by relevance
/openbsd-src/gnu/gcc/gcc/ |
H A D | value-prof.h | 62 typedef struct histogram_value_t *histogram_value; typedef 64 DEF_VEC_P(histogram_value); 65 DEF_VEC_ALLOC_P(histogram_value,heap); 67 typedef VEC(histogram_value,heap) *histogram_values; 86 void (*gen_interval_profiler) (histogram_value, unsigned, unsigned); 89 void (*gen_pow2_profiler) (histogram_value, unsigned, unsigned); 92 void (*gen_one_value_profiler) (histogram_value, unsigned, unsigned); 96 void (*gen_const_delta_profiler) (histogram_value, unsigned, unsigned);
|
H A D | tree-profile.c | 124 histogram_value value) in prepare_instrumented_value() 136 tree_gen_interval_profiler (histogram_value value, unsigned tag, unsigned base) in tree_gen_interval_profiler() 163 tree_gen_pow2_profiler (histogram_value value, unsigned tag, unsigned base) in tree_gen_pow2_profiler() 186 tree_gen_one_value_profiler (histogram_value value, unsigned tag, unsigned base) in tree_gen_one_value_profiler() 210 tree_gen_const_delta_profiler (histogram_value value ATTRIBUTE_UNUSED, in tree_gen_const_delta_profiler()
|
H A D | value-prof.c | 120 histogram_value th = ann->histograms; in tree_value_profile_transformations() 263 histogram_value histogram; in tree_divmod_fixed_value_transform() 430 histogram_value histogram; in tree_mod_pow2_value_transform() 612 histogram_value histogram; in tree_mod_subtract_transform() 708 histogram_value hist; in tree_divmod_values_to_profile() 731 VEC_reserve (histogram_value, heap, *values, 3); in tree_divmod_values_to_profile() 741 VEC_quick_push (histogram_value, *values, hist); in tree_divmod_values_to_profile() 754 VEC_quick_push (histogram_value, *values, hist); in tree_divmod_values_to_profile() 763 VEC_quick_push (histogram_value, *values, hist); in tree_divmod_values_to_profile() 788 histogram_value hist; in tree_find_values_to_profile() [all …]
|
H A D | profile.c | 174 for (i = 0; i < VEC_length (histogram_value, values); i++) in instrument_values() 176 histogram_value hist = VEC_index (histogram_value, values, i); in instrument_values() 622 for (i = 0; i < VEC_length (histogram_value, values); i++) in compute_value_histograms() 624 histogram_value hist = VEC_index (histogram_value, values, i); in compute_value_histograms() 647 for (i = 0; i < VEC_length (histogram_value, values); i++) in compute_value_histograms() 649 histogram_value hist = VEC_index (histogram_value, values, i); in compute_value_histograms() 1051 VEC_free (histogram_value, heap, values); in branch_prob()
|