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/] [bid32_to_bid128.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/>.  */
 
 
#define BID_128RES
#define BID_128RES
#include "bid_internal.h"
#include "bid_internal.h"
 
 
/*
/*
 * Takes a BID32 as input and converts it to a BID128 and returns it.
 * Takes a BID32 as input and converts it to a BID128 and returns it.
 */
 */
TYPE0_FUNCTION_ARGTYPE1_NORND (UINT128, bid32_to_bid128, UINT32, x)
TYPE0_FUNCTION_ARGTYPE1_NORND (UINT128, bid32_to_bid128, UINT32, x)
 
 
     UINT128 new_coeff, res;
     UINT128 new_coeff, res;
     UINT32 sign_x;
     UINT32 sign_x;
     int exponent_x;
     int exponent_x;
     UINT32 coefficient_x;
     UINT32 coefficient_x;
 
 
if (!unpack_BID32 (&sign_x, &exponent_x, &coefficient_x, x)) {
if (!unpack_BID32 (&sign_x, &exponent_x, &coefficient_x, x)) {
if (((x) & 0x78000000) == 0x78000000) {
if (((x) & 0x78000000) == 0x78000000) {
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
  if (((x) & 0x7e000000) == 0x7e000000) // sNaN
  if (((x) & 0x7e000000) == 0x7e000000) // sNaN
    __set_status_flags (pfpsf, INVALID_EXCEPTION);
    __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
  res.w[0] = (coefficient_x & 0x000fffff);
  res.w[0] = (coefficient_x & 0x000fffff);
  __mul_64x128_low (res, res.w[0], power10_table_128[27]);
  __mul_64x128_low (res, res.w[0], power10_table_128[27]);
  res.w[1] |=
  res.w[1] |=
    ((((UINT64) coefficient_x) << 32) & 0xfc00000000000000ull);
    ((((UINT64) coefficient_x) << 32) & 0xfc00000000000000ull);
 
 
  BID_RETURN (res);
  BID_RETURN (res);
}
}
}
}
 
 
new_coeff.w[0] = coefficient_x;
new_coeff.w[0] = coefficient_x;
new_coeff.w[1] = 0;
new_coeff.w[1] = 0;
get_BID128_very_fast (&res, ((UINT64) sign_x) << 32,
get_BID128_very_fast (&res, ((UINT64) sign_x) << 32,
                      exponent_x + DECIMAL_EXPONENT_BIAS_128 -
                      exponent_x + DECIMAL_EXPONENT_BIAS_128 -
                      DECIMAL_EXPONENT_BIAS_32, new_coeff);
                      DECIMAL_EXPONENT_BIAS_32, new_coeff);
BID_RETURN (res);
BID_RETURN (res);
}       // convert_bid32_to_bid128
}       // convert_bid32_to_bid128
 
 
 
 
/*
/*
 * Takes a BID128 as input and converts it to a BID32 and returns it.
 * Takes a BID128 as input and converts it to a BID32 and returns it.
 */
 */
