==== Dynamisch Analyse ==== === Performance === * [[wpde>Effizienz (Informatik)]] Profiling allows to learn where your program spent its time and which functions called which other functions while it was executing. * [[https://www.cs.utah.edu/dept/old/texinfo/as/gprof.html|GNU profiler]] [[https://sourceware.org/binutils/docs/gprof/|User Manual]] === Speicher === * www.valgrind.org -- Automatically detect many memory management and threading bugs. * [[http://www.absint.com/stackanalyzer/|StackAnalyzer]] -- Stack Usage Analysis. Stack overflow is now a thing of the past. ====== Dynamic Code Analysis ====== * ([[wpde>Dynamisches Software-Testverfahren]] :DE:) ===== 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. * [[http://www.heise.de/developer/artikel/Einfuehrung-in-die-Arbeit-mit-Valgrind-und-Memcheck-Teil-1-2480976.html|Einführung in die Arbeit mit Valgrind und Memcheck, Teil 1]] * [[http://www.heise.de/developer/artikel/Einfuehrung-in-die-Arbeit-mit-Valgrind-und-Memcheck-Teil-2-2488710.html|Einführung in die Arbeit mit Valgrind und Memcheck, Teil 2]] ===== Performance ===== * [[http://www.linuxfocus.org/English/March2005/article371.shtml|Optimizing C/C++ programs using the GProf profiler]]