Home
last modified time | relevance | path

Searched refs:LICM (Results 1 – 25 of 28) sorted by relevance

12

/external/llvm/lib/Transforms/Scalar/
DLICM.cpp96 struct LICM : public LoopPass { struct
98 LICM() : LoopPass(ID) { in LICM() function
155 char LICM::ID = 0;
156 INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false)
164 INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false) in INITIALIZE_PASS_DEPENDENCY()
166 Pass *llvm::createLICMPass() { return new LICM(); } in INITIALIZE_PASS_DEPENDENCY()
172 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop()
949 void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) { in cloneBasicBlockAnalysis()
959 void LICM::deleteAnalysisValue(Value *V, Loop *L) { in deleteAnalysisValue()
969 void LICM::deleteAnalysisLoop(Loop *L) { in deleteAnalysisLoop()
DCMakeLists.txt17 LICM.cpp
DAndroid.mk19 LICM.cpp \
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/
Dlicm.ll3 ; LICM should be able to hoist the address load out of the loop
36 ; LICM shouldn't hoist anything here.
/external/llvm/test/Analysis/BasicAA/
Dstore-promote.ll1 ; Test that LICM uses basicaa to do alias analysis, which is capable of
2 ; disambiguating some obvious cases. If LICM is able to disambiguate the
/external/llvm/test/Transforms/LICM/
D2003-02-27-StoreSinkPHIs.ll1 ; LICM is adding stores before phi nodes. bad.
Dno-preheader-test.ll1 ; Test that LICM works when there is not a loop-preheader
D2003-05-02-LoadHoist.ll1 ; This testcase tests for a problem where LICM hoists loads out of a loop
D2003-02-27-PreheaderProblem.ll1 ; Here we have a case where there are two loops and LICM is hoisting an
Dpromote-order.ll3 ; LICM should keep the stores in their original order when it sinks/promotes them.
Datomics.ll43 ; (The noalias shouldn't be necessary in theory, but LICM isn't quite that
Dhoisting.ll7 ; This testcase tests for a problem where LICM hoists
/external/llvm/test/CodeGen/ARM/
D2011-04-11-MachineLICMBug.ll3 ; Overly aggressive LICM simply adds copies of constants
/external/llvm/test/Transforms/LoopUnroll/
Druntime-loop4.ll3 ; Check runtime unrolling prologue can be promoted by LICM pass.
/external/llvm/test/Transforms/LoopSimplify/
D2003-12-10-ExitBlocksProblem.ll1 ; LoopSimplify is breaking LICM on this testcase because the exit blocks from
/external/llvm/docs/HistoricalNotes/
D2001-06-01-GCCOptimizations.txt24 11. LICM
/external/llvm/docs/Frontend/
DPerformanceTips.rst113 two of LoopUnswith and LICM to your pass order. The standard pass order,
123 block is a loop exiting conditional branch, the effectiveness of LICM will
/external/llvm/test/CodeGen/Thumb2/
Dmachine-licm.ll83 ; isel should not fold immediate into eor's which would have prevented LICM.
/external/llvm/docs/
DLexicon.rst121 **LICM**
DPasses.rst797 analyses and transformations, such as :ref:`LICM <passes-licm>`.
803 into LICM.
840 This pass expects :ref:`LICM <passes-licm>` to be run before it to hoist
937 promote better constant propagation, GCSE, :ref:`LICM <passes-licm>`, PRE, etc.
DAtomics.rst367 Unordered. This would be checked, for example, by LICM before hoisting an
394 * LICM: Unordered loads/stores can be moved out of a loop. It just treats
DWritingAnLLVMPass.rst854 void LICM::getAnalysisUsage(AnalysisUsage &AU) const {
872 bool LICM::runOnFunction(Function &F) {
1115 dominator and immediate dominator information to do its job. The LICM pass
1119 compute natural loop information, which is then used by the LICM pass.
1121 After the LICM pass, the module verifier runs (which is automatically added by
DAliasAnalysis.rst84 (LICM) pass can use store motion to remove the stores from the loop. In
418 The ``AliasSetTracker`` class (which is used by ``LICM``) makes a
/external/llvm/test/Transforms/IndVarSimplify/
Dno-iv-rewrite.ll94 ; It's not indvars' job to perform LICM on %ofs
/external/llvm/lib/Target/PowerPC/
DREADME.txt131 Darwin Stub LICM optimization:

12