HomeSort by: relevance | last modified time | path
    Searched defs:CallGraphSCC (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/opt/
PrintSCC.cpp 48 struct CallGraphSCC : public ModulePass {
50 CallGraphSCC() : ModulePass(ID) {}
69 char CallGraphSCC::ID = 0;
70 static RegisterPass<CallGraphSCC>
93 bool CallGraphSCC::runOnModule(Module &M) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CallGraphSCCPass.h 31 class CallGraphSCC;
59 virtual bool runOnSCC(CallGraphSCC &SCC) = 0;
83 bool skipSCC(CallGraphSCC &SCC) const;
86 /// CallGraphSCC - This is a single SCC that a CallGraphSCCPass is run on.
87 class CallGraphSCC {
93 CallGraphSCC(CallGraph &cg, void *context) : CG(cg), Context(context) {}
131 bool runOnSCC(CallGraphSCC &SCC) override { return false; }

Completed in 23 milliseconds