blob: a55fc7d49983fe331eecf5f931a4790af6d6de63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/types.h>
2#include <linux/errno.h>
3#include <asm/uaccess.h>
4
Kumar Galad2b194e2008-06-04 02:59:29 -05005#include <asm/sfp-machine.h>
6#include <math-emu/soft-fp.h>
7#include <math-emu/double.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9int
10fsqrt(void *frD, void *frB)
11{
12 FP_DECL_D(B);
13 FP_DECL_D(R);
Kumar Galad2b194e2008-06-04 02:59:29 -050014 FP_DECL_EX;
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#ifdef DEBUG
Harvey Harrisone48b1b42008-03-29 08:21:07 +110017 printk("%s: %p %p %p %p\n", __func__, frD, frB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#endif
19
Kumar Galad2b194e2008-06-04 02:59:29 -050020 FP_UNPACK_DP(B, frB);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#ifdef DEBUG
23 printk("B: %ld %lu %lu %ld (%ld)\n", B_s, B_f1, B_f0, B_e, B_c);
24#endif
25
26 if (B_s && B_c != FP_CLS_ZERO)
Liu Yu033b8a32008-10-28 11:50:20 +080027 FP_SET_EXCEPTION(EFLAG_VXSQRT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 if (B_c == FP_CLS_NAN)
Liu Yu033b8a32008-10-28 11:50:20 +080029 FP_SET_EXCEPTION(EFLAG_VXSNAN);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31 FP_SQRT_D(R, B);
32
33#ifdef DEBUG
34 printk("R: %ld %lu %lu %ld (%ld)\n", R_s, R_f1, R_f0, R_e, R_c);
35#endif
36
Kumar Galad2b194e2008-06-04 02:59:29 -050037 __FP_PACK_D(frD, R);
38
39 return FP_CUR_EXCEPTIONS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}