Home
last modified time | relevance | path

Searched refs:DebugLogging (Results 1 – 12 of 12) sorted by relevance

/external/llvm/include/llvm/Analysis/
DCGSCCPassManager.h70 explicit ModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT Pass, bool DebugLogging = false)
71 : Pass(std::move(Pass)), DebugLogging(DebugLogging) {} in Pass()
76 : Pass(Arg.Pass), DebugLogging(Arg.DebugLogging) {} in ModuleToPostOrderCGSCCPassAdaptor()
78 : Pass(std::move(Arg.Pass)), DebugLogging(Arg.DebugLogging) {} in ModuleToPostOrderCGSCCPassAdaptor()
83 swap(LHS.DebugLogging, RHS.DebugLogging); in swap()
102 if (DebugLogging) in run()
134 bool DebugLogging; variable
141 createModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT Pass, bool DebugLogging = false) {
142 return ModuleToPostOrderCGSCCPassAdaptor<CGSCCPassT>(std::move(Pass), DebugLogging);
168 explicit CGSCCToFunctionPassAdaptor(FunctionPassT Pass, bool DebugLogging = false)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Passes/
DPassBuilder.cpp347 bool DebugLogging) { in buildFunctionSimplificationPipeline() argument
349 FunctionPassManager FPM(DebugLogging); in buildFunctionSimplificationPipeline()
407 LoopPassManager LPM1(DebugLogging), LPM2(DebugLogging); in buildFunctionSimplificationPipeline()
439 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM1), DebugLogging)); in buildFunctionSimplificationPipeline()
442 FPM.addPass(createFunctionToLoopPassAdaptor(std::move(LPM2), DebugLogging)); in buildFunctionSimplificationPipeline()
477 FPM.addPass(createFunctionToLoopPassAdaptor(LICMPass(), DebugLogging)); in buildFunctionSimplificationPipeline()
492 void PassBuilder::addPGOInstrPasses(ModulePassManager &MPM, bool DebugLogging, in addPGOInstrPasses() argument
512 CGSCCPassManager CGPipeline(DebugLogging); in addPGOInstrPasses()
538 createFunctionToLoopPassAdaptor(LoopRotatePass(), DebugLogging)); in addPGOInstrPasses()
564 bool DebugLogging) { in buildModuleSimplificationPipeline() argument
[all …]
/external/llvm/lib/Passes/
DPassBuilder.cpp236 bool DebugLogging) { in addPerModuleDefaultPipeline() argument
238 FunctionPassManager EarlyFPM(DebugLogging); in addPerModuleDefaultPipeline()
249 bool DebugLogging) { in addLTOPreLinkDefaultPipeline() argument
251 addPerModuleDefaultPipeline(MPM, Level, DebugLogging); in addLTOPreLinkDefaultPipeline()
256 bool DebugLogging) { in addLTODefaultPipeline() argument
258 FunctionPassManager LateFPM(DebugLogging); in addLTODefaultPipeline()
320 bool DebugLogging) { in parseModulePassName() argument
337 addPerModuleDefaultPipeline(MPM, L, DebugLogging); in parseModulePassName()
339 addLTOPreLinkDefaultPipeline(MPM, L, DebugLogging); in parseModulePassName()
342 addLTODefaultPipeline(MPM, L, DebugLogging); in parseModulePassName()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Passes/
DPassBuilder.h235 bool DebugLogging = false);
255 bool DebugLogging = false);
271 bool DebugLogging = false);
285 bool DebugLogging = false);
301 bool DebugLogging = false);
315 buildThinLTODefaultPipeline(OptimizationLevel Level, bool DebugLogging,
331 bool DebugLogging = false);
345 bool DebugLogging,
382 bool VerifyEachPass = true, bool DebugLogging = false);
392 bool VerifyEachPass = true, bool DebugLogging = false);
[all …]
/external/llvm/include/llvm/Passes/
DPassBuilder.h174 bool DebugLogging = false);
185 bool DebugLogging = false);
194 bool DebugLogging = false);
225 bool VerifyEachPass = true, bool DebugLogging = false);
246 bool DebugLogging);
252 bool VerifyEachPass, bool DebugLogging);
255 bool DebugLogging);
257 bool VerifyEachPass, bool DebugLogging);
259 bool VerifyEachPass, bool DebugLogging);
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
DNewPMDriver.cpp133 bool DebugLogging) { in registerEPCallbacks() argument
135 PB.registerPeepholeEPCallback([&PB, VerifyEachPass, DebugLogging]( in registerEPCallbacks()
138 DebugLogging); in registerEPCallbacks()
143 [&PB, VerifyEachPass, DebugLogging]( in registerEPCallbacks()
146 VerifyEachPass, DebugLogging); in registerEPCallbacks()
149 PB.registerLoopOptimizerEndEPCallback([&PB, VerifyEachPass, DebugLogging]( in registerEPCallbacks()
152 DebugLogging); in registerEPCallbacks()
157 [&PB, VerifyEachPass, DebugLogging]( in registerEPCallbacks()
160 VerifyEachPass, DebugLogging); in registerEPCallbacks()
163 PB.registerCGSCCOptimizerLateEPCallback([&PB, VerifyEachPass, DebugLogging]( in registerEPCallbacks()
[all …]
/external/llvm/include/llvm/IR/
DPassManager.h231 PassManager(bool DebugLogging = false) : DebugLogging(DebugLogging) {} in DebugLogging() function
236 DebugLogging(std::move(Arg.DebugLogging)) {} in PassManager()
239 DebugLogging = std::move(RHS.DebugLogging);
247 if (DebugLogging) in run()
251 if (DebugLogging) in run()
274 if (DebugLogging) in run()
294 bool DebugLogging; variable
486 AnalysisManager(bool DebugLogging = false) : DebugLogging(DebugLogging) {} in DebugLogging() function
493 DebugLogging(std::move(Arg.DebugLogging)) {} in AnalysisManager()
497 DebugLogging = std::move(RHS.DebugLogging);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DPassManager.h426 explicit PassManager(bool DebugLogging = false) : DebugLogging(DebugLogging) {} in DebugLogging() function
434 DebugLogging(std::move(Arg.DebugLogging)) {} in PassManager()
438 DebugLogging = std::move(RHS.DebugLogging);
448 if (DebugLogging) in run()
452 if (DebugLogging) in run()
479 if (DebugLogging) in run()
500 bool DebugLogging; variable
640 AnalysisManager(bool DebugLogging = false) : DebugLogging(DebugLogging) {} in DebugLogging() argument
658 if (DebugLogging) in clear()
774 if (DebugLogging) in invalidate()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopPassManager.cpp30 if (DebugLogging) in run()
34 if (DebugLogging) in run()
76 if (DebugLogging) in run()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DLoopPassManager.h267 explicit FunctionToLoopPassAdaptor(LoopPassT Pass, bool DebugLogging = false)
268 : Pass(std::move(Pass)), LoopCanonicalizationFPM(DebugLogging) {
388 createFunctionToLoopPassAdaptor(LoopPassT Pass, bool DebugLogging = false) {
389 return FunctionToLoopPassAdaptor<LoopPassT>(std::move(Pass), DebugLogging);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DCGSCCPassManager.cpp59 if (DebugLogging) in run()
67 if (DebugLogging) in run()
105 if (DebugLogging) in run()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
DPassBuilderCallbacksTest.cpp486 bool VerifyEachPass, bool DebugLogging) { in TEST_F() argument