Lines Matching refs:stkend

617 		    (ulong_t)Stk->stkend,  in report_htable_stats()
618 (ulong_t)(Stk->stkend - Stk->stkbase)); in report_htable_stats()
646 if (sp >= Stk->stkbase && sp < Stk->stkend) in make_lwp_stack()
663 Stk->stkend = Stk->stkbase + Psp->pr_stksize; in make_lwp_stack()
673 Stk->stkend = Stk->stkbase + Lsp->pr_altstack.ss_size; in make_lwp_stack()
684 Stk->stkend = (uintptr_t)thrinfo.ti_stkbase; in make_lwp_stack()
685 Stk->stkbase = Stk->stkend - thrinfo.ti_stksize; in make_lwp_stack()
694 Stk->stkend = Pmap->pr_vaddr + Pmap->pr_size; in make_lwp_stack()
720 if (sp >= Stk->stkbase && sp < Stk->stkend) in make_thr_stack()
737 Stk->stkend = Stk->stkbase + Psp->pr_stksize; in make_thr_stack()
745 Stk->stkend = (uintptr_t)thrinfo.ti_stkbase; in make_thr_stack()
746 Stk->stkbase = Stk->stkend - thrinfo.ti_stksize; in make_thr_stack()
794 Stk->stkend = pmap->pr_vaddr + pmap->pr_size; in find_lwp_stack()
836 Stk->stkend = Stk->stkbase + Psp->pr_stksize; in find_stack()
857 Stk->stkend = Stk->stkbase + Lsp->pr_altstack.ss_size; in find_stack()
897 Stk->stkend = (uintptr_t)thrinfo.ti_stkbase; in find_stack()
898 Stk->stkbase = Stk->stkend - thrinfo.ti_stksize; in find_stack()
994 if (sp >= Stk->stkbase && sp < Stk->stkend) in callstack_info()
1002 uintptr_t stkend; in callstack_info() local
1022 stkend = sp + minsize; in callstack_info()
1025 stkend = fp + minsize; in callstack_info()
1027 if ((fp >= Stk->stkbase && fp < Stk->stkend) || in callstack_info()
1028 (stkend > Stk->stkbase && in callstack_info()
1029 stkend <= Stk->stkend)) in callstack_info()
1464 if (!(sp >= Stk->stkbase && sp < Stk->stkend) || in function_entry()