llvm-6502/test
Evgeniy Stepanov 98726c311b [LICM] Don't create more than one copy of an instruction per loop exit block when sinking.
Fixes exponential compilation complexity in PR19835, caused by
LICM::sink not handling the following pattern well:

f = op g
e = op f, g
d = op e
c = op d, e
b = op c
a = op b, c

When an instruction with N uses is sunk, each of its operands gets N
new uses (all of them - phi nodes). In the example above, if a had 1
use, c would have 2, e would have 4, and g would have 8.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211673 91177308-0d34-0410-b5e6-96231b3b80d8
2014-06-25 07:54:58 +00:00
..
Analysis
Assembler
Bindings
Bitcode
BugPoint
CodeGen Fix a regression from r211653. 2014-06-25 05:31:22 +00:00
DebugInfo Fix another asserting method in the null streamer. 2014-06-25 05:37:58 +00:00
ExecutionEngine
Feature
FileCheck
Instrumentation
Integer
JitListener
Linker
LTO Change the default input for llvm-nm to be a.out instead of standard input 2014-06-23 20:27:53 +00:00
MC ldr-pseudo-obj-errors.s: Fix silly copypasto. 2014-06-24 23:18:07 +00:00
Object nm-trivial-object.test requires shell since Lit internal runner isn't capable of chdir. 2014-06-23 21:07:04 +00:00
Other Change the default input for llvm-nm to be a.out instead of standard input 2014-06-23 20:27:53 +00:00
TableGen
tools
Transforms [LICM] Don't create more than one copy of an instruction per loop exit block when sinking. 2014-06-25 07:54:58 +00:00
Unit
Verifier
YAMLParser
.clang-format
CMakeLists.txt
lit.cfg Delete utils/FileUpdate. 2014-06-23 17:58:39 +00:00
lit.site.cfg.in
Makefile
Makefile.tests
TestRunner.sh