2017-02-11 00:34:17 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc < %s -mtriple=i386-unknown | FileCheck %s --check-prefix=X32
|
|
|
|
; RUN: llc < %s -mtriple=x86_64-unknown | FileCheck %s --check-prefix=X64
|
2008-10-08 04:39:12 +08:00
|
|
|
|
2017-02-03 02:24:55 +08:00
|
|
|
define void @add(i256* %p, i256* %q) nounwind {
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-LABEL: add:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: pushl %ebp
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X32-NEXT: movl %esp, %ebp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-NEXT: pushl %ebx
|
|
|
|
; X32-NEXT: pushl %edi
|
|
|
|
; X32-NEXT: pushl %esi
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X32-NEXT: subl $28, %esp
|
|
|
|
; X32-NEXT: movl 12(%ebp), %edi
|
|
|
|
; X32-NEXT: movl 8(%ebp), %eax
|
|
|
|
; X32-NEXT: movl (%eax), %ecx
|
|
|
|
; X32-NEXT: movl (%edi), %edx
|
|
|
|
; X32-NEXT: movl %ecx, %esi
|
|
|
|
; X32-NEXT: addl %edx, %esi
|
|
|
|
; X32-NEXT: movl 4(%edi), %ebx
|
|
|
|
; X32-NEXT: movl 4(%eax), %esi
|
|
|
|
; X32-NEXT: adcl %ebx, %esi
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %esi
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl %esi, -32(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl %esi, -16(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: addl %edx, %ecx
|
|
|
|
; X32-NEXT: movl %ecx, -40(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 8(%edi), %edx
|
|
|
|
; X32-NEXT: movl %edx, -28(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 28(%edi), %ecx
|
|
|
|
; X32-NEXT: movl %ecx, -36(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 24(%edi), %ecx
|
|
|
|
; X32-NEXT: movl %ecx, -20(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 20(%edi), %ecx
|
|
|
|
; X32-NEXT: movl 16(%edi), %esi
|
|
|
|
; X32-NEXT: movl %esi, -24(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 12(%edi), %edi
|
|
|
|
; X32-NEXT: adcl %ebx, 4(%eax)
|
|
|
|
; X32-NEXT: movl 8(%eax), %ebx
|
|
|
|
; X32-NEXT: movl -16(%ebp), %esi # 4-byte Reload
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %esi, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl %edx, %ebx
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %ebx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl %edi, 12(%eax)
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %ebx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl 12(%eax), %edi
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %esi
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl 16(%eax), %ebx
|
|
|
|
; X32-NEXT: movl -24(%ebp), %edx # 4-byte Reload
|
|
|
|
; X32-NEXT: adcl %edx, %ebx
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %ebx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %edi
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %esi, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl %edx, 16(%eax)
|
|
|
|
; X32-NEXT: movl -32(%ebp), %edx # 4-byte Reload
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %edx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl -28(%ebp), %edx # 4-byte Reload
|
|
|
|
; X32-NEXT: adcl %edx, 8(%eax)
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %edi, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl %ecx, 20(%eax)
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %ebx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl 20(%eax), %ecx
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %ecx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl -20(%ebp), %edx # 4-byte Reload
|
|
|
|
; X32-NEXT: adcl %edx, 24(%eax)
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %ecx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: adcl 24(%eax), %edx
|
|
|
|
; X32-NEXT: movl -36(%ebp), %ecx # 4-byte Reload
|
|
|
|
; X32-NEXT: adcl %ecx, 28(%eax)
|
|
|
|
; X32-NEXT: movl -40(%ebp), %ecx # 4-byte Reload
|
|
|
|
; X32-NEXT: movl %ecx, (%eax)
|
|
|
|
; X32-NEXT: addl $28, %esp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-NEXT: popl %esi
|
|
|
|
; X32-NEXT: popl %edi
|
|
|
|
; X32-NEXT: popl %ebx
|
|
|
|
; X32-NEXT: popl %ebp
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: add:
|
|
|
|
; X64: # BB#0:
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X64-NEXT: pushq %rbp
|
|
|
|
; X64-NEXT: movq %rsp, %rbp
|
|
|
|
; X64-NEXT: movq (%rdi), %rdx
|
|
|
|
; X64-NEXT: movq 8(%rdi), %r9
|
|
|
|
; X64-NEXT: movq 24(%rsi), %r8
|
|
|
|
; X64-NEXT: movq 8(%rsi), %r10
|
|
|
|
; X64-NEXT: movq 16(%rsi), %rcx
|
|
|
|
; X64-NEXT: movq (%rsi), %rsi
|
|
|
|
; X64-NEXT: movq %rdx, %rax
|
|
|
|
; X64-NEXT: addq %rsi, %rax
|
|
|
|
; X64-NEXT: adcq %r10, 8(%rdi)
|
|
|
|
; X64-NEXT: addq %rsi, %rdx
|
|
|
|
; X64-NEXT: adcq %r10, %r9
|
|
|
|
; X64-NEXT: pushfq
|
|
|
|
; X64-NEXT: popq %rax
|
|
|
|
; X64-NEXT: adcq %rcx, 16(%rdi)
|
|
|
|
; X64-NEXT: pushq %rax
|
|
|
|
; X64-NEXT: popfq
|
|
|
|
; X64-NEXT: adcq 16(%rdi), %rcx
|
|
|
|
; X64-NEXT: adcq %r8, 24(%rdi)
|
|
|
|
; X64-NEXT: movq %rdx, (%rdi)
|
|
|
|
; X64-NEXT: popq %rbp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X64-NEXT: retq
|
2015-02-28 05:17:42 +08:00
|
|
|
%a = load i256, i256* %p
|
|
|
|
%b = load i256, i256* %q
|
2008-10-08 04:39:12 +08:00
|
|
|
%c = add i256 %a, %b
|
2017-02-03 02:24:55 +08:00
|
|
|
store i256 %c, i256* %p
|
2008-10-08 04:39:12 +08:00
|
|
|
ret void
|
|
|
|
}
|
2017-02-03 02:24:55 +08:00
|
|
|
define void @sub(i256* %p, i256* %q) nounwind {
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-LABEL: sub:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: pushl %ebp
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X32-NEXT: movl %esp, %ebp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-NEXT: pushl %ebx
|
|
|
|
; X32-NEXT: pushl %edi
|
|
|
|
; X32-NEXT: pushl %esi
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X32-NEXT: subl $24, %esp
|
|
|
|
; X32-NEXT: movl 12(%ebp), %edi
|
|
|
|
; X32-NEXT: movl 8(%ebp), %ecx
|
|
|
|
; X32-NEXT: movl (%ecx), %eax
|
|
|
|
; X32-NEXT: movl 4(%ecx), %edx
|
|
|
|
; X32-NEXT: movl (%edi), %esi
|
|
|
|
; X32-NEXT: cmpl %esi, %eax
|
|
|
|
; X32-NEXT: movl 4(%edi), %ebx
|
|
|
|
; X32-NEXT: sbbl %ebx, %edx
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %edx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl %edx, -24(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl %edx, -16(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: subl %esi, %eax
|
|
|
|
; X32-NEXT: movl %eax, -36(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 8(%edi), %esi
|
|
|
|
; X32-NEXT: movl 28(%edi), %eax
|
|
|
|
; X32-NEXT: movl %eax, -32(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 24(%edi), %eax
|
|
|
|
; X32-NEXT: movl %eax, -28(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 20(%edi), %eax
|
|
|
|
; X32-NEXT: movl %eax, -20(%ebp) # 4-byte Spill
|
|
|
|
; X32-NEXT: movl 16(%edi), %edx
|
|
|
|
; X32-NEXT: movl 12(%edi), %edi
|
|
|
|
; X32-NEXT: sbbl %ebx, 4(%ecx)
|
|
|
|
; X32-NEXT: movl 8(%ecx), %ebx
|
|
|
|
; X32-NEXT: movl -16(%ebp), %eax # 4-byte Reload
|
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: sbbl %esi, %ebx
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %ebx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: sbbl %edi, 12(%ecx)
|
|
|
|
; X32-NEXT: movl 12(%ecx), %eax
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %ebx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: sbbl %edi, %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: movl 16(%ecx), %edi
|
|
|
|
; X32-NEXT: sbbl %edx, %edi
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %edi
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %ebx
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: sbbl %edx, 16(%ecx)
|
|
|
|
; X32-NEXT: movl -24(%ebp), %eax # 4-byte Reload
|
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: sbbl %esi, 8(%ecx)
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %ebx, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: movl -20(%ebp), %edx # 4-byte Reload
|
|
|
|
; X32-NEXT: sbbl %edx, 20(%ecx)
|
|
|
|
; X32-NEXT: movl 20(%ecx), %eax
|
|
|
|
; X32-NEXT: pushl %eax
|
|
|
|
; X32-NEXT: movl %edi, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: popl %eax
|
|
|
|
; X32-NEXT: sbbl %edx, %eax
|
|
|
|
; X32-NEXT: seto %al
|
|
|
|
; X32-NEXT: lahf
|
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: movl -28(%ebp), %esi # 4-byte Reload
|
|
|
|
; X32-NEXT: sbbl %esi, 24(%ecx)
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-NEXT: movl 24(%ecx), %edx
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X32-NEXT: movl %eax, %eax
|
|
|
|
; X32-NEXT: addb $127, %al
|
|
|
|
; X32-NEXT: sahf
|
|
|
|
; X32-NEXT: sbbl %esi, %edx
|
|
|
|
; X32-NEXT: movl -32(%ebp), %eax # 4-byte Reload
|
|
|
|
; X32-NEXT: sbbl %eax, 28(%ecx)
|
|
|
|
; X32-NEXT: movl -36(%ebp), %eax # 4-byte Reload
|
|
|
|
; X32-NEXT: movl %eax, (%ecx)
|
|
|
|
; X32-NEXT: addl $24, %esp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X32-NEXT: popl %esi
|
|
|
|
; X32-NEXT: popl %edi
|
|
|
|
; X32-NEXT: popl %ebx
|
|
|
|
; X32-NEXT: popl %ebp
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: sub:
|
|
|
|
; X64: # BB#0:
|
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting 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: 296476
2017-02-28 22:24:15 +08:00
|
|
|
; X64-NEXT: pushq %rbp
|
|
|
|
; X64-NEXT: movq %rsp, %rbp
|
|
|
|
; X64-NEXT: movq (%rdi), %rax
|
|
|
|
; X64-NEXT: movq 8(%rdi), %rcx
|
|
|
|
; X64-NEXT: movq 24(%rsi), %r8
|
|
|
|
; X64-NEXT: movq 8(%rsi), %rdx
|
|
|
|
; X64-NEXT: movq 16(%rsi), %r9
|
|
|
|
; X64-NEXT: movq (%rsi), %rsi
|
|
|
|
; X64-NEXT: cmpq %rsi, %rax
|
|
|
|
; X64-NEXT: sbbq %rdx, 8(%rdi)
|
|
|
|
; X64-NEXT: subq %rsi, %rax
|
|
|
|
; X64-NEXT: sbbq %rdx, %rcx
|
|
|
|
; X64-NEXT: pushfq
|
|
|
|
; X64-NEXT: popq %rcx
|
|
|
|
; X64-NEXT: sbbq %r9, 16(%rdi)
|
|
|
|
; X64-NEXT: movq 16(%rdi), %rdx
|
|
|
|
; X64-NEXT: pushq %rcx
|
|
|
|
; X64-NEXT: popfq
|
|
|
|
; X64-NEXT: sbbq %r9, %rdx
|
|
|
|
; X64-NEXT: sbbq %r8, 24(%rdi)
|
|
|
|
; X64-NEXT: movq %rax, (%rdi)
|
|
|
|
; X64-NEXT: popq %rbp
|
2017-02-11 00:34:17 +08:00
|
|
|
; X64-NEXT: retq
|
2015-02-28 05:17:42 +08:00
|
|
|
%a = load i256, i256* %p
|
|
|
|
%b = load i256, i256* %q
|
2008-10-08 04:39:12 +08:00
|
|
|
%c = sub i256 %a, %b
|
2017-02-03 02:24:55 +08:00
|
|
|
store i256 %c, i256* %p
|
2008-10-08 04:39:12 +08:00
|
|
|
ret void
|
|
|
|
}
|