2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: StackSwap() - Swap the stack of a task.
9 /*****************************************************************************
12 #include <exec/tasks.h>
13 #include <proto/exec.h>
15 AROS_LH1(void, StackSwap
,
18 AROS_LHA(struct StackSwapStruct
*, sss
, A0
),
21 struct ExecBase
*, SysBase
, 122, Exec
)
24 Changes the stack used by a task. The StackSwapStruct will contain
25 the value of the old stack such that the stack can be reset to the
26 previous version by another call to StackSwap().
28 When the stack is swapped, the data on the stack(s) will not be
29 altered, so the stack may not be set up for you. It is generally
30 required that you replace your stack before exiting from the
31 current stack frame (procedure, function call etc.).
34 sss - A structure containing the values for the upper, lower
35 and current bounds of the stack you wish to use. The
36 values will be replaced by the current values and you
37 can restore the values later.
40 The program will be running on a new stack and sss will contain
43 Calling StackSwap() twice consequtively will effectively do
47 Returning from the function that you call StackSwap() in can have
58 This function MUST be replaced in $(KERNEL) or $(ARCH).
60 ******************************************************************************/
63 register IPTR real_sp
asm("r1");
67 struct Task
*thisTask
= FindTask(NULL
);
70 dst
= sss
->stk_Pointer
;
74 /* Get the real stack pointer */
75 asm volatile ("mr %0,%1":"=r"(sp
):"r"(real_sp
));
77 /* Go one stack frame upper - now src points to the stackframe of caller */
80 /* Go one more stack frame up. Now you may copy from src to dst (src - sp) IPTR's */
83 /* Copy the two stack frames */
89 sss
->stk_Pointer
= dst
;
91 tmp
= thisTask
->tc_SPLower
;
92 thisTask
->tc_SPLower
= sss
->stk_Lower
;
95 tmp
= thisTask
->tc_SPUpper
;
96 thisTask
->tc_SPUpper
= sss
->stk_Upper
;
99 tmp
= thisTask
->tc_SPReg
;
100 thisTask
->tc_SPReg
= sss
->stk_Pointer
;
101 sss
->stk_Pointer
= tmp
;
103 asm volatile("mr %0,%1"::"r"(real_sp
),"r"(dst
));