Blame IexMath/IexMathFloatExc.cpp

Packit 8dc392
///////////////////////////////////////////////////////////////////////////
Packit 8dc392
//
Packit 8dc392
// Copyright (c) 1997-2012, Industrial Light & Magic, a division of Lucas
Packit 8dc392
// Digital Ltd. LLC
Packit 8dc392
//
Packit 8dc392
// All rights reserved.
Packit 8dc392
//
Packit 8dc392
// Redistribution and use in source and binary forms, with or without
Packit 8dc392
// modification, are permitted provided that the following conditions are
Packit 8dc392
// met:
Packit 8dc392
// *       Redistributions of source code must retain the above copyright
Packit 8dc392
// notice, this list of conditions and the following disclaimer.
Packit 8dc392
// *       Redistributions in binary form must reproduce the above
Packit 8dc392
// copyright notice, this list of conditions and the following disclaimer
Packit 8dc392
// in the documentation and/or other materials provided with the
Packit 8dc392
// distribution.
Packit 8dc392
// *       Neither the name of Industrial Light & Magic nor the names of
Packit 8dc392
// its contributors may be used to endorse or promote products derived
Packit 8dc392
// from this software without specific prior written permission.
Packit 8dc392
//
Packit 8dc392
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 8dc392
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 8dc392
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 8dc392
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit 8dc392
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 8dc392
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 8dc392
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 8dc392
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 8dc392
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 8dc392
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 8dc392
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 8dc392
//
Packit 8dc392
///////////////////////////////////////////////////////////////////////////
Packit 8dc392
Packit 8dc392
//-----------------------------------------------------
Packit 8dc392
//
Packit 8dc392
//	A function to control which IEEE floating
Packit 8dc392
//	point exceptions will be translated into
Packit 8dc392
//	C++ MathExc exceptions.
Packit 8dc392
//
Packit 8dc392
//-----------------------------------------------------
Packit 8dc392
Packit 8dc392
#include <IexMathFloatExc.h>
Packit 8dc392
#include <IexMacros.h>
Packit 8dc392
#include <IexMathFpu.h>
Packit 8dc392
Packit 8dc392
#if 0
Packit 8dc392
    #include <iostream>
Packit 8dc392
    #define debug(x) (std::cout << x << std::flush)
Packit 8dc392
#else
Packit 8dc392
    #define debug(x)
Packit 8dc392
#endif
Packit 8dc392
Packit 8dc392
IEX_INTERNAL_NAMESPACE_SOURCE_ENTER
Packit 8dc392
Packit 8dc392
Packit 8dc392
namespace {
Packit 8dc392
Packit 8dc392
void
Packit 8dc392
fpeHandler (int type, const char explanation[])
Packit 8dc392
{
Packit 8dc392
    switch (type)
Packit 8dc392
    {
Packit 8dc392
      case IEEE_OVERFLOW:
Packit 8dc392
	throw OverflowExc (explanation);
Packit 8dc392
Packit 8dc392
      case IEEE_UNDERFLOW:
Packit 8dc392
	throw UnderflowExc (explanation);
Packit 8dc392
Packit 8dc392
      case IEEE_DIVZERO:
Packit 8dc392
	throw DivzeroExc (explanation);
Packit 8dc392
Packit 8dc392
      case IEEE_INEXACT:
Packit 8dc392
	throw InexactExc (explanation);
Packit 8dc392
Packit 8dc392
      case IEEE_INVALID:
Packit 8dc392
	throw InvalidFpOpExc (explanation);
Packit 8dc392
    }
Packit 8dc392
Packit 8dc392
    throw MathExc (explanation);
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
} // namespace
Packit 8dc392
Packit 8dc392
Packit 8dc392
void
Packit 8dc392
mathExcOn (int when)
Packit 8dc392
{
Packit 8dc392
    debug ("mathExcOn (when = 0x" << std::hex << when << ")\n");
Packit 8dc392
Packit 8dc392
    setFpExceptions (when);
Packit 8dc392
    setFpExceptionHandler (fpeHandler);
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
int
Packit 8dc392
getMathExcOn ()
Packit 8dc392
{
Packit 8dc392
    int when = fpExceptions();
Packit 8dc392
Packit 8dc392
    debug ("getMathExcOn () == 0x" << std::hex << when << ")\n");
Packit 8dc392
Packit 8dc392
    return when;
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
void
Packit 8dc392
MathExcOn::handleOutstandingExceptions()
Packit 8dc392
{
Packit 8dc392
    handleExceptionsSetInRegisters();
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
IEX_INTERNAL_NAMESPACE_SOURCE_EXIT