Package pascal.taie.analysis.pta.plugin
Class ResultProcessor
java.lang.Object
pascal.taie.analysis.pta.plugin.ResultProcessor
- All Implemented Interfaces:
Plugin
Dump points-to set to file or compare the analysis result with
the ones read from input file.
Currently, the compare functionality is mainly for testing purpose.
It is not efficient and not recommended applying on large program.
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onFinish()
Invoked when pointer analysis finishes.static void
process
(AnalysisOptions options, PointerAnalysisResult result) void
Sets pointer analysis solver which will be used later by the plugin.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface pascal.taie.analysis.pta.plugin.Plugin
onNewCallEdge, onNewCSMethod, onNewMethod, onNewPointsToSet, onNewStmt, onStart, onUnresolvedCall
-
Field Details
-
RESULTS_FILE
- See Also:
-
RESULTS_YAML_FILE
- See Also:
-
-
Constructor Details
-
ResultProcessor
public ResultProcessor()
-
-
Method Details
-
setSolver
Description copied from interface:Plugin
Sets pointer analysis solver which will be used later by the plugin. -
onFinish
public void onFinish()Description copied from interface:Plugin
Invoked when pointer analysis finishes. Pointer analysis is supposed to have been finished at this stage, thus this call back should NOT modify pointer analysis results. -
process
-