CLion 2021.1 Help

Dynamic code analysis

Dynamic code analysis is a way to analyze your application during its execution. This approach facilitates exposing vulnerabilities and bugs that can only be revealed at runtime, such as memory leaks, uninitialized accesses, concurrency issues, undefined behavior situations, and many others.

When employing dynamic analysis, keep in mind that:

  • dynamic analysis tools may introduce a slowdown in the application performance,

  • a dynamic test only finds defects in the actually executed code, so the full-coverage problem should be addressed separately.

For dynamic code analysis, CLion integrates Valgrind Memcheck, Google Sanitizers, CPU Profiler, and Code Coverage tools, providing them with the visualized output and handy features to help you work with the results. Refer to the corresponding articles for more details.

Last modified: 08 March 2021