I am experimenting with compiler performance. I have a very small piece of code, just a few floating point multiplications and additions. The code gets executed in a loop several million times. I am trying to compile the code in C++, c#, java, perl, python ... and then I run the result while measuring execution time.

I am quite dissatisfied with c# performance. My c# code is about 60% slower than equivalent C++ or java. I am sure, there must be a bug in my experiment. I would like to disassemble the resulting binary to learn why.

Is there such a option with MSIL code? Can the result of the c# JIT compiler be examined on the machine instruction level (x86 instructions, not MSIL instructions)?

Update

the code (u, v, g* are double; steps is integer)

stopwatch.Start();
for (int i = 0; i < steps; i++)
{
    double uu = g11 * u + g12 * v;
    v = g21 * u + g22 * v;
    u = uu;
}
stopwatch.Stop();
link|improve this question

Are you sure your benchmark allows the JIT to kick in in the first place? Perhaps you should show it. – delnan May 14 '11 at 11:22
@delnan: How do you mean? The code couldn't be run if the JIT didn't compile it. – Guffa May 14 '11 at 11:30
@Guffa: the question is if the JIT time should be included in the benchmark. – Henk Holterman May 14 '11 at 11:35
Show us the code and describe the scenario how you run it. Specify, how and where you are measuring the time. Be aware of the fact, that your code and any of it's calees get JITted first time when they are called, which of course introduces a time penalty. After that, there are not many reasons why the code should run slowlier than equivalent code which was directly compiled into a native binary. Yeah, exactly what @Guffa meant, he was just faster (and less verbose) than me.. – Paul Michalik May 14 '11 at 11:38
@Guffa, Paul Michalik - the execution time is between 3 to 5 seconds. – danatel May 14 '11 at 11:50
feedback

3 Answers

up vote 7 down vote accepted

Debug your code in Visual Studio (but compile in release mode), put a breakpoint in the loop, and open the Disassembly window (Debug -> Windows -> Disassembly) when the execution stops at the breakpoint.

link|improve this answer
Thanks, this works. – danatel May 14 '11 at 12:23
1  
@danatel: It works but you might need to do better. Rewrite the program to run the code of interest twice, and put up a message box between the two runs. Attach the debugger to the process when the message box comes up. Remember, the jitter knows whether you are debugging or not. It can, and does, generate less optimal code when the debugger is running to make the debugging experience better. If you want to know what the jitter is doing when the debugger is not running, then attach the debugger after the jitter generates the code the first time. – Eric Lippert May 14 '11 at 14:57
@Eric Lippert: I know that there is a big difference between compiling in debug more and release mode, but is there also a difference depending on whether there is a debugger attached? – Guffa May 15 '11 at 0:11
1  
@Guffa: There can be. The jitter knows whether a debugger is attached and can choose to skip some optimizations that make it hard to debug. – Eric Lippert May 15 '11 at 0:18
@Eric Lippert: Thank you for your advice, but in this case the difference was clearly visible even in debug mode. C++ code cleverly keeps everything inside the FPU stack, c# pushes and pulls the variables from RAM. The next step in my experiment is to use gcc and intel compilers for comparision. – danatel May 15 '11 at 7:26
show 3 more comments
feedback

Ngen your program and disassemble the results.

link|improve this answer
feedback

Maybe you could ngen (compile to native code) the binary first, to avoid the JIT compilation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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