mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-12 15:30:46 +00:00
e86f70292b
This is similar to: https://reviews.llvm.org/rL279958 By not prematurely lowering to loads, we should be able to more easily eliminate the 'or' with zero instructions seen in copysign-constant-magnitude.ll. We should also be able to extend this code to handle vectors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282312 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
1.3 KiB
LLVM
45 lines
1.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: llc < %s -mtriple=x86_64-darwin | FileCheck %s
|
|
|
|
; CHECK-LABEL: LCPI0_0:
|
|
; CHECK-NEXT: .long 4286578688
|
|
; CHECK-LABEL: LCPI0_1:
|
|
; CHECK-NEXT: .long 2139095040
|
|
|
|
define x86_fp80 @foo(x86_fp80 %a) {
|
|
; CHECK-LABEL: foo:
|
|
; CHECK: ## BB#0:
|
|
; CHECK-NEXT: fldt {{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: fstpt -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: testb $-128, -{{[0-9]+}}(%rsp)
|
|
; CHECK-NEXT: flds LCPI0_0(%rip)
|
|
; CHECK-NEXT: flds LCPI0_1(%rip)
|
|
; CHECK-NEXT: fcmovne %st(1), %st(0)
|
|
; CHECK-NEXT: fstp %st(1)
|
|
; CHECK-NEXT: retq
|
|
;
|
|
%1 = tail call x86_fp80 @copysignl(x86_fp80 0xK7FFF8000000000000000, x86_fp80 %a) nounwind readnone
|
|
ret x86_fp80 %1
|
|
}
|
|
|
|
declare x86_fp80 @copysignl(x86_fp80, x86_fp80) nounwind readnone
|
|
|
|
; This would crash:
|
|
; https://llvm.org/bugs/show_bug.cgi?id=26070
|
|
|
|
define float @pr26070() {
|
|
; CHECK-LABEL: pr26070:
|
|
; CHECK: ## BB#0:
|
|
; CHECK-NEXT: andps {{.*}}(%rip), %xmm1
|
|
; CHECK-NEXT: movss {{.*#+}} xmm0 = mem[0],zero,zero,zero
|
|
; CHECK-NEXT: shufps {{.*#+}} xmm0 = xmm0[0,0,0,0]
|
|
; CHECK-NEXT: orps %xmm1, %xmm0
|
|
; CHECK-NEXT: retq
|
|
;
|
|
%c = call float @copysignf(float 1.0, float undef) readnone
|
|
ret float %c
|
|
}
|
|
|
|
declare float @copysignf(float, float)
|
|
|