Class CFGVisualizeLauncher
java.lang.Object
org.checkerframework.dataflow.cfg.visualize.CFGVisualizeLauncher
Launcher to generate the DOT or String representation of the control flow graph of a given method
in a given class.
Usage: Directly run it as the main class to generate the DOT representation of the control
flow graph of a given method in a given class. See ConstantPropagationPlayground
for another way to
use it.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <V extends AbstractValue<V>,
S extends Store<S>, T extends TransferFunction<V, S>>
voidgenerateDOTofCFG
(String inputFile, String outputDir, String method, String clas, boolean pdf, boolean verbose, @Nullable Analysis<V, S, T> analysis) Generate the DOT representation of the CFG for a method.static <V extends AbstractValue<V>,
S extends Store<S>, T extends TransferFunction<V, S>>
@Nullable Map<String,Object> generateStringOfCFG
(String inputFile, String method, String clas, boolean verbose, @Nullable Analysis<V, S, T> analysis) Generate the String representation of the CFG for a method.static void
The main entry point of CFGVisualizeLauncher.static void
writeStringOfCFG
(String inputFile, String method, String clas, String outputFile, Analysis<?, ?, ?> analysis) Write generated String representation of the CFG for a method to a file.
-
Method Details
-
main
The main entry point of CFGVisualizeLauncher.- Parameters:
args
- the passed arguments, seeprintUsage()
for the usage
-
generateDOTofCFG
public static <V extends AbstractValue<V>,S extends Store<S>, void generateDOTofCFGT extends TransferFunction<V, S>> (String inputFile, String outputDir, String method, String clas, boolean pdf, boolean verbose, @Nullable Analysis<V, S, T> analysis) Generate the DOT representation of the CFG for a method.- Type Parameters:
V
- the abstract value type to be tracked by the analysisS
- the store type used in the analysisT
- the transfer function type that is used to approximated runtime behavior- Parameters:
inputFile
- a Java source file, used as inputoutputDir
- source output directorymethod
- name of the method to generate the CFG forclas
- name of the class which includes the method to generate the CFG forpdf
- also generate a PDFverbose
- show verbose information in CFGanalysis
- analysis to perform before the visualization (ornull
if no analysis is to be performed)
-
writeStringOfCFG
public static void writeStringOfCFG(String inputFile, String method, String clas, String outputFile, Analysis<?, ?, ?> analysis) Write generated String representation of the CFG for a method to a file.- Parameters:
inputFile
- a Java source file, used as inputmethod
- name of the method to generate the CFG forclas
- name of the class which includes the method to generate the CFG foroutputFile
- source output fileanalysis
- instance of forward or backward analysis from specific dataflow test case
-
generateStringOfCFG
public static <V extends AbstractValue<V>,S extends Store<S>, @Nullable Map<String,T extends TransferFunction<V, S>> Object> generateStringOfCFG(String inputFile, String method, String clas, boolean verbose, @Nullable Analysis<V, S, T> analysis) Generate the String representation of the CFG for a method.- Type Parameters:
V
- the abstract value type to be tracked by the analysisS
- the store type used in the analysisT
- the transfer function type that is used to approximated runtime behavior- Parameters:
inputFile
- a Java source file, used as inputmethod
- name of the method to generate the CFG forclas
- name of the class which includes the method to generate the CFG forverbose
- show verbose information in CFGanalysis
- analysis to perform before the visualization (ornull
if no analysis is to be performed)- Returns:
- a map which includes a key "stringGraph" and the String representation of CFG as the value
-