What is Dynamic Code Analysis?

How is it different from Static Code Analysis (ie, what can it catch that can't be caught in static)?

I've heard of bounds checking and memory analysis - what are these?

What other things are checked using dynamic analysis?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

Simply put, static analysis collect information based on source code and dynamic analisys is based on the system execution, often using instrumentation.

Advantages of dynamic analysis

  • Is able to detect dependencies that is not possible in static analysis. Ex.: dynamic dependencies using reflection, dependecy injection, polimorphism.
  • Can collect temporal information
  • Deals with real runtime values

Disadvantages of dynamic analysis

  • Much more complex to work with
  • Cannot garantee the full coverage of the source code, as is runs based on user interaction or automatic tests

Resources

There's many dynamic analysis tools in the market, being debuggers the most notorious one. On the other hand, it's still an academic research field. There's many researchers studying how to use dynamic analysis for better understanding of software systems. There's an annual workshop dedicated to dependecy analysis.

link|improve this answer
feedback

Basically you instrument your code to analyze your software as it is running (dynamic) rather than just analyzing the software without running (static). Also see this JavaOne presentation comparing the two. Valgrind is one example dynamic analysis tool for C. You could also use code coverage tools like Cobertura or EMMA for Java analysis.

From Wikipedia's definition of dynamic program analysis:

Dynamic program analysis is the analysis of computer software that is performed with executing programs built from that software on a real or virtual processor (analysis performed without executing programs is known as static code analysis). Dynamic program analysis tools may require loading of special libraries or even recompilation of program code.

link|improve this answer
feedback

Bounds checking

This means runtime checks of array accesses. Contrary to C's laissez-faire approach to memory accesses and pointer arithmetic, other languages like Java or C# actually check whether or not a given array has the element one is trying to access.

link|improve this answer
feedback

You asked for a good explanation of "bounds checking and memory analysis" issues.

Our Memory Safety Check tool instruments your application to watch at runtime for memory access errors (buffer overruns, array subscript errors, bad pointers, alloc/free errors). The link contains a good explanation complete with examples.

This is an extremely good example of a dynamic analysis tool: the testing happens at runtime.

link|improve this answer
1  
Consider adding some of those examples and explanation to the answer itself, otherwise people might consider it a little spammy. – Adam Davis Mar 10 '11 at 18:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.