8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-01 09:23:02 +01:00
firebird-mirror/src/common/classes/FpeControl.h

220 lines
4.9 KiB
C
Raw Normal View History

/*
* PROGRAM: FPE handling
* MODULE: FpeControl.h
2009-05-28 03:53:38 +02:00
* DESCRIPTION: handle state of math coprocessor when thread
* enters / leaves engine
*
* The contents of this file are subject to the Initial
* Developer's Public License Version 1.0 (the "License");
* you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_idpl.
*
* Software distributed under the License is distributed AS IS,
* WITHOUT WARRANTY OF ANY KIND, either express or implied.
* See the License for the specific language governing rights
* and limitations under the License.
*
* The Original Code was created by Alexander Peshkoff
* for the Firebird Open Source RDBMS project.
*
* Copyright (c) 2008 Alexander Peshkoff <peshkoff@mail.ru>,
* Bill Oliver <Bill.Oliver@sas.com>
* and all contributors signed below.
*
* All Rights Reserved.
* Contributor(s): ______________________________________.
*/
#ifndef CLASSES_FPE_CONTROL_H
#define CLASSES_FPE_CONTROL_H
#include <math.h>
#if defined(WIN_NT)
#include <float.h>
#else
#include <fenv.h>
#include <string.h>
#endif
2009-07-21 10:58:28 +02:00
#if defined(SOLARIS) && !defined(HAVE_FEGETENV)
// ok to remove this when Solaris 9 is no longer supported
#include <ieeefp.h>
#endif
namespace Firebird
{
// class to hold the state of the Floating Point Exception mask
2009-05-28 03:53:38 +02:00
// The firebird server *must* run with FP exceptions masked, as we may
// intentionally overflow and then check for infinity to raise an error.
2009-05-28 03:53:38 +02:00
// Most hosts run with FP exceptions masked by default, but we need
// to save the mask for cases where Firebird is used as an embedded
// database.
class FpeControl
{
public:
// the constructor (1) saves the current floating point mask, and
// (2) masks all floating point exceptions. Use is similar to
// the ContextPoolHolder for memory allocation.
2009-05-28 03:53:38 +02:00
// on modern systems, the default is to mask exceptions
FpeControl() throw()
{
getCurrentMask(savedMask);
if (!areExceptionsMasked(savedMask))
{
maskAll();
}
}
~FpeControl() throw()
{
// change it back if necessary
if (!areExceptionsMasked(savedMask))
{
restoreMask();
}
}
#if defined(WIN_NT)
static void maskAll() throw()
{
_clearfp(); // always call _clearfp() before setting control word
2009-05-28 03:53:38 +02:00
_controlfp(_CW_DEFAULT, _MCW_EM);
}
private:
typedef unsigned int Mask;
Mask savedMask;
static bool areExceptionsMasked(const Mask& m) throw()
{
return m == _CW_DEFAULT;
}
static void getCurrentMask(Mask& m) throw()
{
m = _controlfp(0, 0);
}
void restoreMask() throw()
{
_clearfp(); // always call _clearfp() before setting control word
_controlfp(savedMask, _MCW_EM); // restore saved
}
2009-07-21 10:58:28 +02:00
#elif defined(HAVE_FEGETENV)
static void maskAll() throw()
{
fesetenv(FE_DFL_ENV);
}
private:
// Can't dereference FE_DFL_ENV, therefore need to have something to compare with
class DefaultEnvironment
{
public:
DefaultEnvironment()
{
fenv_t saved;
fegetenv(&saved);
fesetenv(FE_DFL_ENV);
fegetenv(&clean);
fesetenv(&saved);
}
fenv_t clean;
};
fenv_t savedMask;
static bool areExceptionsMasked(const fenv_t& m) throw()
{
const static DefaultEnvironment defaultEnvironment;
return memcmp(&defaultEnvironment.clean, &m, sizeof(fenv_t)) == 0;
}
static void getCurrentMask(fenv_t& m) throw()
{
fegetenv(&m);
}
void restoreMask() throw()
{
fesetenv(&savedMask);
}
2009-07-21 10:58:28 +02:00
#elif defined(SOLARIS) && !defined(HAVE_FEGETENV)
2009-07-21 11:46:11 +02:00
// ok to remove this when Solaris 9 is no longer supported
// Solaris without fegetenv() implies Solaris 9 or older. In this case we
// have to use the Solaris FPE routines.
2009-07-21 10:58:28 +02:00
static void maskAll() throw()
{
fpsetmask( ~(FP_X_OFL | FP_X_INV | FP_X_UFL | FP_X_DZ | FP_X_IMP));
}
private:
// default environment is all traps disabled, but there is no
// constand for this setting
class DefaultEnvironment
{
public:
DefaultEnvironment()
{
fp_except saved;
saved = fpgetmask();
fpsetmask( ~(FP_X_OFL | FP_X_INV | FP_X_UFL | FP_X_DZ | FP_X_IMP));
clean = fpgetmask();
fpsetmask(saved);
}
fp_except clean;
};
fp_except savedMask;
static bool areExceptionsMasked(const fp_except& m) throw()
{
const static DefaultEnvironment defaultEnvironment;
return memcmp(&defaultEnvironment.clean, &m, sizeof(fp_except)) == 0;
}
static void getCurrentMask(fp_except& m) throw()
{
m = fpgetmask();
}
void restoreMask() throw()
{
fpsetsticky (0); // clear exception sticky flags
fpsetmask (savedMask);
}
#else
#error do not know how to mask floating point exceptions on this platform!
#endif
};
} //namespace Firebird
// getting a portable isinf() is harder than you would expect
#ifdef WIN_NT
2009-05-28 07:47:07 +02:00
inline bool isinf(double x)
{
return (!_finite (x) && !isnan(x));
}
#else
#ifndef isinf
template <typename F>
inline bool isinf(F x)
{
return !isnan(x) && isnan(x - x);
}
#endif // isinf
#endif // WIN_NT
#endif //CLASSES_FPE_CONTROL_H