Lines Matching refs:print
10 // This file provides passes to print out SCCs in a CFG or a CallGraph.
16 // (2) To print out the SCCs for a CFG or a CallGraph:
17 // analyze -print-cfg-sccs to print the SCCs in each CFG of a module.
18 // analyze -print-cfg-sccs -stats to print the #SCCs and the maximum SCC size.
19 // analyze -print-cfg-sccs -debug > /dev/null to watch the algorithm in action.
22 // analyze -print-callgraph-sccs [-stats] [-debug] to print SCCs in the CallGraph
42 void print(raw_ostream &O, const Module* = nullptr) const override { }
53 // run - Print out SCCs in the call graph for the specified module.
56 void print(raw_ostream &O, const Module* = nullptr) const override { }
68 Y("print-cfg-sccs", "Print SCCs of each function CFG");
72 Z("print-callgraph-sccs", "Print SCCs of the Call Graph");
92 // run - Print out SCCs in the call graph for the specified module.