mailing list of musl libc
 help / color / mirror / code / Atom feed
10e1be454a4c8cd6dcbf421a58bc182bebc40c0a blob 660 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
 
#define ELF_NGREG    45
#define ELF_NFPREG   34

struct user_regs_struct {
	unsigned long regs[32];
	unsigned long orig_a0;
	unsigned long csr_era;
	unsigned long csr_badv;
	unsigned long reserved[10];
};

struct user_fp_struct {
	unsigned long fpr[32];
	unsigned long fcc;
	unsigned int fcsr;
};

typedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];

typedef union {
	double d;
	float f;
} elf_fpreg_t;
typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];

typedef union
{
	double d[2];
	float f[4];
} elf_lsxregset_t[32] __attribute__((__aligned__(16)));

typedef union
{
	double d[4];
	float f[8];
} elf_lasxregset_t[32] __attribute__((__aligned__(32)));
debug log:

solving 10e1be45 ...
found 10e1be45 in https://inbox.vuxu.org/musl/20240910011757.1419511-1-lixing@loongson.cn/ ||
	https://inbox.vuxu.org/musl/5d282498-7300-645f-33e6-c1f725f9e8ff@loongson.cn/
found fd9b7b22 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 fd9b7b22e6b13b929bb8e661f4d8d689c12233a4	arch/loongarch64/bits/user.h

applying [1/2] https://inbox.vuxu.org/musl/20240910011757.1419511-1-lixing@loongson.cn/
diff --git a/arch/loongarch64/bits/user.h b/arch/loongarch64/bits/user.h
index fd9b7b22..10e1be45 100644

Checking patch arch/loongarch64/bits/user.h...
Applied patch arch/loongarch64/bits/user.h cleanly.

skipping https://inbox.vuxu.org/musl/5d282498-7300-645f-33e6-c1f725f9e8ff@loongson.cn/ for 10e1be45
index at:
100644 10e1be454a4c8cd6dcbf421a58bc182bebc40c0a	arch/loongarch64/bits/user.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).