mailing list of musl libc
 help / color / mirror / code / Atom feed
faf70acd752c6f950ba6126cd09b75624fc0abf9 blob 866 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; 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 faf70acd ...
found faf70acd 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).