Profiling a XAML Windows Store App
- select the contributor at the end of the page -

"If you are developing a Windows Store App using XAML (whether it's C++, C#, or VB), there is a good chance there will be areas of your app where you would like to improve the performance. To assist with this, we've included the Visual Studio CPU profiler in all SKUs of Visual Studio capable of developing Windows Store Apps (this means we've moved the CPU profiler from being a Visual Studio Premium feature, to including it Visual Studio 2012 Professional and Visual Studio 2012 Express for Windows 8)." -- Andrew B. Hall's Blog
After showing some screen shots on how to get started sampling your application, Andrew explains the concepts of CPU sampling and how it works.
CPU sampling collects a call stack once every millisecond from the CPU (one call stack per core, so on a quad core machine for example there could be four stacks collected every millisecond).
Once profiling is stopped a report is built that is the summary of all the aggregated call stacks. The report will then show which methods were on the call stack most frequently (inclusive samples) and which methods were actually executing most frequently (exclusive samples) when the stacks were taken.
He then goes on to show examples of the analysis reports and key data items they contain. In particular he covers the summary page, function details, and how to use the Call Tree View.
This will change to the call tree view of the profiler that shows me the complete distribution of the samples in my application. Looking at the call tree, I see that the only other call path that seems to have any significant number of samples in it is in nvwgf2um.dll which is ~40% of the CPU samples.
To learn more about Profiling a XAML Windows Store App, check out Andrew B. Hall's excellent blog post here. You can also learn about debugging from the numerous courses in Pluralsight's library.