1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
Sanjay Patel 23bd4a9364 [InstCombine] narrow truncated add/sub/mul with constant
Name: narrow_sub
  %sub = sub i32 C1, %x
  %r = trunc i32 %sub to i8
  =>  
  %xn = trunc i32 %x to i8
  %narrowC = trunc i32 C1 to i8
  %r = sub i8 %narrowC, %xn
 
Name: narrow_add
  %add = add i32 %x, C1
  %r = trunc i32 %add to i8
  =>  
  %xn = trunc i32 %x to i8
  %narrowC = trunc i32 C1 to i8
  %r = add i8 %xn, %narrowC
  
Name: narrow_mul
  %mul = mul i32 %x, C1
  %r = trunc i32 %mul to i8
  =>  
  %xn = trunc i32 %x to i8
  %narrowC = trunc i32 C1 to i8
  %r = mul i8 %xn, %narrowC


http://rise4fun.com/Alive/QpS

This doesn't solve PR34046 (failure to recognize rotate):
https://bugs.llvm.org/show_bug.cgi?id=34046
...but it reduces an extra complication in the description examples 
to a form that we can more easily match.

llvm-svn: 310141
2017-08-04 22:30:34 +00:00

55 lines
1.1 KiB
LLVM

; RUN: opt < %s -instcombine -S | FileCheck %s
target triple = "x86_64-unknown-freebsd11.0"
define i32 @myfls() {
; CHECK-LABEL: @myfls(
; CHECK-NEXT: ret i32 6
;
%call = call i32 @fls(i32 42)
ret i32 %call
}
define i32 @myflsl() {
; CHECK-LABEL: @myflsl(
; CHECK-NEXT: ret i32 6
;
%patatino = call i32 @flsl(i64 42)
ret i32 %patatino
}
define i32 @myflsll() {
; CHECK-LABEL: @myflsll(
; CHECK-NEXT: ret i32 6
;
%whatever = call i32 @flsll(i64 42)
ret i32 %whatever
}
; Lower to llvm.ctlz() if the argument is not a constant
define i32 @flsnotconst(i64 %z) {
; CHECK-LABEL: @flsnotconst(
; CHECK-NEXT: [[CTLZ:%.*]] = call i64 @llvm.ctlz.i64(i64 %z, i1 false), !range !0
; CHECK-NEXT: [[TMP1:%.*]] = trunc i64 [[CTLZ]] to i32
; CHECK-NEXT: [[TMP2:%.*]] = sub nsw i32 64, [[TMP1]]
; CHECK-NEXT: ret i32 [[TMP2]]
;
%goo = call i32 @flsl(i64 %z)
ret i32 %goo
}
; Make sure we lower fls(0) to 0 and not to `undef`.
define i32 @flszero() {
; CHECK-LABEL: @flszero(
; CHECK-NEXT: ret i32 0
;
%zero = call i32 @fls(i32 0)
ret i32 %zero
}
declare i32 @fls(i32)
declare i32 @flsl(i64)
declare i32 @flsll(i64)