Search code examples
c#exceptiondllimportdivide-by-zerofloating-point-exceptions

_controlfp does not prevent DivideByZeroException


I wrote the following lines in C#

using System;
using System.Runtime.InteropServices;

namespace ConsoleApplication1
{
    class Program
    {
        [DllImport("msvcrt.dll", CallingConvention = CallingConvention.Cdecl)]
        extern static uint _controlfp(uint newcw, uint mask);

        const uint _MCW_EM = 0x0008001f;
        public const uint EM_INVALID = 0x00000010;
        public const uint EM_DENORMAL = 0x00080000;
        public const uint EM_ZERODIVIDE = 0x00000008;
        public const uint EM_OVERFLOW = 0x00000004;
        public const uint EM_UNDERFLOW = 0x00000002;
        public const uint EM_INEXACT = 0x00000001;

        static void MaskFpu(uint pExceptionMask = EM_INVALID)
        {
            // add desired values
            _controlfp(_MCW_EM, pExceptionMask);
        }

        static void Main(string[] args)
        {
            MaskFpu(EM_ZERODIVIDE);

            int a = 0;
            var b = 5/a;

            Console.WriteLine("b = " + b);
        }
    }
}

The Main method starts by setting the control word. Obviously I want DivideByZeroExceptions to be masked.

After performing _controlfp I would expect that a division by zero would return NaN. but var b = 5 / a raises an exception instead.

How can I truely keep my process from raising DivideByZeroExceptions?


Solution

  • int a = 0;
    var b = 5/a;
    

    You are performing integer arithmetic here and so masking floating point exceptions has no effect on this expression.