2018-06-06 03:52:46 +08:00
|
|
|
; RUN: llc -march=amdgcn -mtriple=amdgcn---amdgiz -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,SI %s
|
|
|
|
; RUN: llc -march=amdgcn -mtriple=amdgcn---amdgiz -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,VI %s
|
2016-01-26 12:43:48 +08:00
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v1i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword [[LOAD:s[0-9]+]]
|
|
|
|
; GCN: v_mov_b32_e32 [[V_LOAD:v[0-9]+]], [[LOAD]]
|
|
|
|
; GCN: buffer_store_byte [[V_LOAD]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v1i8(i8 addrspace(1)* %out, <1 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <1 x i8> %foo, i32 0
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v2i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword s
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
2016-05-28 08:51:06 +08:00
|
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v2i8(i8 addrspace(1)* %out, <2 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <2 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <2 x i8> %foo, i32 1
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v3i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword s
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 16
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
2016-05-28 08:51:06 +08:00
|
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v3i8(i8 addrspace(1)* %out, <3 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <3 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <3 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v4i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword s
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 16
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
2016-05-28 08:51:06 +08:00
|
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v4i8(i8 addrspace(1)* %out, <4 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <4 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <4 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v8i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword [[VAL:s[0-9]+]]
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, [[VAL]], 16
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
2016-05-28 08:51:06 +08:00
|
|
|
; GCN: buffer_store_byte
|
|
|
|
; GCN: buffer_store_byte
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v8i8(i8 addrspace(1)* %out, <8 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <8 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <8 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v16i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword [[LOAD0:s[0-9]+]]
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 [[ELT2:s[0-9]+]], [[LOAD0]], 16
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_LOAD0:v[0-9]+]], [[LOAD0]]
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_ELT2:v[0-9]+]], [[ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_LOAD0]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v16i8(i8 addrspace(1)* %out, <16 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <16 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <16 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v32i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword [[LOAD0:s[0-9]+]]
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 [[ELT2:s[0-9]+]], [[LOAD0]], 16
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_LOAD0:v[0-9]+]], [[LOAD0]]
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_ELT2:v[0-9]+]], [[ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_LOAD0]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v32i8(i8 addrspace(1)* %out, <32 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <32 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <32 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}extract_vector_elt_v64i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN: s_load_dword [[LOAD0:s[0-9]+]]
|
|
|
|
; GCN-NOT: {{flat|buffer|global}}
|
|
|
|
; GCN: s_lshr_b32 [[ELT2:s[0-9]+]], [[LOAD0]], 16
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_LOAD0:v[0-9]+]], [[LOAD0]]
|
|
|
|
; GCN-DAG: v_mov_b32_e32 [[V_ELT2:v[0-9]+]], [[ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_ELT2]]
|
|
|
|
; GCN: buffer_store_byte [[V_LOAD0]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @extract_vector_elt_v64i8(i8 addrspace(1)* %out, <64 x i8> %foo) #0 {
|
2016-01-26 12:43:48 +08:00
|
|
|
%p0 = extractelement <64 x i8> %foo, i32 0
|
|
|
|
%p1 = extractelement <64 x i8> %foo, i32 2
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p1, i8 addrspace(1)* %out
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; FIXME: SI generates much worse code from that's a pain to match
|
2016-05-28 08:51:06 +08:00
|
|
|
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; FIXME: 16-bit and 32-bit shift not combined after legalize to to
|
|
|
|
; isTypeDesirableForOp in SimplifyDemandedBits
|
2016-05-28 08:51:06 +08:00
|
|
|
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; GCN-LABEL: {{^}}dynamic_extract_vector_elt_v2i8:
|
|
|
|
; VI: s_load_dword [[LOAD:s[0-9]+]], s[0:1], 0x2c
|
|
|
|
; VI-NEXT: s_load_dword [[IDX:s[0-9]+]], s[0:1], 0x30
|
|
|
|
; VI-NOT: {{flat|buffer|global}}
|
|
|
|
; VI: s_lshr_b32 [[ELT1:s[0-9]+]], [[LOAD]], 8
|
|
|
|
; VI: v_lshlrev_b16_e64 [[ELT2:v[0-9]+]], 8, [[ELT1]]
|
|
|
|
; VI: s_and_b32 [[ELT0:s[0-9]+]], [[LOAD]], 0xff{{$}}
|
|
|
|
; VI: v_or_b32_e32 [[BUILD_VEC:v[0-9]+]], [[ELT0]], [[ELT2]]
|
|
|
|
; VI-DAG: s_lshl_b32 [[SCALED_IDX:s[0-9]+]], [[IDX]], 3
|
|
|
|
; VI: v_lshrrev_b16_e32 [[EXTRACT:v[0-9]+]], [[SCALED_IDX]], [[BUILD_VEC]]
|
2018-06-06 03:52:46 +08:00
|
|
|
; VI: buffer_store_byte [[EXTRACT]]
|
|
|
|
define amdgpu_kernel void @dynamic_extract_vector_elt_v2i8(i8 addrspace(1)* %out, <2 x i8> %foo, i32 %idx) #0 {
|
|
|
|
%elt = extractelement <2 x i8> %foo, i32 %idx
|
|
|
|
store i8 %elt, i8 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}dynamic_extract_vector_elt_v3i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; VI: s_load_dword [[LOAD:s[0-9]+]], s[0:1], 0x2c
|
|
|
|
; VI-NEXT: s_load_dword [[IDX:s[0-9]+]], s[0:1], 0x30
|
|
|
|
; VI-NOT: {{flat|buffer|global}}
|
|
|
|
; VI: s_lshr_b32 [[ELT12:s[0-9]+]], [[LOAD]], 8
|
|
|
|
; VI: v_lshlrev_b16_e64 [[ELT1:v[0-9]+]], 8, [[ELT12]]
|
|
|
|
; VI: s_and_b32 [[ELT0:s[0-9]+]], [[LOAD]], 0xff{{$}}
|
|
|
|
; VI: v_or_b32_e32 [[VEC3:v[0-9]+]], [[ELT0]], [[ELT1]]
|
2018-06-06 03:52:46 +08:00
|
|
|
; VI: s_lshl_b32 [[SCALED_IDX:s[0-9]+]], [[IDX]], 3
|
|
|
|
; VI: v_lshrrev_b32_e32 [[EXTRACT:v[0-9]+]], [[SCALED_IDX]], [[VEC3]]
|
|
|
|
; VI: buffer_store_byte [[EXTRACT]]
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @dynamic_extract_vector_elt_v3i8(i8 addrspace(1)* %out, <3 x i8> %foo, i32 %idx) #0 {
|
2016-05-28 08:51:06 +08:00
|
|
|
%p0 = extractelement <3 x i8> %foo, i32 %idx
|
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}dynamic_extract_vector_elt_v4i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; VI: s_load_dword [[IDX:s[0-9]+]], s[0:1], 0x34
|
|
|
|
; VI: s_load_dword [[VEC4:s[0-9]+]], s{{\[[0-9]+:[0-9]+\]}}, 0x0
|
2016-05-28 08:51:06 +08:00
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; VI: s_lshl_b32 [[SCALED_IDX:s[0-9]+]], [[IDX]], 3
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; VI: s_lshr_b32 [[EXTRACT:s[0-9]+]], [[VEC4]], [[SCALED_IDX]]
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; VI: v_mov_b32_e32 [[V_EXTRACT:v[0-9]+]], [[EXTRACT]]
|
|
|
|
; VI: buffer_store_byte [[V_EXTRACT]]
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
define amdgpu_kernel void @dynamic_extract_vector_elt_v4i8(i8 addrspace(1)* %out, <4 x i8> addrspace(4)* %vec.ptr, i32 %idx) #0 {
|
|
|
|
%vec = load <4 x i8>, <4 x i8> addrspace(4)* %vec.ptr
|
|
|
|
%p0 = extractelement <4 x i8> %vec, i32 %idx
|
2016-05-28 08:51:06 +08:00
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-06 03:52:46 +08:00
|
|
|
; GCN-LABEL: {{^}}dynamic_extract_vector_elt_v8i8:
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; VI: s_load_dword [[IDX:s[0-9]+]], s[0:1], 0x34
|
|
|
|
; VI: s_load_dwordx2 [[VEC8:s\[[0-9]+:[0-9]+\]]], s{{\[[0-9]+:[0-9]+\]}}, 0x0
|
2018-06-06 03:52:46 +08:00
|
|
|
|
|
|
|
; VI: s_lshl_b32 [[SCALED_IDX:s[0-9]+]], [[IDX]], 3
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
; VI: s_lshr_b64 s{{\[}}[[EXTRACT_LO:[0-9]+]]:{{[0-9]+\]}}, [[VEC8]], [[SCALED_IDX]]
|
2018-06-06 03:52:46 +08:00
|
|
|
; VI: v_mov_b32_e32 [[V_EXTRACT:v[0-9]+]], s[[EXTRACT_LO]]
|
|
|
|
; VI: buffer_store_byte [[V_EXTRACT]]
|
AMDGPU: Try a lot harder to emit scalar loads
This has two main components. First, widen
widen short constant loads in DAG when they have
the correct alignment. This is already done a bit in
AMDGPUCodeGenPrepare, since that has access to
DivergenceAnalysis. This can't help kernarg loads
created in the DAG. Start to use DAG divergence analysis
to help this case.
The second part is to avoid kernel argument lowering
breaking the alignment of short vector elements because
calling convention lowering wants to split everything
into legal register types.
When loading a split type, load the nearest 4-byte aligned
segment and shift to get the desired bits. This extra
load of the earlier argument piece ends up merging,
and the bit extract hopefully folds out.
There are a number of improvements and regressions with
this, but I think as-is this is a better compromise between
several of the worst parts of SelectionDAG.
Particularly when i16 is legal, this produces worse code
for i8 and i16 element vector kernel arguments. This is
partially due to the very weak load merging the DAG does.
It only looks for fairly specific combines between pairs
of loads which no longer appear. In particular this
causes v4i16 loads to be split into 2 components when
previously the two halves were merged.
Worse, because of the newly introduced shifts, there
is a lot more unnecessary vector packing and unpacking code
emitted. At least some of this is due to reporting
false for isTypeDesirableForOp for i16 as a workaround for
the lack of divergence information in the DAG. The cases
where this happens it doesn't actually matter, but the
relevant code in SimplifyDemandedBits doens't have the context
to know to ignore this.
The use of the scalar cache is probably more important
than the mess of mostly scalar instructions doing this packing
and unpacking. Future work can fix this, possibly by making better
use of the new DAG divergence information for controlling promotion
decisions, or adding another version of shift + trunc + shift
combines that doesn't only know about the used types.
llvm-svn: 334180
2018-06-07 17:54:49 +08:00
|
|
|
define amdgpu_kernel void @dynamic_extract_vector_elt_v8i8(i8 addrspace(1)* %out, <8 x i8> addrspace(4)* %vec.ptr, i32 %idx) #0 {
|
|
|
|
%vec = load <8 x i8>, <8 x i8> addrspace(4)* %vec.ptr
|
|
|
|
%p0 = extractelement <8 x i8> %vec, i32 %idx
|
2018-06-06 03:52:46 +08:00
|
|
|
%out1 = getelementptr i8, i8 addrspace(1)* %out, i32 1
|
|
|
|
store i8 %p0, i8 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-06-15 23:31:36 +08:00
|
|
|
; GCN-LABEL: {{^}}reduce_load_vector_v8i8_extract_0123:
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_load_dword s
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 16
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 24
|
|
|
|
define amdgpu_kernel void @reduce_load_vector_v8i8_extract_0123() #0 {
|
|
|
|
%load = load <8 x i8>, <8 x i8> addrspace(4)* null
|
|
|
|
%elt0 = extractelement <8 x i8> %load, i32 0
|
|
|
|
%elt1 = extractelement <8 x i8> %load, i32 1
|
|
|
|
%elt2 = extractelement <8 x i8> %load, i32 2
|
|
|
|
%elt3 = extractelement <8 x i8> %load, i32 3
|
|
|
|
store volatile i8 %elt0, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt1, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt2, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt3, i8 addrspace(1)* undef, align 1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}reduce_load_vector_v8i8_extract_0145:
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_load_dwordx2
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
define amdgpu_kernel void @reduce_load_vector_v8i8_extract_0145() #0 {
|
|
|
|
%load = load <8 x i8>, <8 x i8> addrspace(4)* null
|
|
|
|
%elt0 = extractelement <8 x i8> %load, i32 0
|
|
|
|
%elt1 = extractelement <8 x i8> %load, i32 1
|
|
|
|
%elt4 = extractelement <8 x i8> %load, i32 4
|
|
|
|
%elt5 = extractelement <8 x i8> %load, i32 5
|
|
|
|
store volatile i8 %elt0, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt1, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt4, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt5, i8 addrspace(1)* undef, align 1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}reduce_load_vector_v8i8_extract_45:
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_mov_b64 [[PTR:s\[[0-9]+:[0-9]+\]]], 4{{$}}
|
|
|
|
; GCN: s_load_dword s{{[0-9]+}}, [[PTR]], 0x0{{$}}
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
define amdgpu_kernel void @reduce_load_vector_v8i8_extract_45() #0 {
|
|
|
|
%load = load <8 x i8>, <8 x i8> addrspace(4)* null
|
|
|
|
%elt4 = extractelement <8 x i8> %load, i32 4
|
|
|
|
%elt5 = extractelement <8 x i8> %load, i32 5
|
|
|
|
store volatile i8 %elt4, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt5, i8 addrspace(1)* undef, align 1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FIXME: ought to be able to eliminate high half of load
|
|
|
|
; GCN-LABEL: {{^}}reduce_load_vector_v16i8_extract_0145:
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_load_dwordx4
|
|
|
|
; GCN-NOT: {{s|buffer|flat|global}}_load_
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
; GCN: s_lshr_b32 s{{[0-9]+}}, s{{[0-9]+}}, 8
|
|
|
|
define amdgpu_kernel void @reduce_load_vector_v16i8_extract_0145() #0 {
|
|
|
|
%load = load <16 x i8>, <16 x i8> addrspace(4)* null
|
|
|
|
%elt0 = extractelement <16 x i8> %load, i32 0
|
|
|
|
%elt1 = extractelement <16 x i8> %load, i32 1
|
|
|
|
%elt4 = extractelement <16 x i8> %load, i32 4
|
|
|
|
%elt5 = extractelement <16 x i8> %load, i32 5
|
|
|
|
store volatile i8 %elt0, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt1, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt4, i8 addrspace(1)* undef, align 1
|
|
|
|
store volatile i8 %elt5, i8 addrspace(1)* undef, align 1
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-26 12:43:48 +08:00
|
|
|
attributes #0 = { nounwind }
|