mailing list of musl libc
 help / color / mirror / code / Atom feed
52daecb2740f46ff4d6c86c5482e782a74addbf7 blob 992 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
 
#include <endian.h>

#if __BYTE_ORDER == __LITTLE_ENDIAN
#define ENDIAN_SUFFIX "le"
#else
#define ENDIAN_SUFFIX ""
#endif

#if __LONG_DOUBLE_128__ && __LDBL_MANT_DIG__ == 113
#define FP_SUFFIX "-ieee128"
#else
#define FP_SUFFIX ""
#endif

#define LDSO_ARCH "powerpc64" ENDIAN_SUFFIX FP_SUFFIX

#define TPOFF_K (-0x7000)

#define REL_SYMBOLIC    R_PPC64_ADDR64
#define REL_GOT         R_PPC64_GLOB_DAT
#define REL_PLT         R_PPC64_JMP_SLOT
#define REL_RELATIVE    R_PPC64_RELATIVE
#define REL_COPY        R_PPC64_COPY
#define REL_DTPMOD      R_PPC64_DTPMOD64
#define REL_DTPOFF      R_PPC64_DTPREL64
#define REL_TPOFF       R_PPC64_TPREL64

#define CRTJMP(pc,sp) __asm__ __volatile__( \
	"mr 1,%1; mr 12,%0; mtctr 12; bctrl" : : "r"(pc), "r"(sp) : "memory" )

#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym " \n" \
	"	bl 1f \n" \
	"	.long " #sym "-. \n" \
	"1:	mflr %1 \n" \
	"	lwa %0, 0(%1) \n" \
	"	add %0, %0, %1 \n" \
	: "=r"(*(fp)), "=r"((long){0}) : : "memory", "lr" )
debug log:

solving 52daecb2 ...
found 52daecb2 in https://inbox.vuxu.org/musl/20190630193825.65174-1-samuel@sholland.org/
found faf70acd in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 faf70acd752c6f950ba6126cd09b75624fc0abf9	arch/powerpc64/reloc.h

applying [1/1] https://inbox.vuxu.org/musl/20190630193825.65174-1-samuel@sholland.org/
diff --git a/arch/powerpc64/reloc.h b/arch/powerpc64/reloc.h
index faf70acd..52daecb2 100644

Checking patch arch/powerpc64/reloc.h...
Applied patch arch/powerpc64/reloc.h cleanly.

index at:
100644 52daecb2740f46ff4d6c86c5482e782a74addbf7	arch/powerpc64/reloc.h

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).