#if DECIMAL_CALL_BY_REFERENCE
#if DECIMAL_CALL_BY_REFERENCE
 
 
void
void
bid128_to_bid32 (UINT32 * pres,
bid128_to_bid32 (UINT32 * pres,
                 UINT128 *
                 UINT128 *
                 px _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
                 px _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
                 _EXC_INFO_PARAM) {
                 _EXC_INFO_PARAM) {
  UINT128 x = *px;
  UINT128 x = *px;
#else
#else
 
 
UINT32
UINT32
bid128_to_bid32 (UINT128 x _RND_MODE_PARAM _EXC_FLAGS_PARAM
bid128_to_bid32 (UINT128 x _RND_MODE_PARAM _EXC_FLAGS_PARAM
                 _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
                 _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
#endif
#endif
  UINT128 CX, T128, TP128, Qh, Ql, Qh1, Stemp, Tmp, Tmp1, CX1;
  UINT128 CX, T128, TP128, Qh, Ql, Qh1, Stemp, Tmp, Tmp1, CX1;
  UINT64 sign_x, carry, cy;
  UINT64 sign_x, carry, cy;
  SINT64 D;
  SINT64 D;
  UINT32 res;
  UINT32 res;
  int_float f64, fx;
  int_float f64, fx;
  int exponent_x, extra_digits, amount, bin_expon_cx, uf_check = 0;
  int exponent_x, extra_digits, amount, bin_expon_cx, uf_check = 0;
  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
#endif
#endif
 
 
  BID_SWAP128 (x);
  BID_SWAP128 (x);
  // unpack arguments, check for NaN or Infinity or 0
  // unpack arguments, check for NaN or Infinity or 0
  if (!unpack_BID128_value (&sign_x, &exponent_x, &CX, x)) {
  if (!unpack_BID128_value (&sign_x, &exponent_x, &CX, x)) {
    if (((x.w[1]) & 0x7800000000000000ull) == 0x7800000000000000ull) {
    if (((x.w[1]) & 0x7800000000000000ull) == 0x7800000000000000ull) {
      Tmp.w[1] = (CX.w[1] & 0x00003fffffffffffull);
      Tmp.w[1] = (CX.w[1] & 0x00003fffffffffffull);
      Tmp.w[0] = CX.w[0];
      Tmp.w[0] = CX.w[0];
      TP128 = reciprocals10_128[27];
      TP128 = reciprocals10_128[27];
      __mul_128x128_full (Qh, Ql, Tmp, TP128);
      __mul_128x128_full (Qh, Ql, Tmp, TP128);
      amount = recip_scale[27] - 64;
      amount = recip_scale[27] - 64;
      res = ((CX.w[1] >> 32) & 0xfc000000) | (Qh.w[1] >> amount);
      res = ((CX.w[1] >> 32) & 0xfc000000) | (Qh.w[1] >> amount);
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
      if ((x.w[1] & SNAN_MASK64) == SNAN_MASK64)        // sNaN
      if ((x.w[1] & SNAN_MASK64) == SNAN_MASK64)        // sNaN
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
        __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
#endif
      BID_RETURN_VAL (res);
      BID_RETURN_VAL (res);
    }
    }
    // x is 0
    // x is 0
    exponent_x =
    exponent_x =
      exponent_x - DECIMAL_EXPONENT_BIAS_128 + DECIMAL_EXPONENT_BIAS_32;
      exponent_x - DECIMAL_EXPONENT_BIAS_128 + DECIMAL_EXPONENT_BIAS_32;
    if (exponent_x < 0)
    if (exponent_x < 0)
      exponent_x = 0;
      exponent_x = 0;
    if (exponent_x > DECIMAL_MAX_EXPON_32)
    if (exponent_x > DECIMAL_MAX_EXPON_32)
      exponent_x = DECIMAL_MAX_EXPON_32;
      exponent_x = DECIMAL_MAX_EXPON_32;
    res = (sign_x >> 32) | (exponent_x << 23);
    res = (sign_x >> 32) | (exponent_x << 23);
    BID_RETURN_VAL (res);
    BID_RETURN_VAL (res);
 
 
  }
  }
 
 
  if (CX.w[1] || (CX.w[0] >= 10000000)) {
  if (CX.w[1] || (CX.w[0] >= 10000000)) {
    // find number of digits in coefficient
    // find number of digits in coefficient
    // 2^64
    // 2^64
    f64.i = 0x5f800000;
    f64.i = 0x5f800000;
    // fx ~ CX
    // fx ~ CX
    fx.d = (float) CX.w[1] * f64.d + (float) CX.w[0];
    fx.d = (float) CX.w[1] * f64.d + (float) CX.w[0];
    bin_expon_cx = ((fx.i >> 23) & 0xff) - 0x7f;
    bin_expon_cx = ((fx.i >> 23) & 0xff) - 0x7f;
    extra_digits = estimate_decimal_digits[bin_expon_cx] - 7;
    extra_digits = estimate_decimal_digits[bin_expon_cx] - 7;
    // scale = 38-estimate_decimal_digits[bin_expon_cx];
    // scale = 38-estimate_decimal_digits[bin_expon_cx];
    D = CX.w[1] - power10_index_binexp_128[bin_expon_cx].w[1];
    D = CX.w[1] - power10_index_binexp_128[bin_expon_cx].w[1];
    if (D > 0
    if (D > 0
        || (!D
        || (!D
            && CX.w[0] >= power10_index_binexp_128[bin_expon_cx].w[0]))
            && CX.w[0] >= power10_index_binexp_128[bin_expon_cx].w[0]))
      extra_digits++;
      extra_digits++;
 
 
    exponent_x += extra_digits;
    exponent_x += extra_digits;
 
 
#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
    if (exponent_x <
    if (exponent_x <
        DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32) {
        DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32) {
      uf_check = 1;
      uf_check = 1;
      if (-extra_digits + exponent_x - DECIMAL_EXPONENT_BIAS_128 +
      if (-extra_digits + exponent_x - DECIMAL_EXPONENT_BIAS_128 +
          DECIMAL_EXPONENT_BIAS_32 + 35 >= 0) {
          DECIMAL_EXPONENT_BIAS_32 + 35 >= 0) {
        if (exponent_x ==
        if (exponent_x ==
            DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32 - 1) {
            DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32 - 1) {
          T128 = round_const_table_128[rmode][extra_digits];
          T128 = round_const_table_128[rmode][extra_digits];
          __add_carry_out (CX1.w[0], carry, T128.w[0], CX.w[0]);
          __add_carry_out (CX1.w[0], carry, T128.w[0], CX.w[0]);
          CX1.w[1] = CX.w[1] + T128.w[1] + carry;
          CX1.w[1] = CX.w[1] + T128.w[1] + carry;
          if (__unsigned_compare_ge_128
          if (__unsigned_compare_ge_128
              (CX1, power10_table_128[extra_digits + 7]))
              (CX1, power10_table_128[extra_digits + 7]))
            uf_check = 0;
            uf_check = 0;
        }
        }
        extra_digits =
        extra_digits =
          extra_digits + DECIMAL_EXPONENT_BIAS_128 -
          extra_digits + DECIMAL_EXPONENT_BIAS_128 -
          DECIMAL_EXPONENT_BIAS_32 - exponent_x;
          DECIMAL_EXPONENT_BIAS_32 - exponent_x;
        exponent_x =
        exponent_x =
          DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32;
          DECIMAL_EXPONENT_BIAS_128 - DECIMAL_EXPONENT_BIAS_32;
      } else
      } else
        rmode = ROUNDING_TO_ZERO;
        rmode = ROUNDING_TO_ZERO;
    }
    }
 
 
    T128 = round_const_table_128[rmode][extra_digits];
    T128 = round_const_table_128[rmode][extra_digits];
    __add_carry_out (CX.w[0], carry, T128.w[0], CX.w[0]);
    __add_carry_out (CX.w[0], carry, T128.w[0], CX.w[0]);
    CX.w[1] = CX.w[1] + T128.w[1] + carry;
    CX.w[1] = CX.w[1] + T128.w[1] + carry;
 
 
    TP128 = reciprocals10_128[extra_digits];
    TP128 = reciprocals10_128[extra_digits];
    __mul_128x128_full (Qh, Ql, CX, TP128);
    __mul_128x128_full (Qh, Ql, CX, TP128);
    amount = recip_scale[extra_digits];
    amount = recip_scale[extra_digits];
 
 
    if (amount >= 64) {
    if (amount >= 64) {
      CX.w[0] = Qh.w[1] >> (amount - 64);
      CX.w[0] = Qh.w[1] >> (amount - 64);
      CX.w[1] = 0;
      CX.w[1] = 0;
    } else {
    } else {
      __shr_128 (CX, Qh, amount);
      __shr_128 (CX, Qh, amount);
    }
    }
 
 
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST
    if (!(rnd_mode))
    if (!(rnd_mode))
#endif
#endif
      if (CX.w[0] & 1) {
      if (CX.w[0] & 1) {
        // check whether fractional part of initial_P/10^ed1 is exactly .5
        // check whether fractional part of initial_P/10^ed1 is exactly .5
 
 
        // get remainder
        // get remainder
        __shl_128_long (Qh1, Qh, (128 - amount));
        __shl_128_long (Qh1, Qh, (128 - amount));
 
 
        if (!Qh1.w[1] && !Qh1.w[0]
        if (!Qh1.w[1] && !Qh1.w[0]
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0]))) {
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0]))) {
          CX.w[0]--;
          CX.w[0]--;
        }
        }
      }
      }
