Home
last modified time | relevance | path

Searched refs:stack (Results 26 – 50 of 337) sorted by relevance

12345678910>>...14

/illumos-gate/usr/src/common/ficl/
H A Dtools.c559 ficlVm *vm = stack->vm; in ficlStackDisplay()
563 FICL_STACK_CHECK(stack, 0, 0); in ficlStackDisplay()
567 stack->name, ficlStackDepth(stack), (unsigned long)stack->top); in ficlStackDisplay()
570 stack->name, ficlStackDepth(stack), (unsigned)stack->top); in ficlStackDisplay()
580 ficlStackWalk(stack, callback, context, FICL_FALSE); in ficlStackDisplay()
584 (unsigned long)stack->base); in ficlStackDisplay()
587 (unsigned)stack->base); in ficlStackDisplay()
614 ficlStack *stack = vm->dataStack; in ficlVmDisplayDataStackSimple() local
618 FICL_STACK_CHECK(stack, 0, 0); in ficlVmDisplayDataStackSimple()
620 (void) sprintf(buffer, "[%d] ", ficlStackDepth(stack)); in ficlVmDisplayDataStackSimple()
[all …]
/illumos-gate/usr/src/lib/libc/i386/threads/
H A Dmachdep.c51 uint32_t *stack; in setup_top_frame() local
68 stack = (uint32_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); in setup_top_frame()
76 stack -= 5; /* make the address of frame.arg be 16-byte aligned */ in setup_top_frame()
82 if (uucopy(&frame, (void *)stack, sizeof (frame)) == 0) in setup_top_frame()
83 return (stack); in setup_top_frame()
94 uint32_t *stack; in setup_context() local
133 if ((stack = setup_top_frame(stk, stksize, ulwp)) == NULL) in setup_context()
139 ucp->uc_mcontext.gregs[UESP] = (greg_t)stack; in setup_context()
140 ucp->uc_mcontext.gregs[EBP] = (greg_t)(stack + 3); in setup_context()
/illumos-gate/usr/src/uts/sun4u/ml/
H A Dwbuf.S52 ! misaligned stack. We handle an unmapped stack by simulating
53 ! a pagefault at the trap pc and a misaligned stack by generating
123 ! user's stack has been unmapped.
150 ! user's stack has been unmapped.
186 ! misaligned stack. We handle an unmapped stack by simulating
187 ! a pagefault at the trap pc and a misaligned stack by generating
257 ! user's stack has been unmapped.
284 ! user's stack has been unmapped.
328 ! misaligned stack. We handle an unmapped stack by simulating
329 ! a pagefault at the trap pc and a misaligned stack by generating
/illumos-gate/usr/src/lib/libc/amd64/gen/
H A D_stack_grow.S64 / If the stack size is 0, stack checking is disabled.
71 / Move the stack pointer outside the stack bounds if it isn't already.
/illumos-gate/usr/src/lib/libc/i386/gen/
H A D_stack_grow.S64 / If the stack size is 0, stack checking is disabled.
71 / Move the stack pointer outside the stack bounds if it isn't already.
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_tunables.c49 ip_set_forwarding(netstack_t *stack, cred_t *cr, mod_prop_info_t *pinfo, in ip_set_forwarding() argument
57 ip_stack_t *ipst = stack->netstack_ip; in ip_set_forwarding()
105 ip_stack_t *ipst = stack->netstack_ip; in ip_get_forwarding()
161 ip_set_debug(netstack_t *stack, cred_t *cr, mod_prop_info_t *pinfo, in ip_set_debug() argument
213 ip_set_cgtp_filter(netstack_t *stack, cred_t *cr, mod_prop_info_t *pinfo, in ip_set_cgtp_filter() argument
217 ip_stack_t *ipst = stack->netstack_ip; in ip_set_cgtp_filter()
275 ip_stack_t *ipst = stack->netstack_ip; in ip_get_mtu()
362 ip_stack_t *ipst = stack->netstack_ip; in ip_set_src_multihoming()
378 ip_set_hostmodel(netstack_t *stack, cred_t *cr, mod_prop_info_t *pinfo, in ip_set_hostmodel() argument
382 ip_stack_t *ipst = stack->netstack_ip; in ip_set_hostmodel()
[all …]
/illumos-gate/usr/src/uts/intel/dtrace/
H A Dsdt.c58 sdt_invop(uintptr_t addr, uintptr_t *stack, uintptr_t eax) in sdt_invop() argument
80 stack0 = stack[i++]; in sdt_invop()
81 stack1 = stack[i++]; in sdt_invop()
82 stack2 = stack[i++]; in sdt_invop()
83 stack3 = stack[i++]; in sdt_invop()
84 stack4 = stack[i++]; in sdt_invop()
304 uintptr_t *stack; in sdt_getarg() local
333 stack = (uintptr_t *)&rp->r_rdi; in sdt_getarg()
335 stack = (uintptr_t *)(rp->r_rsp); in sdt_getarg()
363 stack = (uintptr_t *)&fp[1]; in sdt_getarg()
[all …]
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/pid/
H A Dtst.emptystack.d45 @[stack()] = sum(0);
50 @[stack()] = sum(0);
55 @[stack()] = sum(0);
/illumos-gate/usr/src/tools/smatch/src/
H A Dcheck_continue_vs_break.c44 static void push_statement(struct statement_list **stack, struct statement *stmt) in push_statement() argument
46 add_ptr_list(stack, stmt); in push_statement()
49 static void pop_statement(struct statement_list **stack) in pop_statement() argument
51 delete_ptr_list_last((struct ptr_list **)stack); in pop_statement()
/illumos-gate/usr/src/cmd/sendmail/db/btree/
H A Dbt_rsearch.c80 int ret, stack; local
103 stack = LF_ISSET(S_STACK);
105 0, pg, stack ? DB_LOCK_WRITE : DB_LOCK_READ, &lock)) != 0)
120 if (!stack &&
131 stack = 1;
233 if (stack) {
255 stack = 1;
260 __bam_lget(dbc, 1, pg, stack && LF_ISSET(S_WRITE) ?
/illumos-gate/usr/src/cmd/mdb/intel/amd64/kmdb/
H A Dkmdb_makecontext.c44 uintptr_t *stack = (uintptr_t *)(((uintptr_t)stk + stksize - 1) & in kmdb_makecontext() local
47 *stack-- = 0; in kmdb_makecontext()
50 ucp->uc_mcontext.gregs[REG_SP] = (greg_t)stack; in kmdb_makecontext()
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstate.c134 L1->stack = luaM_newvector(L, BASIC_STACK_SIZE, TValue); in stack_init()
137 setnilvalue(L1->stack + i); /* erase new stack */ in stack_init()
138 L1->top = L1->stack; in stack_init()
139 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK; in stack_init()
152 if (L->stack == NULL) in freestack()
156 luaM_freearray(L, L->stack, L->stacksize); /* free stack array */ in freestack()
204 L->stack = NULL; in preinit_state()
223 luaF_close(L, L->stack); /* close all upvalues for this thread */ in close_state()
256 luaF_close(L1, L1->stack); /* close all upvalues for this thread */ in luaE_freethread()
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dautod_lookup.c58 char *stack[STACKSIZ]; in do_lookup1() local
59 char **stkptr = stack; in do_lookup1()
106 stack_op(INIT, NULL, stack, &stkptr); in do_lookup1()
108 err = getmapent(key, mapname, &ml, stack, &stkptr, &iswildcard, in do_lookup1()
H A Dns_ldap.c154 init_ldap(char **stack, char ***stkptr) in init_ldap() argument
179 stack = stack; in init_ldap()
485 master_cbdata.ptr2 = stack; in loadmaster_ldap()
542 char **stack, char ***stkptr) in loaddirect_ldap() argument
556 direct_cbdata.ptr3 = stack; in loaddirect_ldap()
629 char **stack = temp->ptr2; in mastermap_callback_ldap() local
755 dirinit(dir, pmap, opts, 0, stack, stkptr); in mastermap_callback_ldap()
789 char **stack = temp->ptr3; in directmap_callback() local
821 dirinit(dir, localmap, opts, 1, stack, stkptr); in directmap_callback()
828 int *cache_time, char **stack, char ***stkptr) in getmapkeys_ldap() argument
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/fun/
H A Dpopd6 # Display directory stack -- $HOME displayed as ~
20 # Change directory and put directory on front of stack
36 then print pushd: Directory stack not that deep.
42 then print pushd: Directory stack overflow.
97 then print pushd: Directory stack not that deep.
H A Dpushd6 # Display directory stack -- $HOME displayed as ~
20 # Change directory and put directory on front of stack
36 then print pushd: Directory stack not that deep.
42 then print pushd: Directory stack overflow.
97 then print pushd: Directory stack not that deep.
/illumos-gate/usr/src/cmd/truss/
H A Dfcall.c658 Stk->stack = my_malloc(DEF_MAXCALL * sizeof (*Stk->stack), NULL); in make_lwp_stack()
701 free(Stk->stack); in make_lwp_stack()
732 Stk->stack = my_malloc(DEF_MAXCALL * sizeof (*Stk->stack), NULL); in make_thr_stack()
752 free(Stk->stack); in make_thr_stack()
842 Stk->stack = my_malloc(DEF_MAXCALL * sizeof (*Stk->stack), in find_stack()
863 Stk->stack = my_malloc(DEF_MAXCALL * sizeof (*Stk->stack), in find_stack()
904 Stk->stack = my_malloc(DEF_MAXCALL * sizeof (*Stk->stack), in find_stack()
1044 Stk->stack = my_realloc(Stk->stack, in callstack_info()
1092 free(Stk->stack); in reset_breakpoints()
1513 if (sp <= Stk->stack[i].sp && fp > Stk->stack[i].sp) { in function_return()
[all …]
/illumos-gate/usr/src/cmd/latencytop/common/
H A Dlatencytop.d198 @lt_call_count[pid, tid, stack(), this->cause,
200 @lt_call_sum[pid, tid, stack(), this->cause,
202 @lt_call_max[pid, tid, stack(), this->cause,
360 @lt_call_count[pid, tid, stack(), this->cause,
362 @lt_call_sum[pid, tid, stack(), this->cause,
364 @lt_call_max[pid, tid, stack(), this->cause,
383 @lt_call_count[pid, tid, stack(), this->cause,
385 @lt_call_sum[pid, tid, stack(), this->cause,
387 @lt_call_max[pid, tid, stack(), this->cause,
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dtparm.c100 long *stack; member
113 return (st->stack[st->top]); in tops()
121 if ((st->stack = (void *)realloc(st->stack, in push()
126 st->stack[++st->top] = (i); in push()
135 return (st->stack[st->top--]); in pop()
149 return ((char *)(st->stack[st->top--])); in pop_char_p()
157 if ((st->stack = (void *)malloc(MAX * sizeof (long))) == NULL) { in init_stack()
165 free(st->stack); in free_stack()
/illumos-gate/usr/src/cmd/sgs/rtld/i386/
H A Dboot_elf.S134 addl $24, %esp / cleanup stack
166 popl %edi / clean up stack
184 / and clean up stack :)
219 subl %edx, %esp / grow the stack
244 addl -88(%ebp), %esp / cleanup dupped stack
254 addl $20, %esp / cleanup stack
261 popl %edi / clean up stack
/illumos-gate/usr/src/stand/lib/sa/sparc/
H A D_setjmp.S93 * ensure that the registers we want to pick up are stored in the stack.
94 * Then, we set fp from the saved fp and make ourselves a stack frame.
111 ! flush all register windows to the stack.
126 ld [%i0 + SPVAL], %fp ! build new stack frame
/illumos-gate/usr/src/lib/libm/i386/src/
H A Dpow.S32 / does because y is placed on the NPX stack.
125 fstp %st(0) / stack empty
348 / y cannot be 0 or NaN ; stack has y , x
357 / y cannot be 0 or NaN ; stack has y , x
373 fstp %st(0) / stack empty
392 fstp %st(0) / stack empty
398 fstp %st(0) / stack empty
408 fstp %st(0) / stack empty
414 fstp %st(0) / stack empty
421 fstp %st(0) / stack empty
[all …]
/illumos-gate/usr/src/boot/common/
H A Dinterp_forth.c106 ficlStack *stack = ficlVmGetDataStack(vm); in bf_command() local
107 len += ficlStackFetch(stack, i * 2).i + 1; in bf_command()
114 ficlStack *stack = ficlVmGetDataStack(vm); in bf_command() local
116 len = ficlStackPopInteger(stack); in bf_command()
117 cp = ficlStackPopPointer(stack); in bf_command()
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dboot.S.texi53 /* @r{Initialize the stack pointer.} */
54 movl $(stack + STACK_SIZE), %esp
78 /* @r{Our stack area.} */
79 .comm stack, STACK_SIZE
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_filter.c566 sp = stack; in want_packet()
635 if (sp < &stack[1]) in want_packet()
641 if (sp < &stack[1]) in want_packet()
647 if (sp < &stack[1]) in want_packet()
653 if (sp < &stack[1]) in want_packet()
659 if (sp < &stack[1]) in want_packet()
665 if (sp < &stack[1]) in want_packet()
671 if (sp < &stack[1]) in want_packet()
677 if (sp < &stack[1]) in want_packet()
683 if (sp < &stack[1]) in want_packet()
[all …]

12345678910>>...14