mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
660c094906
I noticed this in the code compiled for a routine using std::map, which produced this code: %25 = tail call i32 @memcmp(i8* %24, i8* %23, i32 6) nounwind readonly %.lobit.i = lshr i32 %25, 31 ; <i32> [#uses=1] %tmp.i = trunc i32 %.lobit.i to i8 ; <i8> [#uses=1] %toBool = icmp eq i8 %tmp.i, 0 ; <i1> [#uses=1] br i1 %toBool, label %bb3, label %bb4 which compiled to: call L_memcmp$stub shrl $31, %eax testb %al, %al jne LBB1_11 ## with this change, we compile it to: call L_memcmp$stub testl %eax, %eax js LBB1_11 This triggers all the time in common code, with patters like this: %169 = and i32 %ply, 1 ; <i32> [#uses=1] %170 = trunc i32 %169 to i8 ; <i8> [#uses=1] %toBool = icmp ne i8 %170, 0 ; <i1> [#uses=1] %7 = lshr i32 %6, 24 ; <i32> [#uses=1] %9 = trunc i32 %7 to i8 ; <i8> [#uses=1] %10 = icmp ne i8 %9, 0 ; <i1> [#uses=1] etc llvm-svn: 61985
31 lines
787 B
LLVM
31 lines
787 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep icmp
|
|
|
|
define i32 @test1(i32 %X) {
|
|
entry:
|
|
icmp slt i32 %X, 0 ; <i1>:0 [#uses=1]
|
|
zext i1 %0 to i32 ; <i32>:1 [#uses=1]
|
|
ret i32 %1
|
|
}
|
|
|
|
define i32 @test2(i32 %X) {
|
|
entry:
|
|
icmp ult i32 %X, -2147483648 ; <i1>:0 [#uses=1]
|
|
zext i1 %0 to i32 ; <i32>:1 [#uses=1]
|
|
ret i32 %1
|
|
}
|
|
|
|
define i32 @test3(i32 %X) {
|
|
entry:
|
|
icmp slt i32 %X, 0 ; <i1>:0 [#uses=1]
|
|
sext i1 %0 to i32 ; <i32>:1 [#uses=1]
|
|
ret i32 %1
|
|
}
|
|
|
|
define i32 @test4(i32 %X) {
|
|
entry:
|
|
icmp ult i32 %X, -2147483648 ; <i1>:0 [#uses=1]
|
|
sext i1 %0 to i32 ; <i32>:1 [#uses=1]
|
|
ret i32 %1
|
|
}
|
|
|