forked from OSchip/llvm-project
[libc++abi][AIX] Use reserved slot in stack to pass the address of exception object
Summary: The existing implementation of the personality for legacy IBM xlclang++ compiler generated code passes the address of exception object in r14 for the landing pad to retrieve with a call to __xlc_exception_handle(). This clobbers the content of r14 in user code (and potentially, when running cleanup actions, the address of another exception object being passed). This patch changes to use the stack slot reserved for compilers to pass the address. It has been confirmed that xlclang++-generated code does not use this slot. This is a follow-on of the origibal patch below with a change in comments. https://reviews.llvm.org/rGa499051f10a2d0150b60c14493558476039f701a Reviewed by: hubert.reinterpretcast, cebowleratibm Differential Revision: https://reviews.llvm.org/D136257
This commit is contained in:
parent
32c512e49f
commit
fb391e45e9
|
@ -559,7 +559,7 @@ __xlcxx_personality_v0(int version, _Unwind_Action actions, uint64_t exceptionCl
|
|||
// reserved for compilers (SP + 3 * sizeof(uintptr_t)) in the stack of
|
||||
// the caller of the function containing the landing pad (within the link
|
||||
// area for the call to the latter) for __xlc_exception_handle()
|
||||
// to retrieve.
|
||||
// to retrieve when it is called by the landing pad.
|
||||
uintptr_t *currentSP = reinterpret_cast<uintptr_t*>(_Unwind_GetGR(context, 1));
|
||||
uintptr_t *callersSP = reinterpret_cast<uintptr_t*>(currentSP[0]);
|
||||
callersSP[3] = reinterpret_cast<uintptr_t>(unwind_exception);
|
||||
|
|
Loading…
Reference in New Issue