[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; RUN: llc < %s -asm-verbose=false -mtriple=x86_64-unknown-linux | FileCheck %s --check-prefix=CHECK --check-prefix=CMOV
|
|
|
|
; RUN: llc < %s -asm-verbose=false -mtriple=i686-unknown-linux | FileCheck %s --check-prefix=CHECK --check-prefix=NOCMOV
|
|
|
|
|
|
|
|
target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
|
|
|
|
|
|
|
|
; Test 2xCMOV patterns exposed after legalization.
|
|
|
|
; One way to do that is with (select (fcmp une/oeq)), which gets
|
|
|
|
; legalized to setp/setne.
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_select_fcmp_oeq_i32:
|
|
|
|
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
|
|
|
; CMOV-NEXT: cmovnel %esi, %edi
|
|
|
|
; CMOV-NEXT: cmovpl %esi, %edi
|
|
|
|
; CMOV-NEXT: movl %edi, %eax
|
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: flds 8(%esp)
|
|
|
|
; NOCMOV-NEXT: flds 4(%esp)
|
|
|
|
; NOCMOV-NEXT: fucompp
|
|
|
|
; NOCMOV-NEXT: fnstsw %ax
|
|
|
|
; NOCMOV-NEXT: sahf
|
|
|
|
; NOCMOV-NEXT: leal 16(%esp), %eax
|
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 12(%esp), %eax
|
|
|
|
; NOCMOV-NEXT:[[TBB]]:
|
|
|
|
; NOCMOV-NEXT: movl (%eax), %eax
|
|
|
|
; NOCMOV-NEXT: retl
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
define i32 @test_select_fcmp_oeq_i32(float %a, float %b, i32 %c, i32 %d) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp oeq float %a, %b
|
|
|
|
%r = select i1 %cmp, i32 %c, i32 %d
|
|
|
|
ret i32 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_select_fcmp_oeq_i64:
|
|
|
|
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
|
|
|
; CMOV-NEXT: cmovneq %rsi, %rdi
|
|
|
|
; CMOV-NEXT: cmovpq %rsi, %rdi
|
|
|
|
; CMOV-NEXT: movq %rdi, %rax
|
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
|
|
|
; NOCMOV-NEXT: flds 8(%esp)
|
|
|
|
; NOCMOV-NEXT: flds 4(%esp)
|
|
|
|
; NOCMOV-NEXT: fucompp
|
|
|
|
; NOCMOV-NEXT: fnstsw %ax
|
|
|
|
; NOCMOV-NEXT: sahf
|
|
|
|
; NOCMOV-NEXT: leal 20(%esp), %ecx
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 12(%esp), %ecx
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: movl (%ecx), %eax
|
|
|
|
; NOCMOV-NEXT: orl $4, %ecx
|
|
|
|
; NOCMOV-NEXT: movl (%ecx), %edx
|
|
|
|
; NOCMOV-NEXT: retl
|
|
|
|
define i64 @test_select_fcmp_oeq_i64(float %a, float %b, i64 %c, i64 %d) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp oeq float %a, %b
|
|
|
|
%r = select i1 %cmp, i64 %c, i64 %d
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_select_fcmp_une_i64:
|
|
|
|
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
|
|
|
; CMOV-NEXT: cmovneq %rdi, %rsi
|
|
|
|
; CMOV-NEXT: cmovpq %rdi, %rsi
|
|
|
|
; CMOV-NEXT: movq %rsi, %rax
|
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
|
|
|
; NOCMOV-NEXT: flds 8(%esp)
|
|
|
|
; NOCMOV-NEXT: flds 4(%esp)
|
|
|
|
; NOCMOV-NEXT: fucompp
|
|
|
|
; NOCMOV-NEXT: fnstsw %ax
|
|
|
|
; NOCMOV-NEXT: sahf
|
|
|
|
; NOCMOV-NEXT: leal 12(%esp), %ecx
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 20(%esp), %ecx
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: movl (%ecx), %eax
|
|
|
|
; NOCMOV-NEXT: orl $4, %ecx
|
|
|
|
; NOCMOV-NEXT: movl (%ecx), %edx
|
|
|
|
; NOCMOV-NEXT: retl
|
|
|
|
define i64 @test_select_fcmp_une_i64(float %a, float %b, i64 %c, i64 %d) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp une float %a, %b
|
|
|
|
%r = select i1 %cmp, i64 %c, i64 %d
|
|
|
|
ret i64 %r
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_select_fcmp_oeq_f64:
|
|
|
|
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
2015-03-03 01:21:16 +00:00
|
|
|
; CMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; CMOV-NEXT: jp [[TBB]]
|
|
|
|
; CMOV-NEXT: movaps %xmm2, %xmm3
|
|
|
|
; CMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; CMOV-NEXT: movaps %xmm3, %xmm0
|
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
|
|
|
; NOCMOV-NEXT: flds 8(%esp)
|
|
|
|
; NOCMOV-NEXT: flds 4(%esp)
|
|
|
|
; NOCMOV-NEXT: fucompp
|
|
|
|
; NOCMOV-NEXT: fnstsw %ax
|
|
|
|
; NOCMOV-NEXT: sahf
|
|
|
|
; NOCMOV-NEXT: leal 20(%esp), %eax
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 12(%esp), %eax
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: fldl (%eax)
|
|
|
|
; NOCMOV-NEXT: retl
|
|
|
|
define double @test_select_fcmp_oeq_f64(float %a, float %b, double %c, double %d) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp oeq float %a, %b
|
|
|
|
%r = select i1 %cmp, double %c, double %d
|
|
|
|
ret double %r
|
|
|
|
}
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_select_fcmp_oeq_v4i32:
|
|
|
|
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
2015-03-03 01:21:16 +00:00
|
|
|
; CMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; CMOV-NEXT: jp [[TBB]]
|
|
|
|
; CMOV-NEXT: movaps %xmm2, %xmm3
|
|
|
|
; CMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; CMOV-NEXT: movaps %xmm3, %xmm0
|
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
|
|
|
; NOCMOV-NEXT: pushl %edi
|
|
|
|
; NOCMOV-NEXT: pushl %esi
|
|
|
|
; NOCMOV-NEXT: flds 20(%esp)
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: flds 16(%esp)
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: fucompp
|
|
|
|
; NOCMOV-NEXT: fnstsw %ax
|
|
|
|
; NOCMOV-NEXT: sahf
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: leal 40(%esp), %eax
|
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 24(%esp), %eax
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: movl (%eax), %eax
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: leal 44(%esp), %ecx
|
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 28(%esp), %ecx
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: movl (%ecx), %ecx
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: leal 48(%esp), %esi
|
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 32(%esp), %esi
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
|
|
|
; NOCMOV-NEXT: movl 12(%esp), %edx
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: movl (%esi), %esi
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV-NEXT: leal 52(%esp), %edi
|
|
|
|
; NOCMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; NOCMOV-NEXT: jp [[TBB]]
|
|
|
|
; NOCMOV-NEXT: leal 36(%esp), %edi
|
|
|
|
; NOCMOV-NEXT: [[TBB]]:
|
|
|
|
; NOCMOV-NEXT: movl (%edi), %edi
|
|
|
|
; NOCMOV-NEXT: movl %edi, 12(%edx)
|
|
|
|
; NOCMOV-NEXT: movl %esi, 8(%edx)
|
|
|
|
; NOCMOV-NEXT: movl %ecx, 4(%edx)
|
|
|
|
; NOCMOV-NEXT: movl %eax, (%edx)
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; NOCMOV-NEXT: popl %esi
|
|
|
|
; NOCMOV-NEXT: popl %edi
|
|
|
|
; NOCMOV-NEXT: retl $4
|
|
|
|
define <4 x i32> @test_select_fcmp_oeq_v4i32(float %a, float %b, <4 x i32> %c, <4 x i32> %d) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp oeq float %a, %b
|
|
|
|
%r = select i1 %cmp, <4 x i32> %c, <4 x i32> %d
|
|
|
|
ret <4 x i32> %r
|
|
|
|
}
|
|
|
|
|
|
|
|
; Also make sure we catch the original code-sequence of interest:
|
|
|
|
|
|
|
|
; CMOV: [[ONE_F32_LCPI:.LCPI.*]]:
|
|
|
|
; CMOV-NEXT: .long 1065353216
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_zext_fcmp_une:
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
|
|
|
; CMOV-NEXT: movss [[ONE_F32_LCPI]](%rip), %xmm0
|
2015-03-03 01:21:16 +00:00
|
|
|
; CMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; CMOV-NEXT: jp [[TBB]]
|
|
|
|
; CMOV-NEXT: xorps %xmm0, %xmm0
|
|
|
|
; CMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV: jne
|
|
|
|
; NOCMOV-NEXT: jp
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
define float @test_zext_fcmp_une(float %a, float %b) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp une float %a, %b
|
|
|
|
%conv1 = zext i1 %cmp to i32
|
|
|
|
%conv2 = sitofp i32 %conv1 to float
|
|
|
|
ret float %conv2
|
|
|
|
}
|
|
|
|
|
|
|
|
; CMOV: [[ONE_F32_LCPI:.LCPI.*]]:
|
|
|
|
; CMOV-NEXT: .long 1065353216
|
|
|
|
|
|
|
|
; CHECK-LABEL: test_zext_fcmp_oeq:
|
|
|
|
; CMOV-NEXT: ucomiss %xmm1, %xmm0
|
|
|
|
; CMOV-NEXT: xorps %xmm0, %xmm0
|
2015-03-03 01:21:16 +00:00
|
|
|
; CMOV-NEXT: jne [[TBB:.LBB[0-9_]+]]
|
|
|
|
; CMOV-NEXT: jp [[TBB]]
|
|
|
|
; CMOV-NEXT: movss [[ONE_F32_LCPI]](%rip), %xmm0
|
|
|
|
; CMOV-NEXT: [[TBB]]:
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
; CMOV-NEXT: retq
|
|
|
|
|
2015-03-03 01:21:16 +00:00
|
|
|
; NOCMOV: jne
|
|
|
|
; NOCMOV-NEXT: jp
|
[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
Fold and/or of setcc's to double CMOV:
(CMOV F, T, ((cc1 | cc2) != 0)) -> (CMOV (CMOV F, T, cc1), T, cc2)
(CMOV F, T, ((cc1 & cc2) != 0)) -> (CMOV (CMOV T, F, !cc1), F, !cc2)
When we can't use the CMOV instruction, it might increase branch
mispredicts. When we can, or when there is no mispredict, this
improves throughput and reduces register pressure.
These can't be catched by generic combines, because the pattern can
appear when legalizing some instructions (such as fcmp une).
rdar://19767934
http://reviews.llvm.org/D7634
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231045 91177308-0d34-0410-b5e6-96231b3b80d8
2015-03-03 01:09:14 +00:00
|
|
|
define float @test_zext_fcmp_oeq(float %a, float %b) #0 {
|
|
|
|
entry:
|
|
|
|
%cmp = fcmp oeq float %a, %b
|
|
|
|
%conv1 = zext i1 %cmp to i32
|
|
|
|
%conv2 = sitofp i32 %conv1 to float
|
|
|
|
ret float %conv2
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|