Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Function

11 // cfg.<fnname>.dot file for each function in the program, with a graph of the
12 // CFG for that function.
15 // Function::viewCFG method, which is useful for debugging passes which operate
31 virtual bool runOnFunction(Function &F) {
45 INITIALIZE_PASS(CFGViewer, "view-cfg", "View CFG of function", false, true)
54 virtual bool runOnFunction(Function &F) {
69 "View CFG of function (with no function bodies)", false, true)
78 virtual bool runOnFunction(Function &F) {
86 WriteGraph(File, (const Function*)&F);
102 INITIALIZE_PASS(CFGPrinter, "dot-cfg", "Print CFG of function to 'dot' file",
112 virtual bool runOnFunction(Function &F) {
120 WriteGraph(File, (const Function*)&F, true);
136 "Print CFG of function to 'dot' file (with no function bodies)",
139 /// viewCFG - This function is meant for use from the debugger. You can just
141 /// program, displaying the CFG of the current function. This depends on there
144 void Function::viewCFG() const {
148 /// viewCFGOnly - This function is meant for use from the debugger. It works
153 void Function::viewCFGOnly() const {