我非常依赖通过执行以下操作找到的“cpu使用”工具:
>点击“调试”
>单击“启动诊断工具而不调试”
>单击“cpu使用情况”复选框
>点击“开始”按钮
程序完成后,它应该显示每个功能和花费的时间.我得到的只是我的可执行文件的名称,我可以继续扩展,而不是看到函数名称 – 它不知道函数的名称.
这在Visual Studio 2013上工作正常…我可以看到功能名称和一切工作.我尝试创建一个新的“测试”解决方案/项目,看看这是否有效,我得到相同的结果:没有函数名称.
这是否适用于任何人?我还在一个新的开发框上安装了VS2015,仍然没有结果.这似乎是Microsoft附带的Visual Studio错误.
注意:我正在编写一个C控制台应用程序.我已经在调试和发布版本中尝试过,并确保我正在构建调试信息.
解决方法
Profile your cpu Usage while debugging
Now,you can get a detailed per-function profile of your cpu Usage while you are debugging. You can turn cpu Profiling on and off while debugging and view the results when you are in a break state,which allows you to view a per-function breakdown of cpu Usage of code that executed between breakpoints and during steps. (To use this functionality,open the Diagnostic Tools window (Debug -> Diagnostic Tools),switch to the cpu tab,and then click the “cpu Profiling” button.)