llvm-6502/test/Transforms/SROA
Chandler Carruth bc4021f31e Address one of the original FIXMEs for the new SROA pass by implementing
integer promotion analogous to vector promotion. When there is an
integer alloca being accessed both as its integer type and as a narrower
integer type, promote the narrower access to "insert" and "extract" the
smaller integer from the larger one, and make the integer alloca
a candidate for promotion.

In the new formulation, we don't care about target legal integer or use
thresholds to control things. Instead, we only perform this promotion to
an integer type which the frontend has already emitted a load or store
for. This bounds the scope and prevents optimization passes from
coalescing larger and larger entities into a single integer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164479 91177308-0d34-0410-b5e6-96231b3b80d8
2012-09-24 00:34:20 +00:00
..
basictest.ll Address one of the original FIXMEs for the new SROA pass by implementing 2012-09-24 00:34:20 +00:00
fca.ll Add a major missing piece to the new SROA pass: aggressive splitting of 2012-09-18 12:57:43 +00:00
lit.local.cfg
phi-and-select.ll Fix a case where the new SROA pass failed to zap dead operands to 2012-09-21 23:36:40 +00:00
vector-promotion.ll