2013-05-06 18:17:29 +02:00
|
|
|
; Test 64-bit signed division and remainder when the divisor is
|
|
|
|
; a signed-extended i32.
|
|
|
|
;
|
2017-11-28 18:15:09 +01:00
|
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -asm-verbose=0 | FileCheck %s
|
2013-05-06 18:17:29 +02:00
|
|
|
|
2013-07-02 17:40:22 +02:00
|
|
|
declare i64 @foo()
|
|
|
|
|
2013-05-06 18:17:29 +02:00
|
|
|
; Test register division. The result is in the second of the two registers.
|
|
|
|
define void @f1(i64 %dummy, i64 %a, i32 %b, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f1:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgfr %r2, %r4
|
|
|
|
; CHECK: stg %r3, 0(%r5)
|
|
|
|
; CHECK: br %r14
|
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %bext
|
|
|
|
store i64 %div, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test register remainder. The result is in the first of the two registers.
|
|
|
|
define void @f2(i64 %dummy, i64 %a, i32 %b, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f2:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgfr %r2, %r4
|
|
|
|
; CHECK: stg %r2, 0(%r5)
|
|
|
|
; CHECK: br %r14
|
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
store i64 %rem, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test that division and remainder use a single instruction.
|
|
|
|
define i64 @f3(i64 %dummy, i64 %a, i32 %b) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f3:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgfr %r2, %r4
|
|
|
|
; CHECK: ogr %r2, %r3
|
|
|
|
; CHECK: br %r14
|
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %bext
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
%or = or i64 %rem, %div
|
|
|
|
ret i64 %or
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test register division when the dividend is zero rather than sign extended.
|
|
|
|
; We can't use dsgfr here
|
|
|
|
define void @f4(i64 %dummy, i64 %a, i32 %b, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f4:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: dsgfr
|
|
|
|
; CHECK: br %r14
|
|
|
|
%bext = zext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %bext
|
|
|
|
store i64 %div, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; ...likewise remainder.
|
|
|
|
define void @f5(i64 %dummy, i64 %a, i32 %b, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f5:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: dsgfr
|
|
|
|
; CHECK: br %r14
|
|
|
|
%bext = zext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
store i64 %rem, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test memory division with no displacement.
|
|
|
|
define void @f6(i64 %dummy, i64 %a, i32 *%src, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f6:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgf %r2, 0(%r4)
|
|
|
|
; CHECK: stg %r3, 0(%r5)
|
|
|
|
; CHECK: br %r14
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%src
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %bext
|
|
|
|
store i64 %div, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test memory remainder with no displacement.
|
|
|
|
define void @f7(i64 %dummy, i64 %a, i32 *%src, i64 *%dest) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f7:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgf %r2, 0(%r4)
|
|
|
|
; CHECK: stg %r2, 0(%r5)
|
|
|
|
; CHECK: br %r14
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%src
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
store i64 %rem, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Test both memory division and memory remainder.
|
|
|
|
define i64 @f8(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f8:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK-NOT: {{%r[234]}}
|
|
|
|
; CHECK: dsgf %r2, 0(%r4)
|
|
|
|
; CHECK-NOT: {{dsgf|dsgfr}}
|
|
|
|
; CHECK: ogr %r2, %r3
|
|
|
|
; CHECK: br %r14
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%src
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %bext
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
%or = or i64 %rem, %div
|
|
|
|
ret i64 %or
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check the high end of the DSGF range.
|
|
|
|
define i64 @f9(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f9:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: dsgf %r2, 524284(%r4)
|
|
|
|
; CHECK: br %r14
|
[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
|
|
|
%ptr = getelementptr i32, i32 *%src, i64 131071
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check the next word up, which needs separate address logic.
|
|
|
|
; Other sequences besides this one would be OK.
|
|
|
|
define i64 @f10(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f10:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: agfi %r4, 524288
|
|
|
|
; CHECK: dsgf %r2, 0(%r4)
|
|
|
|
; CHECK: br %r14
|
[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
|
|
|
%ptr = getelementptr i32, i32 *%src, i64 131072
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check the high end of the negative aligned DSGF range.
|
|
|
|
define i64 @f11(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f11:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: dsgf %r2, -4(%r4)
|
|
|
|
; CHECK: br %r14
|
[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
|
|
|
%ptr = getelementptr i32, i32 *%src, i64 -1
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check the low end of the DSGF range.
|
|
|
|
define i64 @f12(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f12:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: dsgf %r2, -524288(%r4)
|
|
|
|
; CHECK: br %r14
|
[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
|
|
|
%ptr = getelementptr i32, i32 *%src, i64 -131072
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check the next word down, which needs separate address logic.
|
|
|
|
; Other sequences besides this one would be OK.
|
|
|
|
define i64 @f13(i64 %dummy, i64 %a, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f13:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: agfi %r4, -524292
|
|
|
|
; CHECK: dsgf %r2, 0(%r4)
|
|
|
|
; CHECK: br %r14
|
[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
|
|
|
%ptr = getelementptr i32, i32 *%src, i64 -131073
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
|
|
|
|
|
|
|
; Check that DSGF allows an index.
|
|
|
|
define i64 @f14(i64 %dummy, i64 %a, i64 %src, i64 %index) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f14:
|
2013-05-06 18:17:29 +02:00
|
|
|
; CHECK: dsgf %r2, 524287(%r5,%r4)
|
|
|
|
; CHECK: br %r14
|
|
|
|
%add1 = add i64 %src, %index
|
|
|
|
%add2 = add i64 %add1, 524287
|
|
|
|
%ptr = inttoptr i64 %add2 to i32 *
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%ptr
|
2013-05-06 18:17:29 +02:00
|
|
|
%bext = sext i32 %b to i64
|
|
|
|
%rem = srem i64 %a, %bext
|
|
|
|
ret i64 %rem
|
|
|
|
}
|
2013-07-02 17:40:22 +02:00
|
|
|
|
|
|
|
; Make sure that we still use DSGFR rather than DSGR in cases where
|
|
|
|
; a load and division cannot be combined.
|
|
|
|
define void @f15(i64 *%dest, i32 *%src) {
|
2013-07-14 08:24:09 +02:00
|
|
|
; CHECK-LABEL: f15:
|
2013-07-02 17:40:22 +02:00
|
|
|
; CHECK: l [[B:%r[0-9]+]], 0(%r3)
|
|
|
|
; CHECK: brasl %r14, foo@PLT
|
|
|
|
; CHECK: lgr %r1, %r2
|
|
|
|
; CHECK: dsgfr %r0, [[B]]
|
|
|
|
; CHECK: br %r14
|
2015-02-27 22:17:42 +01:00
|
|
|
%b = load i32 , i32 *%src
|
2013-07-02 17:40:22 +02:00
|
|
|
%a = call i64 @foo()
|
|
|
|
%ext = sext i32 %b to i64
|
|
|
|
%div = sdiv i64 %a, %ext
|
|
|
|
store i64 %div, i64 *%dest
|
|
|
|
ret void
|
|
|
|
}
|