Profiling and Memory Checking Tools: Difference between revisions
AutoSpider (talk | contribs) (Add "cleanup" tag) |
AutoSpider (talk | contribs) (Convert ExpressionEngine links) |
||
Line 11: | Line 11: | ||
Valgrind is the tool of choice for analyzing a variety of issues on Linux and Mac OS X. It uses individual tools for specific analysis like profiling and memory checking. Qt Creator's Analyze mode integrates Valgrind, and provides both memory checking and profiling functionality from within the IDE. Valgrind needs to be installed for that to work. Valgrind is not available on Windows, but since memory issues are usually not platform dependent, analysis can be done on Linux or Mac OS X as well. | Valgrind is the tool of choice for analyzing a variety of issues on Linux and Mac OS X. It uses individual tools for specific analysis like profiling and memory checking. Qt Creator's Analyze mode integrates Valgrind, and provides both memory checking and profiling functionality from within the IDE. Valgrind needs to be installed for that to work. Valgrind is not available on Windows, but since memory issues are usually not platform dependent, analysis can be done on Linux or Mac OS X as well. | ||
* | * [http://valgrind.org/ Valgrind] | ||
There is a tutorial on how to debug C++ code with Valgrind on Linux at http://devmentor.posterous.com/debugging-with-valgrind | There is a tutorial on how to debug C++ code with Valgrind on Linux at http://devmentor.posterous.com/debugging-with-valgrind | ||
* | * [http://kcachegrind.sourceforge.net/html/Home.html KCacheGrind] | ||
Visualizer for Valgrind profiling results | Visualizer for Valgrind profiling results | ||
* | * [http://www.valgrind.org/downloads/current.html Valkyrie] | ||
Qt4-based GUI for the Valgrind 3.6.x and 3.7.x series | Qt4-based GUI for the Valgrind 3.6.x and 3.7.x series | ||
* | * [https://projects.kde.org/projects/extragear/sdk/massif-visualizer Massif Visualizer] | ||
visualizer for the massif (one of the valgrind tools) output | visualizer for the massif (one of the valgrind tools) output | ||
* | * [https://blog.qt.io/blog/2013/04/17/using-gccs-4-8-0-address-sanitizer-with-qt/ AddressSanitizer] Memory monitoring tool built into gcc 4.8 and clang | ||
=== Windows === | === Windows === | ||
* | * [http://smartbear.com/products/development-tools/performance-profiling/ AQTime] (commercial) | ||
can detect memory leaks, but is mainly for profiling | can detect memory leaks, but is mainly for profiling | ||
* | * [http://www.microfocus.com/products/micro-focus-developer/devpartner/index.aspx Bounds Checker] | ||
* | * [http://deleaker.com/ Deleaker] (commercial) detects memory, GDI and other leaks | ||
* | * [http://www.drmemory.org/ Dr.Memory] (Open-source memory monitoring tool) | ||
* | * [http://software.intel.com/en-us/articles/intel-parallel-inspector/ Intel Parallel Inspector] (commercial) | ||
* | * [http://lukestackwalker.sourceforge.net/ Luke Stackwalker] (Open-source CPU profiler based on sampling) | ||
* | * [http://www-01.ibm.com/software/awdtools/purify/win/ Rational Purify] (commercial) | ||
* | * [http://vld.codeplex.com/ Visual Leak Detector] | ||
* | * [http://www.codersnotes.com/sleepy Very Sleepy] (Open-source CPU profiler based on sampling) | ||
* Visual Studio Profiler (up to VS 2010 only in the ultimate version, VS 11 will have it in the professional version) | * Visual Studio Profiler (up to VS 2010 only in the ultimate version, VS 11 will have it in the professional version) |
Revision as of 15:09, 4 March 2015
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine. Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean. |
Tools for Profiling and Memory Checking
This is a collection of tools for profiling and memory checking. It's mostly a summary of programs/libraries mentioned in the forums, notably in threads "Advice on checking for memory leaks and dangling resources?"/forums/viewthread/1924 and "Other tools for Qt Development":/forums/viewthread/2248/.
Linux, Mac OS X
Valgrind is the tool of choice for analyzing a variety of issues on Linux and Mac OS X. It uses individual tools for specific analysis like profiling and memory checking. Qt Creator's Analyze mode integrates Valgrind, and provides both memory checking and profiling functionality from within the IDE. Valgrind needs to be installed for that to work. Valgrind is not available on Windows, but since memory issues are usually not platform dependent, analysis can be done on Linux or Mac OS X as well.
There is a tutorial on how to debug C++ code with Valgrind on Linux at http://devmentor.posterous.com/debugging-with-valgrind
Visualizer for Valgrind profiling results
Qt4-based GUI for the Valgrind 3.6.x and 3.7.x series
visualizer for the massif (one of the valgrind tools) output
- AddressSanitizer Memory monitoring tool built into gcc 4.8 and clang
Windows
- AQTime (commercial)
can detect memory leaks, but is mainly for profiling
- Bounds Checker
- Deleaker (commercial) detects memory, GDI and other leaks
- Dr.Memory (Open-source memory monitoring tool)
- Intel Parallel Inspector (commercial)
- Luke Stackwalker (Open-source CPU profiler based on sampling)
- Rational Purify (commercial)
- Visual Leak Detector
- Very Sleepy (Open-source CPU profiler based on sampling)
- Visual Studio Profiler (up to VS 2010 only in the ultimate version, VS 11 will have it in the professional version)