/* * Copyright (c) 2002-2006 Samit Basu * * This program 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 Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #include "IEEEFP.hpp" static bool endianDetected = false; static bool bigEndian = false; union lc_t { long l; char c[sizeof (long)]; } u; void CheckBigEndian() { u.l = 1; endianDetected = true; bigEndian = (u.c[sizeof(long) - 1] == 1); } bool IsInfinite(float t) { union { float f; unsigned int i; } u; u.f = t; if (((u.i & 0x7f800000) == 0x7f800000) && ((u.i & 0x007fffff) == 0)) return true; return false; } bool IsInfinite(double t) { union { double d; unsigned int i[2]; } u; u.d = t; if (!endianDetected) CheckBigEndian(); if (!bigEndian) { if( ((u.i[1] & 0x7ff00000) == 0x7ff00000) && (((u.i[1] & 0x000fffff) == 0) && (u.i[0] == 0))) return true; } else { if( ((u.i[0] & 0x7ff00000) == 0x7ff00000) && (((u.i[0] & 0x000fffff) == 0) && (u.i[1] == 0))) return true; } return false; } bool IsNaN(int32 t) { return true; } bool IsNaN(int64 t) { return true; } bool IsNaN(uint32 t) { return true; } bool IsNaN(uint64 t) { return true; } bool IsNaN(float t) { union { float f; unsigned int i; } u; u.f = t; if (((u.i & 0x7f800000) == 0x7f800000) && ((u.i & 0x007fffff) != 0)) return true; return false; } bool IsNaN(double t) { union { double d; unsigned int i[2]; } u; u.d = t; if (!endianDetected) CheckBigEndian(); if (!bigEndian) { if( ((u.i[1] & 0x7ff00000) == 0x7ff00000) && (((u.i[1] & 0x000fffff) != 0) || (u.i[0] != 0))) return true; } else { if( ((u.i[0] & 0x7ff00000) == 0x7ff00000) && (((u.i[0] & 0x000fffff) != 0) || (u.i[1] != 0))) return true; } return false; } bool IsFinite(float t) { return (!(IsNaN(t) || IsInfinite(t))); } bool IsFinite(double t) { return (!(IsNaN(t) || IsInfinite(t))); } void ToHexString(float t, char *ptr) { union { float f; unsigned int i; } u; u.f = t; sprintf(ptr,"%08x",u.i); } void ToHexString(double t, char *ptr) { union { double f; unsigned int i[2]; } u; u.f = t; if (!endianDetected) CheckBigEndian(); if (!bigEndian) sprintf(ptr,"%08x%08x",u.i[1],u.i[0]); else sprintf(ptr,"%08x%08x",u.i[0],u.i[1]); }