Searched refs:frompcindex (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dgmon-sol2.c249 register unsigned short *frompcindex; local
263 /* frompcindex = pc in preceding frame.
265 frompcindex = (void *) __builtin_return_address (1);
287 * check that frompcindex is a reasonable pc value.
291 frompcindex = (unsigned short *)((long)frompcindex - (long)s_lowpc);
292 if ((unsigned long)frompcindex > s_textsize) {
295 frompcindex =
296 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))];
297 toindex = *frompcindex;
[all...]
/freebsd-9.3-release/sys/libkern/
H A Dmcount.c55 * Note: the original BSD code used the same variable (frompcindex) for
56 * both frompcindex and frompc. Any reasonable, modern compiler will
66 u_short *frompcindex; local
154 frompcindex = &p->froms[frompci / (p->hashfraction * sizeof(*p->froms))];
155 toindex = *frompcindex;
165 *frompcindex = toindex;
201 top->link = *frompcindex;
202 *frompcindex = toindex;
219 top->link = *frompcindex;
220 *frompcindex
[all...]
/freebsd-9.3-release/contrib/gcc/config/sparc/
H A Dgmon-sol2.c272 /* i7 == last ret, -> frompcindex */
279 static void internal_mcount(char *selfpc, unsigned short *frompcindex) argument
312 * check that frompcindex is a reasonable pc value.
316 frompcindex = (unsigned short *)((long)frompcindex - (long)s_lowpc);
317 if ((unsigned long)frompcindex > s_textsize) {
320 frompcindex =
321 &froms[((long)frompcindex) / (HASHFRACTION * sizeof(*froms))];
322 toindex = *frompcindex;
331 *frompcindex
[all...]
/freebsd-9.3-release/lib/libc/gmon/
H A Dmcount.c61 * Note: the original BSD code used the same variable (frompcindex) for
62 * both frompcindex and frompc. Any reasonable, modern compiler will
72 u_short *frompcindex; local
186 frompcindex = &p->froms[frompci / (p->hashfraction * sizeof(*p->froms))];
187 toindex = *frompcindex;
197 *frompcindex = toindex;
233 top->link = *frompcindex;
234 *frompcindex = toindex;
251 top->link = *frompcindex;
252 *frompcindex
[all...]

Completed in 102 milliseconds