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

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

#define LDSO_ARCH "powerpc64" ENDIAN_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 ; mtlr %0 ; blr" : : "r"(pc), "r"(sp) : "memory" )

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

solving 8e60b31 ...
found 8e60b31 in https://inbox.vuxu.org/musl/1459113619-24090-3-git-send-email-koorogi@koorogi.info/

applying [1/1] https://inbox.vuxu.org/musl/1459113619-24090-3-git-send-email-koorogi@koorogi.info/
diff --git a/arch/powerpc64/reloc.h b/arch/powerpc64/reloc.h
new file mode 100644
index 0000000..8e60b31

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

index at:
100644 8e60b317dba35d9834a0ea7439beba95fed338cc	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).