Searched refs:LICM (Results 1 – 25 of 29) sorted by relevance
12
/external/llvm/lib/Transforms/Scalar/ |
D | LICM.cpp | 105 struct LICM : public LoopPass { struct 107 LICM() : LoopPass(ID) { in LICM() function 167 char LICM::ID = 0; 168 INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false) 179 INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false) in INITIALIZE_PASS_DEPENDENCY() 181 Pass *llvm::createLICMPass() { return new LICM(); } in INITIALIZE_PASS_DEPENDENCY() 187 bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { in runOnLoop() 1003 void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) { in cloneBasicBlockAnalysis() 1013 void LICM::deleteAnalysisValue(Value *V, Loop *L) { in deleteAnalysisValue() 1023 void LICM::deleteAnalysisLoop(Loop *L) { in deleteAnalysisLoop()
|
D | CMakeLists.txt | 17 LICM.cpp
|
D | Android.mk | 19 LICM.cpp \
|
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/ |
D | licm.ll | 3 ; 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/ |
D | store-promote.ll | 1 ; 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/ |
D | 2003-02-27-StoreSinkPHIs.ll | 1 ; LICM is adding stores before phi nodes. bad.
|
D | no-preheader-test.ll | 1 ; Test that LICM works when there is not a loop-preheader
|
D | 2003-05-02-LoadHoist.ll | 1 ; This testcase tests for a problem where LICM hoists loads out of a loop
|
D | 2003-02-27-PreheaderProblem.ll | 1 ; Here we have a case where there are two loops and LICM is hoisting an
|
D | promote-order.ll | 3 ; LICM should keep the stores in their original order when it sinks/promotes them.
|
D | atomics.ll | 43 ; (The noalias shouldn't be necessary in theory, but LICM isn't quite that
|
D | hoisting.ll | 7 ; This testcase tests for a problem where LICM hoists
|
/external/llvm/test/CodeGen/ARM/ |
D | 2011-04-11-MachineLICMBug.ll | 3 ; Overly aggressive LICM simply adds copies of constants
|
/external/llvm/test/Transforms/LoopUnroll/ |
D | runtime-loop4.ll | 3 ; Check runtime unrolling prologue can be promoted by LICM pass.
|
/external/llvm/test/Transforms/LoopUnswitch/ |
D | 2015-09-18-Addrspace.ll | 17 ; When we call makeLoopInvariant (i.e. trivial LICM) on this load, it
|
/external/llvm/test/Transforms/LoopSimplify/ |
D | 2003-12-10-ExitBlocksProblem.ll | 1 ; LoopSimplify is breaking LICM on this testcase because the exit blocks from
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-06-01-GCCOptimizations.txt | 24 11. LICM
|
/external/llvm/lib/Target/WebAssembly/ |
D | README.txt | 54 AArch64 runs SeparateConstOffsetFromGEPPass, followed by EarlyCSE and LICM.
|
/external/llvm/test/CodeGen/Thumb2/ |
D | machine-licm.ll | 83 ; isel should not fold immediate into eor's which would have prevented LICM.
|
/external/llvm/docs/Frontend/ |
D | PerformanceTips.rst | 151 block is a loop exiting conditional branch, the effectiveness of LICM will 257 two of LoopUnswith and LICM to your pass order. The standard pass order,
|
/external/llvm/docs/ |
D | Lexicon.rst | 138 **LICM**
|
D | Passes.rst | 797 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.
|
D | Atomics.rst | 367 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
|
D | WritingAnLLVMPass.rst | 850 void LICM::getAnalysisUsage(AnalysisUsage &AU) const { 868 bool LICM::runOnFunction(Function &F) { 1111 dominator and immediate dominator information to do its job. The LICM pass 1115 compute natural loop information, which is then used by the LICM pass. 1117 After the LICM pass, the module verifier runs (which is automatically added by
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | no-iv-rewrite.ll | 94 ; It's not indvars' job to perform LICM on %ofs
|
12