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

/darwin-on-arm/xnu/osfmk/profiling/
H A Dprofile-mk.c98 prof_uptrint_t lowpc; local
103 * round lowpc and highpc to multiples of the density we're using
107 lowpc = ROUNDDOWN((prof_uptrint_t)&pstart[0], HISTFRACTION*sizeof(LHISTCOUNTER));
109 textsize = highpc - lowpc;
123 pv->profil_info.lowpc = lowpc;
143 (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 */
/darwin-on-arm/xnu/bsd/kern/
H A Dsubr_prof.c114 p->lowpc = (u_int32_t)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);
254 frompc -= p->lowpc;
/darwin-on-arm/xnu/bsd/sys/
H A Dgmon.h209 u_long lowpc; member in struct:gmonparam
/darwin-on-arm/xnu/osfmk/profiling/i386/
H A Dprofile-md.c656 if (arc.frompc < pv->profil_info.lowpc ||
662 if (arc.selfpc < pv->profil_info.lowpc ||
828 if (hptr->arc.frompc < pv->profil_info.lowpc ||
833 if (hptr->arc.selfpc < pv->profil_info.lowpc ||
959 fprintf(stream, "%12lu profil lowpc [0x%lx]\n",
960 (long unsigned)pinfo->lowpc,
961 (long unsigned)pinfo->lowpc);
967 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 42 milliseconds