OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libm/] [common/] [s_fpclassify.c] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/* Copyright (C) 2002, 2007 by  Red Hat, Incorporated. All rights reserved.
/* Copyright (C) 2002, 2007 by  Red Hat, Incorporated. All rights reserved.
 *
 *
 * Permission to use, copy, modify, and distribute this software
 * Permission to use, copy, modify, and distribute this software
 * is freely granted, provided that this notice is preserved.
 * is freely granted, provided that this notice is preserved.
 */
 */
 
 
#include "fdlibm.h"
#include "fdlibm.h"
 
 
int
int
__fpclassifyd (double x)
__fpclassifyd (double x)
{
{
  __uint32_t msw, lsw;
  __uint32_t msw, lsw;
 
 
  EXTRACT_WORDS(msw,lsw,x);
  EXTRACT_WORDS(msw,lsw,x);
 
 
  if ((msw == 0x00000000 && lsw == 0x00000000) ||
  if ((msw == 0x00000000 && lsw == 0x00000000) ||
      (msw == 0x80000000 && lsw == 0x00000000))
      (msw == 0x80000000 && lsw == 0x00000000))
    return FP_ZERO;
    return FP_ZERO;
  else if ((msw >= 0x00100000 && msw <= 0x7fefffff) ||
  else if ((msw >= 0x00100000 && msw <= 0x7fefffff) ||
           (msw >= 0x80100000 && msw <= 0xffefffff))
           (msw >= 0x80100000 && msw <= 0xffefffff))
    return FP_NORMAL;
    return FP_NORMAL;
  else if ((msw >= 0x00000000 && msw <= 0x000fffff) ||
  else if ((msw >= 0x00000000 && msw <= 0x000fffff) ||
           (msw >= 0x80000000 && msw <= 0x800fffff))
           (msw >= 0x80000000 && msw <= 0x800fffff))
    /* zero is already handled above */
    /* zero is already handled above */
    return FP_SUBNORMAL;
    return FP_SUBNORMAL;
  else if ((msw == 0x7ff00000 && lsw == 0x00000000) ||
  else if ((msw == 0x7ff00000 && lsw == 0x00000000) ||
           (msw == 0xfff00000 && lsw == 0x00000000))
           (msw == 0xfff00000 && lsw == 0x00000000))
    return FP_INFINITE;
    return FP_INFINITE;
  else
  else
    return FP_NAN;
    return FP_NAN;
}
}
 
 

powered by: WebSVN 2.1.0

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