1/* longjmp for PowerPC.
2 Copyright (C) 1995-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
18
19#include <sysdep.h>
20#include <pointer_guard.h>
21#include <stap-probe.h>
22#define _ASM
23#ifdef __NO_VMX__
24# include <novmxsetjmp.h>
25#else
26# include <jmpbuf-offsets.h>
27#endif
28
29ENTRY (__longjmp_symbol)
30
31#if defined PTR_DEMANGLE || defined CHECK_SP
32 lwz r24,(JB_GPR1*4)(r3)
33# ifdef CHECK_SP
34# ifdef PTR_DEMANGLE
35 PTR_DEMANGLE3 (r24, r24, r25)
36# endif
37 CHECK_SP (r24)
38 mr r1,r24
39# endif
40#else
41 lwz r1,(JB_GPR1*4)(r3)
42#endif
43 lwz r0,(JB_LR*4)(r3)
44 lwz r14,((JB_GPRS+14-14)*4)(r3)
45 lwz r15,((JB_GPRS+15-14)*4)(r3)
46 lwz r16,((JB_GPRS+16-14)*4)(r3)
47 lwz r17,((JB_GPRS+17-14)*4)(r3)
48 lwz r18,((JB_GPRS+18-14)*4)(r3)
49 lwz r19,((JB_GPRS+19-14)*4)(r3)
50 lwz r20,((JB_GPRS+20-14)*4)(r3)
51#ifdef PTR_DEMANGLE
52# ifndef CHECK_SP
53 PTR_DEMANGLE3 (r1, r24, r25)
54# endif
55 PTR_DEMANGLE2 (r0, r25)
56#endif
57 /* longjmp/longjmp_target probe expects longjmp first argument (4@3),
58 second argument (-4@4), and target address (4@0), respectively. */
59 LIBC_PROBE (longjmp, 3, 4@3, -4@4, 4@0)
60 mtlr r0
61 lwz r21,((JB_GPRS+21-14)*4)(r3)
62 lwz r22,((JB_GPRS+22-14)*4)(r3)
63 lwz r5,(JB_CR*4)(r3)
64 lwz r23,((JB_GPRS+23-14)*4)(r3)
65 lwz r24,((JB_GPRS+24-14)*4)(r3)
66 lwz r25,((JB_GPRS+25-14)*4)(r3)
67 mtcrf 0xFF,r5
68 lwz r26,((JB_GPRS+26-14)*4)(r3)
69 lwz r27,((JB_GPRS+27-14)*4)(r3)
70 lwz r28,((JB_GPRS+28-14)*4)(r3)
71 lwz r29,((JB_GPRS+29-14)*4)(r3)
72 lwz r30,((JB_GPRS+30-14)*4)(r3)
73 lwz r31,((JB_GPRS+31-14)*4)(r3)
74 LIBC_PROBE (longjmp_target, 3, 4@3, -4@4, 4@0)
75 mr r3,r4
76 blr
77END (__longjmp_symbol)
78

source code of glibc/sysdeps/powerpc/powerpc32/__longjmp-common.S