54 lines
1.3 KiB
ArmAsm
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 1996 Paul Mackerras.
*
* NOTE: assert(sizeof(buf) > 23 * sizeof(long))
*/
#include <asm/processor.h>
#include <asm/ppc_asm.h>
#include <asm/asm-offsets.h>
#include <asm/ptrace.h>
#include <asm/asm-compat.h>
/*
* Grab the register values as they are now.
* This won't do a particularly good job because we really
* want our caller's caller's registers, and our caller has
* already executed its prologue.
* ToDo: We could reach back into the caller's save area to do
* a better job of representing the caller's state (note that
* that will be different for 32-bit and 64-bit, because of the
* different ABIs, though).
*/
_GLOBAL(ppc_save_regs)
2026-01-29 22:25:33 +08:00
/* This allows stack frame accessor macros and offsets to be used */
subi r3,r3,STACK_INT_FRAME_REGS
PPC_STL r0,GPR0(r3)
2026-01-21 18:59:54 +08:00
#ifdef CONFIG_PPC32
2026-01-29 22:25:33 +08:00
stmw r2,GPR2(r3)
2026-01-21 18:59:54 +08:00
#else
2026-01-29 22:25:33 +08:00
SAVE_GPRS(2, 31, r3)
2026-01-21 18:59:54 +08:00
lbz r0,PACAIRQSOFTMASK(r13)
2026-01-29 22:25:33 +08:00
PPC_STL r0,SOFTE(r3)
2026-01-21 18:59:54 +08:00
#endif
2026-01-29 22:25:33 +08:00
/* store current SP */
PPC_STL r1,GPR1(r3)
2026-01-21 18:59:54 +08:00
/* get caller's LR */
2026-01-29 22:25:33 +08:00
PPC_LL r4,0(r1)
2026-01-21 18:59:54 +08:00
PPC_LL r0,LRSAVE(r4)
2026-01-29 22:25:33 +08:00
PPC_STL r0,_LINK(r3)
2026-01-21 18:59:54 +08:00
mflr r0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_NIP(r3)
2026-01-21 18:59:54 +08:00
mfmsr r0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_MSR(r3)
2026-01-21 18:59:54 +08:00
mfctr r0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_CTR(r3)
2026-01-21 18:59:54 +08:00
mfxer r0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_XER(r3)
2026-01-21 18:59:54 +08:00
mfcr r0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_CCR(r3)
2026-01-21 18:59:54 +08:00
li r0,0
2026-01-29 22:25:33 +08:00
PPC_STL r0,_TRAP(r3)
PPC_STL r0,ORIG_GPR3(r3)
2026-01-21 18:59:54 +08:00
blr