2015-01-06 18:00:21 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2017-01-24 22:02:15 +00:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=tonga -mattr=-flat-for-global -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2016-05-05 20:07:37 +00:00
|
|
|
; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s
|
2012-12-11 21:25:42 +00:00
|
|
|
|
2015-09-25 18:21:47 +00:00
|
|
|
declare i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}test2:
|
2014-06-09 08:36:53 +00:00
|
|
|
; EG: AND_INT {{\*? *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; EG: AND_INT {{\*? *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
2012-12-11 21:25:42 +00:00
|
|
|
|
2017-07-04 17:32:00 +00:00
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
2013-06-25 13:55:23 +00:00
|
|
|
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @test2(<2 x i32> addrspace(1)* %out, <2 x i32> addrspace(1)* %in) {
|
[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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230786 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-27 19:29:02 +00:00
|
|
|
%b_ptr = getelementptr <2 x i32>, <2 x i32> addrspace(1)* %in, i32 1
|
2015-02-27 21:17:42 +00:00
|
|
|
%a = load <2 x i32>, <2 x i32> addrspace(1) * %in
|
|
|
|
%b = load <2 x i32>, <2 x i32> addrspace(1) * %b_ptr
|
2013-06-25 13:55:23 +00:00
|
|
|
%result = and <2 x i32> %a, %b
|
|
|
|
store <2 x i32> %result, <2 x i32> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}test4:
|
2014-06-09 08:36:53 +00:00
|
|
|
; EG: AND_INT {{\** *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; EG: AND_INT {{\** *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; EG: AND_INT {{\** *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; EG: AND_INT {{\** *}}T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
2013-06-25 13:55:23 +00:00
|
|
|
|
2017-07-04 17:32:00 +00:00
|
|
|
|
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
|
|
|
; SI: s_and_b32 s{{[0-9]+, s[0-9]+, s[0-9]+}}
|
2013-06-25 13:55:23 +00:00
|
|
|
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @test4(<4 x i32> addrspace(1)* %out, <4 x i32> addrspace(1)* %in) {
|
[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
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230786 91177308-0d34-0410-b5e6-96231b3b80d8
2015-02-27 19:29:02 +00:00
|
|
|
%b_ptr = getelementptr <4 x i32>, <4 x i32> addrspace(1)* %in, i32 1
|
2015-02-27 21:17:42 +00:00
|
|
|
%a = load <4 x i32>, <4 x i32> addrspace(1) * %in
|
|
|
|
%b = load <4 x i32>, <4 x i32> addrspace(1) * %b_ptr
|
2012-12-11 21:25:42 +00:00
|
|
|
%result = and <4 x i32> %a, %b
|
|
|
|
store <4 x i32> %result, <4 x i32> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
2014-06-09 08:36:53 +00:00
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_i32:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_and_b32
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_i32(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i32 %a, %b
|
|
|
|
store i32 %and, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_constant_i32:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 0x12d687
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_constant_i32(i32 addrspace(1)* %out, i32 %a) {
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i32 %a, 1234567
|
|
|
|
store i32 %and, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-09-25 18:21:47 +00:00
|
|
|
; FIXME: We should really duplicate the constant so that the SALU use
|
|
|
|
; can fold into the s_and_b32 and the VALU one is materialized
|
|
|
|
; directly without copying from the SGPR.
|
|
|
|
|
|
|
|
; Second use is a VGPR use of the constant.
|
|
|
|
; FUNC-LABEL: {{^}}s_and_multi_use_constant_i32_0:
|
|
|
|
; SI: s_mov_b32 [[K:s[0-9]+]], 0x12d687
|
|
|
|
; SI-DAG: s_and_b32 [[AND:s[0-9]+]], s{{[0-9]+}}, [[K]]
|
|
|
|
; SI-DAG: v_mov_b32_e32 [[VK:v[0-9]+]], [[K]]
|
|
|
|
; SI: buffer_store_dword [[VK]]
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_multi_use_constant_i32_0(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
2015-09-25 18:21:47 +00:00
|
|
|
%and = and i32 %a, 1234567
|
|
|
|
|
|
|
|
; Just to stop future replacement of copy to vgpr + store with VALU op.
|
|
|
|
%foo = add i32 %and, %b
|
|
|
|
store volatile i32 %foo, i32 addrspace(1)* %out
|
|
|
|
store volatile i32 1234567, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Second use is another SGPR use of the constant.
|
|
|
|
; FUNC-LABEL: {{^}}s_and_multi_use_constant_i32_1:
|
|
|
|
; SI: s_mov_b32 [[K:s[0-9]+]], 0x12d687
|
|
|
|
; SI: s_and_b32 [[AND:s[0-9]+]], s{{[0-9]+}}, [[K]]
|
|
|
|
; SI: s_add_i32
|
|
|
|
; SI: s_add_i32 [[ADD:s[0-9]+]], s{{[0-9]+}}, [[K]]
|
|
|
|
; SI: buffer_store_dword [[VK]]
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_multi_use_constant_i32_1(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
2015-09-25 18:21:47 +00:00
|
|
|
%and = and i32 %a, 1234567
|
|
|
|
%foo = add i32 %and, 1234567
|
|
|
|
%bar = add i32 %foo, %b
|
|
|
|
store volatile i32 %bar, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_and_i32_vgpr_vgpr:
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, v{{[0-9]+}}, v{{[0-9]+}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_i32_vgpr_vgpr(i32 addrspace(1)* %out, i32 addrspace(1)* %aptr, i32 addrspace(1)* %bptr) {
|
2015-09-25 18:21:47 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%gep.b = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid
|
|
|
|
%gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
|
|
|
|
%a = load i32, i32 addrspace(1)* %gep.a
|
|
|
|
%b = load i32, i32 addrspace(1)* %gep.b
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i32 %a, %b
|
2015-09-25 18:21:47 +00:00
|
|
|
store i32 %and, i32 addrspace(1)* %gep.out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_and_i32_sgpr_vgpr:
|
|
|
|
; SI-DAG: s_load_dword [[SA:s[0-9]+]]
|
|
|
|
; SI-DAG: {{buffer|flat}}_load_dword [[VB:v[0-9]+]]
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, [[SA]], [[VB]]
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_i32_sgpr_vgpr(i32 addrspace(1)* %out, i32 %a, i32 addrspace(1)* %bptr) {
|
2015-09-25 18:21:47 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.b = getelementptr i32, i32 addrspace(1)* %bptr, i32 %tid
|
|
|
|
%gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
|
|
|
|
%b = load i32, i32 addrspace(1)* %gep.b
|
|
|
|
%and = and i32 %a, %b
|
|
|
|
store i32 %and, i32 addrspace(1)* %gep.out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_and_i32_vgpr_sgpr:
|
|
|
|
; SI-DAG: s_load_dword [[SA:s[0-9]+]]
|
|
|
|
; SI-DAG: {{buffer|flat}}_load_dword [[VB:v[0-9]+]]
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, [[SA]], [[VB]]
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_i32_vgpr_sgpr(i32 addrspace(1)* %out, i32 addrspace(1)* %aptr, i32 %b) {
|
2015-09-25 18:21:47 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%gep.out = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
|
|
|
|
%a = load i32, i32 addrspace(1)* %gep.a
|
|
|
|
%and = and i32 %a, %b
|
|
|
|
store i32 %and, i32 addrspace(1)* %gep.out
|
2014-06-09 08:36:53 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:05:03 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_constant_i32
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, 0x12d687, v{{[0-9]+}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_constant_i32(i32 addrspace(1)* %out, i32 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i32, i32 addrspace(1)* %gep, align 4
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i32 %a, 1234567
|
|
|
|
store i32 %and, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:05:03 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_inline_imm_64_i32
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, 64, v{{[0-9]+}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_inline_imm_64_i32(i32 addrspace(1)* %out, i32 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i32, i32 addrspace(1)* %gep, align 4
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i32 %a, 64
|
|
|
|
store i32 %and, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_and_inline_imm_neg_16_i32
|
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, -16, v{{[0-9]+}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_inline_imm_neg_16_i32(i32 addrspace(1)* %out, i32 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep = getelementptr i32, i32 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i32, i32 addrspace(1)* %gep, align 4
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i32 %a, -16
|
|
|
|
store i32 %and, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_i64
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_and_b64
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_i64(i64 addrspace(1)* %out, i64 %a, i64 %b) {
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i64 %a, %b
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-07-15 21:44:37 +00:00
|
|
|
; FIXME: Should use SGPRs
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_i1:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_and_b32
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_i1(i1 addrspace(1)* %out, i1 %a, i1 %b) {
|
2014-07-15 21:44:37 +00:00
|
|
|
%and = and i1 %a, %b
|
|
|
|
store i1 %and, i1 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_constant_i64:
|
|
|
|
; SI-DAG: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 0x80000{{$}}
|
|
|
|
; SI-DAG: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 0x80{{$}}
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_constant_i64(i64 addrspace(1)* %out, i64 %a) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%and = and i64 %a, 549756338176
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_multi_use_constant_i64:
|
|
|
|
; XSI-DAG: s_mov_b32 s[[KLO:[0-9]+]], 0x80000{{$}}
|
|
|
|
; XSI-DAG: s_mov_b32 s[[KHI:[0-9]+]], 0x80{{$}}
|
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, s{{\[}}[[KLO]]:[[KHI]]{{\]}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_multi_use_constant_i64(i64 addrspace(1)* %out, i64 %a, i64 %b) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%and0 = and i64 %a, 549756338176
|
|
|
|
%and1 = and i64 %b, 549756338176
|
|
|
|
store volatile i64 %and0, i64 addrspace(1)* %out
|
|
|
|
store volatile i64 %and1, i64 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_32_bit_constant_i64:
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 0x12d687{{$}}
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_32_bit_constant_i64(i64 addrspace(1)* %out, i64 %a) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%and = and i64 %a, 1234567
|
2014-06-09 08:36:53 +00:00
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_multi_use_inline_imm_i64:
|
2016-04-22 22:48:38 +00:00
|
|
|
; SI: s_load_dword [[A:s[0-9]+]]
|
|
|
|
; SI: s_load_dword [[B:s[0-9]+]]
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI: s_load_dwordx2
|
2016-04-30 00:23:06 +00:00
|
|
|
; SI: s_load_dwordx2
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
2016-04-22 22:48:38 +00:00
|
|
|
; SI: s_lshl_b32 [[A]], [[A]], 1
|
|
|
|
; SI: s_lshl_b32 [[B]], [[B]], 1
|
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, [[A]], 62
|
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, [[B]], 62
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_multi_use_inline_imm_i64(i64 addrspace(1)* %out, i64 %a, i64 %b, i64 %c) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%shl.a = shl i64 %a, 1
|
|
|
|
%shl.b = shl i64 %b, 1
|
|
|
|
%and0 = and i64 %shl.a, 62
|
|
|
|
%and1 = and i64 %shl.b, 62
|
|
|
|
%add0 = add i64 %and0, %c
|
|
|
|
%add1 = add i64 %and1, %c
|
|
|
|
store volatile i64 %add0, i64 addrspace(1)* %out
|
|
|
|
store volatile i64 %add1, i64 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_i64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_and_b32
|
|
|
|
; SI: v_and_b32
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 addrspace(1)* %bptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i64, i64 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i64, i64 addrspace(1)* %gep.a, align 8
|
|
|
|
%gep.b = getelementptr i64, i64 addrspace(1)* %bptr, i32 %tid
|
|
|
|
%b = load i64, i64 addrspace(1)* %gep.b, align 8
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i64 %a, %b
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_constant_i64:
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, 0xab19b207, {{v[0-9]+}}
|
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, 0x11e, {{v[0-9]+}}
|
2015-09-24 08:36:14 +00:00
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_constant_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i64, i64 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i64, i64 addrspace(1)* %gep.a, align 8
|
2015-09-24 08:36:14 +00:00
|
|
|
%and = and i64 %a, 1231231234567
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_multi_use_constant_i64:
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI-DAG: buffer_load_dwordx2 v{{\[}}[[LO0:[0-9]+]]:[[HI0:[0-9]+]]{{\]}}
|
|
|
|
; SI-DAG: buffer_load_dwordx2 v{{\[}}[[LO1:[0-9]+]]:[[HI1:[0-9]+]]{{\]}}
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-DAG: s_movk_i32 [[KHI:s[0-9]+]], 0x11e{{$}}
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI-DAG: s_mov_b32 [[KLO:s[0-9]+]], 0xab19b207{{$}}
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, [[KLO]], v[[LO0]]
|
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, [[KHI]], v[[HI0]]
|
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, [[KLO]], v[[LO1]]
|
|
|
|
; SI-DAG: v_and_b32_e32 {{v[0-9]+}}, [[KHI]], v[[HI1]]
|
|
|
|
; SI: buffer_store_dwordx2
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_multi_use_constant_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%a = load volatile i64, i64 addrspace(1)* %aptr
|
|
|
|
%b = load volatile i64, i64 addrspace(1)* %aptr
|
|
|
|
%and0 = and i64 %a, 1231231234567
|
|
|
|
%and1 = and i64 %b, 1231231234567
|
|
|
|
store volatile i64 %and0, i64 addrspace(1)* %out
|
|
|
|
store volatile i64 %and1, i64 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v_and_multi_use_inline_imm_i64:
|
|
|
|
; SI: buffer_load_dwordx2 v{{\[}}[[LO0:[0-9]+]]:[[HI0:[0-9]+]]{{\]}}
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_load_dwordx2 v{{\[}}[[LO1:[0-9]+]]:[[HI1:[0-9]+]]{{\]}}
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: v_and_b32_e32 v[[RESLO0:[0-9]+]], 63, v[[LO0]]
|
2016-03-30 16:35:09 +00:00
|
|
|
; SI: v_and_b32_e32 v[[RESLO1:[0-9]+]], 63, v[[LO1]]
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI: buffer_store_dwordx2 v{{\[}}[[RESLO0]]
|
2016-03-30 16:35:09 +00:00
|
|
|
; SI: buffer_store_dwordx2 v{{\[}}[[RESLO1]]
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_multi_use_inline_imm_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%a = load volatile i64, i64 addrspace(1)* %aptr
|
|
|
|
%b = load volatile i64, i64 addrspace(1)* %aptr
|
|
|
|
%and0 = and i64 %a, 63
|
|
|
|
%and1 = and i64 %b, 63
|
|
|
|
store volatile i64 %and0, i64 addrspace(1)* %out
|
|
|
|
store volatile i64 %and1, i64 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-09-24 08:36:14 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_i64_32_bit_constant:
|
2017-07-04 17:32:00 +00:00
|
|
|
; SI: {{buffer|flat}}_load_dword [[VAL:v[0-9]+]]
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: v_and_b32_e32 {{v[0-9]+}}, 0x12d687, [[VAL]]
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_i64_32_bit_constant(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i64, i64 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i64, i64 addrspace(1)* %gep.a, align 8
|
2014-06-09 08:36:53 +00:00
|
|
|
%and = and i64 %a, 1234567
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
2014-09-15 17:15:02 +00:00
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; FUNC-LABEL: {{^}}v_and_inline_imm_i64:
|
2017-07-04 17:32:00 +00:00
|
|
|
; SI: {{buffer|flat}}_load_dword v{{[0-9]+}}
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_and_b32_e32 {{v[0-9]+}}, 64, {{v[0-9]+}}
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_inline_imm_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i64, i64 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i64, i64 addrspace(1)* %gep.a, align 8
|
2014-09-15 17:15:02 +00:00
|
|
|
%and = and i64 %a, 64
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-09-14 15:19:03 +00:00
|
|
|
; FIXME: Should be able to reduce load width
|
|
|
|
; FUNC-LABEL: {{^}}v_and_inline_neg_imm_i64:
|
2017-07-04 17:32:00 +00:00
|
|
|
; SI: {{buffer|flat}}_load_dwordx2 v{{\[}}[[VAL_LO:[0-9]+]]:[[VAL_HI:[0-9]+]]{{\]}}
|
2016-09-14 15:19:03 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: v_and_b32_e32 v[[VAL_LO]], -8, v[[VAL_LO]]
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2 v{{\[}}[[VAL_LO]]:[[VAL_HI]]{{\]}}
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @v_and_inline_neg_imm_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr) {
|
2017-07-04 17:32:00 +00:00
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() #0
|
|
|
|
%gep.a = getelementptr i64, i64 addrspace(1)* %aptr, i32 %tid
|
|
|
|
%a = load i64, i64 addrspace(1)* %gep.a, align 8
|
2016-09-14 15:19:03 +00:00
|
|
|
%and = and i64 %a, -8
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:05:03 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_64_i64
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI: s_load_dword
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 64
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dword
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_64_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2014-09-15 17:15:02 +00:00
|
|
|
%and = and i64 %a, 64
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
2015-02-13 19:05:03 +00:00
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_64_i64_noshrink:
|
2016-04-22 22:48:38 +00:00
|
|
|
; SI: s_load_dword [[A:s[0-9]+]]
|
|
|
|
; SI: s_lshl_b32 [[A]], [[A]], 1{{$}}
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
2016-04-22 22:48:38 +00:00
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, [[A]], 64
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_add_u32
|
|
|
|
; SI-NEXT: s_addc_u32
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_64_i64_noshrink(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a, i64 %b) {
|
2016-01-18 22:01:13 +00:00
|
|
|
%shl = shl i64 %a, 1
|
|
|
|
%and = and i64 %shl, 64
|
|
|
|
%add = add i64 %and, %b
|
|
|
|
store i64 %add, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2015-02-13 19:05:03 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_1_i64
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, s{{[0-9]+}}, 1
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_1_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 1
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_1.0_i64
|
2016-01-18 22:01:13 +00:00
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, 1.0
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0x3ff00000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_1.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 4607182418800017408
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_neg_1.0_i64
|
2016-01-18 22:01:13 +00:00
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, -1.0
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0xbff00000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_neg_1.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 13830554455654793216
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_0.5_i64
|
2016-01-18 22:01:13 +00:00
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, 0.5
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0x3fe00000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_0.5_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 4602678819172646912
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_neg_0.5_i64:
|
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, -0.5
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0xbfe00000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_neg_0.5_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 13826050856027422720
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_2.0_i64:
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 2.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_2.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 4611686018427387904
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_neg_2.0_i64:
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, -2.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_neg_2.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 13835058055282163712
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_4.0_i64:
|
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, 4.0
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0x40100000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 4616189618054758400
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_neg_4.0_i64:
|
|
|
|
; XSI: s_and_b64 s{{\[[0-9]+:[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, -4.0
|
|
|
|
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 {{s[0-9]+}}, {{s[0-9]+}}, 0xc0100000
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_neg_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 13839561654909534208
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
; Test with the 64-bit integer bitpattern for a 32-bit float in the
|
|
|
|
; low 32-bits, which is not a valid 64-bit inline immmediate.
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_f32_4.0_i64:
|
2016-06-25 00:23:00 +00:00
|
|
|
; SI: s_load_dwordx2
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI: s_load_dword s
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s[[K_HI:[0-9]+]], s{{[0-9]+}}, 4.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_f32_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 1082130432
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_imm_f32_neg_4.0_i64:
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s[[K_HI:[0-9]+]], s{{[0-9]+}}, -4.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_imm_f32_neg_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, -1065353216
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Shift into upper 32-bits
|
2016-01-18 22:01:13 +00:00
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s[[K_HI:[0-9]+]], s{{[0-9]+}}, 4.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_high_imm_f32_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 4647714815446351872
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-01-18 22:01:13 +00:00
|
|
|
; FUNC-LABEL: {{^}}s_and_inline_high_imm_f32_neg_4.0_i64:
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI: s_load_dwordx2
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: s_and_b32 s[[K_HI:[0-9]+]], s{{[0-9]+}}, -4.0
|
|
|
|
; SI-NOT: and
|
|
|
|
; SI: buffer_store_dwordx2
|
2017-03-21 21:39:51 +00:00
|
|
|
define amdgpu_kernel void @s_and_inline_high_imm_f32_neg_4.0_i64(i64 addrspace(1)* %out, i64 addrspace(1)* %aptr, i64 %a) {
|
2015-02-13 19:05:03 +00:00
|
|
|
%and = and i64 %a, 13871086852301127680
|
|
|
|
store i64 %and, i64 addrspace(1)* %out, align 8
|
|
|
|
ret void
|
|
|
|
}
|
2015-09-25 18:21:47 +00:00
|
|
|
attributes #0 = { nounwind readnone }
|