Searched refs:highpc (Results 1 - 18 of 18) sorted by relevance

/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dhist.h27 extern bfd_vma lowpc, highpc; /* Range profiled, in UNIT's. */
H A Dhist.c48 bfd_vma lowpc, highpc; /* Same, but expressed in UNITs. */
110 highpc = (bfd_vma) n_highpc / sizeof (UNIT);
121 printf ("[hist_read_rec] lowpc 0x%lx highpc 0x%lx\n",
122 (unsigned long) lowpc, (unsigned long) highpc));
273 hist_scale = highpc - lowpc;
47 bfd_vma lowpc, highpc; /* Same, but expressed in UNITs. */ variable
H A Dgmon_io.c411 are the same: lowpc, highpc, ncnt */
496 highpc = (bfd_vma) h.high_pc / sizeof (UNIT);
501 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d\n",
506 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx\n",
507 (unsigned long) lowpc, (unsigned long) highpc);
512 if (samp_bytes < 0 || lowpc > highpc)
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dhist.h27 extern bfd_vma lowpc, highpc; /* Range profiled, in UNIT's. */
H A Dhist.c47 bfd_vma lowpc, highpc; /* Same, but expressed in UNITs. */
111 highpc = (bfd_vma) n_highpc / sizeof (UNIT);
122 printf ("[hist_read_rec] lowpc 0x%lx highpc 0x%lx\n",
123 (unsigned long) lowpc, (unsigned long) highpc));
276 hist_scale = highpc - lowpc;
46 bfd_vma lowpc, highpc; /* Same, but expressed in UNITs. */ variable
H A Dgmon_io.c435 are the same: lowpc, highpc, ncnt */
520 highpc = (bfd_vma) h.high_pc / sizeof (UNIT);
525 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx ncnt %d\n",
530 printf ("[gmon_out_read] lowpc 0x%lx highpc 0x%lx\n",
531 (unsigned long) lowpc, (unsigned long) highpc);
536 if (samp_bytes < 0 || lowpc > highpc)
/openbsd-current/gnu/usr.bin/gcc/gcc/config/i386/
H A Dgmon-sol2.c129 monstartup(lowpc, highpc)
131 char *highpc;
138 * round lowpc and highpc to multiples of the density we're using
144 highpc = (char *)
145 ROUNDUP((unsigned)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
146 s_highpc = highpc;
147 s_textsize = highpc - lowpc;
178 ( (struct phdr *) buffer ) -> hpc = highpc;
183 o = highpc - lowpc;
/openbsd-current/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dgmon-sol2.c92 void monstartup(lowpc, highpc)
94 char *highpc;
101 * round lowpc and highpc to multiples of the density we're using
107 highpc = (char *)
108 ROUNDUP((unsigned long)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
109 s_highpc = highpc;
110 s_textsize = highpc - lowpc;
141 ( (struct phdr *) buffer ) -> hpc = highpc;
146 o = highpc - lowpc;
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgmon.c71 monstartup(lowpc, highpc)
73 char *highpc;
80 * round lowpc and highpc to multiples of the density we're using
86 highpc = (char *)
87 ROUNDUP((unsigned) highpc, HISTFRACTION*sizeof(HISTCOUNTER));
88 s_highpc = highpc;
89 s_textsize = highpc - lowpc;
120 ( (struct phdr *) buffer ) -> hpc = highpc;
125 o = highpc - lowpc;
/openbsd-current/gnu/gcc/gcc/config/sparc/
H A Dgmon-sol2.c95 void monstartup(char *lowpc, char *highpc) argument
102 * round lowpc and highpc to multiples of the density we're using
108 highpc = (char *)
109 ROUNDUP((unsigned long)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
110 s_highpc = highpc;
111 s_textsize = highpc - lowpc;
142 ( (struct phdr *) buffer ) -> hpc = highpc;
147 o = highpc - lowpc;
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Dgmon-sol2.c123 monstartup(char *lowpc, char *highpc) argument
130 * round lowpc and highpc to multiples of the density we're using
136 highpc = (char *)
137 ROUNDUP((unsigned long)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
138 s_highpc = highpc;
139 s_textsize = highpc - lowpc;
170 ( (struct phdr *) buffer ) -> hpc = highpc;
175 o = highpc - lowpc;
/openbsd-current/lib/libc/gmon/
H A Dgmon.c55 monstartup(u_long lowpc, u_long highpc) argument
62 * round lowpc and highpc to multiples of the density we're using
66 p->highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER));
67 p->textsize = p->highpc - p->lowpc;
97 o = p->highpc - p->lowpc;
237 hdr->hpc = p->highpc;
/openbsd-current/sys/kern/
H A Dsubr_prof.c75 u_long lowpc, highpc, textsize; local
82 * Round lowpc and highpc to multiples of the density we're using
86 highpc = ROUNDUP((u_long)etext, HISTFRACTION * sizeof(HISTCOUNTER));
87 textsize = highpc - lowpc;
90 textsize, lowpc, highpc);
124 p->highpc = highpc;
/openbsd-current/sys/sys/
H A Dgmon.h136 u_long highpc; member in struct:gmonparam
/openbsd-current/usr.bin/gprof/
H A Dgprof.c54 unsigned long s_highpc; /* highpc from the profile file */
55 unsigned long lowpc, highpc; /* range profiled, in UNIT's */ variable
305 highpc = (unsigned long)gmonhdr.hpc / sizeof(UNIT);
314 printf( "[openpfile] lowpc 0x%lx highpc 0x%lx\n" ,
315 lowpc , highpc );
473 scale = highpc - lowpc;
H A Dgprof.h187 extern unsigned long s_highpc; /* highpc from the profile file */
188 extern unsigned long lowpc, highpc; /* range profiled, in UNIT's */
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Ddwarf2read.c474 CORE_ADDR highpc; member in struct:partial_die_info
551 CORE_ADDR lowpc, highpc; member in struct:function_range
736 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1397 CORE_ADDR lowpc, highpc, baseaddr; local
1505 highpc = ((CORE_ADDR) 0);
1509 scan_partial_symbols (first_die, &lowpc, &highpc, &cu);
1511 /* If we didn't find a lowpc, set it to highpc to avoid
1514 lowpc = highpc;
1521 comp_unit_die.highpc = highpc;
1674 scan_partial_symbols(struct partial_die_info *first_die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
2040 add_partial_namespace(struct partial_die_info *pdi, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
2551 CORE_ADDR lowpc, highpc; local
2727 CORE_ADDR highpc = ((CORE_ADDR) 0); local
2836 add_to_cu_func_list(const char *name, CORE_ADDR lowpc, CORE_ADDR highpc, struct dwarf2_cu *cu) argument
2863 CORE_ADDR highpc; local
2981 CORE_ADDR lowpc, highpc; local
3021 dwarf2_get_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
3181 get_scope_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
[all...]
/openbsd-current/usr.sbin/kgmon/
H A Dkgmon.c328 h.hpc = kvp->gpm.highpc;

Completed in 244 milliseconds