Inhaltsverzeichnis
Dynamisch Analyse
Performance
Profiling allows to learn where your program spent its time and which functions called which other functions while it was executing.
Speicher
- www.valgrind.org – Automatically detect many memory management and threading bugs.
- StackAnalyzer – Stack Usage Analysis. Stack overflow is now a thing of the past.
Dynamic Code Analysis
Memory Management
- www.valgrind.org – Valgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically detect many memory management and threading bugs, and profile your programs in detail. You can also use Valgrind to build new tools.