2016-04-14 07:08:27 +08:00
|
|
|
; RUN: llc -mtriple=thumbv7-apple-ios %s -o - | FileCheck %s
|
|
|
|
|
|
|
|
define void @multiple_store() {
|
|
|
|
; CHECK-LABEL: multiple_store:
|
|
|
|
; CHECK: movw r[[BASE1:[0-9]+]], #16960
|
|
|
|
; CHECK: movs [[VAL:r[0-9]+]], #42
|
|
|
|
; CHECK: movt r[[BASE1]], #15
|
|
|
|
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting with compiler time improvements
Recommitting after fixup of 32-bit aliasing sign offset bug in DAGCombiner.
* Simplify Consecutive Merge Store Candidate Search
Now that address aliasing is much less conservative, push through
simplified store merging search and chain alias analysis which only
checks for parallel stores through the chain subgraph. This is cleaner
as the separation of non-interfering loads/stores from the
store-merging logic.
When merging stores search up the chain through a single load, and
finds all possible stores by looking down from through a load and a
TokenFactor to all stores visited.
This improves the quality of the output SelectionDAG and the output
Codegen (save perhaps for some ARM cases where we correctly constructs
wider loads, but then promotes them to float operations which appear
but requires more expensive constant generation).
Some minor peephole optimizations to deal with improved SubDAG shapes (listed below)
Additional Minor Changes:
1. Finishes removing unused AliasLoad code
2. Unifies the chain aggregation in the merged stores across code
paths
3. Re-add the Store node to the worklist after calling
SimplifyDemandedBits.
4. Increase GatherAllAliasesMaxDepth from 6 to 18. That number is
arbitrary, but seems sufficient to not cause regressions in
tests.
5. Remove Chain dependencies of Memory operations on CopyfromReg
nodes as these are captured by data dependence
6. Forward loads-store values through tokenfactors containing
{CopyToReg,CopyFromReg} Values.
7. Peephole to convert buildvector of extract_vector_elt to
extract_subvector if possible (see
CodeGen/AArch64/store-merge.ll)
8. Store merging for the ARM target is restricted to 32-bit as
some in some contexts invalid 64-bit operations are being
generated. This can be removed once appropriate checks are
added.
This finishes the change Matt Arsenault started in r246307 and
jyknight's original patch.
Many tests required some changes as memory operations are now
reorderable, improving load-store forwarding. One test in
particular is worth noting:
CodeGen/PowerPC/ppc64-align-long-double.ll - Improved load-store
forwarding converts a load-store pair into a parallel store and
a memory-realized bitcast of the same value. However, because we
lose the sharing of the explicit and implicit store values we
must create another local store. A similar transformation
happens before SelectionDAG as well.
Reviewers: arsenm, hfinkel, tstellarAMD, jyknight, nhaehnle
llvm-svn: 297695
2017-03-14 08:34:14 +08:00
|
|
|
; CHECK-DAG: str [[VAL]], [r[[BASE1]]]
|
|
|
|
; CHECK-DAG: str [[VAL]], [r[[BASE1]], #24]
|
|
|
|
; CHECK-DAG: str.w [[VAL]], [r[[BASE1]], #42]
|
2016-04-14 07:08:27 +08:00
|
|
|
|
|
|
|
; CHECK: movw r[[BASE2:[0-9]+]], #20394
|
|
|
|
; CHECK: movt r[[BASE2]], #18
|
|
|
|
|
|
|
|
; CHECK: str [[VAL]], [r[[BASE2]]]
|
|
|
|
store i32 42, i32* inttoptr(i32 1000000 to i32*)
|
|
|
|
store i32 42, i32* inttoptr(i32 1000024 to i32*)
|
|
|
|
store i32 42, i32* inttoptr(i32 1000042 to i32*)
|
|
|
|
store i32 42, i32* inttoptr(i32 1200042 to i32*)
|
|
|
|
ret void
|
|
|
|
}
|