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

/freebsd-9.3-release/contrib/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;
/freebsd-9.3-release/contrib/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;
/freebsd-9.3-release/lib/libc/gmon/
H A Dgmon.c73 monstartup(lowpc, highpc)
75 u_long highpc;
82 * round lowpc and highpc to multiples of the density we're using
86 p->highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER));
87 p->textsize = p->highpc - p->lowpc;
115 o = p->highpc - p->lowpc;
184 hdr->hpc = p->highpc;
/freebsd-9.3-release/sys/kern/
H A Dsubr_prof.c92 np.highpc = ROUNDUP(nhighpc, HISTFRACTION * sizeof(HISTCOUNTER));
93 if (np.highpc <= p->highpc)
95 np.textsize = np.highpc - p->lowpc;
108 * Check for something else extending highpc while we slept.
110 if (np.highpc <= p->highpc) {
157 * Round lowpc and highpc to multiples of the density we're using
161 p->highpc = ROUNDUP((u_long)etext, HISTFRACTION * sizeof(HISTCOUNTER));
162 p->textsize = p->highpc
[all...]
/freebsd-9.3-release/sys/sys/
H A Dgmon.h165 uintfptr_t highpc; member in struct:gmonparam
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddwarf2read.c321 CORE_ADDR highpc; member in struct:partial_die_info
385 CORE_ADDR lowpc, highpc; member in struct:function_range
649 CORE_ADDR *lowpc, CORE_ADDR *highpc,
1159 CORE_ADDR lowpc, highpc, baseaddr; local
1290 highpc = ((CORE_ADDR) 0);
1292 info_ptr = scan_partial_symbols (info_ptr, &lowpc, &highpc,
1295 /* If we didn't find a lowpc, set it to highpc to avoid
1298 lowpc = highpc;
1305 comp_unit_die.highpc = highpc;
1336 scan_partial_symbols(char *info_ptr, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu, const char *namespace) argument
1622 add_partial_namespace(struct partial_die_info *pdi, char *info_ptr, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu, const char *namespace) argument
1828 CORE_ADDR lowpc, highpc; local
2041 CORE_ADDR highpc = ((CORE_ADDR) 0); local
2153 add_to_cu_func_list(const char *name, CORE_ADDR lowpc, CORE_ADDR highpc, struct dwarf2_cu *cu) argument
2180 CORE_ADDR highpc; local
2304 CORE_ADDR lowpc, highpc; local
2344 dwarf2_get_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
2504 get_scope_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
[all...]
/freebsd-9.3-release/usr.bin/gprof/
H A Dgprof.c305 highpc = (unsigned long)gmonhdr.hpc / HISTORICAL_SCALE_2;
314 printf( "[openpfile] lowpc 0x%lx highpc 0x%lx\n" ,
315 lowpc , highpc );
505 scale = highpc - lowpc;
H A Dgprof.h210 unsigned long s_highpc; /* highpc from the profile file */
211 unsigned long lowpc, highpc; /* range profiled, in historical units */ variable
/freebsd-9.3-release/usr.sbin/kgmon/
H A Dkgmon.c374 h.hpc = kvp->gpm.highpc;

Completed in 203 milliseconds