Lines Matching refs:nextfp
81 uintptr_t nextfp; in getpcstack() local
108 npcwin = getpcstack_top(pcswin, npcwin, &nextfp, &nextpc); in getpcstack()
114 fp = (struct frame *)(nextfp + STACK_BIAS); in getpcstack()
271 struct frame *nextfp, *minfp, *stacktop; in traceback() local
312 nextfp = (struct frame *)((uintptr_t)fp->fr_savfp + STACK_BIAS); in traceback()
313 if (nextfp <= minfp || nextfp >= stacktop) { in traceback()
326 if ((uintptr_t)nextfp & (STACK_ALIGN - 1)) { in traceback()
327 printf(" >> mis-aligned %%fp = %p\n", (void *)nextfp); in traceback()
333 "(%lx, %lx, %lx, %lx, %lx, %lx)\n", (ulong_t)nextfp, in traceback()
335 nextfp->fr_arg[0], nextfp->fr_arg[1], in traceback()
336 nextfp->fr_arg[2], nextfp->fr_arg[3], in traceback()
337 nextfp->fr_arg[4], nextfp->fr_arg[5]); in traceback()
342 nextfp->fr_arg[0], nextfp->fr_arg[1], in traceback()
343 nextfp->fr_arg[2], nextfp->fr_arg[3], in traceback()
344 nextfp->fr_arg[4], nextfp->fr_arg[5]); in traceback()
348 (ulong_t)nextfp, (void *)pc, in traceback()
349 nextfp->fr_arg[0], nextfp->fr_arg[1], in traceback()
350 nextfp->fr_arg[2], nextfp->fr_arg[3], in traceback()
351 nextfp->fr_arg[4], nextfp->fr_arg[5]); in traceback()
355 nextfp->fr_arg[0], nextfp->fr_arg[1], in traceback()
356 nextfp->fr_arg[2], nextfp->fr_arg[3], in traceback()
357 nextfp->fr_arg[4], nextfp->fr_arg[5]); in traceback()
363 nextfp->fr_local[0], nextfp->fr_local[1], in traceback()
364 nextfp->fr_local[2], nextfp->fr_local[3], in traceback()
365 nextfp->fr_local[4], nextfp->fr_local[5], in traceback()
366 nextfp->fr_local[6], nextfp->fr_local[7]); in traceback()
386 fp = nextfp; in traceback()