2016-09-13 22:41:39 +08:00
|
|
|
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
|
|
; RUN: llc -mtriple=i686-unknown < %s | FileCheck %s --check-prefix=X32
|
|
|
|
; RUN: llc -mtriple=x86_64-unknown < %s | FileCheck %s --check-prefix=X64
|
implement a readme entry, compiling the code into:
_foo:
movl $12, %eax
andl 4(%esp), %eax
movl _array(%eax), %eax
ret
instead of:
_foo:
movl 4(%esp), %eax
shrl $2, %eax
andl $3, %eax
movl _array(,%eax,4), %eax
ret
As it turns out, this triggers all the time, in a wide variety of
situations, for example, I see diffs like this in various programs:
- movl 8(%eax), %eax
- shll $2, %eax
- andl $1020, %eax
- movl (%esi,%eax), %eax
+ movzbl 8(%eax), %eax
+ movl (%esi,%eax,4), %eax
- shll $2, %edx
- andl $1020, %edx
- movl (%edi,%edx), %edx
+ andl $255, %edx
+ movl (%edi,%edx,4), %edx
Unfortunately, I also see stuff like this, which can be fixed in the
X86 backend:
- andl $85, %ebx
- addl _bit_count(,%ebx,4), %ebp
+ shll $2, %ebx
+ andl $340, %ebx
+ addl _bit_count(%ebx), %ebp
llvm-svn: 44656
2007-12-06 15:33:36 +08:00
|
|
|
|
2012-01-15 17:32:57 +08:00
|
|
|
@array = weak global [4 x i32] zeroinitializer
|
|
|
|
|
|
|
|
define i32 @test_lshr_and(i32 %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_lshr_and:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: andl $12, %eax
|
|
|
|
; X32-NEXT: movl array(%eax), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_lshr_and:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: # kill: %EDI<def> %EDI<kill> %RDI<def>
|
|
|
|
; X64-NEXT: shrl $2, %edi
|
|
|
|
; X64-NEXT: andl $3, %edi
|
|
|
|
; X64-NEXT: movl array(,%rdi,4), %eax
|
|
|
|
; X64-NEXT: retq
|
2012-01-15 17:32:57 +08:00
|
|
|
%tmp2 = lshr i32 %x, 2
|
|
|
|
%tmp3 = and i32 %tmp2, 3
|
[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
|
|
|
%tmp4 = getelementptr [4 x i32], [4 x i32]* @array, i32 0, i32 %tmp3
|
2015-02-28 05:17:42 +08:00
|
|
|
%tmp5 = load i32, i32* %tmp4, align 4
|
2012-01-15 17:32:57 +08:00
|
|
|
ret i32 %tmp5
|
implement a readme entry, compiling the code into:
_foo:
movl $12, %eax
andl 4(%esp), %eax
movl _array(%eax), %eax
ret
instead of:
_foo:
movl 4(%esp), %eax
shrl $2, %eax
andl $3, %eax
movl _array(,%eax,4), %eax
ret
As it turns out, this triggers all the time, in a wide variety of
situations, for example, I see diffs like this in various programs:
- movl 8(%eax), %eax
- shll $2, %eax
- andl $1020, %eax
- movl (%esi,%eax), %eax
+ movzbl 8(%eax), %eax
+ movl (%esi,%eax,4), %eax
- shll $2, %edx
- andl $1020, %edx
- movl (%edi,%edx), %edx
+ andl $255, %edx
+ movl (%edi,%edx,4), %edx
Unfortunately, I also see stuff like this, which can be fixed in the
X86 backend:
- andl $85, %ebx
- addl _bit_count(,%ebx,4), %ebp
+ shll $2, %ebx
+ andl $340, %ebx
+ addl _bit_count(%ebx), %ebp
llvm-svn: 44656
2007-12-06 15:33:36 +08:00
|
|
|
}
|
|
|
|
|
2015-06-26 22:51:36 +08:00
|
|
|
define i32* @test_exact1(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact1:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: sarl %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact1:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: sarl $3, %esi
|
|
|
|
; X64-NEXT: movslq %esi, %rax
|
|
|
|
; X64-NEXT: leaq (%rdx,%rax,4), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:36 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = ashr exact i32 %sub, 3
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32* @test_exact2(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact2:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: sarl %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact2:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: sarl $3, %esi
|
|
|
|
; X64-NEXT: movslq %esi, %rax
|
|
|
|
; X64-NEXT: leaq (%rdx,%rax,4), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:36 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = ashr exact i32 %sub, 3
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|
|
|
|
|
2015-06-26 22:51:49 +08:00
|
|
|
define i32* @test_exact3(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact3:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact3:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: sarl $2, %esi
|
|
|
|
; X64-NEXT: movslq %esi, %rax
|
|
|
|
; X64-NEXT: leaq (%rdx,%rax,4), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:49 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = ashr exact i32 %sub, 2
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|
|
|
|
|
2015-06-26 22:51:36 +08:00
|
|
|
define i32* @test_exact4(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact4:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: shrl %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact4:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: # kill: %ESI<def> %ESI<kill> %RSI<def>
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: shrl $3, %esi
|
|
|
|
; X64-NEXT: leaq (%rdx,%rsi,4), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:36 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = lshr exact i32 %sub, 3
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32* @test_exact5(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact5:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: shrl %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact5:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: # kill: %ESI<def> %ESI<kill> %RSI<def>
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: shrl $3, %esi
|
|
|
|
; X64-NEXT: leaq (%rdx,%rsi,4), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:36 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = lshr exact i32 %sub, 3
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|
|
|
|
|
|
|
|
define i32* @test_exact6(i32 %a, i32 %b, i32* %x) {
|
2016-09-13 22:41:39 +08:00
|
|
|
; X32-LABEL: test_exact6:
|
|
|
|
; X32: # BB#0:
|
|
|
|
; X32-NEXT: movl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: subl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: addl {{[0-9]+}}(%esp), %eax
|
|
|
|
; X32-NEXT: retl
|
|
|
|
;
|
|
|
|
; X64-LABEL: test_exact6:
|
|
|
|
; X64: # BB#0:
|
|
|
|
; X64-NEXT: # kill: %ESI<def> %ESI<kill> %RSI<def>
|
|
|
|
; X64-NEXT: subl %edi, %esi
|
|
|
|
; X64-NEXT: leaq (%rsi,%rdx), %rax
|
|
|
|
; X64-NEXT: retq
|
2015-06-26 22:51:36 +08:00
|
|
|
%sub = sub i32 %b, %a
|
|
|
|
%shr = lshr exact i32 %sub, 2
|
|
|
|
%gep = getelementptr inbounds i32, i32* %x, i32 %shr
|
|
|
|
ret i32* %gep
|
|
|
|
}
|