/src/tests/kernel/ |
h_execsp.h | 42 void *ctorsp; member in struct:execsp
|
h_execsp.c | 40 * startsp, ctorsp, mainsp, and dtorsp, and then call execsp_main on 44 void *ctorsp; variable in typeref:typename:void * 57 execsp.ctorsp = ctorsp;
|
t_signal_and_sp.c | 155 printf("ctor sp @ %p\n", execsp.ctorsp); 163 ATF_CHECK_MSG(((uintptr_t)execsp.ctorsp & STACK_ALIGNBYTES) == 0, 165 execsp.ctorsp); 180 execsp.ctorsp == NULL ||
|
/src/tests/kernel/arch/x86_64/ |
execsp.S | 57 * ELF constructor. Saves the stack pointer in ctorsp and 71 movq %rsp,_C_LABEL(ctorsp)(%rip) 72 addq $-8,_C_LABEL(ctorsp)(%rip)
|
/src/tests/kernel/arch/aarch64/ |
execsp.S | 52 * ELF constructor. Saves the stack pointer in ctorsp and 57 adrp x17, _C_LABEL(ctorsp) 58 str x16, [x17, :lo12:_C_LABEL(ctorsp)]
|
/src/tests/kernel/arch/riscv/ |
execsp.S | 56 * ELF constructor. Saves the stack pointer in ctorsp and 60 PTR_LA t0, _C_LABEL(ctorsp) /* t0 := &ctorsp */ 61 PTR_S sp, 0(t0) /* ctorsp := sp */
|
/src/tests/kernel/arch/hppa/ |
execsp.S | 79 * ELF constructor. Saves the stack pointer in ctorsp and 83 addil LT%_C_LABEL(ctorsp), %r19 /* r1 := &ctorsp */ 84 ldw RT%_C_LABEL(ctorsp)(%r1), %r1 86 stw %sp, 0(%r1) /* ctorsp := sp */ 104 stw %sp, 0(%r1) /* ctorsp := sp */
|
/src/tests/kernel/arch/sparc/ |
execsp.S | 69 * ELF constructor. Saves the stack pointer in ctorsp and 75 SETHI(_C_LABEL(ctorsp), %g1, %o5) /* o5 := &ctorsp */ 77 st %sp, [LO(_C_LABEL(ctorsp), %o5)] /* ctorsp := sp */
|
/src/tests/kernel/arch/i386/ |
execsp.S | 53 * ELF constructor. Saves the stack pointer in ctorsp and 59 movl _C_LABEL(ctorsp)@GOT(%eax),%eax
|
/src/tests/kernel/arch/alpha/ |
execsp.S | 56 * ELF constructor. Saves the stack pointer in ctorsp and 61 ldq at_reg, ctorsp(gp) !literal
|
/src/tests/kernel/arch/mips/ |
execsp.S | 59 * ELF constructor. Saves the stack pointer in ctorsp and 65 PTR_LA t1, _C_LABEL(ctorsp) /* load t1 := &ctorsp */ 67 PTR_S sp, 0(t1) /* store ctorsp := stack pointer */
|
/src/tests/kernel/arch/sh3/ |
execsp.S | 63 * ELF constructor. Saves the stack pointer in ctorsp and 78 .L_ctorsp: VAR_DATUM(ctorsp)
|
/src/tests/kernel/arch/arm/ |
execsp.S | 57 * ELF constructor. Saves the stack pointer in ctorsp and 69 .word GOT_SYM(ctorsp)
|