What are the basic concepts of dynamic program analysis? What are the basic techniques of dynamic program analysis? Is gprof (GNU profiler) dynamic analysis tool or static analysis tool? Please suggest literature or articles on this matter.
|
feedback
|
|
Dynamic analysis deals in the run-time behavior of software under typical or atypical loads. This can serve different purposes. One is to get measurements to see how long programs take, and whether or not they can handle the load they are given. For that purpose, Instrumenting profilers can be more suitable A different purpose is to find out where code can can be effectively optimized. For this purpose it is less important to get accurate time measurements, and it is more important to precisely locate code responsible for large-ish fractions of time. For this, I and some others prefer stack-sampling. While stack samples take more storage than program counter samples, only a small number of them is needed to accomplish the purpose. Here's a case using 3 samples. gprof is a dynamic analysis tool. A prior utility is prof, which works by sampling the program counter. gprof builds on prof by trying to associate samples occurring in a routine to the callers of the routine, since the callers are just as responsible for the time being spent as the base routines are. Newer profilers such as Zoom work by sampling the stack, because during the time a caller is responsible for, that caller is on the stack. They can also give information about specific lines of code, not just routines, since those are also on the stack. If they sample during I/O or other blocking time, then they can also give information about calls that are responsible for overall time being spent, not just CPU time. Here's more on the subject and a discussion of the statistical concepts. If there's literature on stack sampling, I'd appreciate someone pointing it out. FWIW: I've written a couple articles on it:
| |||||||
feedback
|
|
1. Dynamic analysis (of programs) means collection and analyis of runtime data to understand something about the program or the data it processes. Static analysis (of programs) means extraction of facts about a program without actually running it, that is, simply reasoning about the the program text as presented. In theory, the distinction is a little strange. One can build a static analyzer that is in effect a simulation of "running" the program (one might call this an interpreter), that collects facts about the program as it is simulated. So arguably, a static analyzer can do dynamic analysis. [In fact, one of the more effective types of static analysis is based on the idea of "abstract interpretation", which is simulating program execution using values which are "abstract" (e.g, "more than zero", "equal zero", "less than zero") instead of concrete (e.g, binary number]. As a practical matter, execution of a program in its "native execution mode" is generally hard to simulate accurately with an interpreter, unless its "native execution mode" is precisely such an interpreter. (Python comes to mind...). And for compiled programs, the execution rate of native mode may enable behaviors that an interpreted program cannot acheive due to higher resource demands and longer runtimes. So dynamic analysis often implies that the application code of interest is executed directly the CPU on which application is intended to run. 2. Test coverage tools and profilers are a very common, classical examples of dynamic analysis tools. They tend to be implemented by some kind of instrumentation that watches the program run in its "native execution mode" to collect timing information or simply "this-was-executed" information. This instrumentation may sit outside the code (e.g, a clock tick interrupt that samples the PC [or the call stack as suggested by Dunlavey], or be woven into the code (e.g, calls inserted at function entry to record "this function was called at clock time T"). When looking at a dynamic analysis tool, it is always interesting to ask, "where'e the instrumentation hiding?" But one can use dynamic analysis to watch for any arbitrary property, if one has the proper instrumentation. The trick is to provide the right instrumention as some kind of outside activity (say, a debugging process) or as modifications to the code to check specifically for some kind of behavior. Just to provide an example of a different kind of dynamic analysis tool, see our CheckPointer tool, which watches every use of a pointer in a C program to verify that the pointer is not used incorrectly (e.g., garbage/void pointer, access to free'd storage, access outside of the entity [array, struct slot] from which the original pointer was constructed, access to re-allocated storage, ...). Checkpointer works by inserting vast amounts of instrumentation into the source code to record metadata at each pointer update, and check each pointer access against the colleted metadata. Valgrind is also a really interesting example. It literally simulates "native execution mode", by simulating the virtual space in which a standard (Linux) binary runs, machine instruction by machine instruction, so it appears to be "running" the binary, which makes it a dynamic instrumentation tool. It instruments instruction sequences to collect data as specified by some engineers (mostly the Valgrind support folks). One of its instrumentation types also watches for bad pointer uses like CheckPointer (but Valgrind doesn't catch as many of the types of possible errors). One could argue that Valgrind is a static analysis tool because the actual program isn't being executed by the CPU. Valgrind suffers for this simulation by having exactly the high overhead problem. | ||||
|
feedback
|