fp_emu.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * fp_emu.h
  3.  *
  4.  * Copyright Roman Zippel, 1997.  All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, and the entire permission notice in its entirety,
  11.  *    including the disclaimer of warranties.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *    notice, this list of conditions and the following disclaimer in the
  14.  *    documentation and/or other materials provided with the distribution.
  15.  * 3. The name of the author may not be used to endorse or promote
  16.  *    products derived from this software without specific prior
  17.  *    written permission.
  18.  *
  19.  * ALTERNATIVELY, this product may be distributed under the terms of
  20.  * the GNU General Public License, in which case the provisions of the GPL are
  21.  * required INSTEAD OF the above restrictions.  (This clause is
  22.  * necessary due to a potential bad interaction between the GPL and
  23.  * the restrictions contained in a BSD-style copyright.)
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  26.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  27.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  28.  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  29.  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  30.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  31.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  33.  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  34.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  35.  * OF THE POSSIBILITY OF SUCH DAMAGE.
  36.  */
  37. #ifndef _FP_EMU_H
  38. #define _FP_EMU_H
  39. #ifdef __ASSEMBLY__
  40. #include "../kernel/m68k_defs.h"
  41. #endif
  42. #include <asm/math-emu.h>
  43. #ifndef __ASSEMBLY__
  44. #define IS_INF(a) ((a)->exp == 0x7fff)
  45. #define IS_ZERO(a) ((a)->mant.m64 == 0)
  46. #define fp_set_sr(bit) ({
  47. FPDATA->fpsr |= 1 << (bit);
  48. })
  49. #define fp_set_quotient(quotient) ({
  50. FPDATA->fpsr &= 0xff00ffff;
  51. FPDATA->fpsr |= ((quotient) & 0xff) << 16;
  52. })
  53. /* linkage for several useful functions */
  54. /* Normalize the extended struct, return 0 for a NaN */
  55. #define fp_normalize_ext(fpreg) ({
  56. register struct fp_ext *reg asm ("a0") = fpreg;
  57. register int res asm ("d0");
  58. asm volatile ("jsr fp_conv_ext2ext"
  59. : "=d" (res) : "a" (reg)
  60. : "a1", "d1", "d2", "memory");
  61. res;
  62. })
  63. #define fp_copy_ext(dest, src) ({
  64. *dest = *src;
  65. })
  66. #define fp_monadic_check(dest, src) ({
  67. fp_copy_ext(dest, src);
  68. if (!fp_normalize_ext(dest))
  69. return dest;
  70. })
  71. #define fp_dyadic_check(dest, src) ({
  72. if (!fp_normalize_ext(dest))
  73. return dest;
  74. if (!fp_normalize_ext(src)) {
  75. fp_copy_ext(dest, src);
  76. return dest;
  77. }
  78. })
  79. extern const struct fp_ext fp_QNaN;
  80. extern const struct fp_ext fp_Inf;
  81. #define fp_set_nan(dest) ({
  82. fp_set_sr(FPSR_EXC_OPERR);
  83. *dest = fp_QNaN;
  84. })
  85. /* TODO check rounding mode? */
  86. #define fp_set_ovrflw(dest) ({
  87. fp_set_sr(FPSR_EXC_OVFL);
  88. dest->exp = 0x7fff;
  89. dest->mant.m64 = 0;
  90. })
  91. #define fp_conv_ext2long(src) ({
  92. register struct fp_ext *__src asm ("a0") = src;
  93. register int __res asm ("d0");
  94. asm volatile ("jsr fp_conv_ext2long"
  95. : "=d" (__res) : "a" (__src)
  96. : "a1", "d1", "d2", "memory");
  97. __res;
  98. })
  99. #else /* __ASSEMBLY__ */
  100. /*
  101.  * set, reset or clear a bit in the fp status register
  102.  */
  103. .macro fp_set_sr bit
  104. bset #(bit&7),(FPD_FPSR+3-(bit/8),FPDATA)
  105. .endm
  106. .macro fp_clr_sr bit
  107. bclr #(bit&7),(FPD_FPSR+3-(bit/8),FPDATA)
  108. .endm
  109. .macro fp_tst_sr bit
  110. btst #(bit&7),(FPD_FPSR+3-(bit/8),FPDATA)
  111. .endm
  112. #endif /* __ASSEMBLY__ */
  113. #endif /* _FP_EMU_H */