]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/LibC/Softfloat/templates/softfloat-specialize
StdLib/LibC: Add software floating point library from NetBSD
[mirror_edk2.git] / StdLib / LibC / Softfloat / templates / softfloat-specialize
diff --git a/StdLib/LibC/Softfloat/templates/softfloat-specialize b/StdLib/LibC/Softfloat/templates/softfloat-specialize
new file mode 100644 (file)
index 0000000..d8b2500
--- /dev/null
@@ -0,0 +1,464 @@
+\r
+/*\r
+===============================================================================\r
+\r
+This C source fragment is part of the SoftFloat IEC/IEEE Floating-point\r
+Arithmetic Package, Release 2a.\r
+\r
+Written by John R. Hauser.  This work was made possible in part by the\r
+International Computer Science Institute, located at Suite 600, 1947 Center\r
+Street, Berkeley, California 94704.  Funding was partially provided by the\r
+National Science Foundation under grant MIP-9311980.  The original version\r
+of this code was written as part of a project to build a fixed-point vector\r
+processor in collaboration with the University of California at Berkeley,\r
+overseen by Profs. Nelson Morgan and John Wawrzynek.  More information\r
+is available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/\r
+arithmetic/SoftFloat.html'.\r
+\r
+THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort\r
+has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT\r
+TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO\r
+PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY\r
+AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.\r
+\r
+Derivative works are acceptable, even for commercial purposes, so long as\r
+(1) they include prominent notice that the work is derivative, and (2) they\r
+include prominent notice akin to these four paragraphs for those parts of\r
+this code that are retained.\r
+\r
+===============================================================================\r
+*/\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Underflow tininess-detection mode, statically initialized to default value.\r
+(The declaration in `softfloat.h' must match the `int8' type here.)\r
+-------------------------------------------------------------------------------\r
+*/\r
+int8 float_detect_tininess = float_tininess_after_rounding;\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Raises the exceptions specified by `flags'.  Floating-point traps can be\r
+defined here if desired.  It is currently not possible for such a trap to\r
+substitute a result value.  If traps are not implemented, this routine\r
+should be simply `float_exception_flags |= flags;'.\r
+-------------------------------------------------------------------------------\r
+*/\r
+void float_raise( int8 flags )\r
+{\r
+\r
+    float_exception_flags |= flags;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Internal canonical NaN format.\r
+-------------------------------------------------------------------------------\r
+*/\r
+typedef struct {\r
+    flag sign;\r
+    bits64 high, low;\r
+} commonNaNT;\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+The pattern for a default generated single-precision NaN.\r
+-------------------------------------------------------------------------------\r
+*/\r
+#define float32_default_nan 0xFFFFFFFF\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the single-precision floating-point value `a' is a NaN;\r
+otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float32_is_nan( float32 a )\r
+{\r
+\r
+    return ( 0xFF000000 < (bits32) ( a<<1 ) );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the single-precision floating-point value `a' is a signaling\r
+NaN; otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float32_is_signaling_nan( float32 a )\r
+{\r
+\r
+    return ( ( ( a>>22 ) & 0x1FF ) == 0x1FE ) && ( a & 0x003FFFFF );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the single-precision floating-point NaN\r
+`a' to the canonical NaN format.  If `a' is a signaling NaN, the invalid\r
+exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static commonNaNT float32ToCommonNaN( float32 a )\r
+{\r
+    commonNaNT z;\r
+\r
+    if ( float32_is_signaling_nan( a ) ) float_raise( float_flag_invalid );\r
+    z.sign = a>>31;\r
+    z.low = 0;\r
+    z.high = ( (bits64) a )<<41;\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the canonical NaN `a' to the single-\r
+precision floating-point format.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float32 commonNaNToFloat32( commonNaNT a )\r
+{\r
+\r
+    return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Takes two single-precision floating-point values `a' and `b', one of which\r
+is a NaN, and returns the appropriate NaN result.  If either `a' or `b' is a\r
+signaling NaN, the invalid exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float32 propagateFloat32NaN( float32 a, float32 b )\r
+{\r
+    flag aIsNaN, aIsSignalingNaN, bIsNaN, bIsSignalingNaN;\r
+\r
+    aIsNaN = float32_is_nan( a );\r
+    aIsSignalingNaN = float32_is_signaling_nan( a );\r
+    bIsNaN = float32_is_nan( b );\r
+    bIsSignalingNaN = float32_is_signaling_nan( b );\r
+    a |= 0x00400000;\r
+    b |= 0x00400000;\r
+    if ( aIsSignalingNaN | bIsSignalingNaN ) float_raise( float_flag_invalid );\r
+    if ( aIsNaN ) {\r
+        return ( aIsSignalingNaN & bIsNaN ) ? b : a;\r
+    }\r
+    else {\r
+        return b;\r
+    }\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+The pattern for a default generated double-precision NaN.\r
+-------------------------------------------------------------------------------\r
+*/\r
+#define float64_default_nan LIT64( 0xFFFFFFFFFFFFFFFF )\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the double-precision floating-point value `a' is a NaN;\r
+otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float64_is_nan( float64 a )\r
+{\r
+\r
+    return ( LIT64( 0xFFE0000000000000 ) < (bits64) ( a<<1 ) );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the double-precision floating-point value `a' is a signaling\r
+NaN; otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float64_is_signaling_nan( float64 a )\r
+{\r
+\r
+    return\r
+           ( ( ( a>>51 ) & 0xFFF ) == 0xFFE )\r
+        && ( a & LIT64( 0x0007FFFFFFFFFFFF ) );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the double-precision floating-point NaN\r
+`a' to the canonical NaN format.  If `a' is a signaling NaN, the invalid\r
+exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static commonNaNT float64ToCommonNaN( float64 a )\r
+{\r
+    commonNaNT z;\r
+\r
+    if ( float64_is_signaling_nan( a ) ) float_raise( float_flag_invalid );\r
+    z.sign = a>>63;\r
+    z.low = 0;\r
+    z.high = a<<12;\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the canonical NaN `a' to the double-\r
+precision floating-point format.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float64 commonNaNToFloat64( commonNaNT a )\r
+{\r
+\r
+    return\r
+          ( ( (bits64) a.sign )<<63 )\r
+        | LIT64( 0x7FF8000000000000 )\r
+        | ( a.high>>12 );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Takes two double-precision floating-point values `a' and `b', one of which\r
+is a NaN, and returns the appropriate NaN result.  If either `a' or `b' is a\r
+signaling NaN, the invalid exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float64 propagateFloat64NaN( float64 a, float64 b )\r
+{\r
+    flag aIsNaN, aIsSignalingNaN, bIsNaN, bIsSignalingNaN;\r
+\r
+    aIsNaN = float64_is_nan( a );\r
+    aIsSignalingNaN = float64_is_signaling_nan( a );\r
+    bIsNaN = float64_is_nan( b );\r
+    bIsSignalingNaN = float64_is_signaling_nan( b );\r
+    a |= LIT64( 0x0008000000000000 );\r
+    b |= LIT64( 0x0008000000000000 );\r
+    if ( aIsSignalingNaN | bIsSignalingNaN ) float_raise( float_flag_invalid );\r
+    if ( aIsNaN ) {\r
+        return ( aIsSignalingNaN & bIsNaN ) ? b : a;\r
+    }\r
+    else {\r
+        return b;\r
+    }\r
+\r
+}\r
+\r
+#ifdef FLOATX80\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+The pattern for a default generated extended double-precision NaN.  The\r
+`high' and `low' values hold the most- and least-significant bits,\r
+respectively.\r
+-------------------------------------------------------------------------------\r
+*/\r
+#define floatx80_default_nan_high 0xFFFF\r
+#define floatx80_default_nan_low  LIT64( 0xFFFFFFFFFFFFFFFF )\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the extended double-precision floating-point value `a' is a\r
+NaN; otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag floatx80_is_nan( floatx80 a )\r
+{\r
+\r
+    return ( ( a.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( a.low<<1 );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the extended double-precision floating-point value `a' is a\r
+signaling NaN; otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag floatx80_is_signaling_nan( floatx80 a )\r
+{\r
+    bits64 aLow;\r
+\r
+    aLow = a.low & ~ LIT64( 0x4000000000000000 );\r
+    return\r
+           ( ( a.high & 0x7FFF ) == 0x7FFF )\r
+        && (bits64) ( aLow<<1 )\r
+        && ( a.low == aLow );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the extended double-precision floating-\r
+point NaN `a' to the canonical NaN format.  If `a' is a signaling NaN, the\r
+invalid exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static commonNaNT floatx80ToCommonNaN( floatx80 a )\r
+{\r
+    commonNaNT z;\r
+\r
+    if ( floatx80_is_signaling_nan( a ) ) float_raise( float_flag_invalid );\r
+    z.sign = a.high>>15;\r
+    z.low = 0;\r
+    z.high = a.low<<1;\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the canonical NaN `a' to the extended\r
+double-precision floating-point format.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static floatx80 commonNaNToFloatx80( commonNaNT a )\r
+{\r
+    floatx80 z;\r
+\r
+    z.low = LIT64( 0xC000000000000000 ) | ( a.high>>1 );\r
+    z.high = ( ( (bits16) a.sign )<<15 ) | 0x7FFF;\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Takes two extended double-precision floating-point values `a' and `b', one\r
+of which is a NaN, and returns the appropriate NaN result.  If either `a' or\r
+`b' is a signaling NaN, the invalid exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static floatx80 propagateFloatx80NaN( floatx80 a, floatx80 b )\r
+{\r
+    flag aIsNaN, aIsSignalingNaN, bIsNaN, bIsSignalingNaN;\r
+\r
+    aIsNaN = floatx80_is_nan( a );\r
+    aIsSignalingNaN = floatx80_is_signaling_nan( a );\r
+    bIsNaN = floatx80_is_nan( b );\r
+    bIsSignalingNaN = floatx80_is_signaling_nan( b );\r
+    a.low |= LIT64( 0xC000000000000000 );\r
+    b.low |= LIT64( 0xC000000000000000 );\r
+    if ( aIsSignalingNaN | bIsSignalingNaN ) float_raise( float_flag_invalid );\r
+    if ( aIsNaN ) {\r
+        return ( aIsSignalingNaN & bIsNaN ) ? b : a;\r
+    }\r
+    else {\r
+        return b;\r
+    }\r
+\r
+}\r
+\r
+#endif\r
+\r
+#ifdef FLOAT128\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+The pattern for a default generated quadruple-precision NaN.  The `high' and\r
+`low' values hold the most- and least-significant bits, respectively.\r
+-------------------------------------------------------------------------------\r
+*/\r
+#define float128_default_nan_high LIT64( 0xFFFFFFFFFFFFFFFF )\r
+#define float128_default_nan_low  LIT64( 0xFFFFFFFFFFFFFFFF )\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the quadruple-precision floating-point value `a' is a NaN;\r
+otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float128_is_nan( float128 a )\r
+{\r
+\r
+    return\r
+           ( LIT64( 0xFFFE000000000000 ) <= (bits64) ( a.high<<1 ) )\r
+        && ( a.low || ( a.high & LIT64( 0x0000FFFFFFFFFFFF ) ) );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns 1 if the quadruple-precision floating-point value `a' is a\r
+signaling NaN; otherwise returns 0.\r
+-------------------------------------------------------------------------------\r
+*/\r
+flag float128_is_signaling_nan( float128 a )\r
+{\r
+\r
+    return\r
+           ( ( ( a.high>>47 ) & 0xFFFF ) == 0xFFFE )\r
+        && ( a.low || ( a.high & LIT64( 0x00007FFFFFFFFFFF ) ) );\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the quadruple-precision floating-point NaN\r
+`a' to the canonical NaN format.  If `a' is a signaling NaN, the invalid\r
+exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static commonNaNT float128ToCommonNaN( float128 a )\r
+{\r
+    commonNaNT z;\r
+\r
+    if ( float128_is_signaling_nan( a ) ) float_raise( float_flag_invalid );\r
+    z.sign = a.high>>63;\r
+    shortShift128Left( a.high, a.low, 16, &z.high, &z.low );\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Returns the result of converting the canonical NaN `a' to the quadruple-\r
+precision floating-point format.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float128 commonNaNToFloat128( commonNaNT a )\r
+{\r
+    float128 z;\r
+\r
+    shift128Right( a.high, a.low, 16, &z.high, &z.low );\r
+    z.high |= ( ( (bits64) a.sign )<<63 ) | LIT64( 0x7FFF800000000000 );\r
+    return z;\r
+\r
+}\r
+\r
+/*\r
+-------------------------------------------------------------------------------\r
+Takes two quadruple-precision floating-point values `a' and `b', one of\r
+which is a NaN, and returns the appropriate NaN result.  If either `a' or\r
+`b' is a signaling NaN, the invalid exception is raised.\r
+-------------------------------------------------------------------------------\r
+*/\r
+static float128 propagateFloat128NaN( float128 a, float128 b )\r
+{\r
+    flag aIsNaN, aIsSignalingNaN, bIsNaN, bIsSignalingNaN;\r
+\r
+    aIsNaN = float128_is_nan( a );\r
+    aIsSignalingNaN = float128_is_signaling_nan( a );\r
+    bIsNaN = float128_is_nan( b );\r
+    bIsSignalingNaN = float128_is_signaling_nan( b );\r
+    a.high |= LIT64( 0x0000800000000000 );\r
+    b.high |= LIT64( 0x0000800000000000 );\r
+    if ( aIsSignalingNaN | bIsSignalingNaN ) float_raise( float_flag_invalid );\r
+    if ( aIsNaN ) {\r
+        return ( aIsSignalingNaN & bIsNaN ) ? b : a;\r
+    }\r
+    else {\r
+        return b;\r
+    }\r
+\r
+}\r
+\r
+#endif\r
+\r