2017-02-03 02:24:55 +08:00
; RUN: llc -O0 -mtriple=amdgcn--amdhsa -mcpu=fiji -mattr=+amdgpu-debugger-insert-nops -verify-machineinstrs < %s | FileCheck %s
2016-04-19 00:28:23 +08:00
2017-02-03 02:24:55 +08:00
; CHECK: test01.cl:2:{{[0-9]+}}
; CHECK-NEXT: s_nop 0
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
* 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: 293184
2017-01-27 00:02:24 +08:00
2017-02-03 02:24:55 +08:00
; CHECK: test01.cl:3:{{[0-9]+}}
; CHECK-NEXT: s_nop 0
In visitSTORE, always use FindBetterChain, rather than only when UseAA is enabled.
Recommiting after fixing X86 inc/dec chain bug.
* 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: 293893
2017-02-02 22:39:42 +08:00
2017-02-03 02:24:55 +08:00
; CHECK: test01.cl:4:{{[0-9]+}}
; CHECK-NEXT: s_nop 0
2016-05-10 02:05:42 +08:00
2016-05-14 02:21:28 +08:00
; CHECK: test01.cl:5:{{[0-9]+}}
2016-04-19 00:28:23 +08:00
; CHECK-NEXT: s_nop 0
; CHECK-NEXT: s_endpgm
; Function Attrs: nounwind
2016-05-10 02:05:42 +08:00
define void @test ( i32 addrspace ( 1 ) * %A ) #0 !dbg !12 {
2016-04-19 00:28:23 +08:00
entry:
%A.addr = alloca i32 addrspace ( 1 ) * , align 4
store i32 addrspace ( 1 ) * %A , i32 addrspace ( 1 ) * * %A.addr , align 4
call void @llvm.dbg.declare ( metadata i32 addrspace ( 1 ) * * %A.addr , metadata !17 , metadata !18 ) , !dbg !19
%0 = load i32 addrspace ( 1 ) * , i32 addrspace ( 1 ) * * %A.addr , align 4 , !dbg !20
%arrayidx = getelementptr inbounds i32 , i32 addrspace ( 1 ) * %0 , i32 0 , !dbg !20
2017-02-03 02:24:55 +08:00
store i32 1 , i32 addrspace ( 1 ) * %arrayidx , align 4 , !dbg !21
2016-04-19 00:28:23 +08:00
%1 = load i32 addrspace ( 1 ) * , i32 addrspace ( 1 ) * * %A.addr , align 4 , !dbg !22
%arrayidx1 = getelementptr inbounds i32 , i32 addrspace ( 1 ) * %1 , i32 1 , !dbg !22
store i32 2 , i32 addrspace ( 1 ) * %arrayidx1 , align 4 , !dbg !23
%2 = load i32 addrspace ( 1 ) * , i32 addrspace ( 1 ) * * %A.addr , align 4 , !dbg !24
%arrayidx2 = getelementptr inbounds i32 , i32 addrspace ( 1 ) * %2 , i32 2 , !dbg !24
store i32 3 , i32 addrspace ( 1 ) * %arrayidx2 , align 4 , !dbg !25
2016-05-10 02:05:42 +08:00
ret void , !dbg !26
2016-04-19 00:28:23 +08:00
}
; Function Attrs: nounwind readnone
declare void @llvm.dbg.declare ( metadata , metadata , metadata ) #1
2016-07-12 07:35:48 +08:00
attributes #0 = { nounwind }
2016-04-19 00:28:23 +08:00
attributes #1 = { nounwind readnone }
!llvm.dbg.cu = ! { !0 }
!opencl.kernels = ! { !3 }
!llvm.module.flags = ! { !9 , !10 }
!llvm.ident = ! { !11 }
2016-05-10 02:05:42 +08:00
!0 = distinct !DICompileUnit ( language: D W _ L A N G _ C 99 , file: !1 , producer: "clang version 3.9.0 (trunk 268929)" , isOptimized: false , runtimeVersion: 0 , emissionKind: F u l l D e b u g , enums: !2 )
!1 = !DIFile ( filename: "test01.cl" , directory: "/home/kzhuravl/Lightning/testing" )
2016-04-19 00:28:23 +08:00
!2 = ! { }
2016-05-10 02:05:42 +08:00
!3 = ! { void ( i32 addrspace ( 1 ) * ) * @test , !4 , !5 , !6 , !7 , !8 }
2016-04-19 00:28:23 +08:00
!4 = ! { !"kernel_arg_addr_space" , i32 1 }
!5 = ! { !"kernel_arg_access_qual" , !"none" }
!6 = ! { !"kernel_arg_type" , !"int*" }
!7 = ! { !"kernel_arg_base_type" , !"int*" }
!8 = ! { !"kernel_arg_type_qual" , !"" }
2016-05-10 02:05:42 +08:00
!9 = ! { i32 2 , !"Dwarf Version" , i32 2 }
2016-04-19 00:28:23 +08:00
!10 = ! { i32 2 , !"Debug Info Version" , i32 3 }
2016-05-10 02:05:42 +08:00
!11 = ! { !"clang version 3.9.0 (trunk 268929)" }
!12 = distinct !DISubprogram ( name: "test" , scope: !1 , file: !1 , line: 1 , type: !13 , isLocal: false , isDefinition: true , scopeLine: 1 , flags: D I F l a g P r o t o t y p e d , isOptimized: false , unit: !0 , variables: !2 )
2016-04-19 00:28:23 +08:00
!13 = !DISubroutineType ( types: !14 )
!14 = ! { null , !15 }
!15 = !DIDerivedType ( tag: D W _ T A G _ p o i n t e r _ type , baseType: !16 , size: 64 , align: 32 )
!16 = !DIBasicType ( name: "int" , size: 32 , align: 32 , encoding: D W _ A T E _ s i g n e d )
!17 = !DILocalVariable ( name: "A" , arg: 1 , scope: !12 , file: !1 , line: 1 , type: !15 )
!18 = !DIExpression ( )
2016-05-10 02:05:42 +08:00
!19 = !DILocation ( line: 1 , column: 30 , scope: !12 )
2016-04-19 00:28:23 +08:00
!20 = !DILocation ( line: 2 , column: 3 , scope: !12 )
!21 = !DILocation ( line: 2 , column: 8 , scope: !12 )
!22 = !DILocation ( line: 3 , column: 3 , scope: !12 )
!23 = !DILocation ( line: 3 , column: 8 , scope: !12 )
!24 = !DILocation ( line: 4 , column: 3 , scope: !12 )
!25 = !DILocation ( line: 4 , column: 8 , scope: !12 )
2016-05-10 02:05:42 +08:00
!26 = !DILocation ( line: 5 , column: 1 , scope: !12 )