mailing list of musl libc
 help / color / mirror / code / Atom feed
1b4cab36a60878c81bb20e06ea1fdc6e22d346df blob 787 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
 
#ifdef _SOFT_FLOAT
#define FP_SUFFIX "-sf"
#else
#define FP_SUFFIX ""
#endif

#define LDSO_ARCH "powerpc" FP_SUFFIX

#define TPOFF_K (-0x7000)

#define REL_SYMBOLIC    R_PPC_ADDR32
#define REL_GOT         R_PPC_GLOB_DAT
#define REL_PLT         R_PPC_JMP_SLOT
#define REL_RELATIVE    R_PPC_RELATIVE
#define REL_COPY        R_PPC_COPY
#define REL_DTPMOD      R_PPC_DTPMOD32
#define REL_DTPOFF      R_PPC_DTPREL32
#define REL_TPOFF       R_PPC_TPREL32

#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"((int){0}) : : "memory", "lr" )
debug log:

solving 1b4cab36 ...
found 1b4cab36 in https://git.vuxu.org/mirror/musl/

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