mailing list of musl libc
 help / color / mirror / code / Atom feed
772b3aa093ce06a684651f4ffcdf250135ef159c blob 1504 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
48
49
50
51
52
53
54
55
56
57
58
59
60
 
#include <endian.h>

#if __mips_isa_rev >= 6
#define ISA_SUFFIX "r6"
#else
#define ISA_SUFFIX ""
#endif

#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" ISA_SUFFIX 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 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" )

/*
 * When compiled for microMIPS, .align makes sure that .gpword
 * is placed at word boundary. $ra must point to first .gpword.
 * ISA bit of $ra must be cleared for microMIPS before using it
 * as a base address. For MIPS, ISA bit is always zero.
*/
#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym "\n" \
	".set push \n" \
	".set noreorder \n" \
	"	.align 2 \n" \
	"	bal 1f \n" \
	"	 nop \n" \
	"	.gpword . \n" \
	"	.gpword " #sym " \n" \
	"1:	ins $ra, $0, 0, 1 \n" \
	"	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 772b3aa ...
found 772b3aa in https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2CAB5@PUMAIL01.pu.imgtec.org/ ||
	https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2DC38@PUMAIL01.pu.imgtec.org/
found b3d59a4 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 b3d59a45ca2c8022f6f92cefe463851ba09c8179	arch/mips/reloc.h

applying [1/2] https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2CAB5@PUMAIL01.pu.imgtec.org/
diff --git a/arch/mips/reloc.h b/arch/mips/reloc.h
index b3d59a4..772b3aa 100644

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

skipping https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2DC38@PUMAIL01.pu.imgtec.org/ for 772b3aa
index at:
100644 772b3aa093ce06a684651f4ffcdf250135ef159c	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).