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