Changes between Initial Version and Version 1 of PointsToAnalysis


Ignore:
Timestamp:
02/15/16 14:25:59 (10 years ago)
Author:
zmanchun
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PointsToAnalysis

    v1 v1  
     1== Points-to Analysis ==
     2This analysis computes the set of objects or components that a pointer can reference to. There are a lot of different categories of methods. The method described here is based on:
     3* flow-sensitive analysis: control-flow information is considered during analysis;
     4* context-sensitive analysis: when calling a function, values flow from one call through the function and return to another caller;
     5* heap modeling: objects named by allocation site
     6* aggregate modeling: elements of struct/array are distinguished
     7
     8
     9