OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [libgcc/] [config/] [libbid/] [bid64_quantize.c] - Diff between revs 272 and 338

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 272 Rev 338
/* Copyright (C) 2007, 2009  Free Software Foundation, Inc.
/* Copyright (C) 2007, 2009  Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify it under
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
for more details.
 
 
Under Section 7 of GPL version 3, you are granted additional
Under Section 7 of GPL version 3, you are granted additional
permissions described in the GCC Runtime Library Exception, version
permissions described in the GCC Runtime Library Exception, version
3.1, as published by the Free Software Foundation.
3.1, as published by the Free Software Foundation.
 
 
You should have received a copy of the GNU General Public License and
You should have received a copy of the GNU General Public License and
a copy of the GCC Runtime Library Exception along with this program;
a copy of the GCC Runtime Library Exception along with this program;
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include "bid_internal.h"
#include "bid_internal.h"
 
 
#define MAX_FORMAT_DIGITS     16
#define MAX_FORMAT_DIGITS     16
#define DECIMAL_EXPONENT_BIAS 398
#define DECIMAL_EXPONENT_BIAS 398
#define MAX_DECIMAL_EXPONENT  767
#define MAX_DECIMAL_EXPONENT  767
 
 
#if DECIMAL_CALL_BY_REFERENCE
#if DECIMAL_CALL_BY_REFERENCE
 
 
void
void
bid64_quantize (UINT64 * pres, UINT64 * px,
bid64_quantize (UINT64 * pres, UINT64 * px,
                UINT64 *
                UINT64 *
                py _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
                py _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
                _EXC_INFO_PARAM) {
                _EXC_INFO_PARAM) {
  UINT64 x, y;
  UINT64 x, y;
#else
#else
 
 
UINT64
UINT64
bid64_quantize (UINT64 x,
bid64_quantize (UINT64 x,
                UINT64 y _RND_MODE_PARAM _EXC_FLAGS_PARAM
                UINT64 y _RND_MODE_PARAM _EXC_FLAGS_PARAM
                _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
                _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
#endif
#endif
  UINT128 CT;
  UINT128 CT;
  UINT64 sign_x, sign_y, coefficient_x, coefficient_y, remainder_h, C64,
  UINT64 sign_x, sign_y, coefficient_x, coefficient_y, remainder_h, C64,
    valid_x;
    valid_x;
  UINT64 tmp, carry, res;
  UINT64 tmp, carry, res;
  int_float tempx;
  int_float tempx;
  int exponent_x, exponent_y, digits_x, extra_digits, amount, amount2;
  int exponent_x, exponent_y, digits_x, extra_digits, amount, amount2;
  int expon_diff, total_digits, bin_expon_cx;
  int expon_diff, total_digits, bin_expon_cx;
  unsigned rmode, status;
  unsigned rmode, status;
 
 
#if DECIMAL_CALL_BY_REFERENCE
#if DECIMAL_CALL_BY_REFERENCE
#if !DECIMAL_GLOBAL_ROUNDING
#if !DECIMAL_GLOBAL_ROUNDING
  _IDEC_round rnd_mode = *prnd_mode;
  _IDEC_round rnd_mode = *prnd_mode;
#endif
#endif
  x = *px;
  x = *px;
  y = *py;
  y = *py;
#endif
#endif
 
 
  valid_x = unpack_BID64 (&sign_x, &exponent_x, &coefficient_x, x);
  valid_x = unpack_BID64 (&sign_x, &exponent_x, &coefficient_x, x);
  // unpack arguments, check for NaN or Infinity
  // unpack arguments, check for NaN or Infinity
  if (!unpack_BID64 (&sign_y, &exponent_y, &coefficient_y, y)) {
  if (!unpack_BID64 (&sign_y, &exponent_y, &coefficient_y, y)) {
    // Inf. or NaN or 0
    // Inf. or NaN or 0
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
    if ((x & SNAN_MASK64) == SNAN_MASK64)       // y is sNaN
    if ((x & SNAN_MASK64) == SNAN_MASK64)       // y is sNaN
      __set_status_flags (pfpsf, INVALID_EXCEPTION);
      __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
 
 
    // x=Inf, y=Inf?
    // x=Inf, y=Inf?
    if (((coefficient_x << 1) == 0xf000000000000000ull)
    if (((coefficient_x << 1) == 0xf000000000000000ull)
        && ((coefficient_y << 1) == 0xf000000000000000ull)) {
        && ((coefficient_y << 1) == 0xf000000000000000ull)) {
      res = coefficient_x;
      res = coefficient_x;
      BID_RETURN (res);
      BID_RETURN (res);
    }
    }
    // Inf or NaN?
    // Inf or NaN?
    if ((y & 0x7800000000000000ull) == 0x7800000000000000ull) {
    if ((y & 0x7800000000000000ull) == 0x7800000000000000ull) {
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
      if (((y & 0x7e00000000000000ull) == 0x7e00000000000000ull)        // sNaN
      if (((y & 0x7e00000000000000ull) == 0x7e00000000000000ull)        // sNaN
          || (((y & 0x7c00000000000000ull) == 0x7800000000000000ull) && //Inf
          || (((y & 0x7c00000000000000ull) == 0x7800000000000000ull) && //Inf
              ((x & 0x7c00000000000000ull) < 0x7800000000000000ull)))
              ((x & 0x7c00000000000000ull) < 0x7800000000000000ull)))
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
      if ((y & NAN_MASK64) != NAN_MASK64)
      if ((y & NAN_MASK64) != NAN_MASK64)
        coefficient_y = 0;
        coefficient_y = 0;
      if ((x & NAN_MASK64) != NAN_MASK64) {
      if ((x & NAN_MASK64) != NAN_MASK64) {
        res = 0x7c00000000000000ull | (coefficient_y & QUIET_MASK64);
        res = 0x7c00000000000000ull | (coefficient_y & QUIET_MASK64);
        if (((y & NAN_MASK64) != NAN_MASK64) && ((x & NAN_MASK64) == 0x7800000000000000ull))
        if (((y & NAN_MASK64) != NAN_MASK64) && ((x & NAN_MASK64) == 0x7800000000000000ull))
                res = x;
                res = x;
        BID_RETURN (res);
        BID_RETURN (res);
      }
      }
    }
    }
  }
  }
  // unpack arguments, check for NaN or Infinity
  // unpack arguments, check for NaN or Infinity
  if (!valid_x) {
  if (!valid_x) {
    // x is Inf. or NaN or 0
    // x is Inf. or NaN or 0
 
 
    // Inf or NaN?
    // Inf or NaN?
    if ((x & 0x7800000000000000ull) == 0x7800000000000000ull) {
    if ((x & 0x7800000000000000ull) == 0x7800000000000000ull) {
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
      if (((x & 0x7e00000000000000ull) == 0x7e00000000000000ull)        // sNaN
      if (((x & 0x7e00000000000000ull) == 0x7e00000000000000ull)        // sNaN
          || ((x & 0x7c00000000000000ull) == 0x7800000000000000ull))    //Inf 
          || ((x & 0x7c00000000000000ull) == 0x7800000000000000ull))    //Inf 
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
      if ((x & NAN_MASK64) != NAN_MASK64)
      if ((x & NAN_MASK64) != NAN_MASK64)
        coefficient_x = 0;
        coefficient_x = 0;
      res = 0x7c00000000000000ull | (coefficient_x & QUIET_MASK64);
      res = 0x7c00000000000000ull | (coefficient_x & QUIET_MASK64);
      BID_RETURN (res);
      BID_RETURN (res);
    }
    }
 
 
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, 0);
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, 0);
    BID_RETURN (res);
    BID_RETURN (res);
  }
  }
  // get number of decimal digits in coefficient_x
  // get number of decimal digits in coefficient_x
  tempx.d = (float) coefficient_x;
  tempx.d = (float) coefficient_x;
  bin_expon_cx = ((tempx.i >> 23) & 0xff) - 0x7f;
  bin_expon_cx = ((tempx.i >> 23) & 0xff) - 0x7f;
  digits_x = estimate_decimal_digits[bin_expon_cx];
  digits_x = estimate_decimal_digits[bin_expon_cx];
  if (coefficient_x >= power10_table_128[digits_x].w[0])
  if (coefficient_x >= power10_table_128[digits_x].w[0])
    digits_x++;
    digits_x++;
 
 
  expon_diff = exponent_x - exponent_y;
  expon_diff = exponent_x - exponent_y;
  total_digits = digits_x + expon_diff;
  total_digits = digits_x + expon_diff;
 
 
  // check range of scaled coefficient
  // check range of scaled coefficient
  if ((UINT32) (total_digits + 1) <= 17) {
  if ((UINT32) (total_digits + 1) <= 17) {
    if (expon_diff >= 0) {
    if (expon_diff >= 0) {
      coefficient_x *= power10_table_128[expon_diff].w[0];
      coefficient_x *= power10_table_128[expon_diff].w[0];
      res = very_fast_get_BID64 (sign_x, exponent_y, coefficient_x);
      res = very_fast_get_BID64 (sign_x, exponent_y, coefficient_x);
      BID_RETURN (res);
      BID_RETURN (res);
    }
    }
    // must round off -expon_diff digits
    // must round off -expon_diff digits
    extra_digits = -expon_diff;
    extra_digits = -expon_diff;
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST
    rmode = rnd_mode;
    rmode = rnd_mode;
    if (sign_x && (unsigned) (rmode - 1) < 2)
    if (sign_x && (unsigned) (rmode - 1) < 2)
      rmode = 3 - rmode;
      rmode = 3 - rmode;
#else
#else
    rmode = 0;
    rmode = 0;
#endif
#endif
#else
#else
    rmode = 0;
    rmode = 0;
#endif
#endif
    coefficient_x += round_const_table[rmode][extra_digits];
    coefficient_x += round_const_table[rmode][extra_digits];
 
 
    // get P*(2^M[extra_digits])/10^extra_digits
    // get P*(2^M[extra_digits])/10^extra_digits
    __mul_64x64_to_128 (CT, coefficient_x,
    __mul_64x64_to_128 (CT, coefficient_x,
                        reciprocals10_64[extra_digits]);
                        reciprocals10_64[extra_digits]);
 
 
    // now get P/10^extra_digits: shift C64 right by M[extra_digits]-128
    // now get P/10^extra_digits: shift C64 right by M[extra_digits]-128
    amount = short_recip_scale[extra_digits];
    amount = short_recip_scale[extra_digits];
    C64 = CT.w[1] >> amount;
    C64 = CT.w[1] >> amount;
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST
    if (rnd_mode == 0)
    if (rnd_mode == 0)
#endif
#endif
      if (C64 & 1) {
      if (C64 & 1) {
        // check whether fractional part of initial_P/10^extra_digits 
        // check whether fractional part of initial_P/10^extra_digits 
        // is exactly .5
        // is exactly .5
        // this is the same as fractional part of 
        // this is the same as fractional part of 
        //   (initial_P + 0.5*10^extra_digits)/10^extra_digits is exactly zero
        //   (initial_P + 0.5*10^extra_digits)/10^extra_digits is exactly zero
 
 
        // get remainder
        // get remainder
        amount2 = 64 - amount;
        amount2 = 64 - amount;
        remainder_h = 0;
        remainder_h = 0;
        remainder_h--;
        remainder_h--;
        remainder_h >>= amount2;
        remainder_h >>= amount2;
        remainder_h = remainder_h & CT.w[1];
        remainder_h = remainder_h & CT.w[1];
 
 
        // test whether fractional part is 0
        // test whether fractional part is 0
        if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits])) {
        if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits])) {
          C64--;
          C64--;
        }
        }
      }
      }
#endif
#endif
 
 
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
    status = INEXACT_EXCEPTION;
    status = INEXACT_EXCEPTION;
    // get remainder
    // get remainder
    remainder_h = CT.w[1] << (64 - amount);
    remainder_h = CT.w[1] << (64 - amount);
    switch (rmode) {
    switch (rmode) {
    case ROUNDING_TO_NEAREST:
    case ROUNDING_TO_NEAREST:
    case ROUNDING_TIES_AWAY:
    case ROUNDING_TIES_AWAY:
      // test whether fractional part is 0
      // test whether fractional part is 0
      if ((remainder_h == 0x8000000000000000ull)
      if ((remainder_h == 0x8000000000000000ull)
          && (CT.w[0] < reciprocals10_64[extra_digits]))
          && (CT.w[0] < reciprocals10_64[extra_digits]))
        status = EXACT_STATUS;
        status = EXACT_STATUS;
      break;
      break;
    case ROUNDING_DOWN:
    case ROUNDING_DOWN:
    case ROUNDING_TO_ZERO:
    case ROUNDING_TO_ZERO:
      if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
      if (!remainder_h && (CT.w[0] < reciprocals10_64[extra_digits]))
        status = EXACT_STATUS;
        status = EXACT_STATUS;
      //if(!C64 && rmode==ROUNDING_DOWN) sign_s=sign_y;
      //if(!C64 && rmode==ROUNDING_DOWN) sign_s=sign_y;
      break;
      break;
    default:
    default:
      // round up
      // round up
      __add_carry_out (tmp, carry, CT.w[0],
      __add_carry_out (tmp, carry, CT.w[0],
                       reciprocals10_64[extra_digits]);
                       reciprocals10_64[extra_digits]);
      if ((remainder_h >> (64 - amount)) + carry >=
      if ((remainder_h >> (64 - amount)) + carry >=
          (((UINT64) 1) << amount))
          (((UINT64) 1) << amount))
        status = EXACT_STATUS;
        status = EXACT_STATUS;
      break;
      break;
    }
    }
    __set_status_flags (pfpsf, status);
    __set_status_flags (pfpsf, status);
#endif
#endif
 
 
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, C64);
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, C64);
    BID_RETURN (res);
    BID_RETURN (res);
  }
  }
 
 
  if (total_digits < 0) {
  if (total_digits < 0) {
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
    __set_status_flags (pfpsf, INEXACT_EXCEPTION);
    __set_status_flags (pfpsf, INEXACT_EXCEPTION);
#endif
#endif
    C64 = 0;
    C64 = 0;
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST
    rmode = rnd_mode;
    rmode = rnd_mode;
    if (sign_x && (unsigned) (rmode - 1) < 2)
    if (sign_x && (unsigned) (rmode - 1) < 2)
      rmode = 3 - rmode;
      rmode = 3 - rmode;
    if (rmode == ROUNDING_UP)
    if (rmode == ROUNDING_UP)
      C64 = 1;
      C64 = 1;
#endif
#endif
#endif
#endif
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, C64);
    res = very_fast_get_BID64_small_mantissa (sign_x, exponent_y, C64);
    BID_RETURN (res);
    BID_RETURN (res);
  }
  }
  // else  more than 16 digits in coefficient
  // else  more than 16 digits in coefficient
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
  __set_status_flags (pfpsf, INVALID_EXCEPTION);
  __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
  res = 0x7c00000000000000ull;
  res = 0x7c00000000000000ull;
  BID_RETURN (res);
  BID_RETURN (res);
 
 
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.