stfs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.stfs.c 1.6 05/17/01 18:14:23 cort
  3.  */
  4. #include <linux/types.h>
  5. #include <linux/errno.h>
  6. #include <asm/uaccess.h>
  7. #include "soft-fp.h"
  8. #include "double.h"
  9. #include "single.h"
  10. int
  11. stfs(void *frS, void *ea)
  12. {
  13. FP_DECL_D(A);
  14. FP_DECL_S(R);
  15. float f;
  16. int err;
  17. #ifdef DEBUG
  18. printk("%s: S %p, ea %pn", __FUNCTION__, frS, ea);
  19. #endif
  20. __FP_UNPACK_D(A, frS);
  21. #ifdef DEBUG
  22. printk("A: %ld %lu %lu %ld (%ld)n", A_s, A_f1, A_f0, A_e, A_c);
  23. #endif
  24. FP_CONV(S, D, 1, 2, R, A);
  25. #ifdef DEBUG
  26. printk("R: %ld %lu %ld (%ld)n", R_s, R_f, R_e, R_c);
  27. #endif
  28. err = _FP_PACK_CANONICAL(S, 1, R);
  29. if (!err || !__FPU_TRAP_P(err)) {
  30. __FP_PACK_RAW_1(S, &f, R);
  31. if (copy_to_user(ea, &f, sizeof(float)))
  32. return -EFAULT;
  33. }
  34. return err;
  35. }