1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/Analysis/ValueTracking/known-non-equal.ll
James Molloy 94327af5e1 [ValueTracking] Add a new predicate: isKnownNonEqual()
isKnownNonEqual(A, B) returns true if it can be determined that A != B.

At the moment it only knows two facts, that a non-wrapping add of nonzero to a value cannot be that value:

A + B != A [where B != 0, addition is nsw or nuw]

and that contradictory known bits imply two values are not equal.

This patch also hooks this up to InstSimplify; InstSimplify had a peephole for the first fact but not the second so this teaches InstSimplify a new trick too (alas no measured performance impact!)

llvm-svn: 251012
2015-10-22 13:18:42 +00:00

22 lines
526 B
LLVM

; RUN: opt -instsimplify < %s -S | FileCheck %s
; CHECK: define i1 @test
define i1 @test(i8* %pq, i8 %B) {
%q = load i8, i8* %pq, !range !0 ; %q is known nonzero; no known bits
%A = add nsw i8 %B, %q
%cmp = icmp eq i8 %A, %B
; CHECK: ret i1 false
ret i1 %cmp
}
; CHECK: define i1 @test2
define i1 @test2(i8 %a, i8 %b) {
%A = or i8 %a, 2 ; %A[1] = 1
%B = and i8 %b, -3 ; %B[1] = 0
%cmp = icmp eq i8 %A, %B ; %A[1] and %B[1] are contradictory.
; CHECK: ret i1 false
ret i1 %cmp
}
!0 = !{ i8 1, i8 5 }