1570af302Sopenharmony_ci#define ELF_NGREG    45
2570af302Sopenharmony_ci#define ELF_NFPREG   34
3570af302Sopenharmony_ci
4570af302Sopenharmony_cistruct user_regs_struct {
5570af302Sopenharmony_ci	unsigned long regs[32];
6570af302Sopenharmony_ci	unsigned long orig_a0;
7570af302Sopenharmony_ci	unsigned long csr_era;
8570af302Sopenharmony_ci	unsigned long csr_badv;
9570af302Sopenharmony_ci	unsigned long reserved[10];
10570af302Sopenharmony_ci};
11570af302Sopenharmony_ci
12570af302Sopenharmony_cistruct user_fp_struct {
13570af302Sopenharmony_ci	unsigned long fpr[32];
14570af302Sopenharmony_ci	unsigned long fcc;
15570af302Sopenharmony_ci	unsigned int fcsr;
16570af302Sopenharmony_ci};
17570af302Sopenharmony_ci
18570af302Sopenharmony_citypedef unsigned long elf_greg_t, elf_gregset_t[ELF_NGREG];
19570af302Sopenharmony_ci
20570af302Sopenharmony_citypedef union {
21570af302Sopenharmony_ci	double d;
22570af302Sopenharmony_ci	float f;
23570af302Sopenharmony_ci} elf_fpreg_t;
24570af302Sopenharmony_citypedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
25