Home
last modified time | relevance | path

Searched defs:CFGViewer (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/llvm/lib/Analysis/
H A DCFGPrinter.cpp26 struct CFGViewer : public FunctionPass { struct
27 static char ID; // Pass identifcation, replacement for typeid
28 CFGViewer() : FunctionPass(ID) { in CFGViewer() function
32 bool runOnFunction(Function &F) override { in runOnFunction()
37 void print(raw_ostream &OS, const Module* = nullptr) const override {} in print()
39 void getAnalysisUsage(AnalysisUsage &AU) const override { in getAnalysisUsage()
/aosp_15_r20/external/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp77 class CFGViewer : public Checker<check::ASTCodeBody> { class