LLVM
8.0.1
|
A pass that does profile-guided sinking of instructions into loops. More...
#include "llvm/Transforms/Scalar/LoopSink.h"
Public Member Functions | |
PreservedAnalyses | run (Function &F, FunctionAnalysisManager &FAM) |
Additional Inherited Members | |
Static Public Member Functions inherited from llvm::PassInfoMixin< LoopSinkPass > | |
static StringRef | name () |
Gets the name of the pass we are mixed into. More... | |
A pass that does profile-guided sinking of instructions into loops.
This is a function pass as it shouldn't be composed into any kind of unified loop pass pipeline. The goal of it is to sink code into loops that is loop invariant but only required within the loop body when doing so reduces the global expected dynamic frequency with which it executes. A classic example is an extremely cold branch within a loop body.
We do this as a separate pass so that during normal optimization all invariant operations can be held outside the loop body to simplify fundamental analyses and transforms of the loop.
Definition at line 34 of file LoopSink.h.
PreservedAnalyses LoopSinkPass::run | ( | Function & | F, |
FunctionAnalysisManager & | FAM | ||
) |
Definition at line 318 of file LoopSink.cpp.
References llvm::AnalysisUsage::addRequired(), llvm::PreservedAnalyses::all(), llvm::AMDGPUISD::BFI, llvm::LoopInfoBase< BlockT, LoopT >::empty(), F(), llvm::getLoopAnalysisUsage(), llvm::LoopInfoBase< BlockT, LoopT >::getLoopsInPreorder(), llvm::PassRegistry::getPassRegistry(), llvm::AnalysisManager< IRUnitT, ExtraArgTs >::getResult(), llvm::initializeLegacyLoopSinkPassPass(), llvm::PreservedAnalyses::preserveSet(), llvm::AnalysisUsage::setPreservesCFG(), and sinkLoopInvariantInstructions().