Searched defs:nextfp (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libumem/common/
H A Dgetpcstack.c59 struct frame *nextfp, *minfp; local
138 nextfp = (struct frame *)((caddr_t)fp->fr_savfp + STACK_BIAS);
139 tmp = (uintptr_t)nextfp;
142 * Check nextfp for validity. It must be properly aligned,
149 else if (nextfp <= minfp || (tmp - base) >= size) {
184 fp = nextfp;
/illumos-gate/usr/src/uts/sparc/os/
H A Darchdep.c81 uintptr_t nextfp; local
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; local
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);
[all...]
/illumos-gate/usr/src/uts/intel/dtrace/
H A Ddtrace_isa.c47 struct frame *nextfp, *minfp, *stacktop; local
65 nextfp = (struct frame *)fp->fr_savfp;
68 if (nextfp <= minfp || nextfp >= stacktop) {
108 fp = nextfp;
509 struct frame *nextfp, *minfp, *stacktop; local
524 nextfp = (struct frame *)fp->fr_savfp;
526 if (nextfp <= minfp || nextfp >= stacktop) {
539 fp = nextfp;
[all...]
/illumos-gate/usr/src/uts/sparc/dtrace/
H A Ddtrace_isa.c105 struct frame *fp, *nextfp, *minfp, *stacktop; local
288 nextfp = (struct frame *)((caddr_t)fp->fr_savfp + STACK_BIAS);
289 if (nextfp <= minfp || nextfp >= stacktop) {
290 if (!on_intr && nextfp == stacktop && aframes != 0) {
316 if (nextfp > minfp && nextfp < stacktop)
329 * of nextfp against minfp/stacktop. If the
356 fp = nextfp;
703 struct frame *fp, *nextfp, *minf local
[all...]
/illumos-gate/usr/src/uts/intel/ia32/os/
H A Darchdep.c854 struct frame *nextfp, *minfp, *stacktop; local
868 nextfp = (struct frame *)fp->fr_savfp;
870 if (nextfp <= minfp || nextfp >= stacktop) {
883 fp = nextfp;
1211 struct frame *nextfp; local
1252 nextfp = (struct frame *)fp->fr_savfp;
1286 fp = nextfp;
1303 struct frame *nextfp, *minfp, *stacktop; local
1373 nextfp
[all...]

Completed in 49 milliseconds