vote up 2 vote down star

I couldn't find any useful information on Microsoft's site, so here is the question: has the compiler in Visual C++ 2008 been improved significantly since the 2005 version? I'm especially looking for better optimization.

flag

50% accept rate

5 Answers

vote up 6 vote down check

Straight from the horses mouth....

http://msdn.microsoft.com/en-us/library/bb384632.aspx

link|flag
You'll also want the link to the late breaking changes: msdn.microsoft.com/en-us/library/… – morechilli Sep 23 '08 at 7:50
Thanks, this was what I was looking for. So the answer is "not much". – Frederik Slijkerman Sep 23 '08 at 8:13
vote up 0 vote down

According to one of our senior developers VS2008 features extended support for multicore compilation ( file-wise instead of project-wise I'm told ), so there might be a reasonable performance optimization for your project.

link|flag
vote up -1 vote down

In my experience, compiler optimizations rarely improve more than a few percent between versions at most; if you really need more performance, that few percent just isn't going to cut it--you're going to have to get down and dirty in the code if you want more.

Remember, compilers are extremely dumb, and can usually be outwitted by a smart programmer; the only question is whether its worth your time and effort to do so. If you have a single core function that makes up 90% of your CPU time, it might definitely be so. If runtime is spread equally over ten thousand lines of code, probably not.

Of course, if your speed problem is due to slow algorithms, no compiler can save you.

link|flag
vote up 2 vote down

Somasegar has some notes in this blog post. Mainly about incremental build improvements and multi core improvements.

link|flag
vote up 0 vote down

Have you looked here, here or here ?

If yes, and no information was there you could start by checking first the compiler version (cl.exe) the linker version(link.exe) and then make some performance (optimization tests) and see who is the winner.

Usually a newer version of cl.exe will be better. Not the same thing can be mentioned about the UserInterface of Visual Studio (at least from my experience).

link|flag

Your Answer

Get an OpenID
or

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