2016-09-08 17:19:29 +00:00
|
|
|
; RUN: llc -march=amdgcn -verify-machineinstrs< %s | FileCheck -check-prefix=SI %s
|
2013-09-05 19:41:10 +00:00
|
|
|
; RUN: llc -march=r600 -mcpu=cypress < %s | FileCheck -check-prefix=EG %s
|
|
|
|
|
2015-02-05 06:05:13 +00:00
|
|
|
declare i32 @llvm.r600.read.tidig.x() nounwind readnone
|
|
|
|
|
2013-09-05 19:41:10 +00:00
|
|
|
define void @trunc_i64_to_i32_store(i32 addrspace(1)* %out, i64 %in) {
|
2014-10-01 17:15:17 +00:00
|
|
|
; SI-LABEL: {{^}}trunc_i64_to_i32_store:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_load_dword [[SLOAD:s[0-9]+]], s[0:1], 0xb
|
|
|
|
; SI: v_mov_b32_e32 [[VLOAD:v[0-9]+]], [[SLOAD]]
|
|
|
|
; SI: buffer_store_dword [[VLOAD]]
|
2013-09-05 19:41:10 +00:00
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; EG-LABEL: {{^}}trunc_i64_to_i32_store:
|
2013-09-05 19:41:10 +00:00
|
|
|
; EG: MEM_RAT_CACHELESS STORE_RAW T0.X, T1.X, 1
|
|
|
|
; EG: LSHR
|
|
|
|
; EG-NEXT: 2(
|
|
|
|
|
|
|
|
%result = trunc i64 %in to i32 store i32 %result, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; SI-LABEL: {{^}}trunc_load_shl_i64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI-DAG: s_load_dwordx2
|
|
|
|
; SI-DAG: s_load_dword [[SREG:s[0-9]+]],
|
|
|
|
; SI: s_lshl_b32 [[SHL:s[0-9]+]], [[SREG]], 2
|
|
|
|
; SI: v_mov_b32_e32 [[VSHL:v[0-9]+]], [[SHL]]
|
|
|
|
; SI: buffer_store_dword [[VSHL]],
|
2014-03-24 19:43:31 +00:00
|
|
|
define void @trunc_load_shl_i64(i32 addrspace(1)* %out, i64 %a) {
|
|
|
|
%b = shl i64 %a, 2
|
|
|
|
%result = trunc i64 %b to i32
|
|
|
|
store i32 %result, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; SI-LABEL: {{^}}trunc_shl_i64:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_load_dwordx2 s{{\[}}[[LO_SREG:[0-9]+]]:{{[0-9]+\]}}, s{{\[[0-9]+:[0-9]+\]}}, 0xd
|
|
|
|
; SI: s_lshl_b64 s{{\[}}[[LO_SHL:[0-9]+]]:{{[0-9]+\]}}, s{{\[}}[[LO_SREG]]:{{[0-9]+\]}}, 2
|
|
|
|
; SI: s_add_u32 s[[LO_SREG2:[0-9]+]], s[[LO_SHL]],
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI: v_mov_b32_e32 v[[LO_VREG:[0-9]+]], s[[LO_SREG2]]
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: s_addc_u32
|
2016-08-29 19:42:52 +00:00
|
|
|
; SI: buffer_store_dword v[[LO_VREG]],
|
2015-01-29 16:55:25 +00:00
|
|
|
; SI: v_mov_b32_e32
|
2016-04-30 00:23:06 +00:00
|
|
|
; SI: v_mov_b32_e32
|
2014-03-27 17:23:31 +00:00
|
|
|
define void @trunc_shl_i64(i64 addrspace(1)* %out2, i32 addrspace(1)* %out, i64 %a) {
|
2014-03-24 19:43:31 +00:00
|
|
|
%aa = add i64 %a, 234 ; Prevent shrinking store.
|
|
|
|
%b = shl i64 %aa, 2
|
2013-10-10 18:04:16 +00:00
|
|
|
%result = trunc i64 %b to i32
|
|
|
|
store i32 %result, i32 addrspace(1)* %out, align 4
|
2014-03-27 17:23:31 +00:00
|
|
|
store i64 %b, i64 addrspace(1)* %out2, align 8 ; Prevent reducing ops to 32-bits
|
2013-10-10 18:04:16 +00:00
|
|
|
ret void
|
|
|
|
}
|
2014-01-28 03:01:16 +00:00
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; SI-LABEL: {{^}}trunc_i32_to_i1:
|
2014-11-05 14:50:53 +00:00
|
|
|
; SI: v_and_b32_e32 v{{[0-9]+}}, 1, v{{[0-9]+}}
|
2016-09-30 01:50:20 +00:00
|
|
|
; SI: v_cmp_eq_u32
|
2014-09-15 17:15:02 +00:00
|
|
|
define void @trunc_i32_to_i1(i32 addrspace(1)* %out, i32 addrspace(1)* %ptr) {
|
2015-02-27 21:17:42 +00:00
|
|
|
%a = load i32, i32 addrspace(1)* %ptr, align 4
|
2014-09-15 17:15:02 +00:00
|
|
|
%trunc = trunc i32 %a to i1
|
|
|
|
%result = select i1 %trunc, i32 1, i32 0
|
|
|
|
store i32 %result, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-01 17:15:17 +00:00
|
|
|
; SI-LABEL: {{^}}sgpr_trunc_i32_to_i1:
|
2015-10-29 15:05:03 +00:00
|
|
|
; SI: s_and_b32 s{{[0-9]+}}, 1, s{{[0-9]+}}
|
2016-09-30 01:50:20 +00:00
|
|
|
; SI: v_cmp_eq_u32
|
2014-09-15 17:15:02 +00:00
|
|
|
define void @sgpr_trunc_i32_to_i1(i32 addrspace(1)* %out, i32 %a) {
|
2014-01-28 03:01:16 +00:00
|
|
|
%trunc = trunc i32 %a to i1
|
|
|
|
%result = select i1 %trunc, i32 1, i32 0
|
|
|
|
store i32 %result, i32 addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
2015-02-05 06:05:13 +00:00
|
|
|
|
|
|
|
; SI-LABEL: {{^}}s_trunc_i64_to_i1:
|
|
|
|
; SI: s_load_dwordx2 s{{\[}}[[SLO:[0-9]+]]:{{[0-9]+\]}}, {{s\[[0-9]+:[0-9]+\]}}, 0xb
|
2015-10-29 15:05:03 +00:00
|
|
|
; SI: s_and_b32 [[MASKED:s[0-9]+]], 1, s[[SLO]]
|
2016-09-30 01:50:20 +00:00
|
|
|
; SI: v_cmp_eq_u32_e64 s{{\[}}[[VLO:[0-9]+]]:[[VHI:[0-9]+]]], [[MASKED]], 1{{$}}
|
2015-10-29 15:05:03 +00:00
|
|
|
; SI: v_cndmask_b32_e64 {{v[0-9]+}}, -12, 63, s{{\[}}[[VLO]]:[[VHI]]]
|
2015-02-05 06:05:13 +00:00
|
|
|
define void @s_trunc_i64_to_i1(i32 addrspace(1)* %out, i64 %x) {
|
|
|
|
%trunc = trunc i64 %x to i1
|
|
|
|
%sel = select i1 %trunc, i32 63, i32 -12
|
|
|
|
store i32 %sel, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; SI-LABEL: {{^}}v_trunc_i64_to_i1:
|
|
|
|
; SI: buffer_load_dwordx2 v{{\[}}[[VLO:[0-9]+]]:{{[0-9]+\]}}
|
|
|
|
; SI: v_and_b32_e32 [[MASKED:v[0-9]+]], 1, v[[VLO]]
|
2016-09-30 01:50:20 +00:00
|
|
|
; SI: v_cmp_eq_u32_e32 vcc, 1, [[MASKED]]
|
2015-03-23 18:45:30 +00:00
|
|
|
; SI: v_cndmask_b32_e64 {{v[0-9]+}}, -12, 63, vcc
|
2015-02-05 06:05:13 +00:00
|
|
|
define void @v_trunc_i64_to_i1(i32 addrspace(1)* %out, i64 addrspace(1)* %in) {
|
|
|
|
%tid = call i32 @llvm.r600.read.tidig.x() nounwind readnone
|
[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
|
|
|
%gep = getelementptr i64, i64 addrspace(1)* %in, i32 %tid
|
|
|
|
%out.gep = getelementptr i32, i32 addrspace(1)* %out, i32 %tid
|
2015-02-27 21:17:42 +00:00
|
|
|
%x = load i64, i64 addrspace(1)* %gep
|
2015-02-05 06:05:13 +00:00
|
|
|
|
|
|
|
%trunc = trunc i64 %x to i1
|
|
|
|
%sel = select i1 %trunc, i32 63, i32 -12
|
|
|
|
store i32 %sel, i32 addrspace(1)* %out.gep
|
|
|
|
ret void
|
|
|
|
}
|