HomeSort by: relevance | last modified time | path
    Searched refs:CallGraphWrapperPass (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraph.cpp 322 // Implementations of the CallGraphWrapperPass class methods.
325 CallGraphWrapperPass::CallGraphWrapperPass() : ModulePass(ID) {
329 CallGraphWrapperPass::~CallGraphWrapperPass() = default;
331 void CallGraphWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
335 bool CallGraphWrapperPass::runOnModule(Module &M) {
341 INITIALIZE_PASS(CallGraphWrapperPass, "basiccg", "CallGraph Construction",
344 char CallGraphWrapperPass::ID = 0;
346 void CallGraphWrapperPass::releaseMemory() { G.reset();
    [all...]
CallGraphSCCPass.cpp 79 Info.addRequired<CallGraphWrapperPass>();
510 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
660 AU.addRequired<CallGraphWrapperPass>();
661 AU.addPreserved<CallGraphWrapperPass>();
GlobalsModRef.cpp 1016 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
1034 M, GetTLI, getAnalysis<CallGraphWrapperPass>().getCallGraph())));
1045 AU.addRequired<CallGraphWrapperPass>();
  /src/external/apache2/llvm/dist/llvm/tools/opt/
PrintSCC.cpp 60 AU.addRequired<CallGraphWrapperPass>();
94 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
InlineSimple.cpp 90 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
Internalize.cpp 267 CallGraphWrapperPass *CGPass =
268 getAnalysisIfAvailable<CallGraphWrapperPass>();
275 AU.addPreserved<CallGraphWrapperPass>();
PruneEH.cpp 59 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
174 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
AlwaysInliner.cpp 163 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
FunctionAttrs.cpp 1678 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
1717 AU.addRequired<CallGraphWrapperPass>();
1718 AU.addPreserved<CallGraphWrapperPass>();
1729 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
1799 auto &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
ArgumentPromotion.cpp 1099 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
1115 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
Inliner.cpp 534 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
OpenMPOpt.cpp 2601 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
2691 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
Attributor.cpp 2613 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CallGraph.h 337 class CallGraphWrapperPass : public ModulePass {
343 CallGraphWrapperPass();
344 ~CallGraphWrapperPass() override;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroSplit.cpp 2182 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph();
2243 INITIALIZE_PASS_DEPENDENCY(CallGraphWrapperPass)

Completed in 79 milliseconds