Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions include/tsar/Analysis/Clang/Passes.h
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,23 @@ void initializeClangIncludeTreeOnlyViewerPass(PassRegistry &Registry);
/// Create a pass to display source file tree (filenames instead of
/// full paths).
ModulePass *createClangIncludeTreeOnlyViewer();

/// Initialize a pass to build source control flow graph.
void initializeClangSourceCFGPassPass(PassRegistry &Registry);

/// Create a pass to build source control flow graph.
FunctionPass *createClangSourceCFGPass();

/// Initialize a pass to print source control flow graph to 'dot' file.
void initializeClangSourceCFGPrinterPass(PassRegistry &Registry);

/// Create a pass to print source control flow graph to 'dot' file.
FunctionPass *createClangSourceCFGPrinter();

/// Initialize a pass to display source control flow graph.
void initializeClangSourceCFGViewerPass(PassRegistry &Registry);

/// Create a pass to display source control flow graph.
FunctionPass *createClangSourceCFGViewer();
}
#endif//TSAR_CLANG_ANALYSIS_PASSES_H
Loading