2002-04-29 22:24:24 +00:00
|
|
|
; This test makes sure that mul instructions are properly eliminated.
|
|
|
|
;
|
2008-03-18 03:45:45 +00:00
|
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep mul
|
2007-04-15 07:38:21 +00:00
|
|
|
; END.
|
2002-04-29 22:24:24 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test1(i32 %A) {
|
|
|
|
%B = mul i32 %A, 1 ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-03-10 19:44:01 +00:00
|
|
|
}
|
2002-04-29 22:24:24 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test2(i32 %A) {
|
|
|
|
; Should convert to an add instruction
|
|
|
|
%B = mul i32 %A, 2 ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-03-10 19:44:01 +00:00
|
|
|
}
|
2002-04-29 22:24:24 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test3(i32 %A) {
|
|
|
|
; This should disappear entirely
|
|
|
|
%B = mul i32 %A, 0 ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-03-10 19:44:01 +00:00
|
|
|
}
|
2002-04-29 22:24:24 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define double @test4(double %A) {
|
|
|
|
; This is safe for FP
|
|
|
|
%B = mul double 1.000000e+00, %A ; <double> [#uses=1]
|
|
|
|
ret double %B
|
2003-02-18 19:28:47 +00:00
|
|
|
}
|
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test5(i32 %A) {
|
|
|
|
%B = mul i32 %A, 8 ; <i32> [#uses=1]
|
|
|
|
ret i32 %B
|
2003-02-18 19:28:47 +00:00
|
|
|
}
|
2003-03-10 22:43:56 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i8 @test6(i8 %A) {
|
|
|
|
%B = mul i8 %A, 8 ; <i8> [#uses=1]
|
|
|
|
%C = mul i8 %B, 8 ; <i8> [#uses=1]
|
|
|
|
ret i8 %C
|
2003-03-10 22:43:56 +00:00
|
|
|
}
|
2003-06-25 17:10:34 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test7(i32 %i) {
|
|
|
|
%tmp = mul i32 %i, -1 ; <i32> [#uses=1]
|
|
|
|
ret i32 %tmp
|
2003-06-25 17:10:34 +00:00
|
|
|
}
|
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i64 @test8(i64 %i) {
|
|
|
|
; tmp = sub 0, %i
|
|
|
|
%j = mul i64 %i, -1 ; <i64> [#uses=1]
|
|
|
|
ret i64 %j
|
2003-06-25 17:10:34 +00:00
|
|
|
}
|
2003-09-11 22:23:48 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test9(i32 %i) {
|
|
|
|
; %j = sub 0, %i
|
|
|
|
%j = mul i32 %i, -1 ; <i32> [#uses=1]
|
|
|
|
ret i32 %j
|
2003-09-11 22:23:48 +00:00
|
|
|
}
|
2004-02-23 05:38:47 +00:00
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test10(i32 %a, i32 %b) {
|
|
|
|
%c = icmp slt i32 %a, 0 ; <i1> [#uses=1]
|
|
|
|
%d = zext i1 %c to i32 ; <i32> [#uses=1]
|
|
|
|
; e = b & (a >> 31)
|
|
|
|
%e = mul i32 %d, %b ; <i32> [#uses=1]
|
|
|
|
ret i32 %e
|
2004-02-23 05:38:47 +00:00
|
|
|
}
|
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test11(i32 %a, i32 %b) {
|
|
|
|
%c = icmp sle i32 %a, -1 ; <i1> [#uses=1]
|
|
|
|
%d = zext i1 %c to i32 ; <i32> [#uses=1]
|
|
|
|
; e = b & (a >> 31)
|
|
|
|
%e = mul i32 %d, %b ; <i32> [#uses=1]
|
|
|
|
ret i32 %e
|
2004-02-23 05:59:52 +00:00
|
|
|
}
|
|
|
|
|
2008-03-18 03:45:45 +00:00
|
|
|
define i32 @test12(i8 %a, i32 %b) {
|
|
|
|
%c = icmp ugt i8 %a, 127 ; <i1> [#uses=1]
|
|
|
|
%d = zext i1 %c to i32 ; <i32> [#uses=1]
|
|
|
|
; e = b & (a >> 31)
|
|
|
|
%e = mul i32 %d, %b ; <i32> [#uses=1]
|
|
|
|
ret i32 %e
|
2004-02-23 06:37:33 +00:00
|
|
|
}
|
|
|
|
|