Home
last modified time | relevance | path

Searched refs:histogram (Results 1 – 25 of 25) sorted by relevance

/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dipa-profile.c83 vec<histogram_entry *> histogram; variable
111 vec<histogram_entry *> &histogram, in account_time_size() argument
121 histogram.safe_push (*val); in account_time_size()
142 dump_histogram (FILE *file, vec<histogram_entry *> histogram) in dump_histogram() argument
148 for (i = 0; i < histogram.length (); i++) in dump_histogram()
150 overall_time += histogram[i]->count * histogram[i]->time; in dump_histogram()
151 overall_size += histogram[i]->size; in dump_histogram()
157 for (i = 0; i < histogram.length (); i++) in dump_histogram()
159 cumulated_time += histogram[i]->count * histogram[i]->time; in dump_histogram()
160 cumulated_size += histogram[i]->size; in dump_histogram()
[all …]
H A Dvalue-prof.c762 histogram_value histogram; in gimple_divmod_fixed_value_transform() local
781 histogram = gimple_histogram_value_of_type (cfun, stmt, in gimple_divmod_fixed_value_transform()
783 if (!histogram) in gimple_divmod_fixed_value_transform()
786 value = histogram->hvalue.value; in gimple_divmod_fixed_value_transform()
787 val = histogram->hvalue.counters[0]; in gimple_divmod_fixed_value_transform()
788 count = histogram->hvalue.counters[1]; in gimple_divmod_fixed_value_transform()
789 all = histogram->hvalue.counters[2]; in gimple_divmod_fixed_value_transform()
790 gimple_remove_histogram_value (cfun, stmt, histogram); in gimple_divmod_fixed_value_transform()
923 histogram_value histogram; in gimple_mod_pow2_value_transform() local
943 histogram = gimple_histogram_value_of_type (cfun, stmt, HIST_TYPE_POW2); in gimple_mod_pow2_value_transform()
[all …]
H A Dgcov-io.c460 if (csum->histogram[h_ix].num_counters) in gcov_write_summary()
484 if (!csum->histogram[h_ix].num_counters) in gcov_write_summary()
486 gcov_write_unsigned (csum->histogram[h_ix].num_counters); in gcov_write_summary()
487 gcov_write_counter (csum->histogram[h_ix].min_value); in gcov_write_summary()
488 gcov_write_counter (csum->histogram[h_ix].cum_value); in gcov_write_summary()
614 memset (csum->histogram, 0, in gcov_read_summary()
655 csum->histogram[h_ix].num_counters = gcov_read_unsigned (); in gcov_read_summary()
656 csum->histogram[h_ix].min_value = gcov_read_counter (); in gcov_read_summary()
657 csum->histogram[h_ix].cum_value = gcov_read_counter (); in gcov_read_summary()
965 histo_bucket = &summary->histogram[h_ix]; in compute_working_sets()
H A Dlto-cgraph.c721 bp_pack_value (&bp, profile_info->histogram[h_ix].num_counters > 0, 1); in output_profile_summary()
726 if (!profile_info->histogram[h_ix].num_counters) in output_profile_summary()
729 profile_info->histogram[h_ix].num_counters); in output_profile_summary()
731 profile_info->histogram[h_ix].min_value); in output_profile_summary()
733 profile_info->histogram[h_ix].cum_value); in output_profile_summary()
1677 memset (file_data->profile_info.histogram, 0, in input_profile_summary()
1685 file_data->profile_info.histogram[h_ix].num_counters in input_profile_summary()
1690 if (!file_data->profile_info.histogram[h_ix].num_counters) in input_profile_summary()
1693 file_data->profile_info.histogram[h_ix].num_counters in input_profile_summary()
1695 file_data->profile_info.histogram[h_ix].min_value in input_profile_summary()
[all …]
H A Dgcov-io.h348 gcov_bucket_type histogram[GCOV_HISTOGRAM_SIZE]; /* histogram of member
H A Dcoverage.c259 memcpy (summary.ctrs[GCOV_COUNTER_ARCS].histogram, in read_counts_file()
260 sum.ctrs[GCOV_COUNTER_ARCS].histogram, in read_counts_file()
263 gcov_histogram_merge (summary.ctrs[GCOV_COUNTER_ARCS].histogram, in read_counts_file()
264 sum.ctrs[GCOV_COUNTER_ARCS].histogram); in read_counts_file()
H A Dipa-icf.c3358 unsigned int* histogram = XCNEWVEC (unsigned int, m_items.length () + 1); in dump_cong_classes() local
3365 histogram[c]++; in dump_cong_classes()
3376 if (histogram[i]) in dump_cong_classes()
3377 fprintf (dump_file, "[%u]: %u classes\n", i, histogram[i]); in dump_cong_classes()
3397 free (histogram); in dump_cong_classes()
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dvalue-prof.c644 histogram_value histogram; in gimple_divmod_fixed_value_transform() local
663 histogram = gimple_histogram_value_of_type (cfun, stmt, in gimple_divmod_fixed_value_transform()
665 if (!histogram) in gimple_divmod_fixed_value_transform()
668 value = histogram->hvalue.value; in gimple_divmod_fixed_value_transform()
669 val = histogram->hvalue.counters[0]; in gimple_divmod_fixed_value_transform()
670 count = histogram->hvalue.counters[1]; in gimple_divmod_fixed_value_transform()
671 all = histogram->hvalue.counters[2]; in gimple_divmod_fixed_value_transform()
672 gimple_remove_histogram_value (cfun, stmt, histogram); in gimple_divmod_fixed_value_transform()
801 histogram_value histogram; in gimple_mod_pow2_value_transform() local
821 histogram = gimple_histogram_value_of_type (cfun, stmt, HIST_TYPE_POW2); in gimple_mod_pow2_value_transform()
[all …]
/dflybsd-src/contrib/binutils-2.34/gprof/
H A Dhist.c47 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
48 static histogram *find_histogram_for_pc (bfd_vma pc);
50 histogram * histograms;
90 read_histogram_header (histogram *record, in read_histogram_header()
172 histogram n_record; in hist_read_rec()
173 histogram *record, *existing_record; in hist_read_rec()
202 histograms = (struct histogram *) in hist_read_rec()
203 xrealloc (histograms, sizeof (histogram) * (num_histograms + 1)); in hist_read_rec()
205 &n_record, sizeof (histogram)); in hist_read_rec()
255 histogram *record = &histograms[r]; in hist_write_hist()
[all …]
H A Dhist.h25 typedef struct histogram struct
31 } histogram; typedef
33 extern histogram * histograms;
H A Dgmon_io.c495 histograms = (struct histogram *) xmalloc (sizeof (struct histogram)); in gmon_out_read()
/dflybsd-src/contrib/binutils-2.27/gprof/
H A Dhist.c47 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
48 static histogram *find_histogram_for_pc (bfd_vma pc);
50 histogram * histograms;
90 read_histogram_header (histogram *record, in read_histogram_header()
172 histogram n_record; in hist_read_rec()
173 histogram *record, *existing_record; in hist_read_rec()
202 histograms = (struct histogram *) in hist_read_rec()
203 xrealloc (histograms, sizeof (histogram) * (num_histograms + 1)); in hist_read_rec()
205 &n_record, sizeof (histogram)); in hist_read_rec()
255 histogram *record = &histograms[r]; in hist_write_hist()
[all …]
H A Dhist.h25 typedef struct histogram struct
31 } histogram; argument
33 extern histogram * histograms;
H A DREADME248 contain any number and any combination of histogram,
378 records. Currently, there are three different record types: histogram
389 bins. The header contains the text-segment range that the histogram
390 spans, the size of the histogram in bytes (unlike in the old BSD
396 histogram representing real-time would specify the long name as
400 OSF/1, the "uprofile" command can be used to produce a histogram of,
402 histogram header could be set to "i-cache misses" and the abbreviation
409 thousand bytes long and if there are ten bins in the histogram, each
H A Dgprof.texi503 about the profile data file(s) and then exit. The number of histogram,
698 histogram hits to be charged to individual source code lines,
926 counter histogram, it will be indistinguishable from a function that
987 in the histogram samples at all. However, the call graph
991 but the paucity of histogram samples prevents any
1423 @dfn{line-by-line} profiling. In this mode, histogram
1445 Note that @code{ct_init} accounted for four histogram hits, and
1474 four histogram hits are broken down into four lines of source code---one hit
1858 histogram of where the program counter happens to be every now and then.
1888 A special startup routine allocates memory for the histogram and
[all …]
H A Dgmon_io.c495 histograms = (struct histogram *) xmalloc (sizeof (struct histogram)); in gmon_out_read()
H A Dgprof.info337 histogram, call graph, and basic-block count records is displayed.
517 histogram hits to be charged to individual source code lines,
736 and didn't run long enough to show up on the program counter histogram,
785 field is `0.00') didn't appear in the histogram samples at all.
789 of histogram samples prevents any determination of how much time each
1208 profiling. In this mode, histogram samples are assigned not to
1227 profiling. Note that `ct_init' accounted for four histogram hits, and
1253 four histogram hits are broken down into four lines of source code--one
1609 keeping a histogram of where the program counter happens to be every
1636 A special startup routine allocates memory for the histogram and
[all …]
/dflybsd-src/contrib/gcc-8.0/libgcc/
H A Dlibgcov-driver.c205 gcov_histogram_insert(gcov_bucket_type *histogram, gcov_type value) in gcov_histogram_insert() argument
210 histogram[i].num_counters++; in gcov_histogram_insert()
211 histogram[i].cum_value += value; in gcov_histogram_insert()
212 if (value < histogram[i].min_value) in gcov_histogram_insert()
213 histogram[i].min_value = value; in gcov_histogram_insert()
238 cs_ptr->histogram[h_ix].num_counters = 0; in gcov_compute_histogram()
239 cs_ptr->histogram[h_ix].min_value = cs_ptr->run_max; in gcov_compute_histogram()
240 cs_ptr->histogram[h_ix].cum_value = 0; in gcov_compute_histogram()
267 gcov_histogram_insert (cs_ptr->histogram, ci_ptr->values[ix]); in gcov_compute_histogram()
630 memcpy (cs_prg->histogram, cs_tprg->histogram, in merge_summary()
[all …]
/dflybsd-src/usr.bin/systat/
H A Diostat.c79 static void histogram(long double, int, double);
322 histogram(mb_per_second, 50, .5); in devstats()
324 histogram(transfers_per_second, 50, .5); in devstats()
327 histogram(kb_per_transfer, 50, .5); in devstats()
345 histogram(dtime, 50, CPUSCALE); in stat1()
349 histogram(long double val, int colwidth, double scale) in histogram() function
/dflybsd-src/sbin/hammer/
H A Dcmd_mirror.c43 typedef struct histogram { struct
102 int histogram; in hammer_cmd_mirror_read() local
122 histogram = 0; in hammer_cmd_mirror_read()
172 } else if (streaming && histogram) { in hammer_cmd_mirror_read()
198 if (streaming && histogram && histindex == histend) { in hammer_cmd_mirror_read()
200 histogram = 0; in hammer_cmd_mirror_read()
209 if (histogram == 0 && BulkOpt == 0) { in hammer_cmd_mirror_read()
218 histogram = 1; in hammer_cmd_mirror_read()
227 if (streaming && histogram) { in hammer_cmd_mirror_read()
243 if (TwoWayPipeOpt == 0 && histogram == 0) in hammer_cmd_mirror_read()
[all …]
/dflybsd-src/sys/dev/netif/iwi/
H A Dif_iwireg.h300 struct iwi_rate_histogram histogram; member
/dflybsd-src/contrib/zstd/
H A DCHANGELOG33 perf: Improve histogram construction, by @cyan4973 (#2253)
/dflybsd-src/contrib/binutils-2.27/binutils/doc/
H A Dbinutils.texi4416 [@option{-I}|@option{--histogram}]
4612 @itemx --histogram
4613 Display a histogram of bucket list lengths when displaying the contents
/dflybsd-src/share/dict/
H A Dweb2a23442 frequency histogram
H A Dweb286168 histogram