Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
git-mirror
/
glibc
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
305bb37
abilist
aout
argp
assert
bare
bits
catgets
conf
conform
crypt
csu
ctype
debug
dirent
dlfcn
elf
gmon
gnulib
grp
hesiod
hurd
iconv
iconvdata
include
inet
intl
io
libidn
libio
locale
localedata
login
mach
malloc
manual
math
misc
nis
nptl
nptl_db
nscd
nss
po
posix
pwd
resolv
resource
rt
scripts
setjmp
shadow
signal
socket
soft-fp
stdio-common
stdlib
streams
string
sunrpc
sysdeps
alpha
generic
gnu
hppa
i386
ia64
ieee754
m68k
mach
mips
posix
powerpc
pthread
rs6000
s390
sh
sparc
bits
fpu
sparc32
bits
elf
fpu
soft-fp
sparcv8
sparcv9
sparcv9b
Dist
Implies
Makefile
Versions
__longjmp.S
add_n.S
addmul_1.S
alloca.S
bcopy.c
bsd-_setjmp.S
bsd-setjmp.S
bzero.c
divrem.m4
dl-machine.h
dl-trampoline.S
dotmul.S
e_sqrt.c
ieee754.h
lshift.S
memchr.S
memcopy.h
memcpy.S
memmove.c
memset.S
mul_1.S
rem.S
rshift.S
sdiv.S
setjmp.S
stpcpy.S
strcat.S
strchr.S
strcmp.S
strcpy.S
strlen.S
strrchr.c
sub_n.S
submul_1.S
udiv.S
udiv_qrnnd.S
umul.S
urem.S
sparc64
sys
Dist
Makefile
Subdirs
abort-instr.h
dl-dtprocnum.h
dl-sysdep.h
dl-tls.h
gccframe.h
memusage.h
stackinfo.h
unix
wordsize-32
wordsize-64
x86_64
linkmap.h
sysvipc
termios
time
timezone
wcsmbs
wctype
.cvsignore
BUGS
CANCEL-FCT-WAIVE
CANCEL-FILE-WAIVE
CONFORMANCE
COPYING
COPYING.LIB
ChangeLog
ChangeLog.1
ChangeLog.10
ChangeLog.11
ChangeLog.12
ChangeLog.13
ChangeLog.14
ChangeLog.15
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
FAQ
FAQ.in
INSTALL
INTERFACE
LICENSES
MakeTAGS
Makeconfig
Makefile
Makefile.in
Makerules
NAMESPACE
NEWS
NOTES
PROJECTS
README
README.libm
README.template
Rules
Versions.def
WUR-REPORT
abi-tags
aclocal.m4
config-name.in
config.h.in
config.make.in
configure
configure.in
cppflags-iterator.mk
extra-lib.mk
extra-modules.mk
o-iterator.mk
shlib-versions
test-skeleton.c
tls.make.c
version.h
Breadcrumbs
glibc
/
sysdeps
/
sparc
/
sparc32
/
__longjmp.S
Copy path
Blame
Blame
Latest commit
History
History
99 lines (86 loc) · 3.29 KB
Breadcrumbs
glibc
/
sysdeps
/
sparc
/
sparc32
/
__longjmp.S
Top
File metadata and controls
Code
Blame
99 lines (86 loc) · 3.29 KB
Raw
/* Copyright (C) 1991, 1993, 1996, 1997, 1998, 1999, 2000, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #include <sysdep.h> #define _ASM 1 #define _SETJMP_H #include <bits/setjmp.h> #define ENV(base,reg) [%base + (reg * 4)] #define ST_FLUSH_WINDOWS 3 #define RW_FP [%fp + 0x48] ENTRY(__longjmp) /* Store our arguments in global registers so we can still use them while unwinding frames and their register windows. */ ld ENV(o0,JB_FP), %g3 /* Cache target FP in register %g3. */ #ifdef PTR_DEMANGLE PTR_DEMANGLE (%g3, %g3, %g4) #endif mov %o0, %g1 /* ENV in %g1 */ orcc %o1, %g0, %g2 /* VAL in %g2 */ be,a 0f /* Branch if zero; else skip delay slot. */ mov 1, %g2 /* Delay slot only hit if zero: VAL = 1. */ 0: xor %fp, %g3, %o0 add %fp, 512, %o1 andncc %o0, 4095, %o0 bne LOC(thread) cmp %o1, %g3 bl LOC(thread) /* Now we will loop, unwinding the register windows up the stack until the restored %fp value matches the target value in %g3. */ LOC(loop): cmp %fp, %g3 /* Have we reached the target frame? */ bl,a LOC(loop) /* Loop while current fp is below target. */ restore /* Unwind register window in delay slot. */ be,a LOC(found) /* Better have hit it exactly. */ ld ENV(g1,JB_SP), %o0 /* Delay slot: extract target SP. */ LOC(thread): /* * Do a "flush register windows trap". The trap handler in the * kernel writes all the register windows to their stack slots, and * marks them all as invalid (needing to be sucked up from the * stack when used). This ensures that all information needed to * unwind to these callers is in memory, not in the register * windows. */ ta ST_FLUSH_WINDOWS #ifdef PTR_DEMANGLE ld ENV(g1,JB_PC), %g5 /* Set return PC. */ ld ENV(g1,JB_SP), %g1 /* Set saved SP on restore below. */ PTR_DEMANGLE2 (%o7, %g5, %g4) PTR_DEMANGLE2 (%fp, %g1, %g4) #else ld ENV(g1,JB_PC), %o7 /* Set return PC. */ ld ENV(g1,JB_SP), %fp /* Set saved SP on restore below. */ #endif sub %fp, 64, %sp /* Allocate a register frame. */ st %g3, RW_FP /* Set saved FP on restore below. */ retl restore %g2, 0, %o0 /* Restore values from above register frame. */ LOC(found): /* We have unwound register windows so %fp matches the target. */ #ifdef PTR_DEMANGLE PTR_DEMANGLE2 (%sp, %o0, %g4) #else mov %o0, %sp /* OK, install new SP. */ #endif LOC(sp_ok): ld ENV(g1,JB_PC), %o0 /* Extract target return PC. */ #ifdef PTR_DEMANGLE PTR_DEMANGLE2 (%o0, %o0, %g4) #endif jmp %o0 + 8 /* Return there. */ mov %g2, %o0 /* Delay slot: set return value. */ END(__longjmp)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
You can’t perform that action at this time.