mailing list of musl libc
 help / color / mirror / code / Atom feed
9b5a4d7f8c931d84abbbaee29b196fbef081d847 blob 2446 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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
 
#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" )

#if __mips_isa_rev < 6
#ifdef __mips_micromips
#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym "\n" \
	".set push \n" \
	".set noreorder \n" \
	"	.align 2 \n" \
	"	bal32 1f \n" \
	"	 nop32 \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" \
	"	ori %0, %0, 1 \n" \
	".set pop \n" \
	: "=r"(*(fp)) : : "memory", "ra" )
#else
#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" )
#endif
#else
#ifdef __mips_micromips
#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym "\n" \
	".set push \n" \
	".set noreorder \n" \
	"	.align 2 \n" \
	"	balc32 1f \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" \
	"	ori %0, %0, 1 \n" \
	".set pop \n" \
	: "=r"(*(fp)) : : "memory", "ra" )
#else
#define GETFUNCSYM(fp, sym, got) __asm__ ( \
	".hidden " #sym "\n" \
	".set push \n" \
	".set noreorder \n" \
	"	balc 1f \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" )
#endif
#endif
debug log:

solving 9b5a4d7 ...
found 9b5a4d7 in https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2BD60@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/1] https://inbox.vuxu.org/musl/BD7773622145634B952E5B54ACA8E349DAE2BD60@PUMAIL01.pu.imgtec.org/
diff --git a/arch/mips/reloc.h b/arch/mips/reloc.h
index b3d59a4..9b5a4d7 100644

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

index at:
100644 9b5a4d7f8c931d84abbbaee29b196fbef081d847	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).