Searched refs:histograms (Results 1 – 10 of 10) sorted by relevance
/toolchain/binutils/binutils-2.25/gprof/ |
D | gmon_io.c | 431 if (!histograms) in gmon_out_read() 483 if (histograms && (tmp.low_pc != histograms->lowpc in gmon_out_read() 484 || tmp.high_pc != histograms->highpc in gmon_out_read() 485 || (hist_num_bins != histograms->num_bins))) in gmon_out_read() 492 if (!histograms) in gmon_out_read() 495 histograms = (struct histogram *) xmalloc (sizeof (struct histogram)); in gmon_out_read() 496 histograms->lowpc = tmp.low_pc; in gmon_out_read() 497 histograms->highpc = tmp.high_pc; in gmon_out_read() 498 histograms->num_bins = hist_num_bins; in gmon_out_read() 501 histograms->sample = (int *) xmalloc (hist_num_bins * sizeof (int)); in gmon_out_read() [all …]
|
D | hist.c | 50 histogram * histograms; variable 202 histograms = (struct histogram *) in hist_read_rec() 203 xrealloc (histograms, sizeof (histogram) * (num_histograms + 1)); in hist_read_rec() 204 memcpy (histograms + num_histograms, in hist_read_rec() 206 record = &histograms[num_histograms]; in hist_read_rec() 255 histogram *record = &histograms[r]; in hist_write_hist() 455 hist_assign_samples_1 (&histograms[i]); in hist_assign_samples() 675 if (histograms[i].lowpc <= address && address < histograms[i].highpc) in hist_check_address() 703 common_low = max (histograms[i].lowpc, *p_lowpc); in hist_clip_symbol_address() 704 common_high = min (histograms[i].highpc, *p_highpc); in hist_clip_symbol_address() [all …]
|
D | hist.h | 33 extern histogram * histograms;
|
D | TODO | 34 + generalize to allow arbitrary histograms (not just time histograms)
|
D | ChangeLog-2007 | 153 (histograms, num_histograms): New. 161 (scale_and_align_entries): Adjust for multiple histograms.
|
D | README | 16 histograms (see below) 27 o Generalized histograms: not just execution-time, but arbitrary 28 histograms are support (for example, performance counter based
|
D | ChangeLog-2009 | 33 * hist.h: Move declaration of histograms and num_histograms
|
D | gprof.texi | 1771 for basic-block execution counts and non-realtime histograms. A magic 2103 histogram records. If the above containts are met, all histograms 2126 If histograms were present in the data files, assign them to symbols 2205 Shows address ranges of histograms as they are read, and each
|
D | ChangeLog-9203 | 1744 collection pc histograms measuring quantities other than time;
|
/toolchain/binutils/binutils-2.25/binutils/ |
D | ChangeLog-2007 | 812 * NEWS: Mention disjoint histograms support in
|