2016-05-06 04:07:37 +08:00
|
|
|
; RUN: llc < %s -march=amdgcn -verify-machineinstrs | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
2015-01-07 02:00:21 +08:00
|
|
|
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck --check-prefix=R600 --check-prefix=FUNC %s
|
2014-11-29 06:51:38 +08:00
|
|
|
|
|
|
|
declare i32 @llvm.r600.read.tidig.x() nounwind readnone
|
2012-12-12 05:25:42 +08:00
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}setcc_v2i32:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW]}}, KC0[3].X, KC0[3].Z
|
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW]}}, KC0[2].W, KC0[3].Y
|
2013-06-25 21:55:49 +08:00
|
|
|
|
2013-08-01 23:23:42 +08:00
|
|
|
define void @setcc_v2i32(<2 x i32> addrspace(1)* %out, <2 x i32> %a, <2 x i32> %b) {
|
2013-06-25 21:55:49 +08:00
|
|
|
%result = icmp eq <2 x i32> %a, %b
|
|
|
|
%sext = sext <2 x i1> %result to <2 x i32>
|
|
|
|
store <2 x i32> %sext, <2 x i32> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}setcc_v4i32:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
|
|
|
; R600-DAG: SETE_INT * T{{[0-9]+\.[XYZW], T[0-9]+\.[XYZW], T[0-9]+\.[XYZW]}}
|
2013-06-25 21:55:49 +08:00
|
|
|
|
2013-08-01 23:23:42 +08:00
|
|
|
define void @setcc_v4i32(<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
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%b_ptr = getelementptr <4 x i32>, <4 x i32> addrspace(1)* %in, i32 1
|
2015-02-28 05:17:42 +08: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-12 05:25:42 +08:00
|
|
|
%result = icmp eq <4 x i32> %a, %b
|
|
|
|
%sext = sext <4 x i1> %result to <4 x i32>
|
|
|
|
store <4 x i32> %sext, <4 x i32> addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
2013-11-23 07:07:58 +08:00
|
|
|
|
|
|
|
;;;==========================================================================;;;
|
|
|
|
;; Float comparisons
|
|
|
|
;;;==========================================================================;;;
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_oeq:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETE_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_eq_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_oeq(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp oeq float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ogt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_gt_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ogt(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ogt float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_oge:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_ge_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_oge(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp oge float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_olt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_lt_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_olt(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp olt float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ole:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_le_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ole(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ole float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_one:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600-DAG: SETE_DX10
|
|
|
|
; R600-DAG: SETE_DX10
|
|
|
|
; R600-DAG: AND_INT
|
|
|
|
; R600-DAG: SETNE_DX10
|
|
|
|
; R600-DAG: AND_INT
|
|
|
|
; R600-DAG: SETNE_INT
|
2014-12-03 13:22:35 +08:00
|
|
|
|
2014-12-12 06:15:35 +08:00
|
|
|
; SI: v_cmp_lg_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_one(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp one float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ord:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600-DAG: SETE_DX10
|
|
|
|
; R600-DAG: SETE_DX10
|
|
|
|
; R600-DAG: AND_INT
|
|
|
|
; R600-DAG: SETNE_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_o_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ord(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ord float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ueq:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600-DAG: SETNE_DX10
|
|
|
|
; R600-DAG: SETNE_DX10
|
|
|
|
; R600-DAG: OR_INT
|
|
|
|
; R600-DAG: SETE_DX10
|
|
|
|
; R600-DAG: OR_INT
|
|
|
|
; R600-DAG: SETNE_INT
|
2014-12-03 13:22:35 +08:00
|
|
|
|
2014-12-12 06:15:43 +08:00
|
|
|
; SI: v_cmp_nlg_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ueq(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ueq float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ugt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE
|
|
|
|
; R600: SETE_DX10
|
2014-12-12 06:15:39 +08:00
|
|
|
; SI: v_cmp_nle_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ugt(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ugt float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_uge:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT
|
|
|
|
; R600: SETE_DX10
|
2014-12-12 06:15:39 +08:00
|
|
|
|
|
|
|
; SI: v_cmp_nlt_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_uge(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp uge float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ult:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE
|
|
|
|
; R600: SETE_DX10
|
2014-12-12 06:15:39 +08:00
|
|
|
|
|
|
|
; SI: v_cmp_nge_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ult(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ult float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_ule:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT
|
|
|
|
; R600: SETE_DX10
|
2014-12-12 06:15:39 +08:00
|
|
|
|
|
|
|
; SI: v_cmp_ngt_f32_e32 vcc
|
|
|
|
; SI-NEXT: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1, vcc
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_ule(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp ule float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_une:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETNE_DX10
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_neq_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_une(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp une float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}f32_uno:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETNE_DX10
|
|
|
|
; R600: SETNE_DX10
|
|
|
|
; R600: OR_INT
|
|
|
|
; R600: SETNE_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_u_f32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @f32_uno(i32 addrspace(1)* %out, float %a, float %b) {
|
|
|
|
entry:
|
|
|
|
%0 = fcmp uno float %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
;;;==========================================================================;;;
|
|
|
|
;; 32-bit integer comparisons
|
|
|
|
;;;==========================================================================;;;
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_eq:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETE_INT
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI: v_cmp_eq_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_eq(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp eq i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_ne:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETNE_INT
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI: v_cmp_ne_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_ne(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp ne i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_ugt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_UINT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_gt_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_ugt(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp ugt i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_uge:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_UINT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_ge_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_uge(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp uge i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_ult:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_UINT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_lt_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_ult(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp ult i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_ule:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_UINT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_le_u32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_ule(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp ule i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_sgt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_gt_i32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_sgt(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp sgt i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_sge:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_ge_i32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_sge(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp sge i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_slt:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGT_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_lt_i32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_slt(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp slt i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; FUNC-LABEL: {{^}}i32_sle:
|
2013-11-23 07:07:58 +08:00
|
|
|
; R600: SETGE_INT
|
2014-11-05 22:50:53 +08:00
|
|
|
; SI: v_cmp_le_i32
|
2013-11-23 07:07:58 +08:00
|
|
|
define void @i32_sle(i32 addrspace(1)* %out, i32 %a, i32 %b) {
|
|
|
|
entry:
|
|
|
|
%0 = icmp sle i32 %a, %b
|
|
|
|
%1 = sext i1 %0 to i32
|
|
|
|
store i32 %1, i32 addrspace(1)* %out
|
|
|
|
ret void
|
|
|
|
}
|
2014-11-29 06:51:38 +08:00
|
|
|
|
|
|
|
; FIXME: This does 4 compares
|
|
|
|
; FUNC-LABEL: {{^}}v3i32_eq:
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
|
|
|
; SI: s_endpgm
|
|
|
|
define void @v3i32_eq(<3 x i32> addrspace(1)* %out, <3 x i32> addrspace(1)* %ptra, <3 x i32> addrspace(1)* %ptrb) {
|
|
|
|
%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
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%gep.a = getelementptr <3 x i32>, <3 x i32> addrspace(1)* %ptra, i32 %tid
|
|
|
|
%gep.b = getelementptr <3 x i32>, <3 x i32> addrspace(1)* %ptrb, i32 %tid
|
|
|
|
%gep.out = getelementptr <3 x i32>, <3 x i32> addrspace(1)* %out, i32 %tid
|
2015-02-28 05:17:42 +08:00
|
|
|
%a = load <3 x i32>, <3 x i32> addrspace(1)* %gep.a
|
|
|
|
%b = load <3 x i32>, <3 x i32> addrspace(1)* %gep.b
|
2014-11-29 06:51:38 +08:00
|
|
|
%cmp = icmp eq <3 x i32> %a, %b
|
|
|
|
%ext = sext <3 x i1> %cmp to <3 x i32>
|
|
|
|
store <3 x i32> %ext, <3 x i32> addrspace(1)* %gep.out
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; FUNC-LABEL: {{^}}v3i8_eq:
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI-DAG: v_cmp_eq_u32
|
2014-11-29 06:51:38 +08:00
|
|
|
; SI-DAG: v_cndmask_b32_e64 {{v[0-9]+}}, 0, -1,
|
|
|
|
; SI: s_endpgm
|
|
|
|
define void @v3i8_eq(<3 x i8> addrspace(1)* %out, <3 x i8> addrspace(1)* %ptra, <3 x i8> addrspace(1)* %ptrb) {
|
|
|
|
%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
llvm-svn: 230786
2015-02-28 03:29:02 +08:00
|
|
|
%gep.a = getelementptr <3 x i8>, <3 x i8> addrspace(1)* %ptra, i32 %tid
|
|
|
|
%gep.b = getelementptr <3 x i8>, <3 x i8> addrspace(1)* %ptrb, i32 %tid
|
|
|
|
%gep.out = getelementptr <3 x i8>, <3 x i8> addrspace(1)* %out, i32 %tid
|
2015-02-28 05:17:42 +08:00
|
|
|
%a = load <3 x i8>, <3 x i8> addrspace(1)* %gep.a
|
|
|
|
%b = load <3 x i8>, <3 x i8> addrspace(1)* %gep.b
|
2014-11-29 06:51:38 +08:00
|
|
|
%cmp = icmp eq <3 x i8> %a, %b
|
|
|
|
%ext = sext <3 x i1> %cmp to <3 x i8>
|
|
|
|
store <3 x i8> %ext, <3 x i8> addrspace(1)* %gep.out
|
|
|
|
ret void
|
|
|
|
}
|
2016-01-20 08:13:22 +08:00
|
|
|
|
|
|
|
; Make sure we don't try to emit i1 setcc ops
|
|
|
|
; FUNC-LABEL: setcc-i1
|
|
|
|
; SI: s_and_b32 [[AND:s[0-9]+]], s{{[0-9]+}}, 1
|
2016-09-30 09:50:20 +08:00
|
|
|
; SI: s_cmp_eq_u32 [[AND]], 0
|
2016-01-20 08:13:22 +08:00
|
|
|
define void @setcc-i1(i32 %in) {
|
|
|
|
%and = and i32 %in, 1
|
|
|
|
%cmp = icmp eq i32 %and, 0
|
|
|
|
br i1 %cmp, label %endif, label %if
|
|
|
|
if:
|
|
|
|
unreachable
|
|
|
|
endif:
|
|
|
|
ret void
|
|
|
|
}
|
2016-01-21 05:48:24 +08:00
|
|
|
|
|
|
|
; FUNC-LABEL: setcc-i1-and-xor
|
2016-09-09 01:19:29 +08:00
|
|
|
; SI-DAG: v_cmp_ge_f32_e64 [[A:s\[[0-9]+:[0-9]+\]]], s{{[0-9]+}}, 0{{$}}
|
|
|
|
; SI-DAG: v_cmp_le_f32_e64 [[B:s\[[0-9]+:[0-9]+\]]], s{{[0-9]+}}, 1.0
|
2016-01-21 05:48:24 +08:00
|
|
|
; SI: s_and_b64 s[2:3], [[A]], [[B]]
|
|
|
|
define void @setcc-i1-and-xor(i32 addrspace(1)* %out, float %cond) #0 {
|
|
|
|
bb0:
|
|
|
|
%tmp5 = fcmp oge float %cond, 0.000000e+00
|
|
|
|
%tmp7 = fcmp ole float %cond, 1.000000e+00
|
|
|
|
%tmp9 = and i1 %tmp5, %tmp7
|
|
|
|
%tmp11 = xor i1 %tmp9, 1
|
|
|
|
br i1 %tmp11, label %bb2, label %bb1
|
|
|
|
|
|
|
|
bb1:
|
|
|
|
store i32 0, i32 addrspace(1)* %out
|
|
|
|
br label %bb2
|
|
|
|
|
|
|
|
bb2:
|
|
|
|
ret void
|
|
|
|
}
|