2002-05-06 05:43:36 +00:00
|
|
|
; This test makes sure that these instructions are properly eliminated.
|
|
|
|
;
|
2006-02-28 05:30:48 +00:00
|
|
|
; RUN: llvm-as < %s | opt -instcombine -disable-output &&
|
2003-09-16 15:29:54 +00:00
|
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep rem
|
2002-05-06 05:43:36 +00:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2003-02-18 19:28:47 +00:00
|
|
|
int %test1(int %A) {
|
2002-05-06 05:43:36 +00:00
|
|
|
%B = rem int %A, 1 ; ISA constant 0
|
|
|
|
ret int %B
|
|
|
|
}
|
|
|
|
|
2006-02-28 05:30:48 +00:00
|
|
|
int %test2(int %A) { ; 0 % X = 0, we don't need to preserve traps
|
2003-02-18 19:28:47 +00:00
|
|
|
%B = rem int 0, %A
|
|
|
|
ret int %B
|
|
|
|
}
|
|
|
|
|
|
|
|
uint %test3(uint %A) {
|
|
|
|
%B = rem uint %A, 8 ; & 7
|
|
|
|
ret uint %B
|
|
|
|
}
|
2004-07-06 07:38:00 +00:00
|
|
|
|
|
|
|
bool %test3(int %A) {
|
|
|
|
%B = rem int %A, -8 ; & 7
|
|
|
|
%C = setne int %B, 0
|
|
|
|
ret bool %C
|
|
|
|
}
|
2004-12-12 21:40:22 +00:00
|
|
|
|
|
|
|
uint %test4(uint %X, bool %C) {
|
|
|
|
%V = select bool %C, uint 1, uint 8
|
|
|
|
%R = rem uint %X, %V
|
|
|
|
ret uint %R
|
|
|
|
}
|
2006-02-05 07:52:47 +00:00
|
|
|
|
|
|
|
uint %test5(uint %X, ubyte %B) {
|
|
|
|
%Amt = shl uint 32, ubyte %B
|
|
|
|
%V = rem uint %X, %Amt
|
|
|
|
ret uint %V
|
|
|
|
}
|
|
|
|
|
2006-02-28 05:30:48 +00:00
|
|
|
int %test6(int %A) {
|
|
|
|
%B = rem int %A, 0 ;; undef
|
|
|
|
ret int %B
|
|
|
|
}
|
2006-02-28 05:48:56 +00:00
|
|
|
|
|
|
|
int %test7(int %A) {
|
|
|
|
%B = mul int %A, 26
|
|
|
|
%C = rem int %B, 13
|
|
|
|
ret int %C
|
|
|
|
}
|
|
|
|
|
|
|
|
int %test8(int %A) {
|
|
|
|
%B = shl int %A, ubyte 4
|
|
|
|
%C = rem int %B, 8
|
|
|
|
ret int %C
|
|
|
|
}
|
|
|
|
|
|
|
|
uint %test9(uint %A) {
|
|
|
|
%B = mul uint %A, 124
|
|
|
|
%C = rem uint %B, 62
|
|
|
|
ret uint %C
|
|
|
|
}
|