HomeSort by relevance Sort by last modified time
    Searched defs:FPM (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/IR/
LegacyPassManager.h 100 FunctionPassManagerImpl *FPM;
  /external/llvm/tools/opt/
Passes.cpp 110 static bool parseFunctionPassName(FunctionPassManager &FPM, StringRef Name) {
112 FPM.addPass(NoOpFunctionPass());
118 FPM.addPass(CREATE_PASS); \
126 static bool parseFunctionPassPipeline(FunctionPassManager &FPM,
143 FPM.addPass(std::move(NestedFPM));
147 if (!parseFunctionPassName(FPM, PipelineText.substr(0, End)))
150 FPM.addPass(VerifierPass());
294 FunctionPassManager FPM;
295 if (!parseFunctionPassPipeline(FPM, PipelineText, VerifyEachPass) ||
298 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
    [all...]
  /external/llvm/lib/Transforms/IPO/
PassManagerBuilder.cpp 113 void PassManagerBuilder::populateFunctionPassManager(FunctionPassManager &FPM) {
114 addExtensionsToPM(EP_EarlyAsPossible, FPM);
117 if (LibraryInfo) FPM.add(new TargetLibraryInfo(*LibraryInfo));
121 addInitialAliasAnalysisPasses(FPM);
123 FPM.add(createCFGSimplificationPass());
125 FPM.add(createSROAPass());
127 FPM.add(createScalarReplAggregatesPass());
128 FPM.add(createEarlyCSEPass());
129 FPM.add(createLowerExpectIntrinsicPass());
442 FunctionPassManager *FPM = unwrap<FunctionPassManager>(PM)
    [all...]
  /external/clang/lib/CodeGen/
BackendUtil.cpp 319 FunctionPassManager *FPM = getPerFunctionPasses();
321 FPM->add(createVerifierPass());
322 PMBuilder.populateFunctionPassManager(*FPM);
  /external/llvm/unittests/IR/
PassManagerTest.cpp 247 FunctionPassManager FPM;
253 FPM = std::move(NestedFPM);
255 NestedMPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
268 FunctionPassManager FPM;
269 FPM.addPass(TestFunctionPass(FunctionPassRunCount2, AnalyzedInstrCount2,
271 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
281 FunctionPassManager FPM;
282 FPM.addPass(TestFunctionPass(FunctionPassRunCount3, AnalyzedInstrCount3,
284 FPM.addPass(TestInvalidationFunctionPass("f"));
285 MPM.addPass(createModuleToFunctionPassAdaptor(std::move(FPM)));
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 917 FunctionPassManager *FPM = new FunctionPassManager(M);
921 FPM->add(new DataLayout(*NewEngine->getDataLayout()));
923 FPM->add(createBasicAliasAnalysisPass());
925 FPM->add(createPromoteMemoryToRegisterPass());
927 FPM->add(createInstructionCombiningPass());
929 FPM->add(createReassociatePass());
931 FPM->add(createGVNPass());
933 FPM->add(createCFGSimplificationPass());
934 FPM->doInitialization();
940 // Run the FPM on this functio
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1052 FunctionPassManager *FPM = 0;
1054 // Create a FPM for this module
1055 FPM = new FunctionPassManager(M);
1059 FPM->add(new DataLayout(*EE->getDataLayout()));
1061 FPM->add(createBasicAliasAnalysisPass());
1063 FPM->add(createPromoteMemoryToRegisterPass());
1065 FPM->add(createInstructionCombiningPass());
1067 FPM->add(createReassociatePass());
1069 FPM->add(createGVNPass());
1071 FPM->add(createCFGSimplificationPass())
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 790 FunctionPassManager *FPM = new FunctionPassManager(OpenModule);
794 FPM->add(new DataLayout(*NewEngine->getDataLayout()));
796 FPM->add(createBasicAliasAnalysisPass());
798 FPM->add(createPromoteMemoryToRegisterPass());
800 FPM->add(createInstructionCombiningPass());
802 FPM->add(createReassociatePass());
804 FPM->add(createGVNPass());
806 FPM->add(createCFGSimplificationPass());
807 FPM->doInitialization();
813 // Run the FPM on this functio
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 820 FunctionPassManager *FPM = new FunctionPassManager(M);
824 FPM->add(new DataLayout(*NewEngine->getDataLayout()));
826 FPM->add(createBasicAliasAnalysisPass());
828 FPM->add(createPromoteMemoryToRegisterPass());
830 FPM->add(createInstructionCombiningPass());
832 FPM->add(createReassociatePass());
834 FPM->add(createGVNPass());
836 FPM->add(createCFGSimplificationPass());
837 FPM->doInitialization();
843 // Run the FPM on this functio
    [all...]

Completed in 878 milliseconds