Blame sysdeps/ia64/fpu/s_roundl.S

Packit 6c4009
.file "roundl.s"
Packit 6c4009
Packit 6c4009
Packit 6c4009
// Copyright (c) 2000 - 2003, Intel Corporation
Packit 6c4009
// All rights reserved.
Packit 6c4009
//
Packit 6c4009
// Contributed 2000 by the Intel Numerics Group, Intel Corporation
Packit 6c4009
//
Packit 6c4009
// Redistribution and use in source and binary forms, with or without
Packit 6c4009
// modification, are permitted provided that the following conditions are
Packit 6c4009
// met:
Packit 6c4009
//
Packit 6c4009
// * Redistributions of source code must retain the above copyright
Packit 6c4009
// notice, this list of conditions and the following disclaimer.
Packit 6c4009
//
Packit 6c4009
// * Redistributions in binary form must reproduce the above copyright
Packit 6c4009
// notice, this list of conditions and the following disclaimer in the
Packit 6c4009
// documentation and/or other materials provided with the distribution.
Packit 6c4009
//
Packit 6c4009
// * The name of Intel Corporation may not be used to endorse or promote
Packit 6c4009
// products derived from this software without specific prior written
Packit 6c4009
// permission.
Packit 6c4009
Packit 6c4009
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 6c4009
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 6c4009
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 6c4009
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR ITS
Packit 6c4009
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit 6c4009
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit 6c4009
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit 6c4009
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
Packit 6c4009
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY OR TORT (INCLUDING
Packit 6c4009
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit 6c4009
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 6c4009
//
Packit 6c4009
// Intel Corporation is the author of this code, and requests that all
Packit 6c4009
// problem reports or change requests be submitted to it directly at
Packit 6c4009
// http://www.intel.com/software/products/opensource/libraries/num.htm.
Packit 6c4009
//
Packit 6c4009
// History
Packit 6c4009
//==============================================================
Packit 6c4009
// 10/25/00 Initial version
Packit 6c4009
// 06/14/01 Changed cmp to an equivalent form
Packit 6c4009
// 05/20/02 Cleaned up namespace and sf0 syntax
Packit 6c4009
// 01/20/03 Improved performance and reduced code size
Packit 6c4009
// 04/18/03 Eliminate possible WAW dependency warning
Packit 6c4009
// 09/03/03 Improved performance
Packit 6c4009
//==============================================================
Packit 6c4009
Packit 6c4009
// API
Packit 6c4009
//==============================================================
Packit 6c4009
// long double roundl(long double x)
Packit 6c4009
//==============================================================
Packit 6c4009
Packit 6c4009
// general input registers:
Packit 6c4009
// r14 - r18
Packit 6c4009
Packit 6c4009
rSignexp   = r14
Packit 6c4009
rExp       = r15
Packit 6c4009
rExpMask   = r16
Packit 6c4009
rBigexp    = r17
Packit 6c4009
rExpHalf   = r18
Packit 6c4009
Packit 6c4009
// floating-point registers:
Packit 6c4009
// f8 - f13
Packit 6c4009
Packit 6c4009
fXtruncInt = f9
Packit 6c4009
fNormX     = f10
Packit 6c4009
fHalf      = f11
Packit 6c4009
fInc       = f12
Packit 6c4009
fRem       = f13
Packit 6c4009
Packit 6c4009
// predicate registers used:
Packit 6c4009
// p6 - p10
Packit 6c4009
Packit 6c4009
// Overview of operation
Packit 6c4009
//==============================================================
Packit 6c4009
// long double roundl(long double x)
Packit 6c4009
// Return an integer value (represented as a long double) that is x
Packit 6c4009
// rounded to nearest integer, halfway cases rounded away from
Packit 6c4009
// zero.
Packit 6c4009
//  if x>0   result = trunc(x+0.5)
Packit 6c4009
//  if x<0   result = trunc(x-0.5)
Packit 6c4009
//
Packit 6c4009
//==============================================================
Packit 6c4009
Packit 6c4009
// double_extended
Packit 6c4009
// if the exponent is > 1003e => 3F(true) = 63(decimal)
Packit 6c4009
// we have a significand of 64 bits 1.63-bits.
Packit 6c4009
// If we multiply by 2^63, we no longer have a fractional part
Packit 6c4009
// So input is an integer value already.
Packit 6c4009
Packit 6c4009
// double
Packit 6c4009
// if the exponent is >= 10033 => 34(true) = 52(decimal)
Packit 6c4009
// 34 + 3ff = 433
Packit 6c4009
// we have a significand of 53 bits 1.52-bits. (implicit 1)
Packit 6c4009
// If we multiply by 2^52, we no longer have a fractional part
Packit 6c4009
// So input is an integer value already.
Packit 6c4009
Packit 6c4009
// single
Packit 6c4009
// if the exponent is > 10016 => 17(true) = 23(decimal)
Packit 6c4009
// we have a significand of 24 bits 1.23-bits. (implicit 1)
Packit 6c4009
// If we multiply by 2^23, we no longer have a fractional part
Packit 6c4009
// So input is an integer value already.
Packit 6c4009
Packit 6c4009
Packit 6c4009
.section .text
Packit 6c4009
GLOBAL_LIBM_ENTRY(roundl)
Packit 6c4009
Packit 6c4009
{ .mfi
Packit 6c4009
      getf.exp         rSignexp  = f8        // Get signexp, recompute if unorm
Packit 6c4009
      fcvt.fx.trunc.s1 fXtruncInt  = f8      // Convert to int in significand
Packit 6c4009
      addl             rBigexp = 0x1003e, r0 // Set exponent at which is integer
Packit 6c4009
}
Packit 6c4009
{ .mfi
Packit 6c4009
      mov              rExpHalf    = 0x0FFFE // Form sign and exponent of 0.5
Packit 6c4009
      fnorm.s1         fNormX  = f8          // Normalize input
Packit 6c4009
      mov              rExpMask    = 0x1FFFF // Form exponent mask
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mfi
Packit 6c4009
      setf.exp         fHalf = rExpHalf      // Form 0.5
Packit 6c4009
      fclass.m         p7,p0 = f8, 0x0b      // Test x unorm
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mfb
Packit 6c4009
      nop.m            0
Packit 6c4009
      fclass.m         p6,p0 = f8, 0x1e3     // Test x natval, nan, inf
Packit 6c4009
(p7)  br.cond.spnt     ROUND_UNORM           // Branch if x unorm
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
ROUND_COMMON:
Packit 6c4009
// Return here from ROUND_UNORM
Packit 6c4009
{ .mfb
Packit 6c4009
      nop.m            0
Packit 6c4009
      fcmp.lt.s1       p8,p9 = f8, f0        // Test if x < 0
Packit 6c4009
(p6)  br.cond.spnt     ROUND_SPECIAL         // Exit if x natval, nan, inf
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mfi
Packit 6c4009
      nop.m            0
Packit 6c4009
      fcvt.xf          f8 = fXtruncInt        // Pre-Result if 0.5 <= |x| < 2^63
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mfi
Packit 6c4009
      and              rExp = rSignexp, rExpMask // Get biased exponent
Packit 6c4009
      fmerge.s         fInc = fNormX, f1      // Form increment if |rem| >= 0.5
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mmi
Packit 6c4009
      cmp.lt           p6,p0 = rExp, rExpHalf // Is |x| < 0.5?
Packit 6c4009
      cmp.ge           p7,p0 = rExp, rBigexp  // Is |x| >= 2^63?
Packit 6c4009
      cmp.lt           p10,p0 = rExp, rExpHalf // Is |x| < 0.5?
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
// We must correct result if |x| < 0.5, or |x| >= 2^63
Packit 6c4009
.pred.rel "mutex",p6,p7
Packit 6c4009
{ .mfi
Packit 6c4009
      nop.m            0
Packit 6c4009
(p6)  fmerge.s         f8 = fNormX, f0        // If |x| < 0.5, result sgn(x)*0
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
{ .mfb
Packit 6c4009
(p7)  cmp.eq           p10,p0 = r0, r0        // Also turn on p10 if |x| >= 2^63
Packit 6c4009
(p7)  fma.s0           f8 = fNormX, f1, f0    // If |x| >= 2^63, result x
Packit 6c4009
(p10) br.ret.spnt      b0                     // Exit |x| < 0.5 or |x| >= 2^63
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
// Here if 0.5 <= |x| < 2^63
Packit 6c4009
{ .mfi
Packit 6c4009
      nop.m            0
Packit 6c4009
(p9)  fms.s1           fRem = fNormX, f1, f8  // Get remainder = x - trunc(x)
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
{ .mfi
Packit 6c4009
      nop.m            0
Packit 6c4009
(p8)  fms.s1           fRem = f8, f1, fNormX  // Get remainder = trunc(x) - x
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
{ .mfi
Packit 6c4009
      nop.m            0
Packit 6c4009
      fcmp.ge.s1       p9,p0 = fRem, fHalf    // Test |rem| >= 0.5
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
// If x < 0 and remainder <= -0.5, then subtract 1 from result
Packit 6c4009
// If x > 0 and remainder >= +0.5, then add 1 to result
Packit 6c4009
{ .mfb
Packit 6c4009
      nop.m            0
Packit 6c4009
(p9)  fma.s0           f8 = f8, f1, fInc
Packit 6c4009
      br.ret.sptk      b0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
Packit 6c4009
ROUND_SPECIAL:
Packit 6c4009
// Here if x natval, nan, inf
Packit 6c4009
{ .mfb
Packit 6c4009
      nop.m            0
Packit 6c4009
      fma.s0           f8 = f8, f1, f0
Packit 6c4009
      br.ret.sptk      b0
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
ROUND_UNORM:
Packit 6c4009
// Here if x unorm
Packit 6c4009
{ .mfi
Packit 6c4009
      getf.exp         rSignexp  = fNormX     // Get signexp, recompute if unorm
Packit 6c4009
      fcmp.eq.s0       p7,p0 = f8, f0         // Dummy op to set denormal flag
Packit 6c4009
      nop.i            0
Packit 6c4009
}
Packit 6c4009
{ .mfb
Packit 6c4009
      nop.m            0
Packit 6c4009
      fcvt.fx.trunc.s1 fXtruncInt  = fNormX   // Convert to int in significand
Packit 6c4009
      br.cond.sptk     ROUND_COMMON           // Return to main path
Packit 6c4009
}
Packit 6c4009
;;
Packit 6c4009
Packit 6c4009
GLOBAL_LIBM_END(roundl)
Packit 6c4009
libm_alias_ldouble_other (round, round)