mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-16 11:30:51 +00:00
f3ef961a94
Fundamentally, there isn't a really portable way to test the constant pool contents. Instead, pin this test to the bare-metal triple. This also makes it a 64-bit triple which allows us to only match a single constant pool rather than two. It can also just hard code the '.' prefix as the format should be stable now that it has a fixed triple. Finally, I've switched it to use CHECK-NEXT to be more precise in the instruction sequence expected and to use variables rather than hard coding decisions by the register allocator. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214679 91177308-0d34-0410-b5e6-96231b3b80d8
59 lines
1.7 KiB
LLVM
59 lines
1.7 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mcpu=corei7-avx | FileCheck %s
|
|
|
|
|
|
define <2 x double> @fabs_v2f64(<2 x double> %p)
|
|
{
|
|
; CHECK-LABEL: fabs_v2f64
|
|
; CHECK: vandps
|
|
%t = call <2 x double> @llvm.fabs.v2f64(<2 x double> %p)
|
|
ret <2 x double> %t
|
|
}
|
|
declare <2 x double> @llvm.fabs.v2f64(<2 x double> %p)
|
|
|
|
define <4 x float> @fabs_v4f32(<4 x float> %p)
|
|
{
|
|
; CHECK-LABEL: fabs_v4f32
|
|
; CHECK: vandps
|
|
%t = call <4 x float> @llvm.fabs.v4f32(<4 x float> %p)
|
|
ret <4 x float> %t
|
|
}
|
|
declare <4 x float> @llvm.fabs.v4f32(<4 x float> %p)
|
|
|
|
define <4 x double> @fabs_v4f64(<4 x double> %p)
|
|
{
|
|
; CHECK-LABEL: fabs_v4f64
|
|
; CHECK: vandps
|
|
%t = call <4 x double> @llvm.fabs.v4f64(<4 x double> %p)
|
|
ret <4 x double> %t
|
|
}
|
|
declare <4 x double> @llvm.fabs.v4f64(<4 x double> %p)
|
|
|
|
define <8 x float> @fabs_v8f32(<8 x float> %p)
|
|
{
|
|
; CHECK-LABEL: fabs_v8f32
|
|
; CHECK: vandps
|
|
%t = call <8 x float> @llvm.fabs.v8f32(<8 x float> %p)
|
|
ret <8 x float> %t
|
|
}
|
|
declare <8 x float> @llvm.fabs.v8f32(<8 x float> %p)
|
|
|
|
; PR20354: when generating code for a vector fabs op,
|
|
; make sure the correct mask is used for all vector elements.
|
|
; CHECK-LABEL: .LCPI4_0:
|
|
; CHECK-NEXT: .long 2147483647
|
|
; CHECK-NEXT: .long 2147483647
|
|
define i64 @fabs_v2f32(<2 x float> %v) {
|
|
; CHECK-LABEL: fabs_v2f32:
|
|
; CHECK: movabsq $-9223372034707292160, %[[R:r[^ ]+]]
|
|
; CHECK-NEXT: vmovq %[[R]], %[[X:xmm[0-9]+]]
|
|
; CHECK-NEXT: vandps {{.*}}.LCPI4_0{{.*}}, %[[X]], %[[X]]
|
|
; CHECK-NEXT: vmovq %[[X]], %rax
|
|
; CHECK-NEXT: retq
|
|
%highbits = bitcast i64 9223372039002259456 to <2 x float> ; 0x8000_0000_8000_0000
|
|
%fabs = call <2 x float> @llvm.fabs.v2f32(<2 x float> %highbits)
|
|
%ret = bitcast <2 x float> %fabs to i64
|
|
ret i64 %ret
|
|
}
|
|
|
|
declare <2 x float> @llvm.fabs.v2f32(<2 x float> %p)
|