mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
7c9c6ed761
Essentially the same as the GEP change in r230786. A similar migration script can be used to update test cases, though a few more test case improvements/changes were required this time around: (r229269-r229278) import fileinput import sys import re pat = re.compile(r"((?:=|:|^)\s*load (?:atomic )?(?:volatile )?(.*?))(| addrspace\(\d+\) *)\*($| *(?:%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|\[\[[a-zA-Z]|\{\{).*$)") for line in sys.stdin: sys.stdout.write(re.sub(pat, r"\1, \2\3*\4", line)) Reviewers: rafael, dexonsmith, grosser Differential Revision: http://reviews.llvm.org/D7649 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230794 91177308-0d34-0410-b5e6-96231b3b80d8
62 lines
1.5 KiB
LLVM
62 lines
1.5 KiB
LLVM
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
; These should be InstSimplify checks, but most of the code
|
|
; is currently only in InstCombine. TODO: move supporting code
|
|
|
|
; Definitely out of range
|
|
define i1 @test_nonzero(i32* nocapture readonly %arg) {
|
|
; CHECK-LABEL:test_nonzero
|
|
; CHECK: ret i1 true
|
|
%val = load i32, i32* %arg, !range !0
|
|
%rval = icmp ne i32 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
define i1 @test_nonzero2(i32* nocapture readonly %arg) {
|
|
; CHECK-LABEL:test_nonzero2
|
|
; CHECK: ret i1 false
|
|
%val = load i32, i32* %arg, !range !0
|
|
%rval = icmp eq i32 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
|
|
; Potentially in range
|
|
define i1 @test_nonzero3(i32* nocapture readonly %arg) {
|
|
; CHECK-LABEL: test_nonzero3
|
|
; Check that this does not trigger - it wouldn't be legal
|
|
; CHECK: icmp
|
|
%val = load i32, i32* %arg, !range !1
|
|
%rval = icmp ne i32 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
|
|
; Definitely in range
|
|
define i1 @test_nonzero4(i8* nocapture readonly %arg) {
|
|
; CHECK-LABEL: test_nonzero4
|
|
; CHECK: ret i1 false
|
|
%val = load i8, i8* %arg, !range !2
|
|
%rval = icmp ne i8 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
|
|
define i1 @test_nonzero5(i8* nocapture readonly %arg) {
|
|
; CHECK-LABEL: test_nonzero5
|
|
; CHECK: ret i1 false
|
|
%val = load i8, i8* %arg, !range !2
|
|
%rval = icmp ugt i8 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
|
|
; Cheaper checks (most values in range meet requirements)
|
|
define i1 @test_nonzero6(i8* %argw) {
|
|
; CHECK-LABEL: test_nonzero6
|
|
; CHECK: icmp ne i8 %val, 0
|
|
%val = load i8, i8* %argw, !range !3
|
|
%rval = icmp sgt i8 %val, 0
|
|
ret i1 %rval
|
|
}
|
|
|
|
|
|
!0 = !{i32 1, i32 6}
|
|
!1 = !{i32 0, i32 6}
|
|
!2 = !{i8 0, i8 1}
|
|
!3 = !{i8 0, i8 6}
|