~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/kernel/ppc_save_regs.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-or-later */
  2 /*
  3  * Copyright (C) 1996 Paul Mackerras.
  4  *
  5  * NOTE: assert(sizeof(buf) > 23 * sizeof(long))
  6  */
  7 #include <asm/processor.h>
  8 #include <asm/ppc_asm.h>
  9 #include <asm/asm-offsets.h>
 10 #include <asm/ptrace.h>
 11 #include <asm/asm-compat.h>
 12 
 13 /*
 14  * Grab the register values as they are now.
 15  * This won't do a particularly good job because we really
 16  * want our caller's caller's registers, and our caller has
 17  * already executed its prologue.
 18  * ToDo: We could reach back into the caller's save area to do
 19  * a better job of representing the caller's state (note that
 20  * that will be different for 32-bit and 64-bit, because of the
 21  * different ABIs, though).
 22  */
 23 _GLOBAL(ppc_save_regs)
 24         /* This allows stack frame accessor macros and offsets to be used */
 25         subi    r3,r3,STACK_INT_FRAME_REGS
 26         PPC_STL r0,GPR0(r3)
 27 #ifdef CONFIG_PPC32
 28         stmw    r2,GPR2(r3)
 29 #else
 30         SAVE_GPRS(2, 31, r3)
 31         lbz     r0,PACAIRQSOFTMASK(r13)
 32         PPC_STL r0,SOFTE(r3)
 33 #endif
 34         /* store current SP */
 35         PPC_STL r1,GPR1(r3)
 36         /* get caller's LR */
 37         PPC_LL  r4,0(r1)
 38         PPC_LL  r0,LRSAVE(r4)
 39         PPC_STL r0,_LINK(r3)
 40         mflr    r0
 41         PPC_STL r0,_NIP(r3)
 42         mfmsr   r0
 43         PPC_STL r0,_MSR(r3)
 44         mfctr   r0
 45         PPC_STL r0,_CTR(r3)
 46         mfxer   r0
 47         PPC_STL r0,_XER(r3)
 48         mfcr    r0
 49         PPC_STL r0,_CCR(r3)
 50         li      r0,0
 51         PPC_STL r0,_TRAP(r3)
 52         PPC_STL r0,ORIG_GPR3(r3)
 53         blr

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php