2002-04-30 00:24:24 +02:00
|
|
|
; This test makes sure that mul instructions are properly eliminated.
|
|
|
|
;
|
|
|
|
|
2006-12-02 05:23:10 +01:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep mul
|
2002-04-30 00:24:24 +02:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2003-03-10 20:44:01 +01:00
|
|
|
int %test1(int %A) {
|
2002-04-30 00:24:24 +02:00
|
|
|
%B = mul int %A, 1
|
|
|
|
ret int %B
|
2003-03-10 20:44:01 +01:00
|
|
|
}
|
2002-04-30 00:24:24 +02:00
|
|
|
|
2003-03-10 20:44:01 +01:00
|
|
|
int %test2(int %A) {
|
2002-04-30 00:24:24 +02:00
|
|
|
%B = mul int %A, 2 ; Should convert to an add instruction
|
|
|
|
ret int %B
|
2003-03-10 20:44:01 +01:00
|
|
|
}
|
2002-04-30 00:24:24 +02:00
|
|
|
|
2003-03-10 20:44:01 +01:00
|
|
|
int %test3(int %A) {
|
2002-04-30 00:24:24 +02:00
|
|
|
%B = mul int %A, 0 ; This should disappear entirely
|
|
|
|
ret int %B
|
2003-03-10 20:44:01 +01:00
|
|
|
}
|
2002-04-30 00:24:24 +02:00
|
|
|
|
2003-02-18 20:28:47 +01:00
|
|
|
double %test4(double %A) {
|
|
|
|
%B = mul double 1.0, %A ; This is safe for FP
|
|
|
|
ret double %B
|
|
|
|
}
|
|
|
|
|
|
|
|
int %test5(int %A) {
|
|
|
|
%B = mul int %A, 8
|
|
|
|
ret int %B
|
|
|
|
}
|
2003-03-10 23:43:56 +01:00
|
|
|
|
2003-06-25 19:10:34 +02:00
|
|
|
ubyte %test6(ubyte %A) {
|
2003-03-10 23:43:56 +01:00
|
|
|
%B = mul ubyte %A, 8
|
2003-06-29 00:31:37 +02:00
|
|
|
%C = mul ubyte %B, 8
|
2003-03-10 23:43:56 +01:00
|
|
|
ret ubyte %C
|
|
|
|
}
|
2003-06-25 19:10:34 +02:00
|
|
|
|
|
|
|
int %test7(int %i) {
|
|
|
|
%tmp = mul int %i, -1 ; %tmp = sub 0, %i
|
|
|
|
ret int %tmp
|
|
|
|
}
|
|
|
|
|
|
|
|
ulong %test8(ulong %i) {
|
|
|
|
%j = mul ulong %i, 18446744073709551615 ; tmp = sub 0, %i
|
|
|
|
ret ulong %j
|
|
|
|
}
|
2003-09-12 00:23:48 +02:00
|
|
|
|
|
|
|
uint %test9(uint %i) {
|
|
|
|
%j = mul uint %i, 4294967295 ; %j = sub 0, %i
|
|
|
|
ret uint %j
|
|
|
|
}
|
2004-02-23 06:38:47 +01:00
|
|
|
|
|
|
|
uint %test10(int %a, uint %b) {
|
|
|
|
%c = setlt int %a, 0
|
|
|
|
%d = cast bool %c to uint
|
|
|
|
%e = mul uint %d, %b ; e = b & (a >> 31)
|
|
|
|
ret uint %e
|
|
|
|
}
|
|
|
|
|
2004-02-23 06:59:52 +01:00
|
|
|
uint %test11(int %a, uint %b) {
|
|
|
|
%c = setle int %a, -1
|
|
|
|
%d = cast bool %c to uint
|
|
|
|
%e = mul uint %d, %b ; e = b & (a >> 31)
|
|
|
|
ret uint %e
|
|
|
|
}
|
|
|
|
|
2004-02-23 07:37:33 +01:00
|
|
|
uint %test11(ubyte %a, uint %b) {
|
|
|
|
%c = setgt ubyte %a, 127
|
|
|
|
%d = cast bool %c to uint
|
|
|
|
%e = mul uint %d, %b ; e = b & (a >> 31)
|
|
|
|
ret uint %e
|
|
|
|
}
|
|
|
|
|