HomeSort by relevance Sort by last modified time
    Searched refs:MAM (Results 1 - 6 of 6) sorted by null

  /external/llvm/tools/opt/
NewPMDriver.cpp 49 ModuleAnalysisManager MAM(DebugPM);
52 PB.registerModuleAnalyses(MAM);
57 MAM.registerPass(FunctionAnalysisManagerModuleProxy(FAM));
58 MAM.registerPass(CGSCCAnalysisManagerModuleProxy(CGAM));
60 CGAM.registerPass(ModuleAnalysisManagerCGSCCProxy(MAM));
62 FAM.registerPass(ModuleAnalysisManagerFunctionProxy(MAM));
95 MPM.run(M, &MAM);
  /external/llvm/include/llvm/Analysis/
CGSCCPassManager.h 138 explicit Result(const ModuleAnalysisManager &MAM) : MAM(&MAM) {}
141 Result(const Result &Arg) : MAM(Arg.MAM) {}
142 Result(Result &&Arg) : MAM(std::move(Arg.MAM)) {}
144 std::swap(MAM, RHS.MAM);
148 const ModuleAnalysisManager &getManager() const { return *MAM; }
    [all...]
  /external/llvm/include/llvm/IR/
PassManager.h 693 explicit Result(const ModuleAnalysisManager &MAM) : MAM(&MAM) {}
696 Result(const Result &Arg) : MAM(Arg.MAM) {}
697 Result(Result &&Arg) : MAM(std::move(Arg.MAM)) {}
699 std::swap(MAM, RHS.MAM);
703 const ModuleAnalysisManager &getManager() const { return *MAM; }
    [all...]
  /external/llvm/include/llvm/Passes/
PassBuilder.h 43 void registerModuleAnalyses(ModuleAnalysisManager &MAM);
  /external/llvm/unittests/IR/
PassManagerTest.cpp 130 const ModuleAnalysisManager &MAM =
133 MAM.getCachedResult<TestModuleAnalysis>(*F.getParent()))
237 ModuleAnalysisManager MAM;
239 MAM.registerPass(TestModuleAnalysis(ModuleAnalysisRuns));
240 MAM.registerPass(FunctionAnalysisManagerModuleProxy(FAM));
241 FAM.registerPass(ModuleAnalysisManagerFunctionProxy(MAM));
318 MPM.run(*M, &MAM);
  /external/llvm/lib/Passes/
PassBuilder.cpp 98 void PassBuilder::registerModuleAnalyses(ModuleAnalysisManager &MAM) {
100 MAM.registerPass(CREATE_PASS);

Completed in 70 milliseconds