2021-02-18 15:16:28 +01:00
|
|
|
; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,SIVI %s
|
|
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,SIVI %s
|
2020-10-13 10:01:45 +02:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=gfx1010 -mattr=-flat-for-global,+wavefrontsize64 -verify-machineinstrs < %s | FileCheck -enable-var-scope -check-prefixes=GCN,GFX10 %s
|
2014-03-17 18:03:52 +01:00
|
|
|
|
2016-02-11 07:02:01 +01:00
|
|
|
declare i32 @llvm.amdgcn.workitem.id.x() #1
|
[AMDGPU] Restrict v_cndmask_b32 abs/neg modifiers to f32
Summary:
D64497 allowed abs/neg source modifiers on v_cndmask_b32 but it doesn't
make any sense to apply them to f16 operands; they would interpret the
bits of the value as an f32, giving nonsensical results. This patch
restricts them to f32 operands.
Reviewers: arsenm, hakzsam
Subscribers: kzhuravl, jvesely, wdng, nhaehnle, yaxunl, dstuttard, tpr, t-tye, hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D64636
llvm-svn: 365904
2019-07-12 17:02:59 +02:00
|
|
|
declare half @llvm.fabs.f16(half)
|
|
|
|
declare float @llvm.fabs.f32(float)
|
|
|
|
declare double @llvm.fabs.f64(double)
|
2014-09-26 19:54:52 +02:00
|
|
|
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-LABEL: {{^}}v_cnd_nan_nosgpr:
|
2020-06-24 16:27:23 +02:00
|
|
|
; GCN: v_cmp_eq_u32_e64 [[COND:vcc|s\[[0-9]+:[0-9]+\]]], s{{[0-9]+}}, 0
|
2017-03-11 01:29:27 +01:00
|
|
|
; GCN: v_cndmask_b32_e{{32|64}} v{{[0-9]}}, -1, v{{[0-9]+}}, [[COND]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-DAG: v{{[0-9]}}
|
2014-05-16 22:56:41 +02:00
|
|
|
; All nan values are converted to 0xffffffff
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN: s_endpgm
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @v_cnd_nan_nosgpr(float addrspace(1)* %out, i32 %c, float addrspace(1)* %fptr) #0 {
|
2016-02-11 07:02:01 +01:00
|
|
|
%idx = call i32 @llvm.amdgcn.workitem.id.x() #1
|
[opaque pointer type] Add textual IR support for explicit type parameter to getelementptr instruction
One of several parallel first steps to remove the target type of pointers,
replacing them with a single opaque pointer type.
This adds an explicit type parameter to the gep instruction so that when the
first parameter becomes an opaque pointer type, the type to gep through is
still available to the instructions.
* This doesn't modify gep operators, only instructions (operators will be
handled separately)
* Textual IR changes only. Bitcode (including upgrade) and changing the
in-memory representation will be in separate changes.
* geps of vectors are transformed as:
getelementptr <4 x float*> %x, ...
->getelementptr float, <4 x float*> %x, ...
Then, once the opaque pointer type is introduced, this will ultimately look
like:
getelementptr float, <4 x ptr> %x
with the unambiguous interpretation that it is a vector of pointers to float.
* address spaces remain on the pointer, not the type:
getelementptr float addrspace(1)* %x
->getelementptr float, float addrspace(1)* %x
Then, eventually:
getelementptr float, ptr addrspace(1) %x
Importantly, the massive amount of test case churn has been automated by
same crappy python code. I had to manually update a few test cases that
wouldn't fit the script's model (r228970,r229196,r229197,r229198). The
python script just massages stdin and writes the result to stdout, I
then wrapped that in a shell script to handle replacing files, then
using the usual find+xargs to migrate all the files.
update.py:
import fileinput
import sys
import re
ibrep = re.compile(r"(^.*?[^%\w]getelementptr inbounds )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
normrep = re.compile( r"(^.*?[^%\w]getelementptr )(((?:<\d* x )?)(.*?)(| addrspace\(\d\)) *\*(|>)(?:$| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$))")
def conv(match, line):
if not match:
return line
line = match.groups()[0]
if len(match.groups()[5]) == 0:
line += match.groups()[2]
line += match.groups()[3]
line += ", "
line += match.groups()[1]
line += "\n"
return line
for line in sys.stdin:
if line.find("getelementptr ") == line.find("getelementptr inbounds"):
if line.find("getelementptr inbounds") != line.find("getelementptr inbounds ("):
line = conv(re.match(ibrep, line), line)
elif line.find("getelementptr ") != line.find("getelementptr ("):
line = conv(re.match(normrep, line), line)
sys.stdout.write(line)
apply.sh:
for name in "$@"
do
python3 `dirname "$0"`/update.py < "$name" > "$name.tmp" && mv "$name.tmp" "$name"
rm -f "$name.tmp"
done
The actual commands:
From llvm/src:
find test/ -name *.ll | xargs ./apply.sh
From llvm/src/tools/clang:
find test/ -name *.mm -o -name *.m -o -name *.cpp -o -name *.c | xargs -I '{}' ../../apply.sh "{}"
From llvm/src/tools/polly:
find test/ -name *.ll | xargs ./apply.sh
After that, check-all (with llvm, clang, clang-tools-extra, lld,
compiler-rt, and polly all checked out).
The extra 'rm' in the apply.sh script is due to a few files in clang's test
suite using interesting unicode stuff that my python script was throwing
exceptions on. None of those files needed to be migrated, so it seemed
sufficient to ignore those cases.
Reviewers: rafael, dexonsmith, grosser
Differential Revision: http://reviews.llvm.org/D7636
llvm-svn: 230786
2015-02-27 20:29:02 +01:00
|
|
|
%f.gep = getelementptr float, float addrspace(1)* %fptr, i32 %idx
|
2016-12-22 22:40:08 +01:00
|
|
|
%f = load float, float addrspace(1)* %f.gep
|
2014-09-26 19:54:52 +02:00
|
|
|
%setcc = icmp ne i32 %c, 0
|
|
|
|
%select = select i1 %setcc, float 0xFFFFFFFFE0000000, float %f
|
|
|
|
store float %select, float addrspace(1)* %out
|
2014-03-17 18:03:52 +01:00
|
|
|
ret void
|
|
|
|
}
|
2014-09-26 19:54:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
; This requires slightly trickier SGPR operand legalization since the
|
|
|
|
; single constant bus SGPR usage is the last operand, and it should
|
|
|
|
; never be moved.
|
2019-05-13 21:30:06 +02:00
|
|
|
; However on GFX10 constant bus is limited to 2 scalar operands, not one.
|
2014-09-26 19:54:52 +02:00
|
|
|
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-LABEL: {{^}}v_cnd_nan:
|
2020-06-24 16:27:23 +02:00
|
|
|
; SIVI: v_cmp_eq_u32_e64 vcc, s{{[0-9]+}}, 0
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, -1, v{{[0-9]+}}, vcc
|
2020-06-24 16:27:23 +02:00
|
|
|
; GFX10: v_cmp_eq_u32_e64 [[CC:s\[[0-9:]+\]]], s{{[0-9]+}}, 0
|
2019-05-13 21:30:06 +02:00
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, -1, s{{[0-9]+}}, [[CC]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-DAG: v{{[0-9]}}
|
2014-09-26 19:54:52 +02:00
|
|
|
; All nan values are converted to 0xffffffff
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN: s_endpgm
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @v_cnd_nan(float addrspace(1)* %out, i32 %c, float %f) #0 {
|
2014-09-26 19:54:52 +02:00
|
|
|
%setcc = icmp ne i32 %c, 0
|
|
|
|
%select = select i1 %setcc, float 0xFFFFFFFFE0000000, float %f
|
|
|
|
store float %select, float addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-12-22 22:40:08 +01:00
|
|
|
; Test different compare and select operand types for optimal code
|
|
|
|
; shrinking.
|
|
|
|
; (select (cmp (sgprX, constant)), constant, sgprZ)
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k1_sgprZ_f32:
|
2020-08-13 22:51:07 +02:00
|
|
|
; GCN: s_load_dwordx2 s{{\[}}[[X:[0-9]+]]:[[Z:[0-9]+]]{{\]}}, s[0:1], {{0x4c|0x13}}
|
|
|
|
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_cmp_nlg_f32_e64 [[CC:vcc]], s[[X]], 0
|
|
|
|
; GFX10-DAG: v_cmp_nlg_f32_e64 [[CC:s\[[0-9:]+\]]], s[[X]], 0
|
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[VZ:v[0-9]+]], s[[Z]]
|
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, [[VZ]], [[CC]]
|
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, 1.0, s[[Z]], [[CC]]
|
AMDGPU: Add pass to lower kernel arguments to loads
This replaces most argument uses with loads, but for
now not all.
The code in SelectionDAG for calling convention lowering
is actively harmful for amdgpu_kernel. It attempts to
split the argument types into register legal types, which
results in low quality code for arbitary types. Since
all kernel arguments are passed in memory, we just want the
raw types.
I've tried a couple of methods of mitigating this in SelectionDAG,
but it's easier to just bypass this problem alltogether. It's
possible to hack around the problem in the initial lowering,
but the real problem is the DAG then expects to be able to use
CopyToReg/CopyFromReg for uses of the arguments outside the block.
Exposing the argument loads in the IR also has the advantage
that the LoadStoreVectorizer can merge them.
I'm not sure the best approach to dealing with the IR
argument list is. The patch as-is just leaves the IR arguments
in place, so all the existing code will still compute the same
kernarg size and pointlessly lowers the arguments.
Arguably the frontend should emit kernels with an empty argument
list in the first place. Alternatively a dummy array could be
inserted as a single argument just to reserve space.
This does have some disadvantages. Local pointer kernel arguments can
no longer have AssertZext placed on them as the equivalent !range
metadata is not valid on pointer typed loads. This is mostly bad
for SI which needs to know about the known bits in order to use the
DS instruction offset, so in this case this is not done.
More importantly, this skips noalias arguments since this pass
does not yet convert this to the equivalent !alias.scope and !noalias
metadata. Producing this metadata correctly seems to be tricky,
although this logically is the same as inlining into a function which
doesn't exist. Additionally, exposing these loads to the vectorizer
may result in degraded aliasing information if a pointer load is
merged with another argument load.
I'm also not entirely sure this is preserving the current clover
ABI, although I would greatly prefer if it would stop widening
arguments and match the HSA ABI. As-is I think it is extending
< 4-byte arguments to 4-bytes but doesn't align them to 4-bytes.
llvm-svn: 335650
2018-06-26 21:10:00 +02:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k1_sgprZ_f32(float addrspace(1)* %out, [8 x i32], float %x, float %z) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 1.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k1_sgprX_f32:
|
|
|
|
; GCN: s_load_dword [[X:s[0-9]+]]
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_cmp_nlg_f32_e64 [[CC:vcc]], [[X]], 0
|
|
|
|
; GFX10-DAG: v_cmp_nlg_f32_e64 [[CC:s\[[0-9:]+\]]], [[X]], 0
|
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[VX:v[0-9]+]], [[X]]
|
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, [[VX]], [[CC]]
|
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, 1.0, [[X]], [[CC]]
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k1_sgprX_f32(float addrspace(1)* %out, float %x) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 1.0, float %x
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k0_sgprZ_f32:
|
AMDGPU: Add pass to lower kernel arguments to loads
This replaces most argument uses with loads, but for
now not all.
The code in SelectionDAG for calling convention lowering
is actively harmful for amdgpu_kernel. It attempts to
split the argument types into register legal types, which
results in low quality code for arbitary types. Since
all kernel arguments are passed in memory, we just want the
raw types.
I've tried a couple of methods of mitigating this in SelectionDAG,
but it's easier to just bypass this problem alltogether. It's
possible to hack around the problem in the initial lowering,
but the real problem is the DAG then expects to be able to use
CopyToReg/CopyFromReg for uses of the arguments outside the block.
Exposing the argument loads in the IR also has the advantage
that the LoadStoreVectorizer can merge them.
I'm not sure the best approach to dealing with the IR
argument list is. The patch as-is just leaves the IR arguments
in place, so all the existing code will still compute the same
kernarg size and pointlessly lowers the arguments.
Arguably the frontend should emit kernels with an empty argument
list in the first place. Alternatively a dummy array could be
inserted as a single argument just to reserve space.
This does have some disadvantages. Local pointer kernel arguments can
no longer have AssertZext placed on them as the equivalent !range
metadata is not valid on pointer typed loads. This is mostly bad
for SI which needs to know about the known bits in order to use the
DS instruction offset, so in this case this is not done.
More importantly, this skips noalias arguments since this pass
does not yet convert this to the equivalent !alias.scope and !noalias
metadata. Producing this metadata correctly seems to be tricky,
although this logically is the same as inlining into a function which
doesn't exist. Additionally, exposing these loads to the vectorizer
may result in degraded aliasing information if a pointer load is
merged with another argument load.
I'm also not entirely sure this is preserving the current clover
ABI, although I would greatly prefer if it would stop widening
arguments and match the HSA ABI. As-is I think it is extending
< 4-byte arguments to 4-bytes but doesn't align them to 4-bytes.
llvm-svn: 335650
2018-06-26 21:10:00 +02:00
|
|
|
; GCN-DAG: s_load_dwordx2 s{{\[}}[[X:[0-9]+]]:[[Z:[0-9]+]]{{\]}}, s{{\[[0-9]+:[0-9]+\]}}, {{0x13|0x4c}}
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_cmp_nlg_f32_e64 [[CC:vcc]], s[[X]], 0
|
|
|
|
; GFX10-DAG: v_cmp_nlg_f32_e64 [[CC:s\[[0-9:]+\]]], s[[X]], 0
|
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[VZ:v[0-9]+]], s[[Z]]
|
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, 0, [[VZ]], [[CC]]
|
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, 0, s[[Z]], [[CC]]
|
AMDGPU: Add pass to lower kernel arguments to loads
This replaces most argument uses with loads, but for
now not all.
The code in SelectionDAG for calling convention lowering
is actively harmful for amdgpu_kernel. It attempts to
split the argument types into register legal types, which
results in low quality code for arbitary types. Since
all kernel arguments are passed in memory, we just want the
raw types.
I've tried a couple of methods of mitigating this in SelectionDAG,
but it's easier to just bypass this problem alltogether. It's
possible to hack around the problem in the initial lowering,
but the real problem is the DAG then expects to be able to use
CopyToReg/CopyFromReg for uses of the arguments outside the block.
Exposing the argument loads in the IR also has the advantage
that the LoadStoreVectorizer can merge them.
I'm not sure the best approach to dealing with the IR
argument list is. The patch as-is just leaves the IR arguments
in place, so all the existing code will still compute the same
kernarg size and pointlessly lowers the arguments.
Arguably the frontend should emit kernels with an empty argument
list in the first place. Alternatively a dummy array could be
inserted as a single argument just to reserve space.
This does have some disadvantages. Local pointer kernel arguments can
no longer have AssertZext placed on them as the equivalent !range
metadata is not valid on pointer typed loads. This is mostly bad
for SI which needs to know about the known bits in order to use the
DS instruction offset, so in this case this is not done.
More importantly, this skips noalias arguments since this pass
does not yet convert this to the equivalent !alias.scope and !noalias
metadata. Producing this metadata correctly seems to be tricky,
although this logically is the same as inlining into a function which
doesn't exist. Additionally, exposing these loads to the vectorizer
may result in degraded aliasing information if a pointer load is
merged with another argument load.
I'm also not entirely sure this is preserving the current clover
ABI, although I would greatly prefer if it would stop widening
arguments and match the HSA ABI. As-is I think it is extending
< 4-byte arguments to 4-bytes but doesn't align them to 4-bytes.
llvm-svn: 335650
2018-06-26 21:10:00 +02:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k0_sgprZ_f32(float addrspace(1)* %out, [8 x i32], float %x, float %z) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 0.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k0_sgprX_f32:
|
|
|
|
; GCN: s_load_dword [[X:s[0-9]+]]
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_cmp_nlg_f32_e64 [[CC:vcc]], [[X]], 0
|
|
|
|
; GFX10-DAG: v_cmp_nlg_f32_e64 [[CC:s\[[0-9:]+\]]], [[X]], 0
|
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[VX:v[0-9]+]], [[X]]
|
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, 0, [[VX]], [[CC]]
|
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, 0, [[X]], [[CC]]
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k0_sgprX_f32(float addrspace(1)* %out, float %x) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 0.0, float %x
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k0_vgprZ_f32:
|
|
|
|
; GCN-DAG: s_load_dword [[X:s[0-9]+]]
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dword [[Z:v[0-9]+]]
|
2017-03-11 01:29:27 +01:00
|
|
|
; GCN-DAG: v_cmp_nlg_f32_e64 [[COND:vcc|s\[[0-9]+:[0-9]+\]]], [[X]], 0
|
|
|
|
; GCN: v_cndmask_b32_e{{32|64}} v{{[0-9]+}}, 0, [[Z]], [[COND]]
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k0_vgprZ_f32(float addrspace(1)* %out, float %x, float addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%z.gep = getelementptr inbounds float, float addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%z = load float, float addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 0.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_sgprX_k0_select_k1_vgprZ_f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dword [[Z:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-DAG: s_load_dword [[X:s[0-9]+]]
|
2017-09-19 22:54:38 +02:00
|
|
|
; GCN-DAG: v_cmp_nlg_f32_e64 [[COND:vcc|s\[[0-9]+:[0-9]+\]]], [[X]], 0
|
2017-03-11 01:29:27 +01:00
|
|
|
; GCN: v_cndmask_b32_e{{32|64}} v{{[0-9]+}}, 1.0, [[Z]], [[COND]]
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_sgprX_k0_select_k1_vgprZ_f32(float addrspace(1)* %out, float %x, float addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%z.gep = getelementptr inbounds float, float addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%z = load float, float addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 1.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_select_k1_sgprZ_f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-DAG: s_load_dword [[Z:s[0-9]+]]
|
|
|
|
; GCN-DAG: v_cmp_ngt_f32_e32 vcc, 0, [[X]]
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[VZ:v[0-9]+]], [[Z]]
|
|
|
|
; SIVI: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, [[VZ]], vcc
|
|
|
|
; GFX10: v_cndmask_b32_e64 v{{[0-9]+}}, 1.0, [[Z]], vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_select_k1_sgprZ_f32(float addrspace(1)* %out, float addrspace(1)* %x.ptr, float %z) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load float, float addrspace(1)* %x.gep
|
|
|
|
%setcc = fcmp olt float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 1.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_select_k1_vgprZ_f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[Z:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN: v_cmp_le_f32_e32 vcc, 0, [[X]]
|
|
|
|
; GCN: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, [[Z]], vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_select_k1_vgprZ_f32(float addrspace(1)* %out, float addrspace(1)* %x.ptr, float addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds float, float addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile float, float addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ult float %x, 0.0
|
|
|
|
%select = select i1 %setcc, float 1.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}icmp_vgprX_k0_select_k1_vgprZ_i32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[Z:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN: v_cmp_lt_i32_e32 vcc, -1, [[X]]
|
|
|
|
; GCN: v_cndmask_b32_e32 v{{[0-9]+}}, 2, [[Z]], vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @icmp_vgprX_k0_select_k1_vgprZ_i32(i32 addrspace(1)* %out, i32 addrspace(1)* %x.ptr, i32 addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds i32, i32 addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds i32, i32 addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds i32, i32 addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile i32, i32 addrspace(1)* %x.gep
|
|
|
|
%z = load volatile i32, i32 addrspace(1)* %z.gep
|
|
|
|
%setcc = icmp slt i32 %x, 0
|
|
|
|
%select = select i1 %setcc, i32 2, i32 %z
|
|
|
|
store i32 %select, i32 addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}icmp_vgprX_k0_select_k1_vgprZ_i64:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dwordx2 v{{\[}}[[X_LO:[0-9]+]]:[[X_HI:[0-9]+]]{{\]}}
|
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dwordx2 v{{\[}}[[Z_LO:[0-9]+]]:[[Z_HI:[0-9]+]]{{\]}}
|
2021-02-18 15:16:28 +01:00
|
|
|
; GCN-DAG: v_cmp_lt_i64_e32 vcc, -1, v{{\[}}[[X_LO]]:[[X_HI]]{{\]}}
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 0, v[[Z_HI]], vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 2, v[[Z_LO]], vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @icmp_vgprX_k0_select_k1_vgprZ_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %x.ptr, i64 addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds i64, i64 addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds i64, i64 addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds i64, i64 addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile i64, i64 addrspace(1)* %x.gep
|
|
|
|
%z = load volatile i64, i64 addrspace(1)* %z.gep
|
|
|
|
%setcc = icmp slt i64 %x, 0
|
|
|
|
%select = select i1 %setcc, i64 2, i64 %z
|
|
|
|
store i64 %select, i64 addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_select_vgprZ_k1_v4f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dwordx4
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_nge_f32_e32 vcc, 4.0, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 2.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, -0.5, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 4.0, v{{[0-9]+}}, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_select_vgprZ_k1_v4f32(<4 x float> addrspace(1)* %out, float addrspace(1)* %x.ptr, <4 x float> addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile <4 x float>, <4 x float> addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ugt float %x, 4.0
|
|
|
|
%select = select i1 %setcc, <4 x float> %z, <4 x float> <float 1.0, float 2.0, float -0.5, float 4.0>
|
|
|
|
store <4 x float> %select, <4 x float> addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_select_k1_vgprZ_v4f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dwordx4
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_ge_f32_e32 vcc, 4.0, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 2.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, -0.5, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 4.0, v{{[0-9]+}}, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_select_k1_vgprZ_v4f32(<4 x float> addrspace(1)* %out, float addrspace(1)* %x.ptr, <4 x float> addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile <4 x float>, <4 x float> addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ugt float %x, 4.0
|
|
|
|
%select = select i1 %setcc, <4 x float> <float 1.0, float 2.0, float -0.5, float 4.0>, <4 x float> %z
|
|
|
|
store <4 x float> %select, <4 x float> addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; This must be swapped as a vector type before the condition has
|
|
|
|
; multiple uses.
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_k0_vgprX_select_k1_vgprZ_v4f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dwordx4
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_le_f32_e32 vcc, 4.0, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 1.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 2.0, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, -0.5, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 4.0, v{{[0-9]+}}, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_k0_vgprX_select_k1_vgprZ_v4f32(<4 x float> addrspace(1)* %out, float addrspace(1)* %x.ptr, <4 x float> addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile <4 x float>, <4 x float> addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ugt float 4.0, %x
|
|
|
|
%select = select i1 %setcc, <4 x float> <float 1.0, float 2.0, float -0.5, float 4.0>, <4 x float> %z
|
|
|
|
store <4 x float> %select, <4 x float> addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}icmp_vgprX_k0_select_k1_vgprZ_i1:
|
|
|
|
; GCN: load_dword
|
|
|
|
; GCN: load_ubyte
|
2017-07-06 22:57:05 +02:00
|
|
|
; GCN-DAG: v_cmp_gt_i32_e32 vcc, 0, v
|
2020-02-26 10:46:07 +01:00
|
|
|
; GCN-DAG: v_and_b32_e32 v{{[0-9]+}}, 1,
|
2017-07-06 22:57:05 +02:00
|
|
|
; GCN-DAG: v_cmp_eq_u32_e64 s{{\[[0-9]+:[0-9]+\]}}, 1, v
|
|
|
|
; GCN-DAG: s_or_b64 s{{\[[0-9]+:[0-9]+\]}}, vcc, s{{\[[0-9]+:[0-9]+\]}}
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN: v_cndmask_b32_e64 v{{[0-9]+}}, 0, 1, s
|
|
|
|
; GCN: store_byte
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @icmp_vgprX_k0_select_k1_vgprZ_i1(i1 addrspace(1)* %out, i32 addrspace(1)* %x.ptr, i1 addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds i32, i32 addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds i1, i1 addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds i1, i1 addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile i32, i32 addrspace(1)* %x.gep
|
|
|
|
%z = load volatile i1, i1 addrspace(1)* %z.gep
|
|
|
|
%setcc = icmp slt i32 %x, 0
|
|
|
|
%select = select i1 %setcc, i1 true, i1 %z
|
|
|
|
store i1 %select, i1 addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Different types compared vs. selected
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_selectf64_k1_vgprZ_f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_mov_b32_e32 [[K:v[0-9]+]], 0x3ff00000
|
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN-DAG: {{buffer|flat|global}}_load_dwordx2
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_le_f32_e32 vcc, 0, [[X]]
|
2019-05-13 21:30:06 +02:00
|
|
|
; SIVI-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, [[K]], v{{[0-9]+}}, vcc
|
|
|
|
; GFX10-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 0x3ff00000, v{{[0-9]+}}, vcc
|
2016-12-22 22:40:08 +01:00
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 0, v{{[0-9]+}}, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_selectf64_k1_vgprZ_f32(double addrspace(1)* %out, float addrspace(1)* %x.ptr, double addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds double, double addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds double, double addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile double, double addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ult float %x, 0.0
|
|
|
|
%select = select i1 %setcc, double 1.0, double %z
|
|
|
|
store double %select, double addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Different types compared vs. selected
|
|
|
|
; GCN-LABEL: {{^}}fcmp_vgprX_k0_selecti64_k1_vgprZ_f32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dwordx2
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_nlg_f32_e32 vcc, 0, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 3, v{{[0-9]+}}, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 0, v{{[0-9]+}}, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_vgprX_k0_selecti64_k1_vgprZ_f32(i64 addrspace(1)* %out, float addrspace(1)* %x.ptr, i64 addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds i64, i64 addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds i64, i64 addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile i64, i64 addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp one float %x, 0.0
|
|
|
|
%select = select i1 %setcc, i64 3, i64 %z
|
|
|
|
store i64 %select, i64 addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Different types compared vs. selected
|
|
|
|
; GCN-LABEL: {{^}}icmp_vgprX_k0_selectf32_k1_vgprZ_i32:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[Z:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_gt_u32_e32 vcc, 2, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, 4.0, [[Z]], vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @icmp_vgprX_k0_selectf32_k1_vgprZ_i32(float addrspace(1)* %out, i32 addrspace(1)* %x.ptr, float addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds i32, i32 addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds float, float addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile i32, i32 addrspace(1)* %x.gep
|
|
|
|
%z = load volatile float, float addrspace(1)* %z.gep
|
|
|
|
%setcc = icmp ugt i32 %x, 1
|
|
|
|
%select = select i1 %setcc, float 4.0, float %z
|
|
|
|
store float %select, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FIXME: Should be able to handle multiple uses
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}fcmp_k0_vgprX_select_k1_vgprZ_f32_cond_use_x2:
|
2019-05-13 21:30:06 +02:00
|
|
|
; GCN: {{buffer|flat|global}}_load_dword [[X:v[0-9]+]]
|
2016-12-22 22:40:08 +01:00
|
|
|
|
|
|
|
; GCN: v_cmp_nle_f32_e32 vcc, 4.0, [[X]]
|
|
|
|
; GCN-DAG: v_cndmask_b32_e64 v{{[0-9]+}}, v{{[0-9]+}}, -1.0, vcc
|
|
|
|
; GCN-DAG: v_cndmask_b32_e64 v{{[0-9]+}}, v{{[0-9]+}}, -2.0, vcc
|
2017-03-21 22:39:51 +01:00
|
|
|
define amdgpu_kernel void @fcmp_k0_vgprX_select_k1_vgprZ_f32_cond_use_x2(float addrspace(1)* %out, float addrspace(1)* %x.ptr, float addrspace(1)* %z.ptr) #0 {
|
2016-12-22 22:40:08 +01:00
|
|
|
%tid = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%tid.ext = sext i32 %tid to i64
|
|
|
|
%x.gep = getelementptr inbounds float, float addrspace(1)* %x.ptr, i64 %tid.ext
|
|
|
|
%z.gep = getelementptr inbounds float, float addrspace(1)* %z.ptr, i64 %tid.ext
|
|
|
|
%out.gep = getelementptr inbounds float, float addrspace(1)* %out, i64 %tid.ext
|
|
|
|
%x = load volatile float, float addrspace(1)* %x.gep
|
|
|
|
%z = load volatile float, float addrspace(1)* %z.gep
|
|
|
|
%setcc = fcmp ugt float 4.0, %x
|
|
|
|
%select0 = select i1 %setcc, float -1.0, float %z
|
|
|
|
%select1 = select i1 %setcc, float -2.0, float %z
|
|
|
|
store volatile float %select0, float addrspace(1)* %out.gep
|
|
|
|
store volatile float %select1, float addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
[AMDGPU] Restrict v_cndmask_b32 abs/neg modifiers to f32
Summary:
D64497 allowed abs/neg source modifiers on v_cndmask_b32 but it doesn't
make any sense to apply them to f16 operands; they would interpret the
bits of the value as an f32, giving nonsensical results. This patch
restricts them to f32 operands.
Reviewers: arsenm, hakzsam
Subscribers: kzhuravl, jvesely, wdng, nhaehnle, yaxunl, dstuttard, tpr, t-tye, hiraditya, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D64636
llvm-svn: 365904
2019-07-12 17:02:59 +02:00
|
|
|
; Source modifiers abs/neg only work for f32
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}v_cndmask_abs_neg_f16:
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}},
|
|
|
|
define amdgpu_kernel void @v_cndmask_abs_neg_f16(half addrspace(1)* %out, i32 %c, half addrspace(1)* %fptr) #0 {
|
|
|
|
%idx = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%f.gep = getelementptr half, half addrspace(1)* %fptr, i32 %idx
|
|
|
|
%f = load half, half addrspace(1)* %f.gep
|
|
|
|
%f.abs = call half @llvm.fabs.f16(half %f)
|
|
|
|
%f.neg = fneg half %f
|
|
|
|
%setcc = icmp ne i32 %c, 0
|
|
|
|
%select = select i1 %setcc, half %f.abs, half %f.neg
|
|
|
|
store half %select, half addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}v_cndmask_abs_neg_f32:
|
|
|
|
; GCN-DAG: v_cndmask_b32_e64 v{{[0-9]+}}, -v{{[0-9]+}}, |v{{[0-9]+}}|,
|
|
|
|
define amdgpu_kernel void @v_cndmask_abs_neg_f32(float addrspace(1)* %out, i32 %c, float addrspace(1)* %fptr) #0 {
|
|
|
|
%idx = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%f.gep = getelementptr float, float addrspace(1)* %fptr, i32 %idx
|
|
|
|
%f = load float, float addrspace(1)* %f.gep
|
|
|
|
%f.abs = call float @llvm.fabs.f32(float %f)
|
|
|
|
%f.neg = fneg float %f
|
|
|
|
%setcc = icmp ne i32 %c, 0
|
|
|
|
%select = select i1 %setcc, float %f.abs, float %f.neg
|
|
|
|
store float %select, float addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; GCN-LABEL: {{^}}v_cndmask_abs_neg_f64:
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}},
|
|
|
|
; GCN-DAG: v_cndmask_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}},
|
|
|
|
define amdgpu_kernel void @v_cndmask_abs_neg_f64(double addrspace(1)* %out, i32 %c, double addrspace(1)* %fptr) #0 {
|
|
|
|
%idx = call i32 @llvm.amdgcn.workitem.id.x() #1
|
|
|
|
%f.gep = getelementptr double, double addrspace(1)* %fptr, i32 %idx
|
|
|
|
%f = load double, double addrspace(1)* %f.gep
|
|
|
|
%f.abs = call double @llvm.fabs.f64(double %f)
|
|
|
|
%f.neg = fneg double %f
|
|
|
|
%setcc = icmp ne i32 %c, 0
|
|
|
|
%select = select i1 %setcc, double %f.abs, double %f.neg
|
|
|
|
store double %select, double addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-09-26 19:54:52 +02:00
|
|
|
attributes #0 = { nounwind }
|
|
|
|
attributes #1 = { nounwind readnone }
|