Searched defs:CFGViewer (Results 1 – 2 of 2) sorted by relevance
25 struct CFGViewer : public FunctionPass { struct26 static char ID; // Pass identifcation, replacement for typeid27 CFGViewer() : FunctionPass(ID) { in CFGViewer() argument31 virtual bool runOnFunction(Function &F) { in runOnFunction()36 void print(raw_ostream &OS, const Module* = 0) const {} in print()38 virtual void getAnalysisUsage(AnalysisUsage &AU) const { in getAnalysisUsage()
74 class CFGViewer : public Checker<check::ASTCodeBody> { class