Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code below generates different exception stack trace in both debug and release mode:

static class ET
{
    public static void E1()
    {
        throw new Exception("E1");
    }
    public static void E2()
    {
        try
        {
            E1();
        }
        catch (Exception e)
        {

            throw;

        }
    }

    public static void Entry()
    {
        try
        {

            E2();
        }
        catch (Exception e)
        {           
            Console.WriteLine(e.StackTrace);
        }
    }
}

Result in Debug Mode:

at ET.E1() in D:\myStudio\CSharp\CSharp4.0\MyCSharp\ExceptionHandling.cs:line 47

at ET.E2() in D:\myStudio\CSharp\CSharp4.0\MyCSharp\ExceptionHandling.cs:line 58

at ET.Entry() in D:\myStudio\CSharp\CSharp4.0\MyCSharp\ExceptionHandling.cs:line 68

Result in Release Mode:

at ET.E2() in D:\myStudio\CSharp\CSharp4.0\MyCSharp\ExceptionHandling.cs:line 55

at ET.Entry() in D:\myStudio\CSharp\CSharp4.0\MyCSharp\ExceptionHandling.cs:line 68

Please note that the first line from the result in Release mode is missing. How to return the offending line in release mode.

share|improve this question
1  
E1 has been inlined into E2 - a useful optimization usually, but it does mean some methods will be missing from stack trace. – Damien_The_Unbeliever Sep 28 '11 at 14:43
I belive that this is working as intended. The compiler is free to inline methods when optimizing for release builds, in which case the original method simply is not part of the created assembly. Why is that a problem for you? – Jens Sep 28 '11 at 14:43
Thanks! I also thought it is inline. Using [MethodImpl(MethodImplOptions.NoInlining)] is the Only way to prevent that, I think. – Pingpong Sep 28 '11 at 14:49

1 Answer

up vote 8 down vote accepted

You are probably seeing the result of inlining. When you compile in debug mode, inlining is always turned off (so that debugging makes sense). When you compile in release mode, the compiler will remove certain methods (subject to a lot of rules) and insert their content into all of the call sites. This improves the overall performance of those methods by removing the method call overhead.

share|improve this answer
Thanks! Using [MethodImpl(MethodImplOptions.NoInlining)] is the Only way to prevent that, I think. – Pingpong Sep 28 '11 at 14:47
Yes, but keep in mind that you are probably taking a performance hit doing that. How big of a hit is probably debatable. – Chris Shain Sep 28 '11 at 14:50
But tools like log4net should be able to report the offending line as if it is in debug mode, even it is running in release mode. If it is the case, how does it achieve that is interesting. – Pingpong Sep 28 '11 at 14:56
Either they won't show the inlined method, or the call to l4n will prevent the method from inlining. Without looking at it, I suspect that this latter one is actually quite likely. – Chris Shain Sep 28 '11 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.