Lines Matching refs:viewCFG
15 // Function::viewCFG method, which is useful for debugging passes which operate
82 static void viewCFG(Function &F, const BlockFrequencyInfo *BFI,
98 viewCFG(F, BFI, BPI, getMaxFreq(F, BFI));
108 viewCFG(F, BFI, BPI, getMaxFreq(F, BFI), /*CFGOnly=*/true);
132 /// viewCFG - This function is meant for use from the debugger. You can just
133 /// say 'call F->viewCFG()' and a ghostview window should pop up from the
137 void Function::viewCFG() const { viewCFG(false, nullptr, nullptr); }
139 void Function::viewCFG(bool ViewCFGOnly, const BlockFrequencyInfo *BFI,
148 /// just like viewCFG, but it does not include the contents of basic blocks
156 viewCFG(true, BFI, BPI);