Lines Matching refs:lowpc

47 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
99 if (gmon_io_read_vma (ifp, &record->lowpc) in read_histogram_header()
112 n_hist_scale = (double)((record->highpc - record->lowpc) / sizeof (UNIT)) in read_histogram_header()
171 bfd_vma lowpc, highpc; in hist_read_rec() local
180 existing_record = find_histogram (n_record.lowpc, n_record.highpc); in hist_read_rec()
189 lowpc = n_record.lowpc; in hist_read_rec()
191 hist_clip_symbol_address (&lowpc, &highpc); in hist_read_rec()
192 if (lowpc != highpc) in hist_read_rec()
220 (unsigned long) record->lowpc, (unsigned long) record->highpc, in hist_read_rec()
236 (unsigned long) (record->lowpc in hist_read_rec()
237 + i * (record->highpc - record->lowpc) in hist_read_rec()
260 || gmon_io_write_vma (ofp, record->lowpc) in hist_write_hist()
306 bin_of_entry = (sym->hist.scaled_addr - r->lowpc) / hist_scale; in scale_and_align_entries()
307 bin_of_code = ((sym->hist.scaled_addr + UNITS_TO_CODE - r->lowpc) in scale_and_align_entries()
370 bfd_vma lowpc = r->lowpc / sizeof (UNIT); in hist_assign_samples_1() local
379 bin_low_pc = lowpc + (bfd_vma) (hist_scale * i); in hist_assign_samples_1()
380 bin_high_pc = lowpc + (bfd_vma) (hist_scale * (i + 1)); in hist_assign_samples_1()
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()
731 find_histogram (bfd_vma lowpc, bfd_vma highpc) in find_histogram() argument
736 if (histograms[i].lowpc == lowpc && histograms[i].highpc == highpc) in find_histogram()
750 if (histograms[i].lowpc <= pc && pc < histograms[i].highpc) in find_histogram_for_pc()