Searched refs:lowpc (Results 1 - 7 of 7) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/profiling/
H A Dprofile-mk.c103 prof_uptrint_t lowpc; local
109 * round lowpc and highpc to multiples of the density we're using
113 lowpc = ROUNDDOWN((prof_uptrint_t)&pstart[0], HISTFRACTION*sizeof(LHISTCOUNTER));
115 textsize = highpc - lowpc;
136 pv->profil_info.lowpc = lowpc;
156 (long)lowpc,
H A Dprofile-internal.h234 prof_uptrint_t lowpc; /* lowest address */ member in struct:profile_profil
236 size_t text_len; /* highpc-lowpc */
/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dmach_clock.c161 if ((prof_uptrint_t)pc < _profile_vars.profil_info.lowpc)
164 s = (prof_uptrint_t)pc - _profile_vars.profil_info.lowpc;
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dsubr_prof.c114 p->lowpc = (u_long)sgp->vmaddr;
118 * Round lowpc and highpc to multiples of the density we're using
121 p->lowpc = ROUNDDOWN(p->lowpc, HISTFRACTION * sizeof(HISTCOUNTER));
123 p->textsize = p->highpc - p->lowpc;
125 p->textsize, p->lowpc, p->highpc);
224 frompc -= p->lowpc;
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dgmon.h209 u_long lowpc; member in struct:gmonparam
/macosx-10.5.8/xnu-1228.15.4/osfmk/profiling/i386/
H A Dprofile-md.c662 if (arc.frompc < pv->profil_info.lowpc ||
668 if (arc.selfpc < pv->profil_info.lowpc ||
834 if (hptr->arc.frompc < pv->profil_info.lowpc ||
839 if (hptr->arc.selfpc < pv->profil_info.lowpc ||
965 fprintf(stream, "%12lu profil lowpc [0x%lx]\n",
966 (long unsigned)pinfo->lowpc,
967 (long unsigned)pinfo->lowpc);
973 fprintf(stream, "%12lu profil highpc-lowpc\n", (long unsigned)(pinfo->highpc - pinfo->lowpc));
H A Dprofile-asm.s484 LCL(lowpc) = LCL(clock_ticks)+4 /* lowest address */
485 LCL(highpc) = LCL(lowpc)+4 /* highest address */
486 LCL(text_len) = LCL(highpc)+4 /* highpc-lowpc */

Completed in 49 milliseconds