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
32 virtual bool runOnFunction(Function &F) {
46 INITIALIZE_PASS(CFGViewer, "view-cfg", "View CFG of function", false, true)
55 virtual bool runOnFunction(Function &F) {
70 "View CFG of function (with no function bodies)", false, true)
79 virtual bool runOnFunction(Function &F) {
87 WriteGraph(File, (const Function*)&F);
103 INITIALIZE_PASS(CFGPrinter, "dot-cfg", "Print CFG of function to 'dot' file",
113 virtual bool runOnFunction(Function &F) {
121 WriteGraph(File, (const Function*)&F, true);
137 "Print CFG of function to 'dot' file (with no function bodies)",
140 /// viewCFG - This function is meant for use from the debugger. You can just
142 /// program, displaying the CFG of the current function. This depends on there
145 void Function::viewCFG() const {
149 /// viewCFGOnly - This function is meant for use from the debugger. It works
154 void Function::viewCFGOnly() const {