/src/tests/kernel/arch/x86_64/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 52 movq %rsp,_C_LABEL(contextsp)(%rip) 53 addq $-8,_C_LABEL(contextsp)(%rip)
|
/src/tests/kernel/arch/aarch64/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 43 adrp x1, _C_LABEL(contextsp) 44 str x0, [x1, :lo12:_C_LABEL(contextsp)]
|
/src/tests/kernel/arch/riscv/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 42 PTR_LA t0, _C_LABEL(contextsp) /* t0 := &contextsp */ 43 PTR_S sp, 0(t0) /* contextsp := sp */
|
/src/tests/kernel/arch/hppa/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 44 addil LT%_C_LABEL(contextsp), %r19 /* r21 := &contextsp */ 45 ldw RT%_C_LABEL(contextsp)(%r1), %r21 47 stw %sp, 0(%r21) /* contextsp := sp */
|
/src/tests/kernel/arch/alpha/ |
contextspfunc.S | 42 * the global variable contextsp and call contextdone. 46 ldq at_reg, contextsp(gp) !literal
|
/src/tests/kernel/arch/mips/ |
contextspfunc.S | 43 * the global variable contextsp and call contextdone. 48 PTR_LA t1, _C_LABEL(contextsp) /* load t1 := &contextsp */ 50 PTR_S sp, 0(t1) /* store contextsp := stack pointer */
|
/src/tests/kernel/arch/arm/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 50 .word GOT_SYM(contextsp)
|
/src/tests/kernel/ |
t_signal_and_sp.c | 212 void *volatile contextsp; /* set by contextspfunc.S */ variable in typeref:typename:void * volatile 239 ATF_TC(contextsp); 240 ATF_TC_HEAD(contextsp, tc) 245 ATF_TC_BODY(contextsp, tc) 257 contextsp = NULL; 268 ATF_CHECK(contextsp != NULL); 269 ATF_CHECK_MSG((uintptr_t)stack <= (uintptr_t)contextsp && 270 (uintptr_t)contextsp <= (uintptr_t)stack + SIGSTKSZ + i, 271 "contextsp=%p", contextsp); [all...] |
/src/tests/kernel/arch/sparc/ |
contextspfunc.S | 54 * the global variable contextsp and call contextdone. 59 SETHI(_C_LABEL(contextsp), %g1, %o5) /* o5 := &contextsp */ 61 st %sp, [LO(_C_LABEL(contextsp), %o5)] /* contextsp := sp */
|
/src/tests/kernel/arch/i386/ |
contextspfunc.S | 39 * the global variable contextsp and call contextdone. 44 movl _C_LABEL(contextsp)@GOT(%eax),%eax
|
/src/tests/kernel/arch/sh3/ |
contextspfunc.S | 38 * the global variable contextsp and call contextdone. 53 .L_contextsp: VAR_DATUM(contextsp)
|