ulong2fs.c

来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· C语言 代码 · 共 76 行

C
76
字号
/*** libgcc support for software floating point.** Copyright (C) 1991 by Pipeline Associates, Inc.  All rights reserved.** Permission is granted to do *anything* you want with this file,** commercial or otherwise, provided this message remains intact.  So there!** I would appreciate receiving any updates/patches/changes that anyone** makes, and am willing to be the repository for said changes (am I** making a big mistake?).**** Pat Wood** Pipeline Associates, Inc.** pipeline!phw@motown.com or** sun!pipeline!phw or** uunet!motown!pipeline!phw*//*** $Id: ulong2fs.c 3607 2004-12-20 21:48:32Z vrokas $*//* (c)2000/2001: hacked a little by johan.knol@iduna.nl for sdcc */#include <float.h>union float_long  {    float f;    long l;  };float __ulong2fs (unsigned long a ) _FS_REENTRANT{  int exp = 24 + EXCESS;  volatile union float_long fl;  if (!a)    {      return 0.0;    }  while (a & NORM)     {      // we lose accuracy here      a >>= 1;      exp++;    }    if(a < HIDDEN) {  	do {  		a<<=1;  		exp--;  	} while (a < HIDDEN);  }#if 0  while (a < HIDDEN) {      a <<= 1;      exp--;    }#endif#if 1  if ((a&0x7fffff)==0x7fffff) {    a=0;    exp++;  }#endif  a &= ~HIDDEN ;  /* pack up and go home */  fl.l = PACK(0,(unsigned long)exp, a);  return (fl.f);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?