Welcome to MSDN Blogs Sign in | Join | Help

Visual Studio 2008 (Orcas) Beta 2 Now Available!

Microsoft Visual Studio 2008 (codename "Orcas") Beta 2 is now available for download.  We encourage you to download and try this early release. As the goal of this preview is to gather feedback from the developer community, please use Microsoft Connect to report any issues, or to suggest improvements.  You can use the VC++ Orcas Forums to discuss any C++ relates issues.

We look forward to your feedback!

Thanks,

The Visual C++ Development Team.

Published Thursday, July 26, 2007 3:15 PM by vcblog

Comments

Friday, July 27, 2007 11:53 AM by Sohail

# re: Visual Studio 2008 (Orcas) Beta 2 Now Available!

How about a list of improvements?

Saturday, August 04, 2007 6:57 AM by Sheik

# re: Visual Studio 2008 (Orcas) Beta 2 Now Available!

Thanks

Monday, August 06, 2007 10:30 AM by Eran

# Will it be possible to optimize MFC using PGO?

Hi,

I went to your presentation in Israel last Monday. I was very impressed by the PGO demonstration. I have a question regarding that optimization: PGO works on a single executable in a given scenario. Code that uses STL can enjoy the benefits of this optimization, because the STL code is compiled into the executable. Code that uses MFC, however, has a disadvantage: MFC runs in a DLL of its own. This means that not only can it not be optimized within the main executable, it cannot be optimized at its own using the same scenario, unless you go through all the trouble and compile it yourself.

So, in favor of PGO, are you considering letting the MFC code compile into the executable, like STL does?

Thursday, August 23, 2007 2:33 PM by vcblog

# re: Visual Studio 2008 (Orcas) Beta 2 Now Available!

Hello

Re the question: "How about a list of improvements?"

For a starting list, please look at the Orcas Feature Specifications: http://msdn2.microsoft.com/en-us/vstudio/aa948851.aspx under Visual C++.

Thanks

Damien

Thursday, August 23, 2007 4:58 PM by Jonathan E Caves

# PGO and MFC

The reason why the container part of the Standard C++ Library is compiled into the executable is that it is heavily based on class templates and therefore the code is defined in header files. Note: this is not true of all of the Standard C++ Library - there are elements of std:string and especially std::iostream and the like which are not defined in header files and are therefore unavailable for PGO.

Any MFC code that is defined header files is available to PGO - agreed this is not much in the case of MFC but it more in the case of ATL.

In any case the most common usage of MFC is as a dynamic (shared) library and so even if you could PGO'ize this dynamic library for your application this might not be the best optimizations for the other users of the DLL.

Friday, April 04, 2008 5:14 AM by chenguoda

# Visual C Q

原文链接:http://herbsutter.spaces.live.com/blog/cns!2D4327CC297151BB!272.entry

New Comments to this post are disabled
 
Page view tracker