Lines Matching refs:sh_fpu_soft_struct
81 fcmp_gt(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fcmp_gt()
92 fcmp_eq(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fcmp_eq()
108 fadd(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fadd()
115 fsub(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fsub()
122 fmul(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fmul()
129 fdiv(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fdiv()
136 fmac(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fmac()
157 fmov_idx_reg(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_idx_reg()
173 fmov_mem_reg(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_mem_reg()
189 fmov_inc_reg(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_inc_reg()
207 fmov_reg_idx(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_reg_idx()
223 fmov_reg_mem(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_reg_mem()
239 fmov_reg_dec(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_reg_dec()
257 fmov_reg_reg(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, in fmov_reg_reg()
272 fnop_mn(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int m, int n) in fnop_mn()
278 #define NOTYETn(i) static int i(struct sh_fpu_soft_struct *fregs, int n) \
291 static int ffloat(struct sh_fpu_soft_struct *fregs, int n)
307 static int ftrc(struct sh_fpu_soft_struct *fregs, int n) in ftrc()
319 static int fcnvsd(struct sh_fpu_soft_struct *fregs, int n) in fcnvsd()
330 static int fcnvds(struct sh_fpu_soft_struct *fregs, int n) in fcnvds()
341 static int fxchg(struct sh_fpu_soft_struct *fregs, int flag) in fxchg()
347 static int fsts(struct sh_fpu_soft_struct *fregs, int n) in fsts()
353 static int flds(struct sh_fpu_soft_struct *fregs, int n) in flds()
359 static int fneg(struct sh_fpu_soft_struct *fregs, int n) in fneg()
365 static int fabs(struct sh_fpu_soft_struct *fregs, int n) in fabs()
371 static int fld0(struct sh_fpu_soft_struct *fregs, int n) in fld0()
377 static int fld1(struct sh_fpu_soft_struct *fregs, int n) in fld1()
383 static int fnop_n(struct sh_fpu_soft_struct *fregs, int n) in fnop_n()
390 static int id_fxfd(struct sh_fpu_soft_struct *, int);
391 static int id_fnxd(struct sh_fpu_soft_struct *, struct pt_regs *, int, int);
393 static int (*fnxd[])(struct sh_fpu_soft_struct *, int) = {
398 static int (*fnmx[])(struct sh_fpu_soft_struct *, struct pt_regs *, int, int) = {
403 static int id_fxfd(struct sh_fpu_soft_struct *fregs, int x) in id_fxfd()
420 id_fnxd(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, int x, int n) in id_fnxd()
426 id_fnmx(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, u16 code) in id_fnmx()
433 id_sys(struct sh_fpu_soft_struct *fregs, struct pt_regs *regs, u16 code) in id_sys()
464 static int fpu_emulate(u16 code, struct sh_fpu_soft_struct *fregs, struct pt_regs *regs) in fpu_emulate()
476 static void fpu_init(struct sh_fpu_soft_struct *fpu) in fpu_init()
497 struct sh_fpu_soft_struct *fpu = &(tsk->thread.xstate->softfpu); in do_fpu_inst()