Applications
Shape analysis has been applied to a variety of problems: * Memory safety: findingopen()
before it is read()
)
* Ensuring that a method to reverse a Example
Shape analysis is a form of pointer analysis, although it is more precise than typical pointer analysis. Pointer analysis attempts to determine the set of objects to which a pointer can point (called the points-to set of the pointer). Unfortunately, these analysis are necessarily approximate (since a perfectly precise static analysis could solve theprocess_items
function is free of errors, it is clear that the program is safe: it never references freed memory, and it deletes all the objects that it has constructed.
Unfortunately, most pointer analyses have difficulty analyzing this program precisely. In order to determine points-to sets, a pointer analysis must be able to ''name'' a program's objects. In general, programs can allocate an unbounded number of objects; but in order to terminate, a pointer analysis can only use a finite set of names. A typical approximation is to give all the objects allocated on a given line of the program the same name. In the example above, all the objects constructed at line would have the same name. Therefore, when the delete
statement is analyzed for the first time, the analysis determines that one of the objects named is being deleted. The second time the statement is analyzed (since it is in a loop) the analysis warns of a possible error: since it is unable to distinguish the objects in the array, it may be that the second delete
is deleting the same object as the first delete
. This warning is spurious, and the goal of shape analysis is to avoid such warnings.
Summarization and materialization
Shape analysis overcomes the problems of pointer analysis by using a more flexible naming system for objects. Rather than giving an object the same name throughout a program, objects can change names depending on the program's actions. Sometimes, several distinct objects with different names may be ''summarized,'' or merged, so that they have the same name. Then, when a summarized object is about to be used by the program, it can be ''materialized''—that is, the summarized object is split into two objects with distinct names, one representing a single object and the other representing the remaining summarized objects. The basic heuristic of shape analysis is that objects that are being used by the program are represented using unique materialized objects, while objects not in use are summarized. The array of objects in the example above is summarized in separate ways at lines and At line the array has been only partly constructed. The array elements 0..i-1 contain constructed objects. The array element i is about to be constructed, and the following elements are uninitialized. Shape analysis can approximate this situation using a summary for the first set of elements, a materialized memory location for element i, and a summary for the remaining uninitialized locations, as follows: After the loop terminates, at line there is no need to keep anything materialized. The shape analysis determines at this point that all the array elements have been initialized: At line however, the array elementi
is in use again. Therefore, the analysis splits the array into three segments as in line This time, though, the first segment before i
has been deleted, and the remaining elements are still valid (assuming the delete
statement hasn't executed yet).
Notice that in this case, the analysis recognizes that the pointer at index i
has not been deleted yet. Therefore, it doesn't warn of a double deletion.
See also
* Alias analysis * Escape analysisReferences
Bibliography
* * * {{Compiler optimizations Static program analysis Articles with example C++ code