/titanic_44/usr/src/uts/intel/ia32/sys/ |
H A D | stack.h | 111 #define STACK_ALIGN STACK_ALIGN64 macro 120 #define STACK_ALIGN STACK_ALIGN32 132 #if STACK_ALIGN == 4 136 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \ 138 #elif (STACK_ALIGN == 16) && (_LONG_DOUBLE_ALIGNMENT == 16) 142 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
|
/titanic_44/usr/src/uts/sparc/sys/ |
H A D | stack.h | 119 #define STACK_ALIGN STACK_ALIGN64 macro 130 #define STACK_ALIGN STACK_ALIGN32 141 #if STACK_ALIGN == 8 145 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \ 147 #elif (STACK_ALIGN == 16) && (_LONG_DOUBLE_ALIGNMENT == 16) 151 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
|
/titanic_44/usr/src/lib/libc/sparcv9/gen/ |
H A D | makectxt.c | 82 ~(STACK_ALIGN - 1)); in makecontext() 129 ucp->uc_stack.ss_size - size) & ~(STACK_ALIGN - 1)); in __makecontext_v2()
|
/titanic_44/usr/src/lib/libc/sparc/gen/ |
H A D | makectxt.c | 82 ~(STACK_ALIGN - 1)); in makecontext() 129 ucp->uc_stack.ss_size - size) & ~(STACK_ALIGN - 1)); in __makecontext_v2()
|
H A D | _stack_grow.s | 91 sub %o3, STACK_ALIGN, %sp
|
/titanic_44/usr/src/cmd/mdb/sparc/v9/kmdb/ |
H A D | kaif_invoke.s | 109 add %i1, STACK_ALIGN/2, %g1 110 and %g1, -STACK_ALIGN, %g1
|
/titanic_44/usr/src/lib/libbc/sparc/inc/sparc/ |
H A D | asm_linkage.h | 65 #define STACK_ALIGN 8 macro 66 #define SA(X) (((X)+(STACK_ALIGN-1)) & ~(STACK_ALIGN-1))
|
/titanic_44/usr/src/uts/intel/ia32/os/ |
H A D | sendsig.c | 150 #if STACK_ALIGN != 16 || STACK_ENTRY_ALIGN != 8 in sendsig() 191 SA(lwp->lwp_sigaltstack.ss_size) - STACK_ALIGN); in sendsig() 218 if (((uintptr_t)sp & (STACK_ALIGN - 1ul)) == 0) { in sendsig() 629 ASSERT((minstacksz & (STACK_ALIGN - 1ul)) == 0); in sendsig() 642 SA(lwp->lwp_sigaltstack.ss_size) - STACK_ALIGN); in sendsig() 663 fp = (caddr_t)((uintptr_t)fp & ~(STACK_ALIGN - 1ul)); in sendsig()
|
/titanic_44/usr/src/lib/libc/i386/threads/ |
H A D | machdep.c | 41 #undef STACK_ALIGN 42 #define STACK_ALIGN 16 macro 67 stack = (uint32_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); in setup_top_frame()
|
/titanic_44/usr/src/cmd/mdb/intel/amd64/kmdb/ |
H A D | kmdb_start.s | 53 andq $_BITNOT(STACK_ALIGN-1), %rsp
|
H A D | kmdb_makecontext.c | 47 ~(STACK_ALIGN - 1)); in kmdb_makecontext()
|
/titanic_44/usr/src/cmd/mdb/sparc/kmdb/ |
H A D | kmdb_makecontext.c | 52 ~(STACK_ALIGN - 1)) - SA(MINFRAME); in kmdb_makecontext()
|
H A D | kmdb_fault_isadep.c | 72 if (addr & (STACK_ALIGN - 1)) { in valid_frame()
|
/titanic_44/usr/src/lib/libc/i386/gen/ |
H A D | makectxt.c | 64 ucp->uc_stack.ss_size - size) & ~(STACK_ALIGN - 1)); in makecontext()
|
/titanic_44/usr/src/uts/common/disp/ |
H A D | thread_intr.c | 88 tp->t_stk -= STACK_ALIGN; in thread_create_intr()
|
/titanic_44/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | findstack_subr.c | 82 if ((frame & (STACK_ALIGN - 1)) != 0) in crawl() 193 if ((ktop & (STACK_ALIGN - 1)) != 0) in stacks_findstack()
|
/titanic_44/usr/src/lib/libc/amd64/gen/ |
H A D | makectxt.c | 75 if (((uintptr_t)sp & (STACK_ALIGN - 1ul)) == 0) in makecontext()
|
/titanic_44/usr/src/cmd/mdb/intel/kmdb/ |
H A D | kmdb_fault_isadep.c | 63 if (addr & (STACK_ALIGN - 1)) { in valid_frame()
|
/titanic_44/usr/src/uts/common/os/ |
H A D | panic.c | 156 #pragma align STACK_ALIGN(panic_stack)
|
/titanic_44/usr/src/lib/libc/sparc/threads/ |
H A D | machdep.c | 47 stack = (((uintptr_t)stk + stksize) & ~(STACK_ALIGN - 1)) - in setup_top_frame()
|
/titanic_44/usr/src/lib/libc/amd64/threads/ |
H A D | machdep.c | 50 stack = (uint64_t *)(((uintptr_t)stk + stksize) & ~(STACK_ALIGN-1)); in setup_top_frame()
|
/titanic_44/usr/src/uts/i86pc/os/ |
H A D | machdep.c | 806 ASSERT(((uintptr_t)stk & (STACK_ALIGN - 1)) == 0); in thread_stk_init() 867 stk = (caddr_t)((uintptr_t)stk & ~(STACK_ALIGN - 1ul)); in lwp_stk_init()
|
/titanic_44/usr/src/uts/sparc/os/ |
H A D | archdep.c | 326 if ((uintptr_t)nextfp & (STACK_ALIGN - 1)) { in traceback()
|
/titanic_44/usr/src/cmd/mdb/intel/mdb/ |
H A D | mdb_ia32util.c | 225 if (fp & (STACK_ALIGN - 1)) { in mdb_ia32_kvm_stack_iter()
|
/titanic_44/usr/src/cmd/mdb/sparc/mdb/ |
H A D | mdb_v9util.c | 291 if (sp & (STACK_ALIGN - 1)) in mdb_kvm_v9stack_iter()
|