vote up 9 vote down star
3

I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:

object o = ...;
int? x = o as int?;
if (x.HasValue)
{
    ... // Use x.Value in here
}

I thought this was really neat, and that it could improve performance over the C# 1 equivalent, using "is" followed by a cast - after all, this way we only need to ask for dynamic type checking once, and then a simple value check.

This appears not to be the case, however. I've included a sample test app below, which basically sums all the integers within an object array - but the array contains a lot of null references and string references as well as boxed integers. The benchmark measures the code you'd have to use in C# 1, the code using the "as" operator, and just for kicks a LINQ solution. To my astonishment, the C# 1 code is 20 times faster in this case - and even the LINQ code (which I'd have expected to be slower, given the iterators involved) beats the "as" code.

Is the .NET implementation of isinst for nullable types just really slow? Is it the additional unbox.any that causes the problem? Is there another explanation for this? At the moment it feels like I'm going to have to include a warning against using this in performance sensitive situations...

Results:

Cast: 10000000 : 121
As: 10000000 : 2211
LINQ: 10000000 : 2143

Code:

using System;
using System.Diagnostics;
using System.Linq;

class Test
{
    const int Size = 30000000;

    static void Main()
    {
        object[] values = new object[Size];
        for (int i = 0; i < Size - 2; i += 3)
        {
            values[i] = null;
            values[i+1] = "";
            values[i+2] = 1;
        }

        FindSumWithCast(values);
        FindSumWithAs(values);
        FindSumWithLinq(values);
    }

    static void FindSumWithCast(object[] values)
    {
        Stopwatch sw = Stopwatch.StartNew();
        int sum = 0;
        foreach (object o in values)
        {
            if (o is int)
            {
                int x = (int) o;
                sum += x;
            }
        }
        sw.Stop();
        Console.WriteLine("Cast: {0} : {1}", sum, 
                          (long) sw.ElapsedMilliseconds);
    }

    static void FindSumWithAs(object[] values)
    {
        Stopwatch sw = Stopwatch.StartNew();
        int sum = 0;
        foreach (object o in values)
        {
            int? x = o as int?;
            if (x.HasValue)
            {
                sum += x.Value;
            }
        }
        sw.Stop();
        Console.WriteLine("As: {0} : {1}", sum, 
                          (long) sw.ElapsedMilliseconds);
    }

    static void FindSumWithLinq(object[] values)
    {
        Stopwatch sw = Stopwatch.StartNew();
        int sum = values.OfType<int>().Sum();
        sw.Stop();
        Console.WriteLine("LINQ: {0} : {1}", sum, 
                          (long) sw.ElapsedMilliseconds);
    }
}
flag

2  
oh sure, you update everything the week after I buy it ;) – DataPimp Oct 17 at 20:26
3  
Why not look at the jitted code? Even VS debugger can show it. – Anton Tykhyy Oct 17 at 20:28
I'm just curious, did you test with CLR 4.0 as well? – divo Oct 17 at 20:32
@Anton: Good point. Will do at some point (although this isn't in VS at the moment :) @divo: Yes, and it's worse all round. But then that's in beta, so there may be a lot of debugging code in there. – Jon Skeet Oct 17 at 20:37
Why not? VS debugger is happy to show JITted code in the Disassembly window, although it does not show real addresses or proper names for call targets (grrr!) Also, you could use windbg+SOS. One can even attach a windbg in read-only mode to a process being debugged in VS. – Anton Tykhyy Oct 18 at 5:59
show 3 more comments

3 Answers

vote up 1 vote down

I don't have time to try it, but you may want to have:

foreach (object o in values)
        {
            int? x = o as int?;

as

int? x;
foreach (object o in values)
        {
            x = o as int?;

You are creating a new object each time, which won't completely explain the problem, but may contribute.

link|flag
I tried but this seems to have little effect... – divo Oct 17 at 20:03
1  
No, I ran that and it is marginally slower. – Henk Holterman Oct 17 at 20:03
1  
Declaring a variable in a different place only affects the generated code significantly when the variable is captured (at which point it affects the actual semantics) in my experience. Note that it's not creating a new object on the heap, although it's certainly creating a new instance of int? on the stack using unbox.any. I suspect that's the issue - my guess is that hand-crafted IL could beat both options here... although it's also possible that the JIT is optimised to recognise for the is/cast case and only check once. – Jon Skeet Oct 17 at 20:08
I was thinking that the cast is probably optimized since it has been around for so long. – James Black Oct 17 at 20:17
1  
is/cast is an easy target for optimization, it's such an annoyingly common idiom. – Anton Tykhyy Oct 17 at 20:26
show 3 more comments
vote up 3 vote down

It seems to me that the isinst is just really slow on nullable types. In method FindSumWithCast I changed

if (o is int)

to

if (o is int?)

which also significantly slows down execution. The only differenc in IL I can see is that

isinst     [mscorlib]System.Int32

gets changed to

isinst     valuetype [mscorlib]System.Nullable`1<int32>
link|flag
It's more than that; in the "cast" case the isinst is followed by a test for nullity and then conditionally an unbox.any. In the nullable case there's an unconditional unbox.any. – Jon Skeet Oct 17 at 20:14
Yes, turns out both isinst and unbox.any are slower on nullable types. – divo Oct 17 at 20:26
vote up 2 vote down

Interestingly, I passed on feedback about operator support via dynamic being an order-of-magnitude slower for Nullable<T> (similar to this early test) - I suspect for very similar reasons.

Gotta love Nullable<T>. Another fun one is that even though the JIT spots (and removes) null for non-nullable structs, it borks it for Nullable<T>:

using System;
using System.Diagnostics;
static class Program {
    static void Main() { 
        // JIT
        TestUnrestricted<int>(1,5);
        TestUnrestricted<string>("abc",5);
        TestUnrestricted<int?>(1,5);
        TestNullable<int>(1, 5);

        const int LOOP = 100000000;
        Console.WriteLine(TestUnrestricted<int>(1, LOOP));
        Console.WriteLine(TestUnrestricted<string>("abc", LOOP));
        Console.WriteLine(TestUnrestricted<int?>(1, LOOP));
        Console.WriteLine(TestNullable<int>(1, LOOP));

    }
    static long TestUnrestricted<T>(T x, int loop) {
        Stopwatch watch = Stopwatch.StartNew();
        int count = 0;
        for (int i = 0; i < loop; i++) {
            if (x != null) count++;
        }
        watch.Stop();
        return watch.ElapsedMilliseconds;
    }
    static long TestNullable<T>(T? x, int loop) where T : struct {
        Stopwatch watch = Stopwatch.StartNew();
        int count = 0;
        for (int i = 0; i < loop; i++) {
            if (x != null) count++;
        }
        watch.Stop();
        return watch.ElapsedMilliseconds;
    }
}
link|flag
Yowser. That's a really painful difference. Eek. – Jon Skeet Oct 17 at 21:32
Hence some of the obscure code in MiscUtil/Operator ;-p – Marc Gravell Oct 17 at 21:36
If no other good has come out of all of this, it's led me to include warnings for both my original code and this :) – Jon Skeet Oct 18 at 11:52

Your Answer

Get an OpenID
or

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