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

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

#ifdef __mips_soft_float
#define FP_SUFFIX "-sf"
#else
#define FP_SUFFIX ""
#endif

#define LDSO_ARCH "mips" ENDIAN_SUFFIX FP_SUFFIX

#define TPOFF_K (-0x7000)

#define REL_SYM_OR_REL  R_MIPS_REL32
#define REL_PLT         R_MIPS_JUMP_SLOT
#define REL_COPY        R_MIPS_COPY
#define REL_DTPMOD      R_MIPS_TLS_DTPMOD32
#define REL_DTPOFF      R_MIPS_TLS_DTPREL32
#define REL_TPOFF       R_MIPS_TLS_TPREL32

#define NEED_MIPS_GOT_RELOCS 1
#define DYNAMIC_IS_RO 1
#define DT_DEBUG_INDIRECT DT_MIPS_RLD_MAP
#define ARCH_SYM_REJECT_UND(s) (!((s)->st_other & STO_MIPS_PLT))

#define CRTJMP(pc,sp) __asm__ __volatile__( \
	"move $sp,%1 ; jr %0" : : "r"(pc), "r"(sp) : "memory" )

#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym "\n" \
	".set push \n" \
	".set noreorder \n" \
	"	bal 1f \n" \
	"	 nop \n" \
	"	.gpword . \n" \
	"	.gpword " #sym " \n" \
	"1:	lw %0, ($ra) \n" \
	"	subu %0, $ra, %0 \n" \
	"	lw $ra, 4($ra) \n" \
	"	addu %0, %0, $ra \n" \
	".set pop \n" \
	: "=r"(*(fp)) : : "memory", "ra" )
debug log:

solving e9cb209 ...
found e9cb209 in https://inbox.vuxu.org/musl/1454184614-95536-1-git-send-email-nbd@openwrt.org/ ||
	https://inbox.vuxu.org/musl/1454178019-24877-1-git-send-email-nbd@openwrt.org/
found 9b40e3d in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 9b40e3da74b66f9978ddc0ca09a5a64f6420d2d9	arch/mips/reloc.h

applying [1/2] https://inbox.vuxu.org/musl/1454184614-95536-1-git-send-email-nbd@openwrt.org/
diff --git a/arch/mips/reloc.h b/arch/mips/reloc.h
index 9b40e3d..e9cb209 100644

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

skipping https://inbox.vuxu.org/musl/1454178019-24877-1-git-send-email-nbd@openwrt.org/ for e9cb209
index at:
100644 e9cb209e1d0ed079fd69977efc13629f7f4ff61e	arch/mips/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).