mailing list of musl libc
 help / color / mirror / code / Atom feed
32853693b020bfe103fa9c9e776827e7e0c69ad3 blob 2197 bytes (raw)

  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
100
 
	.global __setjmp
	.global _setjmp
	.global setjmp
	.type   __setjmp,@function
	.type   _setjmp,@function
	.type   setjmp,@function
__setjmp:
_setjmp:
setjmp:
	ld 5, 24(1)   # load from the TOC slot in the caller's stack frame
	b __setjmp_toc

	.localentry __setjmp,.-__setjmp
	.localentry _setjmp,.-_setjmp
	.localentry setjmp,.-setjmp
	mr 5, 2

	.global __setjmp_toc
	.hidden __setjmp_toc
	# same as normal setjmp, except TOC pointer to save is provided in r5.
	# r4 would normally be the 2nd parameter, but we're using r5 to simplify calling from sigsetjmp.
	# solves the problem of knowing whether to save the TOC pointer from r2 or the caller's stack frame.
__setjmp_toc:
	# 0) store IP into 0, then into the jmpbuf pointed to by r3 (first arg)
	mflr  0
	std   0,  0*8(3)
	# 1) store cr
	mfcr  0
	std   0,  1*8(3)
	# 2) store SP and TOC
	std   1,  2*8(3)
	std   5,  3*8(3)
	# 3) store r14-31
	std  14,  4*8(3)
	std  15,  5*8(3)
	std  16,  6*8(3)
	std  17,  7*8(3)
	std  18,  8*8(3)
	std  19,  9*8(3)
	std  20, 10*8(3)
	std  21, 11*8(3)
	std  22, 12*8(3)
	std  23, 13*8(3)
	std  24, 14*8(3)
	std  25, 15*8(3)
	std  26, 16*8(3)
	std  27, 17*8(3)
	std  28, 18*8(3)
	std  29, 19*8(3)
	std  30, 20*8(3)
	std  31, 21*8(3)
	# 4) store floating point registers f14-f31
	stfd 14, 22*8(3)
	stfd 15, 23*8(3)
	stfd 16, 24*8(3)
	stfd 17, 25*8(3)
	stfd 18, 26*8(3)
	stfd 19, 27*8(3)
	stfd 20, 28*8(3)
	stfd 21, 29*8(3)
	stfd 22, 30*8(3)
	stfd 23, 31*8(3)
	stfd 24, 32*8(3)
	stfd 25, 33*8(3)
	stfd 26, 34*8(3)
	stfd 27, 35*8(3)
	stfd 28, 36*8(3)
	stfd 29, 37*8(3)
	stfd 30, 38*8(3)
	stfd 31, 39*8(3)

	# 5) store vector registers v20-v31 if hardware supports AltiVec
	mflr 0
	bl 1f
	.hidden __hwcap
	.long __hwcap-.
1:	mflr 4
	lwz 5, 0(4)
	add 4, 4, 5
	ld 4, 0(4)
	andis. 4, 4, 0x1000
	beq 1f
	addi  3, 3, 40*8
	stvx 20, 0, 3 ; addi 3, 3, 16
	stvx 21, 0, 3 ; addi 3, 3, 16
	stvx 22, 0, 3 ; addi 3, 3, 16
	stvx 23, 0, 3 ; addi 3, 3, 16
	stvx 24, 0, 3 ; addi 3, 3, 16
	stvx 25, 0, 3 ; addi 3, 3, 16
	stvx 26, 0, 3 ; addi 3, 3, 16
	stvx 27, 0, 3 ; addi 3, 3, 16
	stvx 28, 0, 3 ; addi 3, 3, 16
	stvx 29, 0, 3 ; addi 3, 3, 16
	stvx 30, 0, 3 ; addi 3, 3, 16
	stvx 31, 0, 3
1:	mtlr 0

	# 6) return 0
	li 3, 0
	blr
debug log:

solving 32853693 ...
found 32853693 in https://inbox.vuxu.org/musl/20211206234358.2174444-1-stijn@linux-ipv6.be/
found 37683fda in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 37683fdaf49004979444c940a303f654d37c2e5a	src/setjmp/powerpc64/setjmp.s

applying [1/1] https://inbox.vuxu.org/musl/20211206234358.2174444-1-stijn@linux-ipv6.be/
diff --git a/src/setjmp/powerpc64/setjmp.s b/src/setjmp/powerpc64/setjmp.s
index 37683fda..32853693 100644

Checking patch src/setjmp/powerpc64/setjmp.s...
Applied patch src/setjmp/powerpc64/setjmp.s cleanly.

index at:
100644 32853693b020bfe103fa9c9e776827e7e0c69ad3	src/setjmp/powerpc64/setjmp.s

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).