适用于 Windows 的最佳免费 C++ 分析器是什么?

What#39;s the best free C++ profiler for Windows?(适用于 Windows 的最佳免费 C++ 分析器是什么?)
本文介绍了适用于 Windows 的最佳免费 C++ 分析器是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在寻找一个分析器,以便找到我的 C++ 代码中的瓶颈.我想找到一个免费的、非侵入性的、好的分析工具.我是一名游戏开发者,我使用 Xbox 360 的 PIX 并发现它非常好,但它不是免费的.我知道英特尔 VTune,但它也不是免费的.

I'm looking for a profiler in order to find the bottleneck in my C++ code. I'd like to find a free, non-intrusive, and good profiling tool. I'm a game developer, and I use PIX for Xbox 360 and found it very good, but it's not free. I know the Intel VTune, but it's not free either.

推荐答案

CodeXL 有现在取代了行尾 AMD 代码分析员,两者都是免费的,但不如 VTune 先进.

CodeXL has now superseded the End Of Line'd AMD Code Analyst and both are free, but not as advanced as VTune.

还有 Sleepy,它非常简单,但在很多情况下都能胜任.

There's also Sleepy, which is very simple, but does the job in many cases.

注意:上述所有三个工具都已多年未维护.

这篇关于适用于 Windows 的最佳免费 C++ 分析器是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Returning a pointer of a local variable C++(返回局部变量 C++ 的指针)
Inline function linkage(内联函数联动)
Which is more efficient: Return a value vs. Pass by reference?(哪个更有效:返回值与通过引用传递?)
Why is std::function not equality comparable?(为什么 std::function 不具有可比性?)
C++ overload resolution(C++ 重载解析)
When to Overload the Comma Operator?(什么时候重载逗号运算符?)