viewCFGOnly overloads
Synopses
Declared in <llvm/IR/Function.h>
Display this function's CFG without basic‐block contents (debugger use).
void
viewCFGOnly() const;
Display this function's CFG‐only view, writing the dot graph to a file.
void
viewCFGOnly(char const* OutputFileName) const;
Display this function's CFG‐only view with optional edge weight info.
void
viewCFGOnly(
BlockFrequencyInfo const* BFI,
BranchProbabilityInfo const* BPI) const;
Parameters
Name |
Description |
OutputFileName |
Path for the generated dot file. |
BFI |
Optional block frequency info for edge labels, or null. |
BPI |
Optional branch probability info for edge labels, or null. |
Created with MrDocs