有什么方法可以分析代码的缓存行为吗?
正如标题所说,我想以某种方式获得我的代码的缓存行为。我正在运行Windows 7 64位版本,在Visual Studio 2008专业版上编译,编译C++代码。
我知道 Linux 下有 Valgrind,但是有没有我可以使用的免费替代品或其他方法?
As the title says I'd like to somehow get the cache behavior of my code. I'm running Windows 7 64-bit edition, compiling on Visual Studio 2008 Professional Edition, compiling C++ code.
I understand that there's Valgrind under Linux, but are there any free alternatives I could use, or methods otherwise?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VTune 将为您提供非常详细的缓存和管道分析。不过它并不便宜。我相信 VS 的某个级别/版本(我记得它是 XP 上的“团队版”)有一个不错的分析器。
VTune will give you pretty detailed cache and pipeline analysis. It's not cheap though. I believe some level/edition of VS (I remember it was "team edition" on XP) had a decent profiler.
尝试
AQTime
。我很确定其中一些选项包括缓存分析。Try
AQTime
. I'm pretty sure that some of it options include cache profiling.