Home
last modified time | relevance | path

Searched refs:SplitFooterBB (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DMergedLoadStoreMotion.cpp105 const bool SplitFooterBB; member in __anonc05d3c3a0111::MergedLoadStoreMotion
107 MergedLoadStoreMotion(bool SplitFooterBB) : SplitFooterBB(SplitFooterBB) {} in MergedLoadStoreMotion() argument
296 if (!SplitFooterBB && TailBB->hasNPredecessorsOrMore(3)) in mergeStores()
363 const bool SplitFooterBB; member in __anonc05d3c3a0211::MergedLoadStoreMotionLegacyPass
366 MergedLoadStoreMotionLegacyPass(bool SplitFooterBB = false) in MergedLoadStoreMotionLegacyPass() argument
367 : FunctionPass(ID), SplitFooterBB(SplitFooterBB) { in MergedLoadStoreMotionLegacyPass()
378 MergedLoadStoreMotion Impl(SplitFooterBB); in runOnFunction()
384 if (!SplitFooterBB) in getAnalysisUsage()
398 return new MergedLoadStoreMotionLegacyPass(SplitFooterBB); in createMergedLoadStoreMotionPass()
409 MergedLoadStoreMotion Impl(Options.SplitFooterBB); in INITIALIZE_PASS_DEPENDENCY()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Scalar/
H A DMergedLoadStoreMotion.h32 bool SplitFooterBB; member
33 MergedLoadStoreMotionOptions(bool SplitFooterBB = false)
34 : SplitFooterBB(SplitFooterBB) {} in SplitFooterBB() function
37 SplitFooterBB = SFBB; in splitFooterBB()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/
H A DScalar.h314 FunctionPass *createMergedLoadStoreMotionPass(bool SplitFooterBB = false);