#endif
#endif
 
 
 
 
    {
    {
      status = INEXACT_EXCEPTION;
      status = INEXACT_EXCEPTION;
      // get remainder
      // get remainder
      __shl_128_long (Qh1, Qh, (128 - amount));
      __shl_128_long (Qh1, Qh, (128 - 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 (Qh1.w[1] == 0x8000000000000000ull && (!Qh1.w[0])
        if (Qh1.w[1] == 0x8000000000000000ull && (!Qh1.w[0])
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0])))
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0])))
          status = EXACT_STATUS;
          status = EXACT_STATUS;
        break;
        break;
      case ROUNDING_DOWN:
      case ROUNDING_DOWN:
      case ROUNDING_TO_ZERO:
      case ROUNDING_TO_ZERO:
        if ((!Qh1.w[1]) && (!Qh1.w[0])
        if ((!Qh1.w[1]) && (!Qh1.w[0])
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
            && (Ql.w[1] < reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                || (Ql.w[1] == reciprocals10_128[extra_digits].w[1]
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0])))
                    && Ql.w[0] < reciprocals10_128[extra_digits].w[0])))
          status = EXACT_STATUS;
          status = EXACT_STATUS;
        break;
        break;
      default:
      default:
        // round up
        // round up
        __add_carry_out (Stemp.w[0], cy, Ql.w[0],
        __add_carry_out (Stemp.w[0], cy, Ql.w[0],
                         reciprocals10_128[extra_digits].w[0]);
                         reciprocals10_128[extra_digits].w[0]);
        __add_carry_in_out (Stemp.w[1], carry, Ql.w[1],
        __add_carry_in_out (Stemp.w[1], carry, Ql.w[1],
                            reciprocals10_128[extra_digits].w[1], cy);
                            reciprocals10_128[extra_digits].w[1], cy);
        __shr_128_long (Qh, Qh1, (128 - amount));
        __shr_128_long (Qh, Qh1, (128 - amount));
        Tmp.w[0] = 1;
        Tmp.w[0] = 1;
        Tmp.w[1] = 0;
        Tmp.w[1] = 0;
        __shl_128_long (Tmp1, Tmp, amount);
        __shl_128_long (Tmp1, Tmp, amount);
        Qh.w[0] += carry;
        Qh.w[0] += carry;
        if (Qh.w[0] < carry)
        if (Qh.w[0] < carry)
          Qh.w[1]++;
          Qh.w[1]++;
        if (__unsigned_compare_ge_128 (Qh, Tmp1))
        if (__unsigned_compare_ge_128 (Qh, Tmp1))
          status = EXACT_STATUS;
          status = EXACT_STATUS;
      }
      }
 
 
      if (status != EXACT_STATUS) {
      if (status != EXACT_STATUS) {
        if (uf_check) {
        if (uf_check) {
          status |= UNDERFLOW_EXCEPTION;
          status |= UNDERFLOW_EXCEPTION;
        }
        }
#ifdef SET_STATUS_FLAGS
#ifdef SET_STATUS_FLAGS
        __set_status_flags (pfpsf, status);
        __set_status_flags (pfpsf, status);
#endif
#endif
      }
      }
    }
    }
 
 
  }
  }
 
 
  res =
  res =
    get_BID32 ((UINT32) (sign_x >> 32),
    get_BID32 ((UINT32) (sign_x >> 32),
               exponent_x - DECIMAL_EXPONENT_BIAS_128 +
               exponent_x - DECIMAL_EXPONENT_BIAS_128 +
               DECIMAL_EXPONENT_BIAS_32, CX.w[0], rnd_mode, pfpsf);
               DECIMAL_EXPONENT_BIAS_32, CX.w[0], rnd_mode, pfpsf);
  BID_RETURN_VAL (res);
  BID_RETURN_VAL (res);
 
 
}
}
 
 

powered by: WebSVN 2.1.0

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