mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
825892c47f
Before: movabsq $4294967296, %rax ## encoding: [0x48,0xb8,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00] testq %rax, %rdi ## encoding: [0x48,0x85,0xf8] jne LBB0_2 ## encoding: [0x75,A] After: btq $32, %rdi ## encoding: [0x48,0x0f,0xba,0xe7,0x20] jb LBB0_2 ## encoding: [0x72,A] btq is usually slower than testq because it doesn't fuse with the jump, but here we're better off saving one register and a giant movabsq. llvm-svn: 145103
36 lines
621 B
LLVM
36 lines
621 B
LLVM
; RUN: llc < %s -march=x86-64 | FileCheck %s
|
|
|
|
declare void @bar()
|
|
|
|
define void @test1(i64 %foo) nounwind {
|
|
%and = and i64 %foo, 4294967296
|
|
%tobool = icmp eq i64 %and, 0
|
|
br i1 %tobool, label %if.end, label %if.then
|
|
|
|
; CHECK: test1:
|
|
; CHECK: btq $32
|
|
|
|
if.then:
|
|
tail call void @bar() nounwind
|
|
br label %if.end
|
|
|
|
if.end:
|
|
ret void
|
|
}
|
|
|
|
define void @test2(i64 %foo) nounwind {
|
|
%and = and i64 %foo, 2147483648
|
|
%tobool = icmp eq i64 %and, 0
|
|
br i1 %tobool, label %if.end, label %if.then
|
|
|
|
; CHECK: test2:
|
|
; CHECK: testl $-2147483648
|
|
|
|
if.then:
|
|
tail call void @bar() nounwind
|
|
br label %if.end
|
|
|
|
if.end:
|
|
ret void
|
|
}
|